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 |
|
|
43 |
|
|
44 |
|
static double sideCorrect = 1; |
45 |
|
|
46 |
< |
static const char* LUM = "#int L dt=150"; |
46 |
> |
static const char* LUM_PbPb = "L=150#mub^{-1}"; |
47 |
> |
static const char* LUM_pPb = "L=17.3nb^{-1}"; |
48 |
|
|
49 |
|
static bool plotSubtraction = 0; |
50 |
|
|
62 |
|
static TCut noise = "noise < 0"; // Gplus Pile-Up cut also included |
63 |
|
static TCut vtx = "abs(vz)<15"; |
64 |
|
|
65 |
< |
TCut weight("weight*(pthat > 80)"); |
65 |
> |
static TCut weight("weight*(pthat > 80)"); |
66 |
> |
|
67 |
> |
static TCut hfPlusBins[6] = { |
68 |
> |
"hfp>=30 && hfp<70", |
69 |
> |
"hfp>=20 && hfp<30", |
70 |
> |
"hfp>=15 && hfp<20", |
71 |
> |
"hfp>=10 && hfp<15", |
72 |
> |
"hfp>=5 && hfp<10", |
73 |
> |
"hfp<5" |
74 |
> |
}; |
75 |
> |
|
76 |
> |
// the same - no purpose |
77 |
> |
static TCut centBinsHFplus[6] = { |
78 |
> |
"cent>=30 && cent<70", |
79 |
> |
"cent>=20 && cent<30", |
80 |
> |
"cent>=15 && cent<20", |
81 |
> |
"cent>=10 && cent<15", |
82 |
> |
"cent>=5 && cent<10", |
83 |
> |
"cent<5" |
84 |
> |
}; |
85 |
|
|