Skip to content
Snippets Groups Projects
Commit a19e17a8 authored by Tomasz Bold's avatar Tomasz Bold
Browse files

Merge branch 'noHltMetMonHI' into '23.0'

Turn HLT-MET monitoring off for HeavyIon-reconstruction

See merge request !66386
parents a49fe709 c83b401d
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