Skip to content
Snippets Groups Projects
Commit b2e1de3b authored by John Chapman's avatar John Chapman
Browse files

Only import FastChain_Flags in the CfgGetter methods that require it.

The global import of `FastChain_Flags` in the `ISF_SimulationSelectorsConfig`
was breaking all ISF simulation jobs in the AthSimulation project.


Former-commit-id: cb0354a963280d52f3f50bd104a02cfbb58f7ef8
parent 0149a724
No related branches found
No related tags found
No related merge requests found
......@@ -9,8 +9,6 @@ from AthenaCommon import CfgMgr
from AthenaCommon.Constants import * # FATAL,ERROR etc.
from AthenaCommon.SystemOfUnits import *
from FastChainPileup.FastChain_jobProperties import FastChain_Flags
### DefaultSimSelector configurations
def getDefaultSimSelector(name="ISF_DefaultSimSelector", **kwargs):
......@@ -93,11 +91,13 @@ def getFatrasPileupSelector_noHits(name="ISF_FatrasPileupSelector_noHits", **kwa
return getPileupSimSelector(name, **kwargs )
def getFastCaloSimPileupSelector(name="ISF_FastCaloSimPileupSelector", **kwargs):
from FastChainPileup.FastChain_jobProperties import FastChain_Flags
kwargs.setdefault("PileupBCID" , FastChain_Flags.FastChainBCID() )
kwargs.setdefault("Simulator" , 'ISF_FastCaloSimPileupSvc')
return getPileupSimSelector(name, **kwargs )
def getFastCaloSimPileupOTSelector(name="ISF_FastCaloSimPileupOTSelector", **kwargs):
from FastChainPileup.FastChain_jobProperties import FastChain_Flags
kwargs.setdefault("PileupBCID" , FastChain_Flags.FastChainBCID() )
kwargs.setdefault("Simulator" , 'ISF_FastCaloSimPileupOTSvc')
return getPileupSimSelector(name, **kwargs )
......
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