forked from LPC-DM/CoffeaMaker
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsamples.py
56 lines (54 loc) · 1.5 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
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',
},
'TT' : {
'filename' : 'TT_TuneCUETP8M2T4_13TeV-powheg-pythia8-v1.root',
'xsec' : 831.76,
'eff' : 1.,
'kfactor' : 1.,
'weight' : 1.,
'color' : 'gold',
},
'WW' : {
'filename' : 'WW_TuneCUETP8M1_13TeV-pythia8-v1.root',
'xsec' : 118.7,
'eff' : 1.,
'kfactor' : 1.,
'weight' : 1.,
'color' : 'blue',
},
'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' : 'darkblue',
},
}