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
|