Skip to content

Commit 2463d11

Browse files
committed
Run TTDQM module only on filtered events
1 parent 7b91fbc commit 2463d11

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

dqm/scripts/daqdqm/commondqm.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,9 @@ def add_common_dqm(path, components=None, dqm_environment="expressreco", dqm_mod
4242
# Check components.
4343
check_components(components)
4444

45-
# TTD trigger and bunch injection monitoring
46-
path.add_module('TTDDQM')
45+
if dqm_mode in ["dont_care", "filtered"]:
46+
# TTD trigger and bunch injection monitoring
47+
path.add_module('TTDDQM')
4748

4849
if dqm_environment == "expressreco" and (dqm_mode in ["dont_care"]):
4950
# PXD (not useful on HLT)

0 commit comments

Comments
 (0)