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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
|
import FWCore.ParameterSet.Config as cms
from DQMOffline.Trigger.topMonitoring_cfi import topMonitoring
mssmHbbMonitoring = topMonitoring.clone(
FolderName = 'HLT/HIG/default/',
histoPSet = dict(
lsPSet = dict(
nbins = 2500,
xmin = 0.,
xmax = 2500.),
metPSet = dict(
nbins = 30 ,
xmin = 0 ,
xmax = 300),
ptPSet = dict(
nbins = 100 , #60
xmin = 0 ,
xmax = 1000), #300
phiPSet = dict(
nbins = 32 ,
xmin = -3.2 ,
xmax = 3.2 ),
etaPSet = dict(
nbins = 24 ,
xmin = -2.4 ,
xmax = 2.4 ),
htPSet = dict(
nbins = 100 , #60
xmin = 0 ,
xmax = 1000 ), #600
csvPSet = dict(
nbins = 50 ,
xmin = 0.0,
xmax = 1.0 ),
DRPSet = dict(
nbins = 60 ,
xmin = 0.0 ,
xmax = 6.0 ),
invMassPSet = dict(
nbins = 40,
xmin = 0.0 ,
xmax = 80.0 ),
MHTPSet = dict(
nbins = 80 ,
xmin = 60 ,
xmax = 300 ),
#MET and HT binning
metBinning = [0,20,40,60,80,100,125,150,175,200],
HTBinning = [0,20,40,60,80,100,125,150,175,200,300,400,500,700],
#Eta binning
eleEtaBinning = [-2.4,-2.1,-1.5,-0.9,-0.3,0.,0.3,0.9,1.5,2.1,2.4],
jetEtaBinning = [-2.4,-2.1,-1.5,-0.9,-0.3,0.,0.3,0.9,1.5,2.1,2.4],
muEtaBinning = [-2.4,-2.1,-1.5,-0.9,-0.3,0.,0.3,0.9,1.5,2.1,2.4],
#pt binning
elePtBinning = [0,3,5,8,15,20,25,30,40,50,60,80,120,200,400,700],
jetPtBinning = [0,3,5,8,15,20,25,30,40,50,70,100,150,200,400,700,1000,1500],
muPtBinning = [0,3,5,7,10,15,20,30,40,50,70,100,150,200,400,700],
#Eta binning 2D
eleEtaBinning2D = [-2.5,-1.5,-0.6,0.,0.6,1.5,2.5],
jetEtaBinning2D = [-2.5,-1.5,-0.6,0.,0.6,1.5,2.5],
muEtaBinning2D = [-2.5,-1.5,-0.6,0.,0.6,1.5,2.5],
#pt binning 2D
elePtBinning2D = [0,15,20,30,40,60,80,100,200,400],
jetPtBinning2D = [0,15,20,30,40,60,80,100,200,400],
muPtBinning2D = [0,15,20,30,40,60,80,100,200,400],
#HT and phi binning 2D
HTBinning2D = [0,20,40,70,100,150,200,400,700],
phiBinning2D = [-3.1416,-1.8849,-0.6283,0.6283,1.8849,3.1416]
),
applyLeptonPVcuts = False,
leptonPVcuts = dict(
dxy = 9999. ,
dz = 9999. ),
met = "pfMet", # pfMet
jets = "ak4PFJetsCHS", # ak4PFJets, ak4PFJetsCHS, ak4PFJets
electrons = "gedGsfElectrons", # while pfIsolatedElectronsEI are reco::PFCandidate !
muons = "muons", # while pfIsolatedMuonsEI are reco::PFCandidate !
#Suvankar
vertices = "offlinePrimaryVertices",
# Marina
btagAlgos = ["pfCombinedSecondaryVertexV2BJetTags"],
workingpoint = 0.92, # tight
HTdefinition = 'pt>30 & abs(eta)<2.5',
#leptJetDeltaRmin = 0.4, # MuonJet dRcone
#always monitor CSV score for one jet if set DeltaRmin = 0.0 and WP to -1
#nbjets = 1,
#bjetSelection = 'pt>30 & abs(eta)<2.4',
numGenericTriggerEventPSet = dict(
andOr = False,
andOrHlt = True,# True:=OR; False:=AND
hltInputTag = "TriggerResults::HLT", #change to HLT for PR !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
errorReplyHlt = False,
verbosityLevel = 0),
denGenericTriggerEventPSet = dict(
andOr = False,
andOrHlt = True, # True:=OR; False:=AND
hltInputTag = "TriggerResults::HLT", #change to HLT for PR !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
errorReplyHlt = False,
dcsInputTag = "scalersRawToDigi",
dcsRecordInputTag = "onlineMetaDataDigis",
dcsPartitions = [ 24, 25, 26, 27, 28, 29], # 24-27: strip, 28-29: pixel, we should add all other detectors !
andOrDcs = False,
errorReplyDcs = True,
verbosityLevel = 0)
)
|