ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/cbrown/Development/Plotting/Modules/ActiveSamples.C
Revision: 1.24
Committed: Wed Jul 25 14:36:38 2012 UTC (12 years, 9 months ago) by fronga
Content type: text/plain
Branch: MAIN
Changes since 1.23: +11 -13 lines
Log Message:
Invert tau-tau and other ll DY for clarity.
Removed obsolete samples.
Added more ttV samples.

File Contents

# User Rev Content
1 buchmann 1.1 #include <iostream>
2     #include <vector>
3     #include <sys/stat.h>
4     #include <unistd.h>
5    
6     #include <TMath.h>
7     #include <TColor.h>
8     #include <TPaveText.h>
9     #include <TRandom.h>
10     #include <TF1.h>
11    
12     #ifndef SampleClassLoaded
13     #include "ActiveSamples.C"
14     #endif
15    
16     #ifndef Verbosity
17     #define Verbosity 0
18     #endif
19     #ifndef HUSH
20     #define HUSH 1
21     #endif
22    
23     void define_SMS_sample(bool showList, samplecollection &allsamples, samplecollection &signalsamples, samplecollection &scansample, bool loadall=false)
24     {
25     char hostname[1023];
26     gethostname(hostname,1023);
27    
28     /*
29    
30     CRUCIAL: The NAME needs to contain either "SMS" or "mSUGRA" for the SUSY scan algorithm (to be able to distinguish the two) -- this is now done automatically based on PlottingSetup::ScanSampleDirectory
31    
32     */
33    
34     string prefix="/shome/";
35     if((int)((string)hostname).find("falda")>-1) prefix="/scratch/";
36     string mSUGRAorSMS="mSUGRA";
37     if((int)((string)PlottingSetup::ScanSampleDirectory).find("SMS")>-1) mSUGRAorSMS="SMS";
38     if((int)((string)PlottingSetup::ScanSampleDirectory).find("GMSB")>-1) mSUGRAorSMS="GMSB";
39    
40     /// 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)
41     /// If you have different scans (e.g. you have a T5zzl one as well) you can create an additional directory such as SMS_T5zzl, but you need to change that below and in SUSYScan.C as well (where the files are loaded)
42 buchmann 1.5 // scansample.AddSample(prefix+"buchmann/ntuples/"+PlottingSetup::ScanSampleDirectory+"/"+mSUGRAorSMS+"_clean_splitup_0_0.root",mSUGRAorSMS,1,1,false,true,0,kRed); // there is only one sample in the scan; we give each event weight "1"
43     // scansample.AddSample("/scratch/buchmann/buchmann/AllSamplesStartingAt10GeV_rest5_mSUGRA/mSUGRA_dilepton_m0-220to3000_m12-100to1000_tanb-10andA0-0_7TeV-Pythia6Z/output_8.root","mSUGRA",1,1,false,true,0,kRed); // there is only one sample in the scan; we give each event weight "1"
44 buchmann 1.9 // scansample.AddSample("/shome/lbaeni/jzb/DileptonmSUGRAScan__pieces/mSUGRA_M0_400__M12_400.root","mSUGRA",1,1,false,true,0,kRed); // there is only one sample in the scan; we give each event weight "1"
45 buchmann 1.5
46    
47    
48 buchmann 1.1
49     if(loadall) {
50     for(int ix=0;ix<PlottingSetup::ScanXzones;ix++) {
51     for(int iy=1;iy<PlottingSetup::ScanYzones;iy++) {//note: the "zero-zero" sample is already loaded above!
52     scansample.AddSample((prefix+"buchmann/ntuples/"+PlottingSetup::ScanSampleDirectory+"/"+mSUGRAorSMS+"_clean_splitup_"+any2string(ix)+"_"+any2string(iy)+".root"),mSUGRAorSMS,1,1,false,true,ix*PlottingSetup::ScanXzones+iy,kRed); // there is only one sample in the scan; we give each event weight "1"
53     }
54     }
55     }
56    
57    
58     flag_this_change(__FUNCTION__,__LINE__,true);//PlottingSetup::RestrictToMassPeak
59 buchmann 1.5 if(PlottingSetup::RestrictToMassPeak==false) {
60 buchmann 1.1 PlottingSetup::cutmass=PlottingSetup::openmasscut;
61     // PlottingSetup::sidebandcut=TCut("mll<2&&mll>3");//impossible cut - because we don't want any sidebands!
62     PlottingSetup::sidebandcut=TCut("SideBandsHaveBeenCalledForOffPeakAnalysis__ERROR==1");//this will trigger errors whenever sidebands are called - perfect for checking any remaining uses (checked, and no uses were found).
63     PlottingSetup::genMassCut=PlottingSetup::openGenmasscut;//impossible cut - because we don't want any sidebands!
64 buchmann 1.5 PlottingSetup::requireZ=false;
65 buchmann 1.1 }
66 buchmann 1.9 dout << "Currently configuration: The mass cut is \"" << PlottingSetup::cutmass << "\" and RestrictToMassPeak is currently set to " << PlottingSetup::RestrictToMassPeak << endl;
67 buchmann 1.12
68    
69 buchmann 1.1 }
70    
71    
72 buchmann 1.3 void define_samples(bool showList, samplecollection &allsamples, samplecollection &signalsamples, samplecollection &scansample, samplecollection &raresample, samplecollection &systsamples, samplecollection &qcdsamples)
73 buchmann 1.1 {
74 buchmann 1.3
75     /*
76     Good sources for XS:
77     https://twiki.cern.ch/twiki/bin/view/CMS/ProductionSummer2011
78     e.g.
79     https://twiki.cern.ch/twiki/bin/view/CMS/ProductionSummer2011#PYTHIA6
80    
81     In general, all the xsec for datasets are in PREP, eg:
82     http://cms.cern.ch/iCMS/prep/campaignmanagement?id=Summer11
83    
84     or
85    
86     http://cms.cern.ch/iCMS/prep/requestmanagement?dsn=QCD_Pt-15to30_TuneZ2_7TeV_pythia6&campid=Summer11
87     */
88    
89 buchmann 1.10 // source for 8 TeV: https://twiki.cern.ch/twiki/bin/viewauth/CMS/StandardModelCrossSectionsat8TeV
90    
91 buchmann 1.1 flag_this_change(__FUNCTION__,__LINE__,true);//PlottingSetup::RestrictToMassPeak
92     if(!PlottingSetup::RestrictToMassPeak) {
93     PlottingSetup::cutmass=PlottingSetup::openmasscut;
94     PlottingSetup::sidebandcut=TCut("mll<2&&mll>3");//impossible cut - because we don't want any sidebands!
95     PlottingSetup::genMassCut=PlottingSetup::openGenmasscut;//impossible cut - because we don't want any sidebands!
96     }
97    
98     float ZJetsCrossSection = 3048.0; //NNLO----------------------------------
99 fronga 1.21 if (PlottingSetup::is2012) ZJetsCrossSection=3503.71;
100 buchmann 1.10 // at 8 TeV: 3503.71 (https://twiki.cern.ch/twiki/bin/view/CMS/Zpt8TeV)
101 buchmann 1.9 float LowZJetsCrossSection = 11908; //https://twiki.cern.ch/twiki/bin/view/CMS/TWikiTop2011DataMCTrig
102 fronga 1.21 if (PlottingSetup::is2012) LowZJetsCrossSection = 11050*0.069*1.15; // LO xs * filter eff * k-factor (same as ZJets)
103 buchmann 1.10
104 buchmann 1.1 float TTbarCrossSection = 165.0;//(NLO) ---- 165.0; // approx. NNLO-----
105 buchmann 1.10 if(PlottingSetup::is2012) TTbarCrossSection=225.197;
106     // at 8 TeV: 225.197 (https://twiki.cern.ch/twiki/bin/view/CMS/Zpt8TeV)
107 buchmann 1.1 float WJetsCrossSection = 31314.0;//NNLO-------3.131e4; //NNLO------------
108     float ZnunuCrossSection = 5760.0;//NNLO -------4.5e+3; //(LO);------------
109     //Single top x-sections from here:
110     //https://twiki.cern.ch/twiki/bin/view/CMS/SingleTopSigma
111     float SingleTopSCrossSection = 4.63; // NLO;----------------------------------
112     float SingleTopTCrossSection = 64.57; // NLO;--------------------------------
113     float SingleTopUCrossSection = 15.74; // NLO;----------------------------------
114     float VVJetsCrossSection = 4.8; // LO;-------------------------------------
115 fronga 1.23 float LM3CrossSection = 0.0; // 2011: don't know the x-section
116     if(PlottingSetup::is2012) LM3CrossSection=5.21678; //(only LO, no k factor)
117 buchmann 1.12 float LM4CrossSection = 1.879*1.35; // k*LO
118 buchmann 1.14 if(PlottingSetup::is2012) LM4CrossSection=2.88199; //(only LO, no k factor)
119 buchmann 1.13 float LM6CrossSection = 0.3104*1.30; // k*LO
120 buchmann 1.14 if(PlottingSetup::is2012) LM6CrossSection=0.501773;//(only LO, no k factor)
121 buchmann 1.5 float LM8CrossSection = 0.7300*1.41; // k*LO
122 buchmann 1.15 if(PlottingSetup::is2012) LM8CrossSection=1.14;
123 buchmann 1.1
124     long totEventsZjets = 32005720;//summer11
125 buchmann 1.8 long totEventslowZjets = 10272470;
126 buchmann 1.2
127 buchmann 1.1 long totEventsTTbar = 3701947;//summer11
128 buchmann 1.7 long totEventsWJets = 56674902;//summer11
129 buchmann 1.1 long totEventsZnunu = 2106977;//2167964.0; //ZinvisibleJets_7TeV-madgraph.root
130     long totEventsVVJets = 959076;//509072.0;
131     long totEventsSingleTopS = 493868;//489472.0;
132     long totEventsSingleTopT = 475460;//477610.0;
133     long totEventsSingleTopU = 489417;//477599.0;
134    
135     Int_t nice_blue = TColor::GetColor("#2E9AFE");
136     Int_t nice_green = TColor::GetColor("#81f781");
137 buchmann 1.9 // Int_t nice_red = TColor::GetColor("#F78181");
138 buchmann 1.1 Int_t nice_pink = TColor::GetColor("#F781BE");
139     Int_t nice_orange= TColor::GetColor("#F7BE81");//#FA9624
140     Int_t nice_black = TColor::GetColor("#2A0A1B");//black with a bit of purple :-)
141    
142    
143     Int_t dy_color = nice_blue;
144     Int_t wjets_color = kGray;
145     Int_t ttbar_color = nice_green;
146     Int_t singletop_color = nice_orange;
147     Int_t qcd_color = nice_black;
148     Int_t diboson_color = nice_pink;
149     Int_t lm_color = kRed;
150    
151     dy_color = kYellow;
152     wjets_color = kGray;
153     ttbar_color = kMagenta+2;
154     singletop_color = kBlue;
155     qcd_color = kPink;
156     diboson_color = kGreen+2;
157     lm_color = kViolet+7;
158    
159 buchmann 1.9 // Int_t rare_color = nice_blue;
160 buchmann 1.1
161     char hostname[1023];
162     gethostname(hostname,1023);
163    
164     string prefix="/shome/";
165     if((int)((string)hostname).find("falda")>-1) prefix="/scratch/";
166    
167 buchmann 1.10 if(!PlottingSetup::is2012) {
168     allsamples.AddSample(prefix+"buchmann/ntuples/Data/AllData_Complete_4653_ipb_PAPER.root","Data",1,1,true,false,0,kBlack);
169     allsamples.AddSample(prefix+"buchmann//ntuples/MC/NewSelectionForPaper/NewlyReweighted/DYJetsToLL_TuneZ2_M-50_7TeV-madgraph-tauola_Summer11___NTupleV020300.root","Z+Jets",totEventsZjets,ZJetsCrossSection,false,false,7,dy_color);
170     allsamples.AddSample(prefix+"buchmann/ntuples/MC/Partial_DYJetsToLL_M-10To50_TuneZ2_7TeV-madgraph__Fall11-PU_S6_START42_V14B-v1__AODSIM.root","Z+Jets",totEventslowZjets,LowZJetsCrossSection,false,false,7,dy_color);
171     allsamples.AddSample(prefix+"/buchmann/ntuples/MC/NewSelectionForPaper/CorrectFull2011PileUp/TTJets_TuneZ2_7TeV-madgraph-tauola_Summer11_3.root","t#bar{t}",totEventsTTbar,TTbarCrossSection,false,false,1,ttbar_color);//summer11
172     allsamples.AddSample(prefix+"/buchmann/ntuples/MC/NewSelectionForPaper/CorrectFull2011PileUp/WJetsToLNu_TuneZ2_7TeV-madgraph-tauola_Summer11_2.root","W+Jets",totEventsWJets,WJetsCrossSection,false,false,3,wjets_color);//summer
173     allsamples.AddSample(prefix+"/buchmann/ntuples/MC/NewSelectionForPaper/CorrectFull2011PileUp/VVJetsTo4L_TuneD6T_7TeV-madgraph-tauola.root","WW/WZ/ZZ",totEventsVVJets,VVJetsCrossSection,false,false,4,diboson_color);
174     allsamples.AddSample(prefix+"/buchmann/ntuples/MC/NewSelectionForPaper/CorrectFull2011PileUp/TToBLNu_TuneZ2_s-channel_7TeV-madgraph_2.root","Single-top",totEventsSingleTopS,SingleTopSCrossSection,false,false,2,singletop_color);
175     allsamples.AddSample(prefix+"/buchmann/ntuples/MC/NewSelectionForPaper/CorrectFull2011PileUp/TToBLNu_TuneZ2_t-channel_7TeV-madgraph.root","Single-top",totEventsSingleTopT,SingleTopTCrossSection,false,false,2,singletop_color);
176     allsamples.AddSample(prefix+"/buchmann/ntuples/MC/NewSelectionForPaper/CorrectFull2011PileUp/TToBLNu_TuneZ2_tW-channel_7TeV-madgraph.root","Single-top",totEventsSingleTopU,SingleTopUCrossSection,false,false,2,singletop_color);
177     allsamples.AddSample(prefix+"/buchmann/ntuples/MC/NewSelectionForPaper/CorrectFull2011PileUp/ZinvisibleJets_7TeV-madgraph.root","Z nunu",totEventsZnunu,ZnunuCrossSection,false,false,4,diboson_color);
178     allsamples.AddSample(prefix+"/buchmann/ntuples/MC/JZBplus/WGstarToLNu2E_TuneZ2_7TeV-madgraph-tauola__Summer11-PU_S4_START42_V11-v1__AODSIM.root","W+#gamma",266882,5.546 ,false,false,5,kGreen);
179 buchmann 1.17 // allsamples.AddSample(prefix+"/buchmann/ntuples/MC/JZBplus/GVJets_7TeV-madgraph-Summer11-PU_S4.root","#gamma+VJets",1067879,56.64 ,false,false,6,kRed);
180 buchmann 1.10 //allsamples.AddSample("/shome/buchmann/ntuples/MC/LM4_SUSY_sftsht_7TeV-pythia6__Summer11-PU_S4_START42_V11-v2_novtx_fixed3___WITHGENINFO.root","LM4",totEventsLM4,LM4CrossSection,false,true,8,lm_color);
181 buchmann 1.17 // allsamples.AddSample("/shome//lbaeni/jzb/ntuples/MC/JZBplus/SignalSamples/LM8_SUSY_sftsht_7TeV-pythia6.root","LM8",totEventsLM8,LM8CrossSection,false,true,8,lm_color);
182 buchmann 1.19
183     // allsamples.AddSample("/shome/lbaeni/jzb/DileptonmSUGRAScan__pieces/mSUGRA_M0_200__M12_440.root","LM8",10000,0.132,false,true,8,lm_color);
184 buchmann 1.17
185 buchmann 1.22
186     PlottingSetup::emuncertOFFPEAK=0.1;
187     write_info(__FUNCTION__,"Have set emu uncertainty to 10% which is the 2011 value - for 2012 this is 25% at the moment due to the low stats ttbar sample");
188 buchmann 1.10 } else {
189    
190     write_info(__FUNCTION__,"Setting up 2012 configuration - once you've stopped looking at 2011 data please make this the default!");
191 buchmann 1.11 PlottingSetup::basicqualitycut=TCut("(pfJetGoodNum40>=2&&pfJetGoodID[0]!=0)&&(pfJetGoodNum40>=2&&pfJetGoodID[1]!=0)"&&PlottingSetup::basiccut);//don't use this for the "essential cut", because we want to plot nJets as well as mll in the inclusive case; we thus use it as an addition nJets cut.
192     PlottingSetup::cutnJets=TCut("pfJetGoodNum40>=3"&&PlottingSetup::basicqualitycut);
193 fronga 1.23
194     // For Kostas' control region
195     // PlottingSetup::basicqualitycut=TCut("(pfJetGoodNum40<=2&&pfJetGoodID[0]!=0)&&(pfJetGoodNum40>=2&&pfJetGoodID[1]!=0)"&&PlottingSetup::basiccut);//don't use this for the "essential cut", because we want to plot nJets as well as mll in the inclusive case; we thus use it as an addition nJets cut.
196     // PlottingSetup::cutnJets=TCut("pfJetGoodNum40<3"&&PlottingSetup::basicqualitycut);
197    
198 buchmann 1.10 PlottingSetup::luminosity=PlottingSetup::luminosity2012;
199     PlottingSetup::lumiuncert=PlottingSetup::lumiuncert2012;
200    
201 buchmann 1.22 // Values for 5.1 /fb (2012, cJZB)
202     PlottingSetup::jzbvariabledata="(jzb[1]+0.064814*pt)";
203     PlottingSetup::jzbvariablemc="(jzb[1]+0.036854*pt)";
204 buchmann 1.16
205 buchmann 1.22
206    
207 buchmann 1.16 if(!PlottingSetup::RestrictToMassPeak) {
208 buchmann 1.22 // Values for 5.1 /fb (2012, iJZB)
209     PlottingSetup::jzbvariabledata="(jzb[1]+0.059979*pt)";
210     PlottingSetup::jzbvariablemc="(jzb[1]+0.034665*pt)";
211 buchmann 1.17
212 buchmann 1.16 }
213 buchmann 1.22
214 fronga 1.23 // // Note: Using same response for bJZB as for cJZB
215     // if(PlottingSetup::DoBTag) {
216     // // Values for 5.1 /fb (2012, bJZB)
217     // PlottingSetup::jzbvariabledata="(jzb[1]+0.092*pt)";
218     // PlottingSetup::jzbvariablemc="(jzb[1]+0.040*pt)";
219     // }
220 buchmann 1.22
221 buchmann 1.16
222 fronga 1.23 SingleTopSCrossSection=5.55;//Top mass: m(top)=173GeV, Default scales: muF=muR=mt, PDF: MSTW2008 NNLO
223     SingleTopTCrossSection=87.1;//Top mass: m(top)=173GeV, Default scales: muF=muR=mt, PDF: MSTW2008 NNLO
224     SingleTopUCrossSection=22.2;//Top mass: m(top)=173GeV, Default scales: muF=muR=mt, PDF: MSTW2008 NNLO
225 buchmann 1.22
226     allsamples.AddSample("/shome/buchmann/ntuples/Data/Data_5100ipb.root","Data",1,1,true,false,0,kBlack);
227 fronga 1.23
228 fronga 1.24 allsamples.AddSample("/shome/fronga/ntuples/8TeV/DYJetsToLLNoTau_M-50_TuneZ2Star_8TeV-madgraph-tarball-Summer12-PU_S7_START52_V9-v2.root","Z+Jets",-30346766,ZJetsCrossSection,false,false,8,dy_color);
229     allsamples.AddSample("/shome/fronga/ntuples/8TeV/DYJetsToLLNoTau_M-10To50filter_8TeV-madgraph-Summer12-PU_S7_START52_V9-v1.root","Z+Jets",-6955271,LowZJetsCrossSection,false,false,8,dy_color);
230     allsamples.AddSample("/shome/fronga/ntuples/8TeV/DYJetsToTauTau_M-50_TuneZ2Star_8TeV-madgraph-tarball-Summer12-PU_S7_START52_V9-v2.root","Z+Jets (#tau#tau)",-30346766,ZJetsCrossSection,false,false,7,kRed-4);
231     allsamples.AddSample("/shome/fronga/ntuples/8TeV/DYJetsToTauTau_M-10To50filter_8TeV-madgraph-Summer12-PU_S7_START52_V9-v1.root","Z+Jets (#tau#tau)",-6955271,LowZJetsCrossSection,false,false,7,kRed-4);
232 fronga 1.23
233     // allsamples.AddSample("/shome/buchmann/ntuples/MC8tev/DYJetsToLL_M-50_TuneZ2Star_8TeV-madgraph-tarball-Summer12-PU_S7_START52_V9-v2.root","Z+Jets",0,ZJetsCrossSection,false,false,7,dy_color);
234     // allsamples.AddSample("/shome/buchmann/ntuples/MC8tev/DYJetsToLL_M-10To50filter_8TeV-madgraph-Summer12-PU_S7_START52_V9-v1.root","Z+Jets",0,LowZJetsCrossSection,false,false,7,dy_color);
235    
236 buchmann 1.22 allsamples.AddSample("/shome/buchmann/ntuples/MC8tev/TTJets_TuneZ2star_8TeV-madgraph-tauola-Summer12-PU_S7_START52_V5-v1.root","t#bar{t}",0,TTbarCrossSection,false,false,1,ttbar_color);//summer11
237     allsamples.AddSample("/shome/buchmann/ntuples/MC8tev/WJetsToLNu_TuneZ2Star_8TeV-madgraph-tarball-Summer12-PU_S7_START52_V9-v1.root","W+Jets",0,36257.2,false,false,3,wjets_color);//summer
238 fronga 1.24
239     // SINGLE-TOP
240 buchmann 1.22 allsamples.AddSample("/shome/buchmann/ntuples/MC8tev/T_s-channel_TuneZ2star_8TeV-powheg-tauola-Summer12-PU_S7_START52_V9-v1.root","Single-top",0,1.76,false,false,2,singletop_color);
241     allsamples.AddSample("/shome/buchmann/ntuples/MC8tev/Tbar_s-channel_TuneZ2star_8TeV-powheg-tauola-Summer12-PU_S7_START52_V9-v1.root","Single-top",0,3.79,false,false,2,singletop_color);
242     allsamples.AddSample("/shome/buchmann/ntuples/MC8tev/Tbar_t-channel_TuneZ2star_8TeV-powheg-tauola-Summer12-PU_S7_START52_V9-v1.root","Single-top",0,56.4,false,false,2,singletop_color);
243     allsamples.AddSample("/shome/buchmann/ntuples/MC8tev/Tbar_tW-channel-DR_TuneZ2star_8TeV-powheg-tauola-Summer12-PU_S7_START52_V9-v1.root","Single-top",0,SingleTopUCrossSection,false,false,2,singletop_color);
244    
245 fronga 1.23 // DIBOSONS: LO with a k-factor
246 buchmann 1.22 allsamples.AddSample("/shome/buchmann/ntuples/MC8tev/ZZJetsTo4L_TuneZ2star_8TeV-madgraph-tauola-Summer12-PU_S7_START52_V9-v3.root","Dibosons",0,0.181,false,false,4,diboson_color);
247 fronga 1.23 allsamples.AddSample("/shome/fronga/ntuples/8TeV/ZZJetsTo2L2Nu_TuneZ2star_8TeV-madgraph-tauola-Summer12-PU_S7_START52_V9-v3.root","Dibosons",0,0.3,false,false,4,diboson_color);
248 buchmann 1.22 allsamples.AddSample("/shome/buchmann/ntuples/MC8tev/WZJetsTo3LNu_TuneZ2_8TeV-madgraph-tauola-Summer12-PU_S7_START52_V9-v2.root","Dibosons",0,1.06,false,false,4,diboson_color);
249 fronga 1.23 allsamples.AddSample("/shome/fronga/ntuples/8TeV/WWJetsTo2L2Nu_TuneZ2star_8TeV-madgraph-tauola-Summer12-PU_S7_START52_V9-v1.root","Dibosons",0,5.0,false,false,4,diboson_color);
250    
251 fronga 1.24 //ttV
252     //allsamples.AddSample("/shome/fronga/ntuples/8TeV/TTZJets_8TeV-madgraph_v2-Summer12-PU_S7_START52_V9-v1.root","ttV",0,0.172,false,false,5,kGreen);
253     //allsamples.AddSample("/shome/fronga/ntuples/8TeV/TTGJets_8TeV-madgraph-Summer12-PU_S7_START52_V9-v1.root", "ttV",0,1.444,false,false,5,kGreen);
254     //allsamples.AddSample("/shome/fronga/ntuples/8TeV/TTWJets_8TeV-madgraph-Summer12-PU_S7_START52_V9-v1.root", "ttV",0,0.2149,false,false,5,kGreen);
255 buchmann 1.22
256    
257 fronga 1.24 // allsamples.AddSample(prefix+"/buchmann/ntuples/MC/JZBplus/WGstarToLNu2E_TuneZ2_7TeV-madgraph-tauola__Summer11-PU_S4_START42_V11-v1__AODSIM.root","W+#gamma",266882,5.546 ,false,false,5,kGreen);
258 buchmann 1.22
259     allsamples.AddSample("/shome/buchmann/ntuples/MC8tev/leo-PYTHIA6_SUSY_LM6_sftsht_8TeV_GEN_FASTSIM-2012_Startup_inTimeOnly.root","LM6",0,LM4CrossSection,false,true,1,lm_color);
260 buchmann 1.12
261 buchmann 1.2 }
262 buchmann 1.10
263 buchmann 1.13 if(PlottingSetup::is2012) {
264 buchmann 1.22 signalsamples.AddSample("/shome/buchmann/ntuples/MC8tev/trash/LM4_leo____leo-PYTHIA6_SUSY_LM4_sftsht_8TeV_GEN_FASTSIM-2012_Startup_inTimeOnly-V3-84.root","LM4",0,LM4CrossSection,false,true,1,lm_color);
265     signalsamples.AddSample("/shome/buchmann/ntuples/MC8tev/leo-PYTHIA6_SUSY_LM6_sftsht_8TeV_GEN_FASTSIM-2012_Startup_inTimeOnly.root","LM6",0,LM6CrossSection,false,true,2,lm_color);
266 fronga 1.23 signalsamples.AddSample("/shome/fronga/ntuples/8TeV/PYTHIA6_SUSY_LM3_sftsht_8TeV_GEN_FASTSIM-2012_Startup_inTimeOnly-V3-leo.root","LM3",0,LM3CrossSection,false,true,3,lm_color);
267 buchmann 1.19 // signalsamples.AddSample("/shome/buchmann/ntuples/MC8tev/leo-PYTHIA6_SUSY_LM8_sftsht_8TeV_GEN_FASTSIM-2012_Startup_inTimeOnly.root","LM8",0,LM6CrossSection,false,true,3,lm_color);
268 fronga 1.23 cutWeight=TCut("(weight*(weight<1000)*(is_data+(!is_data)*((id1==id2)*0.95+(id1!=id2)*0.94)))");
269     //FR cutWeight=TCut("(weight*(weight<1000)*(is_data+(!is_data)*((id1==id2&&id1==0)*0.95+(id1==id2&&id1==1)*0.88+(id1!=id2)*0.92)))");
270     //cutWeight=TCut("(weight*(weight<1000)*((id1==id2&&id1==0)*0.95+(id1==id2&&id1==1)*0.88+(id1!=id2)*0.92))");
271 buchmann 1.13 }
272 buchmann 1.5
273 buchmann 1.1
274     // systsamples.AddSample(prefix+"buchmann/ntuples/MC/NewSelectionForPaper/HighStatSamples/DYJetsToLL_TuneZ2_M-50_7TeV-madgraph-tauola_Fall11-PU_S6_START42_V14B-v1.root","Z+Jets",18368890,ZJetsCrossSection,false,false,7,dy_color);
275    
276 buchmann 1.11 if(!PlottingSetup::is2012) {
277     systsamples.AddSample(prefix+"buchmann//ntuples/MC/NewSelectionForPaper/NewlyReweighted/DYJetsToLL_TuneZ2_M-50_7TeV-madgraph-tauola_Summer11___NTupleV020300.root","Z+Jets",32005720,ZJetsCrossSection,false,false,7,dy_color);
278     systsamples.AddSample(prefix+"buchmann/ntuples/MC/NewSelectionForPaper/HighStatSamples/TTJets_Fall11-PU_S6_START42_V14B.root","t#bar{t}",58370118,TTbarCrossSection,false,false,1,ttbar_color);//summer11
279     } else {
280 buchmann 1.22
281 buchmann 1.19 systsamples.AddSample("/shome/buchmann/ntuples/MC8tev/DYJetsToLL_M-50_TuneZ2Star_8TeV-madgraph-tarball-Summer12-PU_S7_START52_V9-v2.root","Z+Jets",0,ZJetsCrossSection,false,false,7,dy_color);
282 buchmann 1.22 systsamples.AddSample("/shome/buchmann/ntuples/MC8tev/DYJetsToLL_M-10To50filter_8TeV-madgraph-Summer12-PU_S7_START52_V9-v1.root","Z+Jets",0,LowZJetsCrossSection,false,false,7,dy_color);
283     systsamples.AddSample("/shome/buchmann/ntuples/MC8tev/TTJets_TuneZ2star_8TeV-madgraph-tauola-Summer12-PU_S7_START52_V5-v1.root","t#bar{t}",0,TTbarCrossSection,false,false,1,ttbar_color);//summer11
284    
285 buchmann 1.11 }
286 buchmann 1.1
287    
288 buchmann 1.3 // XS taken from:
289     // https://twiki.cern.ch/twiki/bin/view/CMS/QCDGammaPlusJetQCD11005
290    
291 buchmann 1.5 if(!PlottingSetup::RestrictToMassPeak) {
292     PlottingSetup::cutmass=PlottingSetup::openmasscut;
293     PlottingSetup::sidebandcut=TCut("SideBandsHaveBeenCalledForOffPeakAnalysis__ERROR==1");//this will trigger errors whenever sidebands are called - perfect for checking any remaining uses (checked, and no uses were found).
294 buchmann 1.9 PlottingSetup::genMassCut=PlottingSetup::openGenmasscut;
295 buchmann 1.5 PlottingSetup::requireZ=false;
296     }
297    
298 buchmann 1.12
299     if(PlottingSetup::DoBTag) {
300     PlottingSetup::cutnJets=PlottingSetup::cutnJets&&PlottingSetup::bTagRequirement;
301     }
302    
303    
304    
305 fronga 1.23 if(showList) {
306     allsamples.ListSamples();
307     signalsamples.ListSamples();
308     systsamples.ListSamples();
309     }
310 buchmann 1.1
311     }