diff --git a/DQM/L1TMonitor/python/L1TStage2RegionalShower_cfi.py b/DQM/L1TMonitor/python/L1TStage2RegionalShower_cfi.py index 6a29bf30ee6dc..467c8497ba27b 100644 --- a/DQM/L1TMonitor/python/L1TStage2RegionalShower_cfi.py +++ b/DQM/L1TMonitor/python/L1TStage2RegionalShower_cfi.py @@ -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), ) diff --git a/DQM/L1TMonitor/python/L1TStage2_cff.py b/DQM/L1TMonitor/python/L1TStage2_cff.py index 060cbb0e7e91e..2267dced63505 100644 --- a/DQM/L1TMonitor/python/L1TStage2_cff.py +++ b/DQM/L1TMonitor/python/L1TStage2_cff.py @@ -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 diff --git a/DQM/L1TMonitor/python/L1TdeStage2RegionalShower_cfi.py b/DQM/L1TMonitor/python/L1TdeStage2RegionalShower_cfi.py index e8e1e25fe6bf1..5cbb9157c6435 100644 --- a/DQM/L1TMonitor/python/L1TdeStage2RegionalShower_cfi.py +++ b/DQM/L1TMonitor/python/L1TdeStage2RegionalShower_cfi.py @@ -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"), )