Skip to content

Commit

Permalink
make dqmEnvHLT and dqmInfoHLTMon show the last HLT processing GlobalTag
Browse files Browse the repository at this point in the history
  • Loading branch information
mmusich committed Jun 21, 2024
1 parent e851113 commit 5ba803a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
9 changes: 5 additions & 4 deletions DQMOffline/Trigger/python/DQMOffline_Trigger_cff.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,12 +106,13 @@

import DQMServices.Components.DQMEnvironment_cfi
dqmEnvHLT = DQMServices.Components.DQMEnvironment_cfi.dqmEnv.clone(
subSystemFolder = 'HLT'
)
subSystemFolder = 'HLT',
showHLTGlobalTag = True)

from DQMServices.Core.DQMEDAnalyzer import DQMEDAnalyzer
dqmInfoHLTMon = DQMEDAnalyzer('DQMEventInfo',
subSystemFolder = cms.untracked.string('HLT')
)
subSystemFolder = cms.untracked.string('HLT'),
showHLTGlobalTag = cms.untracked.bool(True))
###################################################################################################
#### SEQUENCES TO BE RUN depending on the input DATAFORMAT
## on MiniAOD
Expand Down
4 changes: 3 additions & 1 deletion DQMServices/Components/python/DQMEventInfo_cfi.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@
# set the window for eventrate calculation (in minutes)
eventRateWindow = cms.untracked.double(0.5),
# define folder to store event info (default: EventInfo)
eventInfoFolder = cms.untracked.string('EventInfo')
eventInfoFolder = cms.untracked.string('EventInfo'),
# use the Global Tag of the last (!) HLT processing
showHLTGlobalTag = cms.untracked.bool(True)
)

0 comments on commit 5ba803a

Please sign in to comment.