Skip to content
Snippets Groups Projects
Commit c83b401d authored by Walter Lampl's avatar Walter Lampl Committed by Tomasz Bold
Browse files

Turn HLT-MET monitoring off for HeavyIon-reconstruction

Turn HLT-MET monitoring off for HeavyIon-reconstruction
parent 347064ad
No related branches found
No related tags found
2 merge requests!664682023-10-13: merge of 23.0 into main,!66386Turn HLT-MET monitoring off for HeavyIon-reconstruction
......@@ -10,6 +10,8 @@
@brief TrigHLTMonitoring top-level files
'''
from AthenaConfiguration.Enums import HIMode
def createHLTDQConfigFlags():
from AthenaConfiguration.AthConfigFlags import AthConfigFlags
acf=AthConfigFlags()
......@@ -24,7 +26,7 @@ def createHLTDQConfigFlags():
acf.addFlag('DQ.Steering.HLT.doEgamma', True)
acf.addFlag('DQ.Steering.HLT.doInDet', True)
acf.addFlag('DQ.Steering.HLT.doJet', lambda flags: flags.Input.Format is Format.POOL or (flags.Input.Format is Format.BS and flags.Beam.Type is BeamType.Collisions))
acf.addFlag('DQ.Steering.HLT.doMET', True)
acf.addFlag('DQ.Steering.HLT.doMET', lambda flags: flags.Reco.HIMode is not HIMode.HI)
acf.addFlag('DQ.Steering.HLT.doMinBias', True)
acf.addFlag('DQ.Steering.HLT.doMuon', True)
acf.addFlag('DQ.Steering.HLT.doTau', True)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment