Skip to content

Commit

Permalink
Update make_plots with newly run data
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander Gude committed May 8, 2014
1 parent f7228b1 commit 3f01835
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions ZFinder/Event/scripts/cross_check_plots/make_plots.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,29 +12,29 @@

int main() {
// Data
TFile* data_tfile = new TFile("/local/cms/user/gude/alex_thesis/ZFinder_RooWorkspaces/20140501_DoubleElectron_2012B/20140501_DoubleElectron_2012B_hadded.root", "READ");
TFile* data_tfile = new TFile("/local/cms/user/gude/alex_thesis/ZFinder_RooWorkspaces/20140506_DoubleElectron_2012B/20140506_DoubleElectron_2012B_hadded.root", "READ");
DataConfig data_config(
data_tfile,
"ZFinder/ET-ET Combined Double Reco/7 60 < M_{ee} < 120",
"ZFinder/Combined Double Reco/7 60 < M_{ee} < 120",
"Data",
-1., // -1 means area normalize all MC to match under the signal peak
DATA
);
// Signal MC
TFile* mc_tfile = new TFile("/local/cms/user/gude/alex_thesis/ZFinder_RooWorkspaces/20140504_2012B_reweight_Summer12_DR53X_DYToEE_M-20_CT10_TuneZ2star_8TeV-powheg-pythia6/20140504_2012B_reweight_Summer12_DR53X_DYToEE_M-20_CT10_TuneZ2star_8TeV-powheg-pythia6_hadded.root", "READ");
TFile* mc_tfile = new TFile("/local/cms/user/gude/alex_thesis/ZFinder_RooWorkspaces/20140506_2012B_reweight_Summer12_DR53X_DYToEE_M-20_CT10_TuneZ2star_8TeV-powheg-pythia6/20140506_2012B_reweight_Summer12_DR53X_DYToEE_M-20_CT10_TuneZ2star_8TeV-powheg-pythia6_hadded.root", "READ");
DataConfig mc_config(
mc_tfile,
"ZFinder/ET-ET Combined Double Reco/6 60 < M_{ee} < 120",
"ZFinder/Combined Double Reco/6 60 < M_{ee} < 120",
"Signal MC",
12234.4, // cross section in pb, from https://twiki.cern.ch/twiki/bin/viewauth/CMS/StandardModelCrossSectionsat8TeV
"ZFinder/All Electrons Reco/0 acc(ALL) AND acc(ALL)", // TDir from before any cut
SIGNAL_MC
);
// BG
TFile* bg_tfile = new TFile("/local/cms/user/gude/alex_thesis/ZFinder_RooWorkspaces/20140504_TTBar/20140504_TTBar_hadded.root", "READ");
TFile* bg_tfile = new TFile("/local/cms/user/gude/alex_thesis/ZFinder_RooWorkspaces/20140506_TTBar/20140506_TTBar_hadded.root", "READ");
DataConfig bg_config(
bg_tfile,
"ZFinder/ET-ET Combined Double Reco/6 60 < M_{ee} < 120",
"ZFinder/Combined Double Reco/6 60 < M_{ee} < 120",
"T-TBar",
24., // TTBar Inclusive is 245.8 Pb, T->Wq is 0.9621, W->lnu is 0.3257, might be off by a factor of 3!!!!!
"ZFinder/All Electrons Reco/0 acc(ALL) AND acc(ALL)",
Expand Down

0 comments on commit 3f01835

Please sign in to comment.