Skip to content
Snippets Groups Projects
Commit d88e39cf authored by scott snyder's avatar scott snyder
Browse files

AthenaCommon: Don't have xAODEventInfoCnv run in beginRun().

When we set up xAODEventInfoCnv in AtlasUnitGeneratorJob,
disable DoBeginRun.
parent 4c23f3bb
No related branches found
No related tags found
No related merge requests found
# Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration # Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration
## @file AtlasUnixGeneratorJob.py ## @file AtlasUnixGeneratorJob.py
## @brief py-module to configure the Athena AppMgr for generator (UNIX) jobs ## @brief py-module to configure the Athena AppMgr for generator (UNIX) jobs
...@@ -29,7 +29,7 @@ def _setupAtlasUnixGeneratorJob(): ...@@ -29,7 +29,7 @@ def _setupAtlasUnixGeneratorJob():
from AthenaCommon.AlgSequence import AthSequencer from AthenaCommon.AlgSequence import AthSequencer
topSequence = AthSequencer("AthAlgSeq") topSequence = AthSequencer("AthAlgSeq")
from xAODEventInfoCnv.xAODEventInfoCnvConf import xAODMaker__EventInfoCnvAlg from xAODEventInfoCnv.xAODEventInfoCnvConf import xAODMaker__EventInfoCnvAlg
topSequence += xAODMaker__EventInfoCnvAlg() topSequence += xAODMaker__EventInfoCnvAlg(DoBeginRun = False, AODKey = 'McEventInfo')
return return
......
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