25 |
|
|
26 |
|
using namespace std; |
27 |
|
|
28 |
– |
static bool subtract = 0; |
29 |
– |
static int QID = 3; |
28 |
|
|
29 |
< |
static TString weightString; |
29 |
> |
static bool subtract = 0; |
30 |
|
|
31 |
|
static bool normLead = 0; |
32 |
|
|
61 |
|
static TCut noise = "noise < 0"; // Gplus Pile-Up cut also included |
62 |
|
static TCut vtx = "abs(vz)<15"; |
63 |
|
|
64 |
< |
TCut weight("weight*(pthat > 80)"); |
64 |
> |
static TCut weight("weight*(pthat > 80)"); |
65 |
> |
|
66 |
> |
static TCut hfPlusBins[6] = { |
67 |
> |
"hfp>=30 && hfp<70", |
68 |
> |
"hfp>=20 && hfp<30", |
69 |
> |
"hfp>=15 && hfp<20", |
70 |
> |
"hfp>=10 && hfp<15", |
71 |
> |
"hfp>=5 && hfp<10", |
72 |
> |
"hfp<5" |
73 |
> |
}; |
74 |
> |
|
75 |
> |
// the same - no purpose |
76 |
> |
static TCut centBinsHFplus[6] = { |
77 |
> |
"cent>=30 && cent<70", |
78 |
> |
"cent>=20 && cent<30", |
79 |
> |
"cent>=15 && cent<20", |
80 |
> |
"cent>=10 && cent<15", |
81 |
> |
"cent>=5 && cent<10", |
82 |
> |
"cent<5" |
83 |
> |
}; |
84 |
|
|