Skip to content
Snippets Groups Projects
Commit 932d14c8 authored by Frank Winklmeier's avatar Frank Winklmeier
Browse files

Merge branch 'master-ATR-21266' into 'master'

L1/HLTConfigSvc run by default (resolve ATR-21266)

Closes ATR-21266

See merge request atlas/athena!32153
parents 428700b2 aa4a5d55
No related branches found
No related tags found
No related merge requests found
......@@ -205,7 +205,8 @@ def getL1ConfigSvc( flags = None ):
l1ConfigSvc.JsonFileName = l1JsonFileName
log.info( "For run 3 style menu access configured LVL1ConfigSvc with InputType='file' and JsonFileName=%s", l1JsonFileName )
#theApp.CreateSvc += [ "TrigConf::LVL1ConfigSvc/LVL1ConfigSvc" ]
from AthenaCommon.AppMgr import theApp
theApp.CreateSvc += [ "TrigConf::LVL1ConfigSvc/LVL1ConfigSvc" ]
return l1ConfigSvc
......@@ -223,8 +224,8 @@ def getHLTConfigSvc( flags = None ):
hltJsonFileName = getHLTMenuFileName( flags )
hltConfigSvc.JsonFileName = hltJsonFileName
# TODO revisit if needed
#from AthenaCommon.AppMgr import theApp
#theApp.CreateSvc += [ "TrigConf::HLTConfigSvc/HLTConfigSvc" ]
from AthenaCommon.AppMgr import theApp
theApp.CreateSvc += [ "TrigConf::HLTConfigSvc/HLTConfigSvc" ]
log.info( "Configured HLTConfigSvc with run 2 style input file : %s", hltXMLFile )
log.info( "Configured HLTConfigSvc with InputType='file' and JsonFileName=%s", hltJsonFileName )
return hltConfigSvc
......
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