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

AthenaCommon: Configure SGInputLoader in MT jobs.

parent 6dd215e7
No related merge requests found
...@@ -50,6 +50,15 @@ def _setupAtlasThreadedJob(): ...@@ -50,6 +50,15 @@ def _setupAtlasThreadedJob():
AlgScheduler.ShowDataDependencies(False) AlgScheduler.ShowDataDependencies(False)
AlgScheduler.ShowControlFlow(False) AlgScheduler.ShowControlFlow(False)
from AthenaCommon.AlgSequence import AlgSequence
topSequence = AlgSequence()
from SGComps.SGCompsConf import SGInputLoader
# FailIfNoProxy=False makes it a warning, not an error, if unmet data
# dependencies are not found in the store. It should probably be changed
# to True eventually.
topSequence += SGInputLoader (FailIfNoProxy = False)
AlgScheduler.setDataLoaderAlg ('SGInputLoader' )
from AthenaServices.AthenaServicesConf import AthenaHiveEventLoopMgr from AthenaServices.AthenaServicesConf import AthenaHiveEventLoopMgr
svcMgr += AthenaHiveEventLoopMgr() svcMgr += AthenaHiveEventLoopMgr()
......
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