-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCustomConfiguration.py
More file actions
55 lines (47 loc) · 2.27 KB
/
CustomConfiguration.py
File metadata and controls
55 lines (47 loc) · 2.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
Job = {
"Batch" : False,
"Quiet" : False,
"Analysis" : "CustomAnalysis",
"Fraction" : 0.1,
"MaxEvents" : 1234567890,
"OutputDirectory" : "results/"
}
#VBSAnalysis
Processes = {
# Diboson processes
"WW" : "Input/MC/mc_105985.WW.root",
"ZZ" : "Input/MC/mc_105986.ZZ.root",
"WZ" : "Input/MC/mc_105987.WZ.root",
# single top processes
"stop_tchan_top" : "Input/MC/mc_110090.stop_tchan_top.root",
"stop_tchan_antitop" : "Input/MC/mc_110091.stop_tchan_antitop.root",
"stop_schan" : "Input/MC/mc_110119.stop_schan.root",
"stop_wtchan" : "Input/MC/mc_110140.stop_wtchan.root",
# top pair processes
"ttbar_had" : "Input/MC/mc_117049.ttbar_had.root",
"ttbar_lep" : "Input/MC/mc_117050.ttbar_lep.root",
# Z+jets processes
"Zee" : "Input/MC/mc_147770.Zee.root",
"Zmumu" : "Input/MC/mc_147771.Zmumu.root",
"Ztautau" : "Input/MC/mc_147772.Ztautau.root",
# Low Mass Z+jets processes
"DYeeM08to15" : "Input/MC/mc_173041.DYeeM08to15.root",
"DYeeM15to40" : "Input/MC/mc_173042.DYeeM15to40.root",
"DYmumuM08to15" : "Input/MC/mc_173043.DYmumuM08to15.root",
"DYmumuM15to40" : "Input/MC/mc_173044.DYmumuM15to40.root",
"DYtautauM08to15" : "Input/MC/mc_173045.DYtautauM08to15.root",
"DYtautauM15to40" : "Input/MC/mc_173046.DYtautauM15to40.root",
# W+jets processes
"WenuWithB" : "Input/MC/mc_167740.WenuWithB.root",
"WenuJetsBVeto" : "Input/MC/mc_167741.WenuJetsBVeto.root",
"WenuNoJetsBVeto" : "Input/MC/mc_167742.WenuNoJetsBVeto.root",
"WmunuWithB" : "Input/MC/mc_167743.WmunuWithB.root",
"WmunuJetsBVeto" : "Input/MC/mc_167744.WmunuJetsBVeto.root",
"WmunuNoJetsBVeto" : "Input/MC/mc_167745.WmunuNoJetsBVeto.root",
"WtaunuWithB" : "Input/MC/mc_167746.WtaunuWithB.root",
"WtaunuJetsBVeto" : "Input/MC/mc_167747.WtaunuJetsBVeto.root",
"WtaunuNoJetsBVeto" : "Input/MC/mc_167748.WtaunuNoJetsBVeto.root",
# Data
"data_Egamma" : "Input/Data/DataEgamma*.root",
"data_Muons" : "Input/Data/DataMuons*.root",
}