1 |
buchmann |
1.37 |
/****
|
2 |
|
|
|
3 |
|
|
Off peak status (RestrictToMassPeak) :
|
4 |
|
|
|
5 |
|
|
x Necessary adaptations identified
|
6 |
|
|
x Started working on necessary adaptations
|
7 |
|
|
x Necessary adaptations implemented
|
8 |
|
|
x Necessary adaptations tested
|
9 |
|
|
|
10 |
|
|
DONE!
|
11 |
|
|
|
12 |
|
|
****/
|
13 |
|
|
|
14 |
buchmann |
1.1 |
#include <iostream>
|
15 |
|
|
#include <vector>
|
16 |
|
|
#include <sys/stat.h>
|
17 |
buchmann |
1.13 |
#include <unistd.h>
|
18 |
buchmann |
1.1 |
|
19 |
|
|
#include <TMath.h>
|
20 |
|
|
#include <TColor.h>
|
21 |
|
|
#include <TPaveText.h>
|
22 |
|
|
#include <TRandom.h>
|
23 |
|
|
#include <TF1.h>
|
24 |
|
|
|
25 |
|
|
#ifndef SampleClassLoaded
|
26 |
|
|
#include "ActiveSamples.C"
|
27 |
|
|
#endif
|
28 |
|
|
|
29 |
|
|
#ifndef Verbosity
|
30 |
|
|
#define Verbosity 0
|
31 |
|
|
#endif
|
32 |
|
|
#ifndef HUSH
|
33 |
|
|
#define HUSH 1
|
34 |
|
|
#endif
|
35 |
|
|
|
36 |
buchmann |
1.19 |
void define_SMS_sample(bool showList, samplecollection &allsamples, samplecollection &signalsamples, samplecollection &scansample)
|
37 |
|
|
{
|
38 |
|
|
char hostname[1023];
|
39 |
|
|
gethostname(hostname,1023);
|
40 |
buchmann |
1.1 |
|
41 |
buchmann |
1.22 |
/*
|
42 |
|
|
|
43 |
|
|
CRUCIAL: The NAME needs to contain either "SMS" or "mSUGRA" for the SUSY scan algorithm (to be able to distinguish the two)
|
44 |
|
|
|
45 |
|
|
*/
|
46 |
|
|
|
47 |
buchmann |
1.19 |
if((int)((string)hostname).find("falda")>-1) {
|
48 |
buchmann |
1.22 |
scansample.AddSample("/scratch/buchmann/mSUGRA3.root","SMS_T6Z",1,1,false,true,1,kRed); // there is only one sample in the scan; we give each event weight "1"
|
49 |
buchmann |
1.19 |
} else {
|
50 |
buchmann |
1.38 |
/// NEW: Only indicate the very first file - please place scans in ntuples/SMS/ and adapt the name here and in SUSYScan.C (the files are loaded when needed avoiding high memory usage and startup times)
|
51 |
|
|
// scansample.AddSample("/shome/buchmann/ntuples/mSUGRA/mSUGRA_clean_splitup_0_0.root","mSUGRA",1,1,false,true,0,kRed); // there is only one sample in the scan; we give each event weight "1"
|
52 |
|
|
scansample.AddSample("/shome/buchmann/ntuples/SMS/SMS_clean_splitup_0_0.root","SMS",1,1,false,true,0,kRed); // there is only one sample in the scan; we give each event weight "1"
|
53 |
|
|
}
|
54 |
buchmann |
1.37 |
|
55 |
|
|
|
56 |
|
|
if(!PlottingSetup::RestrictToMassPeak) {
|
57 |
|
|
PlottingSetup::cutmass=TCut("mll>55");
|
58 |
|
|
PlottingSetup::sidebandcut=TCut("mll<2&&mll>3");//impossible cut - because we don't want any sidebands!
|
59 |
buchmann |
1.19 |
}
|
60 |
|
|
}
|
61 |
buchmann |
1.1 |
|
62 |
buchmann |
1.34 |
void define_samples(bool showList, samplecollection &allsamples, samplecollection &signalsamples, samplecollection &scansample, samplecollection &raresample)
|
63 |
buchmann |
1.1 |
{
|
64 |
buchmann |
1.37 |
write_warning(__FUNCTION__,"Gotten here");
|
65 |
|
|
if(!PlottingSetup::RestrictToMassPeak) {
|
66 |
|
|
PlottingSetup::cutmass=PlottingSetup::openmasscut;
|
67 |
|
|
PlottingSetup::sidebandcut=TCut("mll<2&&mll>3");//impossible cut - because we don't want any sidebands!
|
68 |
|
|
}
|
69 |
buchmann |
1.1 |
|
70 |
|
|
float ZJetsCrossSection = 3048.0; //NNLO----------------------------------
|
71 |
|
|
float TTbarCrossSection = 165.0;//(NLO) ---- 165.0; // approx. NNLO-----
|
72 |
|
|
float WJetsCrossSection = 31314.0;//NNLO-------3.131e4; //NNLO------------
|
73 |
|
|
float ZnunuCrossSection = 5760.0;//NNLO -------4.5e+3; //(LO);------------
|
74 |
|
|
float SingleTopSCrossSection = 1.49; // NLO;----------------------------------
|
75 |
|
|
float SingleTopTCrossSection = 20.540; // NLO;--------------------------------
|
76 |
|
|
float SingleTopUCrossSection = 10.6; // NLO;----------------------------------
|
77 |
|
|
float VVJetsCrossSection = 4.8; // LO;-------------------------------------
|
78 |
buchmann |
1.4 |
float LM4CrossSection = 2.537; // k*LO
|
79 |
buchmann |
1.1 |
//the following numbers are from the MadGraphStandardModel210Summary as linked on the GeneratorProduction2011 page
|
80 |
|
|
// float QCD50to100CrossSection=30000000; // not used
|
81 |
|
|
float QCD100to250CrossSection=7000000;
|
82 |
|
|
float QCD250to500CrossSection=171000;
|
83 |
|
|
float QCD500to1000CrossSection=5200;
|
84 |
|
|
float QCD1000toInfCrossSection=83.0;
|
85 |
|
|
|
86 |
|
|
// float totEventsQCD50to100=207418.0; // not used
|
87 |
fronga |
1.33 |
long totEventsQCD100to250 = 638792;
|
88 |
|
|
long totEventsQCD250to500 = 344454;
|
89 |
|
|
long totEventsQCD500to1000 = 10e10; //unknown but now suppressed. (no event passes anyway)
|
90 |
|
|
long totEventsQCD1000toInf = 163185;
|
91 |
buchmann |
1.1 |
|
92 |
fronga |
1.33 |
long totEventsZjets = 32005720;//summer11
|
93 |
buchmann |
1.5 |
//spring:2313911.0;//2743142.0; // DYJetsToLL_TuneZ2_M-50_7TeV-madgraph-tauola
|
94 |
fronga |
1.33 |
long totEventsTTbar = 3701872;//summer11
|
95 |
buchmann |
1.5 |
//1161621.0;//Spring//1144028.0; // PabloV13/TTJets_TuneZ2_7TeV-madgraph-tauola
|
96 |
fronga |
1.33 |
long totEventsWJets = 53739703;//summer11
|
97 |
buchmann |
1.5 |
//15010237.0;//spring//14350756.0; /// WJetsToLNu_TuneZ2_7TeV-madgraph-tauola.root
|
98 |
fronga |
1.33 |
long totEventsZnunu = 2106977;//2167964.0; //ZinvisibleJets_7TeV-madgraph.root
|
99 |
|
|
long totEventsVVJets = 959076;//509072.0;
|
100 |
|
|
long totEventsSingleTopS = 493868;//489472.0;
|
101 |
|
|
long totEventsSingleTopT = 475460;//477610.0;
|
102 |
|
|
long totEventsSingleTopU = 489417;//477599.0;
|
103 |
buchmann |
1.1 |
|
104 |
|
|
|
105 |
|
|
Int_t nice_blue = TColor::GetColor("#2E9AFE");
|
106 |
|
|
Int_t nice_green = TColor::GetColor("#81f781");
|
107 |
|
|
Int_t nice_red = TColor::GetColor("#F78181");
|
108 |
|
|
Int_t nice_pink = TColor::GetColor("#F781BE");
|
109 |
|
|
Int_t nice_orange= TColor::GetColor("#F7BE81");//#FA9624
|
110 |
|
|
Int_t nice_black = TColor::GetColor("#2A0A1B");//black with a bit of purple :-)
|
111 |
|
|
|
112 |
|
|
|
113 |
|
|
Int_t dy_color = nice_blue;
|
114 |
|
|
Int_t wjets_color = kGray;
|
115 |
|
|
Int_t ttbar_color = nice_green;
|
116 |
|
|
Int_t singletop_color = nice_orange;
|
117 |
|
|
Int_t qcd_color = nice_black;
|
118 |
|
|
Int_t diboson_color = nice_pink;
|
119 |
|
|
Int_t lm_color = kRed;
|
120 |
|
|
|
121 |
|
|
dy_color = kYellow;
|
122 |
|
|
wjets_color = kGray;
|
123 |
|
|
ttbar_color = kMagenta+2;
|
124 |
|
|
singletop_color = kBlue;
|
125 |
|
|
qcd_color = kPink;
|
126 |
|
|
diboson_color = kGreen;
|
127 |
|
|
lm_color = kViolet+7;
|
128 |
buchmann |
1.34 |
|
129 |
|
|
Int_t rare_color = nice_blue;
|
130 |
buchmann |
1.1 |
|
131 |
buchmann |
1.13 |
char hostname[1023];
|
132 |
|
|
gethostname(hostname,1023);
|
133 |
buchmann |
1.6 |
|
134 |
buchmann |
1.13 |
if((int)((string)hostname).find("falda")>-1) {
|
135 |
|
|
//not running locally on my computer
|
136 |
buchmann |
1.20 |
// allsamples.AddSample("/scratch/buchmann/ntuples2011/data/AllData_Jul6_1078pb_boolean.root","Data",1,1,true,false,0,kBlack); // this is the 1078 /pb version
|
137 |
|
|
// allsamples.AddSample("/scratch/fronga/v1.47/AllData_1.4fb_stripped.root","Data",1,1,true,false,0,kBlack);
|
138 |
buchmann |
1.26 |
// allsamples.AddSample("/scratch/buchmann/Data_Aug26__1936.root","Data",1,1,true,false,0,kBlack);
|
139 |
|
|
allsamples.AddSample("/scratch/buchmann/ntuples2011/data/AllData_Aug26__2048_ipb__NewFormat_Complete_official.root","Data",1,1,true,false,0,kBlack);
|
140 |
buchmann |
1.20 |
// allsamples.AddSample("/scratch/buchmann/ntuples2011/data/Data_v6_test.root","Data",1,1,true,false,0,kBlack);
|
141 |
|
|
// allsamples.AddSample("/scratch/fronga/JSON_160404-163869_v1.29/AllCertified191_v1.29.root","Data",1,1,true,false,0,kBlack); // this is the version used for the 2011 PAS (update), i.e. SUS-11-012
|
142 |
|
|
|
143 |
buchmann |
1.13 |
allsamples.AddSample("/scratch/buchmann/ntuples/MC/MixedSpringSummerMCepsPU_v2/TTJets_TuneZ2_7TeV-madgraph-tauola_Summer11_2.root","TTbar",totEventsTTbar,TTbarCrossSection,false,false,1,ttbar_color);//summer11
|
144 |
|
|
allsamples.AddSample("/scratch/buchmann/ntuples/MC/MixedSpringSummerMCepsPU_v2/WJetsToLNu_TuneZ2_7TeV-madgraph-tauola.root","WJets",totEventsWJets,WJetsCrossSection,false,false,3,wjets_color);//summer
|
145 |
|
|
allsamples.AddSample("/scratch/buchmann/ntuples/MC/MixedSpringSummerMCepsPU_v2/VVJetsTo4L_TuneD6T_7TeV-madgraph-tauola.root","DiBosons",totEventsVVJets,VVJetsCrossSection,false,false,4,diboson_color);
|
146 |
|
|
allsamples.AddSample("/scratch/buchmann/ntuples/MC/MixedSpringSummerMCepsPU_v2/TToBLNu_TuneZ2_s-channel_7TeV-madgraph_2.root","SingleTop",totEventsSingleTopS,SingleTopSCrossSection,false,false,2,singletop_color);
|
147 |
|
|
allsamples.AddSample("/scratch/buchmann/ntuples/MC/MixedSpringSummerMCepsPU_v2/TToBLNu_TuneZ2_t-channel_7TeV-madgraph.root","SingleTop",totEventsSingleTopT,SingleTopTCrossSection,false,false,2,singletop_color);
|
148 |
|
|
allsamples.AddSample("/scratch/buchmann/ntuples/MC/MixedSpringSummerMCepsPU_v2/TToBLNu_TuneZ2_tW-channel_7TeV-madgraph.root","SingleTop",totEventsSingleTopU,SingleTopUCrossSection,false,false,2,singletop_color);
|
149 |
|
|
allsamples.AddSample("/scratch/buchmann/ntuples/MC/MixedSpringSummerMCepsPU_v2/ZinvisibleJets_7TeV-madgraph.root","Z nunu",totEventsZnunu,ZnunuCrossSection,false,false,4,diboson_color);
|
150 |
|
|
allsamples.AddSample("/scratch/buchmann/ntuples/MC/MixedSpringSummerMCepsPU_v2/DYJetsToLL_TuneZ2_M-50_7TeV-madgraph-tauola_Summer11.root","ZJets",totEventsZjets,ZJetsCrossSection,false,false,6,dy_color);//summer11
|
151 |
|
|
allsamples.AddSample("/scratch/buchmann/ntuples/MC/MixedSpringSummerMCepsPU_v2/LM4_SUSY_sftsht_7TeV-pythia6.root","LM4",218536,1.879,false,true,7,lm_color);
|
152 |
buchmann |
1.24 |
|
153 |
|
|
signalsamples.AddSample("/scratch/buchmann/ntuples/MC/MixedSpringSummerMCepsPU_v2/LM0_SUSY_sftsht_7TeV-pythia6.root","LM0",219796,38.93 ,false,true,3,lm_color);
|
154 |
|
|
signalsamples.AddSample("/scratch/buchmann/ntuples/MC/MixedSpringSummerMCepsPU_v2/LM1_SUSY_sftsht_7TeV-pythia6.root","LM1",218176,4.888,false,true,4,lm_color);
|
155 |
|
|
signalsamples.AddSample("/scratch/buchmann/ntuples/MC/MixedSpringSummerMCepsPU_v2/LM2_SUSY_sftsht_7TeV-pythia6.root","LM2",206336,0.6027,false,true,5,lm_color);
|
156 |
|
|
signalsamples.AddSample("/scratch/buchmann/ntuples/MC/MixedSpringSummerMCepsPU_v2/LM3_SUSY_sftsht_7TeV-pythia6.root","LM3",215120,3.438,false,true,6,lm_color);
|
157 |
|
|
signalsamples.AddSample("/scratch/buchmann/ntuples/MC/MixedSpringSummerMCepsPU_v2/LM4_SUSY_sftsht_7TeV-pythia6.root","LM4",218536,1.879,false,true,1,lm_color);
|
158 |
|
|
signalsamples.AddSample("/scratch/buchmann/ntuples/MC/MixedSpringSummerMCepsPU_v2/LM5_SUSY_sftsht_7TeV-pythia6.root","LM5",223992,0.473,false,true,7,lm_color);
|
159 |
|
|
signalsamples.AddSample("/scratch/buchmann/ntuples/MC/MixedSpringSummerMCepsPU_v2/LM8_SUSY_sftsht_7TeV-pythia6.root","LM8",180960,0.73,false,true,2,lm_color);
|
160 |
|
|
signalsamples.AddSample("/scratch/buchmann/ntuples/MC/MixedSpringSummerMCepsPU_v2/LM9_SUSY_sftsht_7TeV-pythia6.root","LM9",227808,7.134,false,true,8,lm_color);
|
161 |
|
|
signalsamples.AddSample("/scratch/buchmann/ntuples/MC/MixedSpringSummerMCepsPU_v2/LM11_SUSY_sftsht_7TeV-pythia6.root","LM11",218703,0.8236,false,true,9,lm_color);
|
162 |
|
|
signalsamples.AddSample("/scratch/buchmann/ntuples/MC/MixedSpringSummerMCepsPU_v2/LM12_SUSY_sftsht_7TeV-pythia6.root","LM12",223491,4.414,false,true,10,lm_color);
|
163 |
|
|
signalsamples.AddSample("/scratch/buchmann/ntuples/MC/MixedSpringSummerMCepsPU_v2/LM13_SUSY_sftsht_7TeV-pythia6.root","LM13",173240,6.899,false,true,11,lm_color);
|
164 |
|
|
|
165 |
buchmann |
1.13 |
} else {
|
166 |
buchmann |
1.30 |
|
167 |
|
|
allsamples.AddSample("/shome/buchmann/ntuples/Data/AllData_2096pb_v158.root","Data",1,1,true,false,0,kBlack);
|
168 |
|
|
// allsamples.AddSample("/shome/buchmann/ntuples/Data/Latest_assemblage.root","Data",1,1,true,false,0,kBlack);
|
169 |
buchmann |
1.34 |
|
170 |
buchmann |
1.30 |
allsamples.AddSample("/shome/buchmann/ntuples/MC/MixedSpringSummerMCepsPU_v2/MCSummer_PURW_172802_LP__JetID3p0/TTJets_TuneZ2_7TeV-madgraph-tauola_Summer11_2.root","TTbar",totEventsTTbar,TTbarCrossSection,false,false,1,ttbar_color);//summer11
|
171 |
buchmann |
1.34 |
|
172 |
|
|
//write_warning(__FUNCTION__,"TEMPORARILY USING POWHEG TT to 2l 2nu 2b sample!");
|
173 |
|
|
//allsamples.AddSample("/scratch/buchmann/ntuples/NewPOWHEG_sample/TTTo2L2Nu2B_7TeV-powheg-pythia6__Summer11-PU_S4_START42_V11-v1___previously_TTJets.root","TTbar",10339374,16.53,false,false,1,ttbar_color);//summer11
|
174 |
|
|
//xs from https://twiki.cern.ch/twiki/bin/view/CMS/CrossSectionDetails
|
175 |
|
|
|
176 |
buchmann |
1.30 |
allsamples.AddSample("/shome/buchmann/ntuples/MC/MixedSpringSummerMCepsPU_v2/MCSummer_PURW_172802_LP__JetID3p0/WJetsToLNu_TuneZ2_7TeV-madgraph-tauola_Summer11.root","WJets",totEventsWJets,WJetsCrossSection,false,false,3,wjets_color);//summer
|
177 |
|
|
allsamples.AddSample("/shome/buchmann/ntuples/MC/MixedSpringSummerMCepsPU_v2/MCSummer_PURW_172802_LP__JetID3p0/VVJetsTo4L_TuneD6T_7TeV-madgraph-tauola.root","DiBosons",totEventsVVJets,VVJetsCrossSection,false,false,4,diboson_color);
|
178 |
|
|
allsamples.AddSample("/shome/buchmann/ntuples/MC/MixedSpringSummerMCepsPU_v2/MCSummer_PURW_172802_LP__JetID3p0/TToBLNu_TuneZ2_s-channel_7TeV-madgraph_2.root","SingleTop",totEventsSingleTopS,SingleTopSCrossSection,false,false,2,singletop_color);
|
179 |
|
|
allsamples.AddSample("/shome/buchmann/ntuples/MC/MixedSpringSummerMCepsPU_v2/MCSummer_PURW_172802_LP__JetID3p0/TToBLNu_TuneZ2_t-channel_7TeV-madgraph.root","SingleTop",totEventsSingleTopT,SingleTopTCrossSection,false,false,2,singletop_color);
|
180 |
|
|
allsamples.AddSample("/shome/buchmann/ntuples/MC/MixedSpringSummerMCepsPU_v2/MCSummer_PURW_172802_LP__JetID3p0/TToBLNu_TuneZ2_tW-channel_7TeV-madgraph.root","SingleTop",totEventsSingleTopU,SingleTopUCrossSection,false,false,2,singletop_color);
|
181 |
|
|
allsamples.AddSample("/shome/buchmann/ntuples/MC/MixedSpringSummerMCepsPU_v2/MCSummer_PURW_172802_LP__JetID3p0/ZinvisibleJets_7TeV-madgraph.root","Z nunu",totEventsZnunu,ZnunuCrossSection,false,false,4,diboson_color);
|
182 |
buchmann |
1.28 |
|
183 |
buchmann |
1.24 |
|
184 |
buchmann |
1.34 |
|
185 |
|
|
|
186 |
|
|
allsamples.AddSample("/shome/buchmann/ntuples/MC/MixedSpringSummerMCepsPU_v2/MCSummer_PURW_172802_LP__JetID3p0/DYJetsToLL_TuneZ2_M-50_7TeV-madgraph-tauola_Summer11.root","ZJets",totEventsZjets,ZJetsCrossSection,false,false,7,dy_color);//summer11
|
187 |
|
|
// allsamples.AddSample("/scratch/buchmann/Skimmed_DY.root","ZJets",totEventsZjets,ZJetsCrossSection,false,false,6,dy_color);//summer11
|
188 |
|
|
|
189 |
|
|
|
190 |
|
|
allsamples.AddSample("/shome/buchmann/ntuples/MC/MixedSpringSummerMCepsPU_v2/MCSummer_PURW_172802_LP__JetID3p0/LM4_SUSY_sftsht_7TeV-pythia6.root","LM4",218536,1.879,false,true,8,lm_color);
|
191 |
|
|
|
192 |
|
|
|
193 |
|
|
/* signalsamples.AddSample("/shome/buchmann/ntuples/MC/MixedSpringSummerMCepsPU_v2/MCSummer_PURW_172802_LP__JetID3p0/LM0_SUSY_sftsht_7TeV-pythia6.root","LM0",219796,38.93 ,false,true,3,lm_color);
|
194 |
|
|
signalsamples.AddSample("/shome/buchmann/ntuples/MC/MixedSpringSummerMCepsPU_v2/MCSummer_PURW_172802_LP__JetID3p0/LM1_SUSY_sftsht_7TeV-pythia6.root","LM1",218176,4.888,false,true,4,lm_color);
|
195 |
|
|
signalsamples.AddSample("/shome/buchmann/ntuples/MC/MixedSpringSummerMCepsPU_v2/MCSummer_PURW_172802_LP__JetID3p0/LM2_SUSY_sftsht_7TeV-pythia6.root","LM2",206336,0.6027,false,true,5,lm_color);
|
196 |
|
|
signalsamples.AddSample("/shome/buchmann/ntuples/MC/MixedSpringSummerMCepsPU_v2/MCSummer_PURW_172802_LP__JetID3p0/LM3_SUSY_sftsht_7TeV-pythia6.root","LM3",215120,3.438,false,true,6,lm_color);*/
|
197 |
buchmann |
1.30 |
signalsamples.AddSample("/shome/buchmann/ntuples/MC/MixedSpringSummerMCepsPU_v2/MCSummer_PURW_172802_LP__JetID3p0/LM4_SUSY_sftsht_7TeV-pythia6.root","LM4",218536,1.879,false,true,1,lm_color);/*
|
198 |
buchmann |
1.34 |
signalsamples.AddSample("/shome/buchmann/ntuples/MC/MixedSpringSummerMCepsPU_v2/MCSummer_PURW_172802_LP__JetID3p0/LM5_SUSY_sftsht_7TeV-pythia6.root","LM5",223992,0.473,false,true,7,lm_color);*/
|
199 |
buchmann |
1.30 |
signalsamples.AddSample("/shome/buchmann/ntuples/MC/MixedSpringSummerMCepsPU_v2/MCSummer_PURW_172802_LP__JetID3p0/LM8_SUSY_sftsht_7TeV-pythia6.root","LM8",180960,0.73,false,true,2,lm_color);/*
|
200 |
buchmann |
1.34 |
signalsamples.AddSample("/shome/buchmann/ntuples/MC/MixedSpringSummerMCepsPU_v2/MCSummer_PURW_172802_LP__JetID3p0/LM9_SUSY_sftsht_7TeV-pythia6.root","LM9",227808,7.134,false,true,8,lm_color);
|
201 |
|
|
signalsamples.AddSample("/shome/buchmann/ntuples/MC/MixedSpringSummerMCepsPU_v2/MCSummer_PURW_172802_LP__JetID3p0/LM11_SUSY_sftsht_7TeV-pythia6.root","LM11",218703,0.8236,false,true,9,lm_color);
|
202 |
|
|
signalsamples.AddSample("/shome/buchmann/ntuples/MC/MixedSpringSummerMCepsPU_v2/MCSummer_PURW_172802_LP__JetID3p0/LM12_SUSY_sftsht_7TeV-pythia6.root","LM12",223491,4.414,false,true,10,lm_color);
|
203 |
|
|
signalsamples.AddSample("/shome/buchmann/ntuples/MC/MixedSpringSummerMCepsPU_v2/MCSummer_PURW_172802_LP__JetID3p0/LM13_SUSY_sftsht_7TeV-pythia6.root","LM13",173240,6.899,false,true,11,lm_color);*/
|
204 |
|
|
|
205 |
|
|
|
206 |
|
|
// We do not use the following (rare) samples; nonetheless we include them in a separate category to prove that they are negligible
|
207 |
|
|
raresample.AddSample("/shome/buchmann/ntuples/MC/MixedSpringSummerMCepsPU_v2/MCSummer_PURW_172802_LP__JetID3p0/TTWWTo2Lplus2Nu_NTP.root","Rare SS",39791,4.76E-5,false,false,6,rare_color);//summer11
|
208 |
|
|
raresample.AddSample("/shome/buchmann/ntuples/MC/MixedSpringSummerMCepsPU_v2/MCSummer_PURW_172802_LP__JetID3p0/WWminusTo2L2Nu_NTP.root","Rare SS",51063,0.001559,false,false,6,rare_color);//summer11
|
209 |
|
|
raresample.AddSample("/shome/buchmann/ntuples/MC/MixedSpringSummerMCepsPU_v2/MCSummer_PURW_172802_LP__JetID3p0/TTWWTo2Lminus2Nu_NTP.root","Rare SS",39496 ,4.719E-5,false,false,6,rare_color);//summer11
|
210 |
|
|
raresample.AddSample("/shome/buchmann/ntuples/MC/MixedSpringSummerMCepsPU_v2/MCSummer_PURW_172802_LP__JetID3p0/TTWTo2Lplus2Nu_NTP.root","Rare SS",48764,0.006841,false,false,6,rare_color);//summer11
|
211 |
|
|
raresample.AddSample("/shome/buchmann/ntuples/MC/MixedSpringSummerMCepsPU_v2/MCSummer_PURW_172802_LP__JetID3p0/WWplusTo2L2Nu_NTP.root","Rare SS",48244 ,0.004216,false,false,6,rare_color);//summer11
|
212 |
|
|
raresample.AddSample("/shome/buchmann/ntuples/MC/MixedSpringSummerMCepsPU_v2/MCSummer_PURW_172802_LP__JetID3p0/TTZTo2Lplus2Nu_NTP.root","Rare SS",36740,0.002024,false,false,6,rare_color);//summer11
|
213 |
|
|
raresample.AddSample("/shome/buchmann/ntuples/MC/MixedSpringSummerMCepsPU_v2/MCSummer_PURW_172802_LP__JetID3p0/WWWTo2Lplus2Nu_NTP.root","Rare SS",43322,0.008957,false,false,6,rare_color);//summer11
|
214 |
|
|
raresample.AddSample("/shome/buchmann/ntuples/MC/MixedSpringSummerMCepsPU_v2/MCSummer_PURW_172802_LP__JetID3p0/TTWTo2Lminus2Nu_NTP.root","Rare SS",50435,0.002705,false,false,6,rare_color);//summer11
|
215 |
|
|
raresample.AddSample("/shome/buchmann/ntuples/MC/MixedSpringSummerMCepsPU_v2/MCSummer_PURW_172802_LP__JetID3p0/WWWTo2Lminus2Nu_NTP.root","Rare SS",17147,0.004109,false,false,6,rare_color);//summer11
|
216 |
|
|
raresample.AddSample("/shome/buchmann/ntuples/MC/MixedSpringSummerMCepsPU_v2/MCSummer_PURW_172802_LP__JetID3p0/TTZTo2Lminus2Nu_NTP.root","Rare SS",36781,0.001946,false,false,6,rare_color);//summer11
|
217 |
|
|
|
218 |
|
|
|
219 |
|
|
|
220 |
|
|
|
221 |
buchmann |
1.13 |
}
|
222 |
buchmann |
1.11 |
/**/
|
223 |
buchmann |
1.34 |
// signalsamples.AddSample("/shome/buchmann/ntuples/MC/MixedSpringSummerMCepsPU_v2/MCSummer_PURW_172802_LP__JetID3p0/WithTwoSix/LM4_SUSY_sftsht_7TeV-pythia6.root","REALLY OLD LM4!",218536,1.879,false,true,1,lm_color);
|
224 |
|
|
// signalsamples.AddSample("/shome/buchmann/ntuples/MC/MixedSpringSummerMCepsPU_v2/MCSummer_PURW_172802_LP__JetID3p0/WithTwoSix/LM8_SUSY_sftsht_7TeV-pythia6.root","REALLY OLD LM8!",218536,0.73,false,true,1,lm_color);
|
225 |
buchmann |
1.11 |
|
226 |
|
|
// scansample.AddSample("/scratch/fronga/SMS/T6z_GlGlToQQZQQZ_38xFall10.root","T6Z",1,1,false,true,1,lm_color); // there is only one sample in the scan; we give each event weight "1"
|
227 |
|
|
//scansample.AddSample("/scratch/buchmann/allfinalevent_NTupleProducer_42X_mc.root","T6Z",1,1,false,true,1,lm_color); // there is only one sample in the scan; we give each event weight "1"
|
228 |
buchmann |
1.12 |
// scansample.AddSample("/scratch/buchmann/SUSYScanTestJZB.root","T6Z",1,1,false,true,1,lm_color); // there is only one sample in the scan; we give each event weight "1"
|
229 |
buchmann |
1.14 |
|
230 |
|
|
|
231 |
buchmann |
1.19 |
define_SMS_sample(showList, allsamples, signalsamples, scansample);
|
232 |
buchmann |
1.6 |
|
233 |
|
|
if(showList) allsamples.ListSamples();
|
234 |
|
|
|
235 |
|
|
}
|
236 |
|
|
|
237 |
|
|
|
238 |
buchmann |
1.7 |
void define_spring_samples(bool showList, samplecollection &allsamples)
|
239 |
|
|
{
|
240 |
|
|
|
241 |
|
|
float ZJetsCrossSection = 3048.0; //NNLO----------------------------------
|
242 |
|
|
float TTbarCrossSection = 165.0;//(NLO) ---- 165.0; // approx. NNLO-----
|
243 |
|
|
float WJetsCrossSection = 31314.0;//NNLO-------3.131e4; //NNLO------------
|
244 |
|
|
float ZnunuCrossSection = 5760.0;//NNLO -------4.5e+3; //(LO);------------
|
245 |
|
|
float SingleTopSCrossSection = 1.49; // NLO;----------------------------------
|
246 |
|
|
float SingleTopTCrossSection = 20.540; // NLO;--------------------------------
|
247 |
|
|
float SingleTopUCrossSection = 10.6; // NLO;----------------------------------
|
248 |
|
|
float VVJetsCrossSection = 4.8; // LO;-------------------------------------
|
249 |
|
|
float LM4CrossSection = 2.537; // k*LO
|
250 |
|
|
//the following numbers are from the MadGraphStandardModel210Summary as linked on the GeneratorProduction2011 page
|
251 |
|
|
// float QCD50to100CrossSection=30000000; // not used
|
252 |
|
|
float QCD100to250CrossSection=7000000;
|
253 |
|
|
float QCD250to500CrossSection=171000;
|
254 |
|
|
float QCD500to1000CrossSection=5200;
|
255 |
|
|
float QCD1000toInfCrossSection=83.0;
|
256 |
|
|
|
257 |
|
|
// float totEventsQCD50to100=207418.0; // not used
|
258 |
|
|
float totEventsQCD100to250=638792.0;
|
259 |
|
|
float totEventsQCD250to500=344454.0;
|
260 |
|
|
float totEventsQCD500to1000=10e10;//unknown but now suppressed. (no event passes anyway)
|
261 |
|
|
float totEventsQCD1000toInf=163185.0;
|
262 |
|
|
|
263 |
|
|
float totEventsZjets = 32005720.0;//summer11
|
264 |
|
|
//spring:2313911.0;//2743142.0; // DYJetsToLL_TuneZ2_M-50_7TeV-madgraph-tauola
|
265 |
|
|
float totEventsTTbar = 3701947.0;//summer11
|
266 |
|
|
//1161621.0;//Spring//1144028.0; // PabloV13/TTJets_TuneZ2_7TeV-madgraph-tauola
|
267 |
|
|
float totEventsWJets = 53739703.0;//summer11
|
268 |
|
|
//15010237.0;//spring//14350756.0; /// WJetsToLNu_TuneZ2_7TeV-madgraph-tauola.root
|
269 |
|
|
float totEventsZnunu = 2106977.0;//2167964.0; //ZinvisibleJets_7TeV-madgraph.root
|
270 |
|
|
float totEventsVVJets = 959076.0;//509072.0;
|
271 |
|
|
float totEventsSingleTopS = 493868.0;//489472.0;
|
272 |
|
|
float totEventsSingleTopT = 475460.0;//477610.0;
|
273 |
|
|
float totEventsSingleTopU = 489417.0;//477599.0;
|
274 |
|
|
|
275 |
|
|
|
276 |
|
|
Int_t nice_blue = TColor::GetColor("#2E9AFE");
|
277 |
|
|
Int_t nice_green = TColor::GetColor("#81f781");
|
278 |
|
|
Int_t nice_red = TColor::GetColor("#F78181");
|
279 |
|
|
Int_t nice_pink = TColor::GetColor("#F781BE");
|
280 |
|
|
Int_t nice_orange= TColor::GetColor("#F7BE81");//#FA9624
|
281 |
|
|
Int_t nice_black = TColor::GetColor("#2A0A1B");//black with a bit of purple :-)
|
282 |
|
|
|
283 |
|
|
|
284 |
|
|
Int_t dy_color = nice_blue;
|
285 |
|
|
Int_t wjets_color = kGray;
|
286 |
|
|
Int_t ttbar_color = nice_green;
|
287 |
|
|
Int_t singletop_color = nice_orange;
|
288 |
|
|
Int_t qcd_color = nice_black;
|
289 |
|
|
Int_t diboson_color = nice_pink;
|
290 |
|
|
Int_t lm_color = kRed;
|
291 |
|
|
|
292 |
|
|
dy_color = kYellow;
|
293 |
|
|
wjets_color = kGray;
|
294 |
|
|
ttbar_color = kMagenta+2;
|
295 |
|
|
singletop_color = kBlue;
|
296 |
|
|
qcd_color = kPink;
|
297 |
|
|
diboson_color = kGreen;
|
298 |
|
|
lm_color = kViolet+7;
|
299 |
|
|
|
300 |
|
|
// allsamples.AddSample("/scratch/buchmann/AllData_Jun10___DCS_648pb_MoreTriggers4_DCS.root","Data",1,1,true,false,0,kBlack);
|
301 |
|
|
// allsamples.AddSample("/scratch/buchmann/AllData_Jun10___486pb_MoreTriggers3.root","Data",1,1,true,false,0,kBlack);
|
302 |
|
|
//allsamples.AddSample("/scratch/buchmann/AllData_Jun17_160404-166861_real_complete_2.root","Data",1,1,true,false,0,kBlack);
|
303 |
|
|
allsamples.AddSample("/scratch/buchmann/ntuples2011/data/AllData_Jul6_1078pb.root","Data",1,1,true,false,0,kBlack);
|
304 |
|
|
|
305 |
|
|
// allsamples.AddSample("/scratch/buchmann/MCSpring2011PU__inclPFvarss__PURW_160404_166861/TTJets_TuneZ2_7TeV-madgraph-tauola.root","t#bar{t}",totEventsTTbar,TTbarCrossSection,false,false,1,ttbar_color);//spring11
|
306 |
|
|
allsamples.AddSample("/scratch/fronga/MC_v1.29/TTJets_TuneZ2_7TeV-madgraph-tauola_Summer11_3.root","t#bar{t}",totEventsTTbar,TTbarCrossSection,false,false,1,ttbar_color);//summer11
|
307 |
|
|
// allsamples.AddSample("/scratch/buchmann/MCSpring2011PU__inclPFvarss__PURW_160404_166861/WJetsToLNu_TuneZ2_7TeV-madgraph-tauola.root","WJets",totEventsWJets,WJetsCrossSection,false,false,3,wjets_color); //spring11
|
308 |
|
|
allsamples.AddSample("/scratch/fronga/MC_v1.29/WJetsToLNu_TuneZ2_7TeV-madgraph-tauola.root","WJets",totEventsWJets,WJetsCrossSection,false,false,3,wjets_color);//summer
|
309 |
|
|
allsamples.AddSample("/scratch/buchmann/MCSpring2011PU__inclPFvarss__PURW_160404_166861/VVJetsTo4L_TuneD6T_7TeV-madgraph-tauola.root","Dibosons",totEventsVVJets,VVJetsCrossSection,false,false,4,diboson_color);
|
310 |
|
|
allsamples.AddSample("/scratch/buchmann/MCSpring2011PU__inclPFvarss__PURW_160404_166861/TToBLNu_TuneZ2_s-channel_7TeV-madgraph_2.root","SingleTop",totEventsSingleTopS,SingleTopSCrossSection,false,false,2,singletop_color);
|
311 |
|
|
allsamples.AddSample("/scratch/buchmann/MCSpring2011PU__inclPFvarss__PURW_160404_166861/TToBLNu_TuneZ2_t-channel_7TeV-madgraph.root","SingleTop",totEventsSingleTopT,SingleTopTCrossSection,false,false,2,singletop_color);
|
312 |
|
|
allsamples.AddSample("/scratch/buchmann/MCSpring2011PU__inclPFvarss__PURW_160404_166861/TToBLNu_TuneZ2_tW-channel_7TeV-madgraph.root","SingleTop",totEventsSingleTopU,SingleTopUCrossSection,false,false,2,singletop_color);
|
313 |
|
|
allsamples.AddSample("/scratch/buchmann/MCSpring2011PU__inclPFvarss__PURW_160404_166861/ZinvisibleJets_7TeV-madgraph.root","Z nunu",totEventsZnunu,ZnunuCrossSection,false,false,4,diboson_color);
|
314 |
|
|
// allsamples.AddSample("/scratch/buchmann/MCSpring2011PU__inclPFvarss__PURW_160404_166861/QCD_TuneD6T_HT-100To250_7TeV-madgraph.root","QCD",totEventsQCD100to250,QCD100to250CrossSection,false,false,5,qcd_color);
|
315 |
|
|
// allsamples.AddSample("/scratch/buchmann/MCSpring2011PU__inclPFvarss__PURW_160404_166861/QCD_TuneD6T_HT-250To500_7TeV-madgraph.root","QCD",totEventsQCD250to500,QCD250to500CrossSection,false,false,5,qcd_color);
|
316 |
|
|
// allsamples.AddSample("/scratch/buchmann/MCSpring2011PU__inclPFvarss__PURW_160404_166861/QCD_TuneD6T_HT-500To1000_7TeV-madgraph.root","QCD",totEventsQCD500to1000,QCD500to1000CrossSection,false,false,5,qcd_color);
|
317 |
|
|
// allsamples.AddSample("/scratch/buchmann/MCSpring2011PU__inclPFvarss__PURW_160404_166861/QCD_TuneD6T_HT-1000_7TeV-madgraph.root","QCD",totEventsQCD1000toInf,QCD1000toInfCrossSection,false,false,5,qcd_color);
|
318 |
|
|
// allsamples.AddSample("/scratch/buchmann/MCSpring2011PU__inclPFvarss__PURW_160404_166861/DYJetsToLL_TuneZ2_M-50_7TeV-madgraph-tauola.root","ZJets",totEventsZjets,ZJetsCrossSection,false,false,6,dy_color);//spring11
|
319 |
|
|
allsamples.AddSample("/scratch/fronga/MC_v1.29/DYJetsToLL_TuneZ2_M-50_7TeV-madgraph-tauola_Summer11.root","ZJets",totEventsZjets,ZJetsCrossSection,false,false,6,dy_color);//summer11
|
320 |
|
|
allsamples.AddSample("/scratch/buchmann/MCSpring2011PU__inclPFvarss__PURW_160404_166861/LM4_SUSY_sftsht_7TeV-pythia6.root","LM4",218536,1.879,false,true,7,lm_color);
|
321 |
buchmann |
1.11 |
|
322 |
buchmann |
1.7 |
if(showList) allsamples.ListSamples();
|
323 |
|
|
|
324 |
|
|
}
|
325 |
buchmann |
1.6 |
|