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

AthenaCommon: Configure SGInputLoader in MT jobs.


Former-commit-id: 428bbd0b
parent 4c414c5a
No related branches found
No related tags found
No related merge requests found
......@@ -50,6 +50,15 @@ def _setupAtlasThreadedJob():
AlgScheduler.ShowDataDependencies(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
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