4from AthenaConfiguration.AllConfigFlags
import initConfigFlags
5from AthenaConfiguration.ComponentFactory
import CompFactory
6from AthenaConfiguration.Utils
import setupLoggingLevels
12flags.Input.RunNumbers=[1]
13flags.LAr.doAlign=
False
14flags.Input.Files=[
"myEventInfoPoolFile5.pool.root",]
15flags.Exec.DebugMessageComponents=[
"TagInfoMgr",
22from AthenaConfiguration.MainServicesConfig
import MainServicesCfg
23acc=MainServicesCfg(flags)
25from AthenaPoolCnvSvc.PoolReadConfig
import PoolReadCfg
26acc.merge(PoolReadCfg(flags))
29from LArGeoAlgsNV.LArGMConfig
import LArGMCfg
30acc.merge(LArGMCfg(flags))
33from LArCabling.LArCablingConfig
import LArOnOffIdMappingCfg, LArCalibIdMappingCfg,LArFebRodMappingCfg
34acc.merge(LArOnOffIdMappingCfg(flags))
35acc.merge(LArCalibIdMappingCfg(flags))
36acc.merge(LArFebRodMappingCfg(flags))
38from TileConditions.TileEMScaleConfig
import TileEMScaleCondAlgCfg
39acc.merge(TileEMScaleCondAlgCfg(flags))
41from EventInfoMgt.TagInfoMgrConfig
import TagInfoMgrCfg
42acc.merge(TagInfoMgrCfg(flags))
44acc.addEventAlgo(CompFactory.EventInfoReader(),sequenceName =
'AthAlgSeq')
47acc.getService(
"PoolSvc").WriteCatalog =
'file:EventInfoTests_catalog.xml'
50acc.getService(
"GeoModelSvc").IgnoreTagDifference =
True
52setupLoggingLevels(flags,acc)
54sys.exit(acc.run().isFailure())