Skip to content

Commit

Permalink
Merge pull request #37544 from zuoxunwu/L1T_Shower_DQM_1240p2_20220406
Browse files Browse the repository at this point in the history
Enable EMTF regional showers with unpacked info
  • Loading branch information
cmsbuild committed Apr 15, 2022
2 parents a0b62d8 + 4fa58e4 commit 1789fdc
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 15 deletions.
10 changes: 6 additions & 4 deletions DQM/L1TMonitor/python/L1TStage2RegionalShower_cfi.py
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
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
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

0 comments on commit 1789fdc

Please sign in to comment.