Skip to content
Snippets Groups Projects
Forked from atlas / athena
19927 commits behind the upstream repository.
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)