Skip to content
Snippets Groups Projects
Commit f32ab4d3 authored by Stewart Martin-Haugh's avatar Stewart Martin-Haugh
Browse files

Merge branch 'respect-l1-decision-when-decoding-in-rdo-to-rdotrigger' into 'master'

Switched RDO to RDOTrigger jobs to use the L1 decision

See merge request atlas/athena!24455
parents 6c9cd473 42de5e5b
No related branches found
No related tags found
No related merge requests found
......@@ -131,7 +131,10 @@ if TriggerFlags.doMT():
# add a fake data dependency assuring that the StreamBS runs before the L1 decoder of HLT
fakeTypeKey = ("FakeBSOutType","StoreGateSvc+FakeBSOutKey")
topSequence.StreamBS.ExtraOutputs += [fakeTypeKey]
findAlgorithm( topSequence, "L1Decoder" ).ExtraInputs += [fakeTypeKey]
l1Decoder = findAlgorithm( topSequence, "L1Decoder" )
l1Decoder.ExtraInputs += [fakeTypeKey]
l1Decoder.ctpUnpacker.ForceEnableAllChains=False # this will make HLT respecting L1 chain decisions
from AthenaCommon.Configurable import Configurable
Configurable.configurableRun3Behavior=True
from TriggerJobOpts.TriggerConfig import triggerIDCCacheCreatorsCfg
......
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