Skip to content

Commit

Permalink
Merge pull request #16727 from FHead/CMSSW_8_0_X_HIHighPTDQM_PhotonAn…
Browse files Browse the repository at this point in the history
…dPF120

HIN High-pT trigger DQM for 80X (CMSHLT-1129, CMSHLT-1135, CMSHLT-1137)
  • Loading branch information
cmsbuild committed Nov 29, 2016
2 parents f069a51 + bb1e0db commit 051a1a6
Showing 1 changed file with 49 additions and 1 deletion.
50 changes: 49 additions & 1 deletion DQMOffline/Trigger/python/HILowLumiHLTOfflineSource_cfi.py
Expand Up @@ -335,13 +335,15 @@ def getPAHighMultHighPtVPSet():
def getPAHighPtVPSet():
ret=cms.VPSet()
jetTypes = ["Calo", "PF"]
jetThresholds = [40, 60, 80, 100]
jetThresholds = [40, 60, 80, 100, 120]
jetThresholdsFor1 = [40, 60]
jetThresholdsFor2 = [40]
jetThresholdsForMB = [40]
bjetThresholds = [40, 60, 80]
dijetAveThresholds = [40, 60, 80]
gammaThresholds = [10, 15, 20, 30, 40]
gammaMBThresholds = [15, 20]
gammaThresholdsEGJet = [30, 40]
isogammaThresholds = [20]
eleThresholds = [20]

Expand All @@ -351,6 +353,8 @@ def getPAHighPtVPSet():

for jType in jetTypes:
for t in jetThresholds:
if jType == "Calo" and t == 120:
continue
partialPathName = "HLT_PAAK4" + jType + "Jet" + str(t) + "_Eta5p1_v"
hltSingleJet = cms.PSet(
triggerSelection = cms.string(partialPathName+"*"),
Expand Down Expand Up @@ -526,6 +530,50 @@ def getPAHighPtVPSet():
)
ret.append(hltSingleGamma)

for t in gammaMBThresholds:
partialPathName = "HLT_PASinglePhoton" + str(t) + "_Eta3p1_SeededWithMB_v"
hltSingleGamma = cms.PSet(
triggerSelection = cms.string(partialPathName+"*"),
handlerType = cms.string("FromHLT"),
partialPathName = cms.string(partialPathName),
partialFilterName = cms.string("hltHIPhoton"),
dqmhistolabel = cms.string("hltHIPhoton" + str(t)),
mainDQMDirname = cms.untracked.string(dirname),
singleObjectsPreselection = cms.string("1==1"),
singleObjectDrawables = cms.VPSet(
cms.PSet (name = cms.string("pt"), expression = cms.string("pt"), bins = cms.int32(100), min = cms.double(20), max = cms.double(220)),
cms.PSet (name = cms.string("eta"), expression = cms.string("eta"), bins = cms.int32(100), min = cms.double(-3.0), max = cms.double(3.0)),
cms.PSet (name = cms.string("phi"), expression = cms.string("phi"), bins = cms.int32(100), min = cms.double(-3.15), max = cms.double(3.15))
),
combinedObjectSelection = cms.string("1==1"),
combinedObjectSortCriteria = cms.string("at(0).pt"),
combinedObjectDimension = cms.int32(1),
combinedObjectDrawables = cms.VPSet()
)
ret.append(hltSingleGamma)

for t in gammaThresholdsEGJet:
partialPathName = "HLT_PASinglePhoton" + str(t) + "_L1EGJet_Eta3p1_v"
hltSingleGamma = cms.PSet(
triggerSelection = cms.string(partialPathName+"*"),
handlerType = cms.string("FromHLT"),
partialPathName = cms.string(partialPathName),
partialFilterName = cms.string("hltHIPhoton"),
dqmhistolabel = cms.string("hltHIPhoton" + str(t)),
mainDQMDirname = cms.untracked.string(dirname),
singleObjectsPreselection = cms.string("1==1"),
singleObjectDrawables = cms.VPSet(
cms.PSet (name = cms.string("pt"), expression = cms.string("pt"), bins = cms.int32(100), min = cms.double(20), max = cms.double(220)),
cms.PSet (name = cms.string("eta"), expression = cms.string("eta"), bins = cms.int32(100), min = cms.double(-3.0), max = cms.double(3.0)),
cms.PSet (name = cms.string("phi"), expression = cms.string("phi"), bins = cms.int32(100), min = cms.double(-3.15), max = cms.double(3.15))
),
combinedObjectSelection = cms.string("1==1"),
combinedObjectSortCriteria = cms.string("at(0).pt"),
combinedObjectDimension = cms.int32(1),
combinedObjectDrawables = cms.VPSet()
)
ret.append(hltSingleGamma)

for t in gammaThresholds:
partialPathName = "HLT_PAPhoton" + str(t) + "_Eta3p1_PPStyle_v"
hltSingleGamma = cms.PSet(
Expand Down

0 comments on commit 051a1a6

Please sign in to comment.