Skip to content
Snippets Groups Projects
Commit 17828e24 authored by Vakhtang Tsulaia's avatar Vakhtang Tsulaia
Browse files

Merge branch 'rdotrig-flags' into 'main'

Fix RDOtoRDO_TRIG skeleton flag order

Closes ATR-28655

See merge request atlas/athena!68074
parents 14c3e532 93975d2a
No related branches found
No related tags found
No related merge requests found
# Copyright (C) 2002-2023 CERN for the benefit of the ATLAS collaboration
# Copyright (C) 2002-2024 CERN for the benefit of the ATLAS collaboration
from PyJobTransforms.TransformUtils import processPreExec, processPreInclude, processPostExec, processPostInclude
from TriggerJobOpts import runHLT
......@@ -18,8 +18,6 @@ def configureFlags(runArgs):
flags = initConfigFlags()
from PyJobTransforms.CommonRunArgsToFlags import commonRunArgsToFlags
commonRunArgsToFlags(runArgs, flags)
from RecJobTransforms.RecoConfigFlags import recoRunArgsToFlags
recoRunArgsToFlags(runArgs, flags)
# Set standard flags for HLT jobs
runHLT.set_flags(flags)
......@@ -33,6 +31,9 @@ def configureFlags(runArgs):
flags.Output.RDOFileName = runArgs.outputRDO_TRIGFile
log.info("---------- Configured RDO_TRIG output")
from RecJobTransforms.RecoConfigFlags import recoRunArgsToFlags
recoRunArgsToFlags(runArgs, flags)
from AthenaConfiguration.Enums import ProductionStep
flags.Common.ProductionStep=ProductionStep.Reconstruction
......
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