File tree Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Original file line number Diff line number Diff 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" ]):
You can’t perform that action at this time.
0 commit comments