11from AthenaConfiguration.AllConfigFlags
import initConfigFlags
12from AthenaConfiguration.ComponentFactory
import CompFactory
13from AthenaConfiguration.TestDefaults
import defaultGeometryTags
14from Campaigns.Utils
import Campaign
16flags=initConfigFlags()
19flags.IOVDb.GlobalTag =
'OFLCOND-SDR-BS14T-IBL-06'
20flags.GeoModel.AtlasVersion=defaultGeometryTags.RUN2
21flags.LAr.doAlign=
False
22flags.Input.MCCampaign=Campaign.Unknown
24from AthenaConfiguration.MainServicesConfig
import MainServicesCfg
25acc=MainServicesCfg(flags)
27from LArGeoAlgsNV.LArGMConfig
import LArGMCfg
28from TileGeoModel.TileGMConfig
import TileGMCfg
30acc.merge(LArGMCfg(flags))
31acc.merge(TileGMCfg(flags))
34from AthenaCommon
import Constants
35acc.getService(
"GeoModelSvc").OutputLevel=Constants.WARNING
37acc.addEventAlgo(CompFactory.CaloTowerStoreTestAlg (
'towertest'),sequenceName =
'AthAlgSeq')