forked from prasanthkothuri/swan-spark-notebooks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsamples.py
40 lines (38 loc) · 1.05 KB
/
samples.py
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
LUMI = 35900 # in pb
###
BASE = 'NANO_Prod/'
####
samples = {
'SingleMuon' : {
'filename' : 'SingleMuonRun2016C-03Feb2017-v1.root',
'xsec' : None,
'eff' : 1.,
'kfactor' : 1.,
'weight' : 1.,
'color' : 'black',
},
'DYJetsToLL' : {
'filename' : 'DYJetsToLL_M-50_TuneCUETP8M1_13TeV-madgraphMLM-pythia8_ext1-v2.root',
'xsec' : 3.*1921.8,
'eff' : 1.,
'kfactor' : 1.,
'weight' : 1.,
'color' : 'green',
},
'WZ' : {
'filename' : 'WZ_TuneCUETP8M1_13TeV-pythia8-v1.root',
'xsec' : 47.2,
'eff' : 1.,
'kfactor' : 1.,
'weight' : 1.,
'color' : 'mediumblue',
},
# 'ZZ' : {
# 'filename' : 'ZZ_TuneCUETP8M1_13TeV-pythia8-v1.root',
# 'xsec' : 16.6,
# 'eff' : 1.,
# 'kfactor' : 1.,
# 'weight' : 1.,
# 'color' : 'red',
# },
}