Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions DQM/L1TMonitor/python/L1TStage2RegionalShower_cfi.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,12 @@
from DQMServices.Core.DQMEDAnalyzer import DQMEDAnalyzer
l1tStage2RegionalShower = DQMEDAnalyzer(
"L1TStage2RegionalShower",
emtfSource = cms.InputTag("emtfStage2Digis"), ## EMTF unpacker tag
cscSource = cms.InputTag("muonCSCDigis", "MuonCSCShowerDigi"), ## CSC unpacker tag
# emtfSource = cms.InputTag("simEmtfShowers", "EMTF"), ## EMTF emulator tag
# cscSource = cms.InputTag("simCscTriggerPrimitiveDigis"), ## CSC emulator tag
emtfSource = cms.InputTag("emtfStage2Digis"),
# EMTF shower unpacker ready in CMSSW_12_4_0_p2
# Enable this module for EMTF and CSC showers
# CSC showers are not in firmware as of 2022.04.06
# But dummy object exists so it gives empty histograms without errors
cscSource = cms.InputTag("muonCSCDigis", "MuonCSCShowerDigi"),
monitorDir = cms.untracked.string("L1T/L1TStage2EMTF/Shower"),
verbose = cms.untracked.bool(False),
)
Expand Down
4 changes: 1 addition & 3 deletions DQM/L1TMonitor/python/L1TStage2_cff.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,7 @@
l1tStage2BmtfOnlineDQMSeq +
l1tStage2Omtf +
l1tStage2Emtf +
# Do not include shower DQM module in the sequence because there is no EMTF shower unpacker (as of CMSSW_12_2_0_pre2).
# It will be enabled once the EMTF shower unpacker is ready.
# l1tStage2RegionalShower +
l1tStage2RegionalShower +
l1tStage2uGMTOnlineDQMSeq +
l1tObjectsTiming +
l1tStage2uGTOnlineDQMSeq
Expand Down
9 changes: 1 addition & 8 deletions DQM/L1TMonitor/python/L1TdeStage2RegionalShower_cfi.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,7 @@
from DQMServices.Core.DQMEDAnalyzer import DQMEDAnalyzer
l1tdeStage2RegionalShower = DQMEDAnalyzer(
"L1TdeStage2RegionalShower",
# EMTF Showers not in data yet. Use Emul for both
# Once Run 3 firmware are implemented, should change data tags to
# cms.InputTag("emtfStage2Digis")
# - 2021.12.06 Xunwu Zuo

# dataSource = cms.InputTag("simEmtfShowers", "EMTF"),
# emulSource = cms.InputTag("simEmtfShowers", "EMTF"),
dataSource = cms.InputTag("valEmtfStage2Showers", "EMTF"),
dataSource = cms.InputTag("emtfStage2Digis"),
emulSource = cms.InputTag("valEmtfStage2Showers", "EMTF"),
monitorDir = cms.untracked.string("L1TEMU/L1TdeStage2EMTF/Shower"),
)
Expand Down