21 |
|
string directoryname="Jellyfish_tests"; |
22 |
|
|
23 |
|
bool RestrictToMassPeak=true; //if you want to switch between offpeak ("false") and onpeak ("true") analysis please use this switch; the masscut below will be adapted automatically when adding samples :-) |
24 |
+ |
|
25 |
+ |
bool UseSidebandsForcJZB=true; |
26 |
|
bool FullMCAnalysis=false; |
27 |
|
bool DoBTag=false; |
28 |
|
|
33 |
|
// float luminosity=2096.0;//3172.73;//2096.0;//1936;//751.0;//486.0;//468.0//336.;//pb^{-1} |
34 |
|
float lumiuncert=0.022;//0.045;// to be indicated in [0,1] range, e.g. for 4% write 0.04 |
35 |
|
|
36 |
< |
float luminosity2012=2420; |
36 |
> |
float luminosity2012=5100; |
37 |
|
float lumiuncert2012=0.022; |
38 |
|
|
39 |
|
// string jzbvariabledata="jzb[1]+0.06*pt"; |
40 |
|
// string jzbvariablemc="jzb[1]+0.04*pt"; |
41 |
< |
string jzbvariabledata="(jzb[1]+0.06*pt)"; |
42 |
< |
string jzbvariablemc="(jzb[1]+0.04*pt)"; |
43 |
< |
float jzbHigh = 420.; // Range for JZB plots |
41 |
> |
string jzbvariabledata="(jzb[1]+0.062*pt)"; |
42 |
> |
string jzbvariablemc="(jzb[1]+0.036*pt)"; |
43 |
> |
float jzbHigh = 450.; // Range for JZB plots |
44 |
|
float iMllLow = 20.; // Range for Edge Fitting (and mll plot) for iJZB |
45 |
|
float iMllHigh = 400.; // Range for Edge Fitting (and mll plot) for iJZB |
46 |
|
|
53 |
|
int data=1; |
54 |
|
int mc=0; |
55 |
|
int mcwithsignal=2; |
56 |
< |
TCut leptoncut("(pt1>20&&pt2>20)"); |
56 |
> |
TCut leptoncut("(abs(eta1)<1.4 && abs(eta2)<1.4 && pt1>20&&pt2>10)"); |
57 |
|
TCut passtrig("(passed_triggers||!is_data)"&&leptoncut); |
58 |
|
|
59 |
|
TCut openmasscut("mll>20"); // this is the mass cut used in the off peak analysis! |
60 |
|
TCut openGenmasscut("genMll>20"); |
61 |
|
TCut opensidebandcut("mll>500&&mll<100"); // this won't let anything thru ... |
62 |
|
|
63 |
< |
TCut Restrmasscut("abs(mll-91.2)<20"); // this is the mass cut used in the off peak analysis! |
63 |
> |
TCut Restrmasscut("abs(mll-91.2)<10"); // this is the mass cut used in the off peak analysis! |
64 |
|
TCut RestrGenmasscut("abs(genMll-91.2)<20"); |
65 |
|
TCut Restrsidebandcut("((mll>55&&mll<70)||(mll>112&&mll<160))"); |
66 |
|
|