Skip to content
Snippets Groups Projects
Commit a79db8c8 authored by Scott Snyder's avatar Scott Snyder Committed by scott snyder
Browse files

AthenaCommon: Don't add a duplicate ToolSvc to svcMgr.

ToolSvc is already set up in AppMgr.py; don't try to do it again
in AtlasUnixStandardJob.py, or we can get duplicate errors from Configurable.


Former-commit-id: 6366846c
parent c29879b2
No related branches found
No related tags found
No related merge requests found
...@@ -19,7 +19,7 @@ def _setupAtlasUnixStandardJob(): ...@@ -19,7 +19,7 @@ def _setupAtlasUnixStandardJob():
svcMgr += GaudiSvcConf.EvtPersistencySvc( "EventPersistencySvc" ) svcMgr += GaudiSvcConf.EvtPersistencySvc( "EventPersistencySvc" )
svcMgr += GaudiSvcConf.HistogramSvc( "HistogramDataSvc" ) svcMgr += GaudiSvcConf.HistogramSvc( "HistogramDataSvc" )
svcMgr += GaudiSvcConf.NTupleSvc() svcMgr += GaudiSvcConf.NTupleSvc()
svcMgr += GaudiSvcConf.ToolSvc() # ToolSvc is already added in AppMgr.py.
svcMgr += GaudiSvcConf.RndmGenSvc() svcMgr += GaudiSvcConf.RndmGenSvc()
svcMgr += GaudiSvcConf.ChronoStatSvc() svcMgr += GaudiSvcConf.ChronoStatSvc()
......
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