ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitPhysics/Mods/interface/PwhgWrapper.h
Revision: 1.1
Committed: Fri Sep 7 10:07:55 2012 UTC (12 years, 8 months ago) by ceballos
Content type: text/plain
Branch: MAIN
CVS Tags: Mit_029c, Mit_029b, Mit_029a, HEAD
Log Message:
new functions for reweighting

File Contents

# User Rev Content
1 ceballos 1.1 #ifndef PWHEGWRAPPER_H_
2     #define PWHEGWRAPPER_H_
3    
4     /*
5     c INPUT
6     c mh : Higgs boson mass (used in the POWHEG BOX generation)
7     c gh : Higgs boson width (used in the POWHEG BOX generation)
8     c mt : top quark mass
9     c BWflag : 0 if the sample to reweight was produced with fixed Higgs width
10     c 1 if the sample to reweight was produced with running Higgs
11     c width (this is the default in the POWHEG BOX)
12     c m : virtuality of the produced Higgs boson resonance
13     c OUTPUT
14     c w : the reweighting factor
15     */
16    
17    
18     class pwhegwrapper{
19     public:
20     pwhegwrapper(){};
21     ~pwhegwrapper(){};
22     double getweight(double mh,double gh,double mt,double m,int BWflag);
23     };
24    
25    
26     #endif