# Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration #!/usr/bin/env python import sys from AthenaConfiguration.ComponentFactory import CompFactory def RDOReadExampleCfg(flags, name="RDOReadExampleAlg", **kwargs): from FaserGeoModel.FaserGeoModelConfig import FaserGeometryCfg a = FaserGeometryCfg(flags) RDOReadAlg = CompFactory.RDOReadAlg a.addEventAlgo(RDOReadAlg(name, **kwargs)) thistSvc = CompFactory.THistSvc() thistSvc.Output += ["HIST DATAFILE='rdoReadHist.root' OPT='RECREATE'"] a.addService(thistSvc) return a if __name__ == "__main__": from AthenaCommon.Configurable import Configurable from CalypsoConfiguration.AllConfigFlags import ConfigFlags Configurable.configurableRun3Behavior = True # Flags for this job ConfigFlags.Input.isMC = True # Needed to bypass autoconfig ConfigFlags.IOVDb.GlobalTag = "OFLCOND-XXXX-XXX-XX" # Needed to bypass autoconfig, only the "OFLCOND" matters at the moment ConfigFlags.GeoModel.FaserVersion = "FASER-00" # Default FASER geometry ConfigFlags.Detector.SimulateFaserSCT = True ConfigFlags.Input.Files = ["my.RDO.pool.root"] ConfigFlags.lock() # Configure components from AthenaConfiguration.MainServicesConfig import MainServicesSerialCfg from AthenaPoolCnvSvc.PoolReadConfig import PoolReadCfg acc = MainServicesSerialCfg() acc.merge(PoolReadCfg(ConfigFlags)) # Set things up to create a conditions DB with neutral Tracker alignment transforms acc.merge(RDOReadExampleCfg(ConfigFlags)) # Configure verbosity # ConfigFlags.dump() # logging.getLogger('forcomps').setLevel(VERBOSE) # acc.foreach_component("*").OutputLevel = VERBOSE # acc.foreach_component("*ClassID*").OutputLevel = INFO # log.setLevel(VERBOSE) # Execute and finish sys.exit(int(acc.run(maxEvents=-1).isFailure()))