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

Merge branch 'HLTfullMenuL1DecoderCF' into 'master'

L1 decoder CF fix

See merge request atlas/athena!23850
parents bdef58f0 9c6b6e5b
No related merge requests found
......@@ -186,6 +186,8 @@ def makeHLTTree(HLTChains, newJO=False, triggerConfigHLT = None):
if len(l1decoder) != 1 :
raise RuntimeError(" Can't find 1 instance of L1Decoder in topSequence, instead found this in topSequence "+str(topSequence.getChildren()) )
# take L1Decoder out of topSeq
topSequence.remove( l1decoder )
# set CTP chains before creating the full tree (and the monitor)
EnabledChainNamesToCTP = dict([ (c.name, c.seed) for c in HLTChains])
......@@ -193,6 +195,9 @@ def makeHLTTree(HLTChains, newJO=False, triggerConfigHLT = None):
# main HLT top sequence
hltTop = seqOR("HLTTop")
# put L1Decoder here
hltTop += l1decoder
# add the HLT steps Node
steps = seqAND("HLTAllSteps")
......
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