Skip to content

Commit

Permalink
Merge pull request #20323 from mtosi/HLTDQMonly92x
Browse files Browse the repository at this point in the history
add sequence for HLTDQM only step on AOD [backport of #20322]
  • Loading branch information
cmsbuild committed Oct 17, 2017
2 parents d3aae47 + c717b8f commit e80203e
Showing 1 changed file with 16 additions and 4 deletions.
20 changes: 16 additions & 4 deletions DQMOffline/Trigger/python/DQMOffline_Trigger_cff.py
Expand Up @@ -81,14 +81,15 @@
from DQMOffline.Trigger.BPHMonitor_cff import *
# remove quadJetAna
from DQMOffline.Trigger.topHLTOfflineDQM_cff import *
offlineHLTSource = cms.Sequence(

# offline DQM for running also on AOD (w/o the need of the RECO step on-the-fly)
## ADD here sequences/modules which rely ONLY on collections stored in the AOD format
offlineHLTSourceOnAOD = cms.Sequence(
hltResults *
lumiMonitorHLTsequence *
hcalMonitoringSequence *
egHLTOffDQMSource *
muonFullOfflineDQM *
HLTTauDQMOffline *
jetMETHLTOfflineAnalyzer *
fsqHLTOfflineSourceSequence *
HILowLumiHLTOfflineSourceSequence *
hltInclusiveVBFSource *
Expand All @@ -108,9 +109,20 @@
btagMonitorHLT *
bphMonitorHLT *
hltObjectsMonitor
)
)

# offline DQM for running in the standard RECO,DQM (in PromptReco, ReReco, relval, etc)
## ADD here only sequences/modules which rely on transient collections produced by the RECO step
## and not stored in the AOD format
offlineHLTSource = cms.Sequence(
offlineHLTSourceOnAOD
+ hcalMonitoringSequence
+ jetMETHLTOfflineAnalyzer
)

# offline DQM for the HLTMonitoring stream
## ADD here only sequences/modules which rely on HLT collections which are stored in the HLTMonitoring stream
## and are not available in the standard RAW format
dqmInfoHLTMon = cms.EDAnalyzer("DQMEventInfo",
subSystemFolder = cms.untracked.string('HLT')
)
Expand Down

0 comments on commit e80203e

Please sign in to comment.