-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPlotConf_CustomAnalysis.py
More file actions
103 lines (90 loc) · 3.63 KB
/
PlotConf_CustomAnalysis.py
File metadata and controls
103 lines (90 loc) · 3.63 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
config = {
"Luminosity": 1000,
"InputDirectory": "results",
"Histograms" : {
"WtMass" : {"xtitle" : "m_{T}^{W} [GeV]"},
"etmiss" : {"xtitle" : "E_{T}^{Miss} [GeV]"},
"lep_n" : {"xndiv" : 10},
"lep_pt" : {},
"lep_eta" : {},
"lep_E" : {},
"lep_phi" : {"y_margin" : 1},
"lep_charge" : {"y_margin" : 1, "xndiv" : 4},
"lep_type" : {"y_margin" : 0.5, "xtitle" : "|PDG id|^{lep}"},
"leadlep_pt" : {},
"leadlep_eta" : {"y_margin" : 0.5},
"leadlep_E" : {},
"leadlep_phi" : {"y_margin" : 1},
"leadlep_charge" : {"y_margin" : 1, "xndiv" : 4},
"leadlep_type" : {"y_margin" : 0.5, "xtitle" : "|PDG id|^{leadlep}"},
"traillep_pt" : {},
"traillep_eta" : {"y_margin" : 0.5},
"traillep_E" : {},
"traillep_phi" : {"y_margin" : 1},
"traillep_charge" : {"y_margin" : 1, "xndiv" : 4},
"traillep_type" : {"y_margin" : 0.5, "xtitle" : "|PDG id|^{traillep}"},
"deltaTheta" : {},
"invMass" : {"xtitle" : "m_{ll} [GeV]"},
"invMass2" : {"xtitle" : "m_{ll} [GeV]"},
"WtMass" : {"xtitle" : "m_{T}^{W} [GeV]"},
"btag" : {},
# "lep_ptconerel30" : {},
# "lep_etconerel20" : {},
# "lep_d0" : {},
# "lep_z0" : {},
"n_jets" : {"xndiv" : 10},
"jet_pt" : {},
"jet_m" : {},
"jet_jvf" : {"y_margin" : 0.4},
"jet_eta" : {"y_margin" : 0.5},
"jet_MV1" : {"y_margin" : 0.3},
"vxp_z" : {},
# "pvxp_n" : {},
},
"Paintables": {
"Stack": {
"Order" : ["WW","WZ","ZZ", "DrellYan", "W", "Z", "stop", "ttbar"],
"Processes" : {
"WW" : {
"Color" : "#fa7921",
"Contributions" : ["WW"]},
"WZ" : {
"Color" : "#2177f9",
"Contributions" : ["WZ"]},
"ZZ" : {
"Color" : "#fc1bb1",
"Contributions" : ["ZZ"]},
"DrellYan": {
"Color" : "#5bc0eb",
"Contributions" : ["DYeeM08to15", "DYeeM15to40", "DYmumuM08to15", "DYmumuM15to40", "DYtautauM08to15", "DYtautauM15to40"]},
"W": {
"Color" : "#e55934",
"Contributions" : ["WenuJetsBVeto", "WenuWithB", "WenuNoJetsBVeto", "WmunuJetsBVeto", "WmunuWithB", "WmunuNoJetsBVeto", "WtaunuJetsBVeto", "WtaunuWithB", "WtaunuNoJetsBVeto"]},
"Z": {
"Color" : "#086788",
"Contributions" : ["Zee", "Zmumu", "Ztautau"]},
"stop": {
"Color" : "#fde74c",
"Contributions" : ["stop_tchan_top", "stop_tchan_antitop", "stop_schan", "stop_wtchan"]},
"ttbar": {
"Color" : "#9bc53d",
"Contributions" : ["ttbar_lep", "ttbar_had"]}
}
},
"data" : {
"Contributions": ["data_Egamma", "data_Muons"]}
},
"Depictions": {
"Order": ["Main", "Data/MC"],
"Definitions" : {
"Data/MC": {
"type" : "Agreement",
"Paintables" : ["data", "Stack"]
},
"Main": {
"type" : "Main",
"Paintables": ["Stack", "data"]
},
}
},
}