18 |
|
|
19 |
|
samplecollection allsamples("completesamplecollection"); |
20 |
|
samplecollection signalsamples("signalsamplecollection"); |
21 |
+ |
samplecollection scansample("scansamplecollection"); |
22 |
|
int data=1; |
23 |
|
int mc=0; |
24 |
|
int mcwithsignal=2; |
39 |
|
//TCut sidebandcut("(mll>61&&mll<70)||(mll>112&&mll<190)"); |
40 |
|
//TCut basiccut("(passed_triggers||!is_data)"); |
41 |
|
|
42 |
+ |
// SUSY scan parameters |
43 |
+ |
// float mglustart=25;float mgluend=1200;float mglustep=25; //guessed values for official file |
44 |
+ |
// float mLSPstart=25;float mLSPend=1200;float mLSPstep=25; //guessed values for official file |
45 |
+ |
float mglustart=25;float mgluend=1200;float mglustep=25; |
46 |
+ |
float mLSPstart=25;float mLSPend=1200;float mLSPstep=25; |
47 |
+ |
|
48 |
+ |
|
49 |
|
TCut essential(passtrig);//add here any cuts you ALWAYS want |
50 |
|
int dogaus=0; |
51 |
|
int doKM=1; |
69 |
|
int noJES=0; |
70 |
|
int JESdown=1; |
71 |
|
int JESup=2; |
72 |
< |
|
72 |
> |
|
73 |
> |
//some refinement: nicer color gradient |
74 |
> |
Double_t stops[5] = { 0.00, 0.34, 0.61, 0.84, 1.00 }; |
75 |
> |
Double_t red[5] = { 0.00, 0.00, 0.87, 1.00, 0.51 }; |
76 |
> |
Double_t green[5] = { 0.00, 0.81, 1.00, 0.20, 0.00 }; |
77 |
> |
Double_t blue[5] = { 0.51, 1.00, 0.12, 0.00, 0.00 }; |
78 |
> |
TColor::CreateGradientColorTable(5, stops, red, green,blue, 255); |
79 |
> |
|
80 |
|
} |