Skip to content

Commit 9c51f39

Browse files
committed
Move KLM and TOP DQM modules to ExpressReco only
1 parent 45eff1c commit 9c51f39

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

dqm/scripts/daqdqm/commondqm.py

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -232,12 +232,15 @@ def read_lines(category):
232232

233233
# TOP
234234
if (components is None or 'TOP' in components) and (dqm_mode in ["dont_care", "filtered"]):
235-
topdqm = b2.register_module('TOPDQM')
236-
path.add_module(topdqm)
235+
if dqm_environment == "expressreco": # Temporary patch: do not run TOPDQM on HLT
236+
topdqm = b2.register_module('TOPDQM')
237+
path.add_module(topdqm)
238+
237239
# KLM
238240
if (components is None or 'KLM' in components) and (dqm_mode in ["dont_care", "filtered"]):
239-
klmdqm = b2.register_module("KLMDQM")
240-
path.add_module(klmdqm)
241+
if dqm_environment == "expressreco": # Temporary patch: do not run KLMQM on HLT
242+
klmdqm = b2.register_module("KLMDQM")
243+
path.add_module(klmdqm)
241244

242245
# TRG before all reconstruction runs (so on all events with all unpacked information)
243246
if (components is None or 'TRG' in components) and (dqm_mode in ["dont_care", "before_filter"]):

0 commit comments

Comments
 (0)