Skip to content
Snippets Groups Projects
Commit 2930a620 authored by Walter Lampl's avatar Walter Lampl
Browse files

Merge branch 'MDT_COND_FIX_DIGI_master' into 'master'

Only add MuonMDT_CablingAlg to CondSequence if MDT is being processed in this job

See merge request atlas/athena!20874
parents bbc28dc5 1ba0ab26
No related merge requests found
......@@ -14,7 +14,9 @@ from MuonCnvFlags import muonCnvFlags
from AthenaCommon.AlgSequence import AthSequencer
from MuonMDT_Cabling.MuonMDT_CablingConf import MuonMDT_CablingAlg
condSequence = AthSequencer("AthCondSeq")
condSequence += MuonMDT_CablingAlg("MuonMDT_CablingAlg")
if DetFlags.MDT_on():
condSequence += MuonMDT_CablingAlg("MuonMDT_CablingAlg")
# defaults have to be re-set now since the jobproperties and trigger flags are now available # SS
muonCnvFlags.setDefaults()
......
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