Forked from
atlas / athena
19927 commits behind the upstream repository.
-
RecExRecoTest: CA script best practices. Call fillFromArgs() on config flags so standard command-line arguments work. Add shebangs to CA script to identify them as such.
RecExRecoTest: CA script best practices. Call fillFromArgs() on config flags so standard command-line arguments work. Add shebangs to CA script to identify them as such.
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
EGammaReco_RAW_data22_13p6TeV.py 597 B
# Copyright (C) 2002-2024 CERN for the benefit of the ATLAS collaboration
if __name__=="__main__":
from AthenaConfiguration.AllConfigFlags import initConfigFlags
flags = initConfigFlags()
from RecExRecoTest.RecExReco_setupData22 import RecExReco_setupData22
RecExReco_setupData22(flags)
from egammaConfig.egammaOnlyFromRawFlags import egammaOnlyFromRaw
egammaOnlyFromRaw(flags)
flags.lock()
from RecJobTransforms.RecoSteering import RecoSteering
acc = RecoSteering(flags)
with open("config.pkl", "wb") as file:
acc.store(file)
acc.run(100)