diff --git a/Calorimeter/CaloRec/python/CaloCellMakerConfig.py b/Calorimeter/CaloRec/python/CaloCellMakerConfig.py index 7d35c0ad382e197efa07f361b2ad5cd095f7b76e..0fca0d226c2e19b22ee66dbef6d5ad16a181cb76 100644 --- a/Calorimeter/CaloRec/python/CaloCellMakerConfig.py +++ b/Calorimeter/CaloRec/python/CaloCellMakerConfig.py @@ -15,15 +15,18 @@ def CaloCellMakerCfg(configFlags): result.merge(LArGMCfg(configFlags)) result.merge(TileGMCfg(configFlags)) - acc,theLArCellMaker=LArCellBuilderCfg(configFlags) - result.merge(acc) + larCellBuilder=LArCellBuilderCfg(configFlags) - acc,theLArCellCorrectors=LArCellCorrectorCfg(configFlags) - result.merge(acc) + + + larCellCorrectors=LArCellCorrectorCfg(configFlags) theTileCellBuilder = TileCellBuilder() - cellAlgo=(CaloCellMaker(CaloCellMakerToolNames=[theLArCellMaker,CaloCellContainerFinalizerTool()]+theLArCellCorrectors, - CaloCellsOutputName="AllCalo")) + + cellAlgo=CaloCellMaker(CaloCellMakerToolNames=[larCellBuilder.popPrivateTools(),CaloCellContainerFinalizerTool()]+larCellCorrectors.popPrivateTools(), + CaloCellsOutputName="AllCalo") + result.merge(larCellBuilder) + result.merge(larCellCorrectors) return result,cellAlgo @@ -37,8 +40,9 @@ if __name__=="__main__": Configurable.configurableRun3Behavior=1 from AthenaConfiguration.AllConfigFlags import ConfigFlags + from AthenaConfiguration.TestDefaults import defaultTestFiles - ConfigFlags.Input.Files=["myRDO.pool.root",] + ConfigFlags.Input.Files = defaultTestFiles.RAW ConfigFlags.lock() cfg=ComponentAccumulator() diff --git a/Calorimeter/CaloRec/python/CaloTopoClusterConfig.py b/Calorimeter/CaloRec/python/CaloTopoClusterConfig.py index ca57806650a14ed39d9d92753515936eb037d1eb..dc0cfdacee61449f64d4577f43fbdbf47c5da635 100644 --- a/Calorimeter/CaloRec/python/CaloTopoClusterConfig.py +++ b/Calorimeter/CaloRec/python/CaloTopoClusterConfig.py @@ -495,7 +495,8 @@ def CaloTopoClusterCfg(configFlags): result.merge(tileCondCfg(configFlags)) #Get CaloNoiseTool - acc,theCaloNoiseTool=CaloNoiseToolCfg(configFlags) + acc=CaloNoiseToolCfg(configFlags) + theCaloNoiseTool=acc.getPublicTool("CaloNoiseTool") result.merge(acc) theCaloClusterSnapshot=CaloClusterSnapshot(OutputName="CaloTopoCluster",SetCrossLinks=True) @@ -599,12 +600,10 @@ if __name__=="__main__": from AthenaCommon.Logging import log from AthenaCommon.Constants import DEBUG from AthenaConfiguration.AllConfigFlags import ConfigFlags + from AthenaConfiguration.TestDefaults import defaultTestFiles #log.setLevel(DEBUG) - ConfigFlags.Input.Files = ["myESD-data.pool.root"] -# ConfigFlags.Output.ESDFileName="esdOut.pool.root" - nThreads=1 ConfigFlags.Concurrency.NumThreads = nThreads if nThreads>0: @@ -613,10 +612,14 @@ if __name__=="__main__": ConfigFlags.Scheduler.ShowControlFlow = True ConfigFlags.Concurrency.NumConcurrentEvents = nThreads + #ConfigFlags.Input.isMC = False + ConfigFlags.Input.Files = ConfigFlags.Input.Files = defaultTestFiles.ESD + ConfigFlags.Output.ESDFileName= "esdOut.pool.root" ConfigFlags.lock() from AthenaConfiguration.MainServicesConfig import MainServicesThreadedCfg from AthenaPoolCnvSvc.PoolReadConfig import PoolReadCfg + cfg=MainServicesThreadedCfg(ConfigFlags) cfg.merge(PoolReadCfg(ConfigFlags)) diff --git a/Calorimeter/CaloTools/python/CaloNoiseToolConfig.py b/Calorimeter/CaloTools/python/CaloNoiseToolConfig.py index 3d9b79b0042b982d209038f8c7c70a941707d702..8f976d62789e96dfad7f43daec9b4a14481dc375 100644 --- a/Calorimeter/CaloTools/python/CaloNoiseToolConfig.py +++ b/Calorimeter/CaloTools/python/CaloNoiseToolConfig.py @@ -121,8 +121,7 @@ def CaloNoiseToolCfg(configFlags): caloNoiseToolDB.FolderNames=[f[1] for f in folders] result.addPublicTool(caloNoiseToolDB) - - return result,caloNoiseToolDB + return result if __name__ == "__main__": from AthenaCommon.Configurable import Configurable @@ -134,7 +133,7 @@ if __name__ == "__main__": ConfigFlags.lock() from AthenaConfiguration.ComponentAccumulator import ComponentAccumulator - acc, caloNoiseToolDB = CaloNoiseToolCfg(ConfigFlags) + acc = CaloNoiseToolCfg(ConfigFlags) f=open('test.pkl','w') acc.store(f) diff --git a/Control/AthenaConfiguration/python/ComponentAccumulator.py b/Control/AthenaConfiguration/python/ComponentAccumulator.py index e3df021c15aa7f0006b160fba9abe336b24c3f19..40c4b80b7cb06f21ae8df50de6e59ce698e2a535 100644 --- a/Control/AthenaConfiguration/python/ComponentAccumulator.py +++ b/Control/AthenaConfiguration/python/ComponentAccumulator.py @@ -31,16 +31,13 @@ class ComponentAccumulator(object): self._services=[] #List of service, not yet sure if the order matters here in the MT age self._eventInputs=set() #List of items (as strings) to be read from the input (required at least for BS-reading). self._outputPerStream={} #Dictionary of {streamName,set(items)}, all as strings - + self._privateTools=None #A placeholder to carry a private tool(s) not yet attached to its parent self._theAppProps=dict() #Properties of the ApplicationMgr #Backward compatiblity hack: Allow also public tools: self._publicTools=[] - # small CAs can have only tools - self._privateTools=[] - #To check if this accumulator was merged: self._wasMerged=False @@ -54,6 +51,9 @@ class ComponentAccumulator(object): raise RuntimeError("ComponentAccumulator was not merged!") #log = logging.getLogger("ComponentAccumulator") #log.error("The ComponentAccumulator listed below was never merged!") + + if self._privateTools is not None: + raise RuntimeError("Deleting a ComponentAccumulator with and dangling private tool(s)") #pass @@ -161,7 +161,33 @@ class ComponentAccumulator(object): else: return findSubSequence(self._sequence,sequenceName) + def setPrivateTools(self,privTool): + """Use this method to carry private AlgTool(s) to the caller when returning this ComponentAccumulator. + The method accepts either a single private AlgTool or a list of private AlgTools (typically assigned to ToolHandleArray) + """ + if self._privateTools is not None: + raise ConfigurationError("This ComponentAccumulator holds already a (list of) private tool. Only one (list of) private tool(s) is allowed") + + if isinstance(privTool,collections.Sequence): + for t in privTool: + if not isinstance(t,ConfigurableAlgTool): + raise ConfigurationError("ComponentAccumulator.setPrivateTools accepts only ConfigurableAlgTools or lists of ConfigurableAlgTools. Encountered %s in a list" % type(t)) + else: + if not isinstance(privTool,ConfigurableAlgTool): + raise ConfigurationError("ComponentAccumulator.setPrivateTools accepts only cCnfigurableAlgTools or lists of ConfigurableAlgTools. Encountered %s " % type(privTool)) + + self._privateTools=privTool + return + + def popPrivateTools(self): + """Get the (list of) private AlgTools from this CompoentAccumulator. + The CA will not keep any reference to the AlgTool. + """ + tool=self._privateTools + self._privateTools=None + return tool + def addEventAlgo(self, algorithms,sequenceName=None): if not isinstance(algorithms,collections.Sequence): @@ -233,7 +259,7 @@ class ComponentAccumulator(object): raise TypeError("Attempt to add wrong type: %s as service" % type( newSvc ).__name__) pass self._deduplicate(newSvc,self._services) #will raise on conflict - return newSvc + return def addPublicTool(self,newTool): @@ -370,19 +396,6 @@ class ComponentAccumulator(object): """ Returns single service, exception if either not found or to many found""" return self.__getOne( self._services, name, "Services") - def addPrivateTool(self, newTool): - if not isinstance(newTool,ConfigurableAlgTool): - raise TypeError("Attempt to add wrong type: %s as private AlgTool" % type( newTool ).__name__) - self._deduplicate(newTool,self._privateTools) - - def getPrivateTools(self): - return self._privateTools - - def getPrivateTool(self, name=None): - """ Returns single private tool, exception if either not found or to many found""" - return self.__getOne( self._privateTools, name, "PrivateTools") - - def addEventInput(self,condObj): #That's a string, should do some sanity checks on formatting self._eventInput.add(condObj) diff --git a/Database/IOVDbSvc/python/IOVDbSvcConfig.py b/Database/IOVDbSvc/python/IOVDbSvcConfig.py index 2a6df21a71f3268a27e1366f8419fcfab08c4d82..3d3d7034bae62d2093e6d361e5f60d61e244f310 100644 --- a/Database/IOVDbSvc/python/IOVDbSvcConfig.py +++ b/Database/IOVDbSvc/python/IOVDbSvcConfig.py @@ -90,6 +90,7 @@ This allows the possibility of later adding a new IOV using IOVSvc::setRange.""" result,iovDbSvc=IOVDbSvcCfg(configFlags) + #Add class-name to CondInputLoader (if reqired) if className is not None: loadFolders=[] diff --git a/LArCalorimeter/LArBadChannelTool/python/LArBadChannelConfig.py b/LArCalorimeter/LArBadChannelTool/python/LArBadChannelConfig.py index 2084ae83337d1603b75462f7bbe37b8079da51e2..944b9fb3335cfedb55478657f6e4d28b7f02106f 100644 --- a/LArCalorimeter/LArBadChannelTool/python/LArBadChannelConfig.py +++ b/LArCalorimeter/LArBadChannelTool/python/LArBadChannelConfig.py @@ -5,7 +5,7 @@ from IOVDbSvc.IOVDbSvcConfig import addFolders def LArBadChannelCfg(configFlags): - result=LArOnOffIdMappingCfg(configFlags)[0] + result=LArOnOffIdMappingCfg(configFlags) if configFlags.Common.isOnline or configFlags.Input.isMC: foldername="/LAR/BadChannels/BadChannels" @@ -48,7 +48,8 @@ def LArBadChannelMaskerCfg(configFlags,problemsToMask,doMasking=True,ToolName="L result=LArBadChannelCfg(configFlags) bcMasker=LArBadChannelMasker(ToolName,ProblemsToMask=problemsToMask, DoMasking=doMasking) - return result,bcMasker + result.setPrivateTools(bcMasker) + return result @@ -69,7 +70,8 @@ if __name__=="__main__": cfg.merge(LArBadChannelCfg(ConfigFlags)) cfg.merge(LArBadFebCfg(ConfigFlags)) - acc,privTool=LArBadChannelMaskerCfg(ConfigFlags,["allDead",]) + acc=LArBadChannelMaskerCfg(ConfigFlags,["allDead",]) + masker=acc.popPrivateTools() cfg.merge(acc) f=open("LArBCCondAlgos.pkl","w") cfg.store(f) diff --git a/LArCalorimeter/LArCabling/python/LArCablingConfig.py b/LArCalorimeter/LArCabling/python/LArCablingConfig.py index 39dc340774572ca9c4b99b8377e122c659c47995..afa2f57c97725854db05b9fcbd3be4a553f71afe 100644 --- a/LArCalorimeter/LArCabling/python/LArCablingConfig.py +++ b/LArCalorimeter/LArCabling/python/LArCablingConfig.py @@ -25,7 +25,8 @@ def _larCablingCfg(configFlags,algo,folder): result.addCondAlgo(algo(ReadKey=folder)) result.merge(addFolders(configFlags,folderwithtag,className="AthenaAttributeList",detDb=db)) - return result,None + #print result + return result def LArOnOffIdMappingCfg(configFlags): @@ -51,8 +52,8 @@ if __name__ == "__main__": ConfigFlags.Input.Files = defaultTestFiles.RAW ConfigFlags.lock() - acc = LArOnOffIdMappingCfg( ConfigFlags )[0] - acc.merge(LArFebRodMappingCfg(ConfigFlags)[0]) - acc.merge(LArCalibIdMappingCfg(ConfigFlags)[0]) + acc = LArOnOffIdMappingCfg( ConfigFlags ) + acc.merge(LArFebRodMappingCfg(ConfigFlags)) + acc.merge(LArCalibIdMappingCfg(ConfigFlags)) acc.store( file( "test.pkl", "w" ) ) print "All OK" diff --git a/LArCalorimeter/LArCalibUtils/python/LArHVScaleConfig.py b/LArCalorimeter/LArCalibUtils/python/LArHVScaleConfig.py index fbe52c53e4564898296da689e8021e61578e9ea0..8dbcce76d5ac30bf91b6bcbdaaacb9f1ec71b358 100644 --- a/LArCalorimeter/LArCalibUtils/python/LArHVScaleConfig.py +++ b/LArCalorimeter/LArCalibUtils/python/LArHVScaleConfig.py @@ -1,6 +1,7 @@ # Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration from AthenaConfiguration.ComponentAccumulator import ComponentAccumulator +from IOVDbSvc.IOVDbSvcConfig import addFolders def LArHVScaleCfg(configFlags): result=ComponentAccumulator() @@ -9,8 +10,6 @@ def LArHVScaleCfg(configFlags): result.merge(addFolders(configFlags,["/LAR/IdentifierOfl/HVLineToElectrodeMap<tag>LARHVLineToElectrodeMap-001</tag>"], "LAR_OFL", className="AthenaAttributeList")) elif not configFlags.Common.isOnline: - from IOVDbSvc.IOVDbSvcConfig import addFolders, IOVDbSvcCfg - result.mergeAll(IOVDbSvcCfg(configFlags)) result.merge(addFolders(configFlags,["/LAR/DCS/HV/BARREl/I16"], "DCS_OFL", className="CondAttrListCollection")) result.merge(addFolders(configFlags,["/LAR/DCS/HV/BARREL/I8"], "DCS_OFL", className="CondAttrListCollection")) diff --git a/LArCalorimeter/LArCellRec/python/LArCellBuilderConfig.py b/LArCalorimeter/LArCellRec/python/LArCellBuilderConfig.py index 9ba36ba02a0cb580bc3b603fa149308dde9180a1..0275c9ee1eec9b0d55049e332b60870cbd0415d9 100644 --- a/LArCalorimeter/LArCellRec/python/LArCellBuilderConfig.py +++ b/LArCalorimeter/LArCellRec/python/LArCellBuilderConfig.py @@ -5,11 +5,13 @@ from LArCellRec.LArCellRecConf import LArCellBuilderFromLArRawChannelTool, LArCe from LArCabling.LArCablingConfig import LArOnOffIdMappingCfg def LArCellBuilderCfg(configFlags): - result=LArOnOffIdMappingCfg(configFlags) + result=ComponentAccumulator() + result.merge(LArOnOffIdMappingCfg(configFlags)) theLArCellBuilder = LArCellBuilderFromLArRawChannelTool() theLArCellBuilder.addDeadOTX = False #Create flag? Requires bad-feb DB access - return result,theLArCellBuilder + result.setPrivateTools(theLArCellBuilder) + return result @@ -26,20 +28,18 @@ def LArCellCorrectorCfg(configFlags): from LArBadChannelTool.LArBadChannelConfig import LArBadChannelMaskerCfg theNoiseMasker=LArCellNoiseMaskingTool() if configFlags.LAr.doCellNoiseMasking: - acc,cellNoiseMaskingTool= LArBadChannelMaskerCfg(configFlags,problemsToMask=["highNoiseHG","highNoiseMG","highNoiseLG","deadReadout","deadPhys"],ToolName="CellNoiseMask") + acc= LArBadChannelMaskerCfg(configFlags,problemsToMask=["highNoiseHG","highNoiseMG","highNoiseLG","deadReadout","deadPhys"],ToolName="CellNoiseMask") + theNoiseMasker.MaskingTool=acc.popPrivateTools() result.merge(acc) - theNoiseMasker.MaskingTool=cellNoiseMaskingTool + pass if configFlags.LAr.doCellSporadicNoiseMasking: - acc,sporadicNoiseMaskingTool=LArBadChannelMaskerCfg(configFlags,problemsToMask=["sporadicBurstNoise",],ToolName="SporadicNoiseMask") + acc=LArBadChannelMaskerCfg(configFlags,problemsToMask=["sporadicBurstNoise",],ToolName="SporadicNoiseMask") + theNoiseMasker.MaskingSporadicTool=acc.popPrivateTools() result.merge(acc) - theNoiseMasker.MaskingSporadicTool=sporadicNoiseMaskingTool pass correctionTools.append(theNoiseMasker) #Many more tools to be added, eg HV correction - - return result,correctionTools - - - + result.setPrivateTools(correctionTools) + return result diff --git a/MuonSpectrometer/MuonConfig/share/MuonDataDecodeTest.ref b/MuonSpectrometer/MuonConfig/share/MuonDataDecodeTest.ref index 9ad83eb8eb9f444bba4c86a9221666c6382c17b1..5a6ded6b6aabf7f892cebbd25b2bbfd234dc15a7 100644 --- a/MuonSpectrometer/MuonConfig/share/MuonDataDecodeTest.ref +++ b/MuonSpectrometer/MuonConfig/share/MuonDataDecodeTest.ref @@ -1,4 +1,40 @@ Flag Name : Value +Beam.BunchSpacing : 25 +Beam.Energy : [function] +Beam.NumberOfCollisions : 0 +Beam.Type : 'collisions' +Beam.estimatedLuminosity : [function] +Calo.Noise.fixedLumiForNoise : -1 +Calo.Noise.useCaloNoiseLumi : True +Calo.TopoCluster.doTreatEnergyCutAsAbsol : False +Calo.TopoCluster.doTwoGaussianNoise : True +Common.Project : 'Athena' +Common.isOnline : False +Concurrency.NumConcurrentEvents : 0 +Concurrency.NumProcs : 0 +Concurrency.NumThreads : 0 +GeoModel.Align.Dynamic : [function] +GeoModel.AtlasVersion : 'ATLAS-R2-2016-01-00-01' +GeoModel.Layout : 'atlas' +GeoModel.Run : 'RUN2' +GeoModel.StripGeoType : 'GMX' +IOVDb.DatabaseInstance : [function] +IOVDb.GlobalTag : 'CONDBR2-BLKPA-2018-13' +Input.Files : ['/cvmfs/atlas-nightlies.cern.ch/repo/data/data-art/TrigP1Test/data17_13TeV.00327265.physics_EnhancedBias.merge.RAW._lb0100._SFO-1._0001.1'] +Input.ProjectName : [function] +Input.RunNumber : [function] +Input.isMC : [function] +Output.AODFileName : 'myAOD.pool.root' +Output.ESDFileName : 'myESD.pool.root' +Output.EVNTFileName : 'myEVNT.pool.root' +Output.HISTFileName : 'myHIST.root' +Output.HITSFileName : 'myHITS.pool.root' +Output.RDOFileName : 'myROD.pool.root' +Output.doESD : False +Scheduler.CheckDependencies : True +Scheduler.ShowControlFlow : True +Scheduler.ShowDataDeps : True +Scheduler.ShowDataFlow : True Flag categories that can be loaded dynamically Category : Generator name : Defined in DQ : __dq : AthenaConfiguration/AllConfigFlags.py @@ -36,8 +72,113 @@ Py:ComponentAccumulator DEBUG Adding component ProxyProviderSvc/ProxyProviderS Py:ComponentAccumulator DEBUG Adding component ByteStreamAttListMetadataSvc/ByteStreamAttListMetadataSvc to the job Py:ComponentAccumulator DEBUG Adding component IOVDbMetaDataTool/IOVDbMetaDataTool to the job Py:ComponentAccumulator DEBUG Adding component ByteStreamMetadataTool/ByteStreamMetadataTool to the job +Py:Athena INFO using release [AthenaExternals-22.0.1] [x86_64-centos7-gcc8-opt] [2.0.25/141317d] -- built on [2019-03-11T2107] dynamically loading the flag Detector Flag Name : Value +Beam.BunchSpacing : 25 +Beam.Energy : [function] +Beam.NumberOfCollisions : 0 +Beam.Type : 'collisions' +Beam.estimatedLuminosity : [function] +Calo.Noise.fixedLumiForNoise : -1 +Calo.Noise.useCaloNoiseLumi : True +Calo.TopoCluster.doTreatEnergyCutAsAbsol : False +Calo.TopoCluster.doTwoGaussianNoise : True +Common.Project : 'Athena' +Common.isOnline : False +Concurrency.NumConcurrentEvents : 0 +Concurrency.NumProcs : 0 +Concurrency.NumThreads : 0 +Detector.Geometry : [function] +Detector.GeometryAFP : False +Detector.GeometryALFA : False +Detector.GeometryBCM : False +Detector.GeometryBpipe : False +Detector.GeometryCSC : False +Detector.GeometryCalo : [function] +Detector.GeometryCavern : False +Detector.GeometryDBM : False +Detector.GeometryForward : [function] +Detector.GeometryFwdRegion : False +Detector.GeometryID : [function] +Detector.GeometryLAr : False +Detector.GeometryLucid : False +Detector.GeometryMDT : False +Detector.GeometryMM : False +Detector.GeometryMuon : [function] +Detector.GeometryPixel : False +Detector.GeometryRPC : False +Detector.GeometrySCT : False +Detector.GeometryTGC : False +Detector.GeometryTRT : False +Detector.GeometryTile : False +Detector.GeometryZDC : False +Detector.GeometrysTGC : False +Detector.Overlay : [function] +Detector.OverlayBCM : False +Detector.OverlayCSC : False +Detector.OverlayCalo : [function] +Detector.OverlayDBM : False +Detector.OverlayID : [function] +Detector.OverlayLAr : False +Detector.OverlayMDT : False +Detector.OverlayMM : False +Detector.OverlayMuon : [function] +Detector.OverlayPixel : False +Detector.OverlayRPC : False +Detector.OverlaySCT : False +Detector.OverlayTGC : False +Detector.OverlayTRT : False +Detector.OverlayTile : False +Detector.OverlaysTGC : False +Detector.Simulate : [function] +Detector.SimulateAFP : False +Detector.SimulateALFA : False +Detector.SimulateBCM : False +Detector.SimulateBpipe : False +Detector.SimulateCSC : False +Detector.SimulateCalo : [function] +Detector.SimulateCavern : False +Detector.SimulateDBM : False +Detector.SimulateForward : [function] +Detector.SimulateFwdRegion : False +Detector.SimulateHGTD : False +Detector.SimulateID : [function] +Detector.SimulateLAr : False +Detector.SimulateLucid : False +Detector.SimulateMDT : False +Detector.SimulateMM : False +Detector.SimulateMuon : [function] +Detector.SimulatePixel : False +Detector.SimulateRPC : False +Detector.SimulateSCT : False +Detector.SimulateTGC : False +Detector.SimulateTRT : False +Detector.SimulateTile : False +Detector.SimulateZDC : False +Detector.SimulatesTGC : False +GeoModel.Align.Dynamic : [function] +GeoModel.AtlasVersion : 'ATLAS-R2-2016-01-00-01' +GeoModel.Layout : 'atlas' +GeoModel.Run : 'RUN2' +GeoModel.StripGeoType : 'GMX' +IOVDb.DatabaseInstance : [function] +IOVDb.GlobalTag : 'CONDBR2-BLKPA-2018-13' +Input.Files : ['/cvmfs/atlas-nightlies.cern.ch/repo/data/data-art/TrigP1Test/data17_13TeV.00327265.physics_EnhancedBias.merge.RAW._lb0100._SFO-1._0001.1'] +Input.ProjectName : [function] +Input.RunNumber : [function] +Input.isMC : False +Output.AODFileName : 'myAOD.pool.root' +Output.ESDFileName : 'myESD.pool.root' +Output.EVNTFileName : 'myEVNT.pool.root' +Output.HISTFileName : 'myHIST.root' +Output.HITSFileName : 'myHITS.pool.root' +Output.RDOFileName : 'myROD.pool.root' +Output.doESD : False +Scheduler.CheckDependencies : True +Scheduler.ShowControlFlow : True +Scheduler.ShowDataDeps : True +Scheduler.ShowDataFlow : True Flag categories that can be loaded dynamically Category : Generator name : Defined in DQ : __dq : AthenaConfiguration/AllConfigFlags.py @@ -53,12 +194,15 @@ Py:ComponentAccumulator DEBUG Adding component TagInfoMgr/TagInfoMgr to the jo Py:ComponentAccumulator DEBUG Adding component EvtPersistencySvc/EventPersistencySvc to the job Py:ComponentAccumulator DEBUG Adding component ProxyProviderSvc/ProxyProviderSvc to the job Py:ComponentAccumulator DEBUG Adding component TagInfoMgr/TagInfoMgr to the job +Py:ComponentAccumulator DEBUG Reconciled configuration of component TagInfoMgr +Py:ComponentAccumulator DEBUG Reconciled configuration of component EventPersistencySvc Py:ComponentAccumulator DEBUG Adding component ProxyProviderSvc/ProxyProviderSvc to the job Py:ComponentAccumulator DEBUG Adding component GeoModelSvc/GeoModelSvc to the job Py:ComponentAccumulator DEBUG Adding component DetDescrCnvSvc/DetDescrCnvSvc to the job Py:ComponentAccumulator DEBUG Adding component EvtPersistencySvc/EventPersistencySvc to the job Py:ComponentAccumulator DEBUG Adding component TagInfoMgr/TagInfoMgr to the job Py:ComponentAccumulator DEBUG Adding component ProxyProviderSvc/ProxyProviderSvc to the job +Py:ComponentAccumulator DEBUG Reconciled configuration of component GeoModelSvc Py:ComponentAccumulator DEBUG Adding component Muon::MuonIdHelperTool/Muon::MuonIdHelperTool to the job Py:ComponentAccumulator DEBUG Adding component GeoModelSvc/GeoModelSvc to the job Py:ComponentAccumulator DEBUG Adding component DetDescrCnvSvc/DetDescrCnvSvc to the job @@ -77,6 +221,7 @@ Py:ComponentAccumulator DEBUG Adding component CondInputLoader/CondInputLoader Py:ComponentAccumulator DEBUG Adding component IOVDbSvc/IOVDbSvc to the job Py:ComponentAccumulator DEBUG Adding component PoolSvc/PoolSvc to the job Py:ComponentAccumulator DEBUG Adding component CondSvc/CondSvc to the job +Py:ComponentAccumulator DEBUG Reconciled configuration of component ProxyProviderSvc Py:ComponentAccumulator DEBUG Adding component DBReplicaSvc/DBReplicaSvc to the job Py:ComponentAccumulator DEBUG Adding component RPCCablingDbTool/RPCCablingDbTool to the job Py:ComponentAccumulator DEBUG Adding component MuonRPC_CablingSvc/MuonRPC_CablingSvc to the job @@ -101,25 +246,37 @@ Py:ComponentAccumulator DEBUG Adding component TagInfoMgr/TagInfoMgr to the jo Py:ComponentAccumulator DEBUG Adding component EvtPersistencySvc/EventPersistencySvc to the job Py:ComponentAccumulator DEBUG Adding component ProxyProviderSvc/ProxyProviderSvc to the job Py:ComponentAccumulator DEBUG Adding component TagInfoMgr/TagInfoMgr to the job +Py:ComponentAccumulator DEBUG Reconciled configuration of component TagInfoMgr +Py:ComponentAccumulator DEBUG Reconciled configuration of component EventPersistencySvc Py:ComponentAccumulator DEBUG Adding component ProxyProviderSvc/ProxyProviderSvc to the job Py:ComponentAccumulator DEBUG Adding component GeoModelSvc/GeoModelSvc to the job Py:ComponentAccumulator DEBUG Adding component DetDescrCnvSvc/DetDescrCnvSvc to the job Py:ComponentAccumulator DEBUG Adding component EvtPersistencySvc/EventPersistencySvc to the job Py:ComponentAccumulator DEBUG Adding component TagInfoMgr/TagInfoMgr to the job Py:ComponentAccumulator DEBUG Adding component ProxyProviderSvc/ProxyProviderSvc to the job +Py:ComponentAccumulator DEBUG Reconciled configuration of component GeoModelSvc Py:ComponentAccumulator DEBUG Adding component Muon::MuonIdHelperTool/Muon::MuonIdHelperTool to the job +Py:ComponentAccumulator DEBUG Reconciled configuration of component GeoModelSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component DetDescrCnvSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component EventPersistencySvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component TagInfoMgr +Py:ComponentAccumulator DEBUG Reconciled configuration of component ProxyProviderSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component ToolSvc.Muon::MuonIdHelperTool Py:ComponentAccumulator DEBUG Adding component ROBDataProviderSvc/ROBDataProviderSvc to the job Py:ComponentAccumulator DEBUG Adding component Muon::RPC_RawDataProviderTool/RPC_RawDataProviderTool to the job Py:ComponentAccumulator DEBUG Adding component CondInputLoader/CondInputLoader to the job Py:ComponentAccumulator DEBUG Adding component GeoModelSvc/GeoModelSvc to the job Py:ComponentAccumulator DEBUG Adding component DetDescrCnvSvc/DetDescrCnvSvc to the job +Py:ComponentAccumulator DEBUG Reconciled configuration of component EventPersistencySvc Py:ComponentAccumulator DEBUG Adding component TagInfoMgr/TagInfoMgr to the job +Py:ComponentAccumulator DEBUG Reconciled configuration of component ProxyProviderSvc Py:ComponentAccumulator DEBUG Adding component RPCcablingServerSvc/RPCcablingServerSvc to the job Py:ComponentAccumulator DEBUG Adding component IOVDbSvc/IOVDbSvc to the job Py:ComponentAccumulator DEBUG Adding component PoolSvc/PoolSvc to the job Py:ComponentAccumulator DEBUG Adding component CondSvc/CondSvc to the job Py:ComponentAccumulator DEBUG Adding component DBReplicaSvc/DBReplicaSvc to the job Py:ComponentAccumulator DEBUG Adding component MuonRPC_CablingSvc/MuonRPC_CablingSvc to the job +Py:ComponentAccumulator DEBUG Reconciled configuration of component ROBDataProviderSvc Py:ComponentAccumulator DEBUG Adding component Muon::MuonIdHelperTool/Muon::MuonIdHelperTool to the job Py:ComponentAccumulator DEBUG Adding component RPCCablingDbTool/RPCCablingDbTool to the job Py:ComponentAccumulator DEBUG Adding component Muon::RPC_RawDataProviderTool/RPC_RawDataProviderTool to the job @@ -130,12 +287,15 @@ Py:ComponentAccumulator DEBUG Adding component TagInfoMgr/TagInfoMgr to the jo Py:ComponentAccumulator DEBUG Adding component EvtPersistencySvc/EventPersistencySvc to the job Py:ComponentAccumulator DEBUG Adding component ProxyProviderSvc/ProxyProviderSvc to the job Py:ComponentAccumulator DEBUG Adding component TagInfoMgr/TagInfoMgr to the job +Py:ComponentAccumulator DEBUG Reconciled configuration of component TagInfoMgr +Py:ComponentAccumulator DEBUG Reconciled configuration of component EventPersistencySvc Py:ComponentAccumulator DEBUG Adding component ProxyProviderSvc/ProxyProviderSvc to the job Py:ComponentAccumulator DEBUG Adding component GeoModelSvc/GeoModelSvc to the job Py:ComponentAccumulator DEBUG Adding component DetDescrCnvSvc/DetDescrCnvSvc to the job Py:ComponentAccumulator DEBUG Adding component EvtPersistencySvc/EventPersistencySvc to the job Py:ComponentAccumulator DEBUG Adding component TagInfoMgr/TagInfoMgr to the job Py:ComponentAccumulator DEBUG Adding component ProxyProviderSvc/ProxyProviderSvc to the job +Py:ComponentAccumulator DEBUG Reconciled configuration of component GeoModelSvc Py:ComponentAccumulator DEBUG Adding component Muon::MuonIdHelperTool/Muon::MuonIdHelperTool to the job Py:ComponentAccumulator DEBUG Adding component GeoModelSvc/GeoModelSvc to the job Py:ComponentAccumulator DEBUG Adding component DetDescrCnvSvc/DetDescrCnvSvc to the job @@ -155,6 +315,7 @@ Py:ComponentAccumulator DEBUG Adding component CondInputLoader/CondInputLoader Py:ComponentAccumulator DEBUG Adding component IOVDbSvc/IOVDbSvc to the job Py:ComponentAccumulator DEBUG Adding component PoolSvc/PoolSvc to the job Py:ComponentAccumulator DEBUG Adding component CondSvc/CondSvc to the job +Py:ComponentAccumulator DEBUG Reconciled configuration of component ProxyProviderSvc Py:ComponentAccumulator DEBUG Adding component DBReplicaSvc/DBReplicaSvc to the job Py:ComponentAccumulator DEBUG Adding component CondInputLoader/CondInputLoader to the job Py:ComponentAccumulator DEBUG Adding component GeoModelSvc/GeoModelSvc to the job @@ -176,17 +337,38 @@ Py:ComponentAccumulator DEBUG Adding component TagInfoMgr/TagInfoMgr to the jo Py:ComponentAccumulator DEBUG Adding component EvtPersistencySvc/EventPersistencySvc to the job Py:ComponentAccumulator DEBUG Adding component ProxyProviderSvc/ProxyProviderSvc to the job Py:ComponentAccumulator DEBUG Adding component TagInfoMgr/TagInfoMgr to the job +Py:ComponentAccumulator DEBUG Reconciled configuration of component TagInfoMgr +Py:ComponentAccumulator DEBUG Reconciled configuration of component EventPersistencySvc Py:ComponentAccumulator DEBUG Adding component ProxyProviderSvc/ProxyProviderSvc to the job Py:ComponentAccumulator DEBUG Adding component GeoModelSvc/GeoModelSvc to the job Py:ComponentAccumulator DEBUG Adding component DetDescrCnvSvc/DetDescrCnvSvc to the job Py:ComponentAccumulator DEBUG Adding component EvtPersistencySvc/EventPersistencySvc to the job Py:ComponentAccumulator DEBUG Adding component TagInfoMgr/TagInfoMgr to the job Py:ComponentAccumulator DEBUG Adding component ProxyProviderSvc/ProxyProviderSvc to the job +Py:ComponentAccumulator DEBUG Reconciled configuration of component GeoModelSvc Py:ComponentAccumulator DEBUG Adding component Muon::MuonIdHelperTool/Muon::MuonIdHelperTool to the job +Py:ComponentAccumulator DEBUG Reconciled configuration of component GeoModelSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component DetDescrCnvSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component EventPersistencySvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component TagInfoMgr +Py:ComponentAccumulator DEBUG Reconciled configuration of component ProxyProviderSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component ToolSvc.Muon::MuonIdHelperTool Py:ComponentAccumulator DEBUG Adding component ROBDataProviderSvc/ROBDataProviderSvc to the job Py:ComponentAccumulator DEBUG Adding component Muon::TGC_RawDataProviderTool/TGC_RawDataProviderTool to the job +Py:ComponentAccumulator DEBUG Reconciled configuration of component CondInputLoader +Py:ComponentAccumulator DEBUG Reconciled configuration of component GeoModelSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component DetDescrCnvSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component EventPersistencySvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component TagInfoMgr +Py:ComponentAccumulator DEBUG Reconciled configuration of component ProxyProviderSvc Py:ComponentAccumulator DEBUG Adding component LVL1TGC::TGCRecRoiSvc/LVL1TGC::TGCRecRoiSvc to the job Py:ComponentAccumulator DEBUG Adding component TGCcablingServerSvc/TGCcablingServerSvc to the job +Py:ComponentAccumulator DEBUG Reconciled configuration of component IOVDbSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component PoolSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component CondSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component DBReplicaSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component ROBDataProviderSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component ToolSvc.Muon::MuonIdHelperTool Py:ComponentAccumulator DEBUG Adding component Muon::TGC_RawDataProviderTool/TGC_RawDataProviderTool to the job Py:ComponentAccumulator DEBUG Adding component GeoModelSvc/GeoModelSvc to the job Py:ComponentAccumulator DEBUG Adding component DetDescrCnvSvc/DetDescrCnvSvc to the job @@ -195,12 +377,15 @@ Py:ComponentAccumulator DEBUG Adding component TagInfoMgr/TagInfoMgr to the jo Py:ComponentAccumulator DEBUG Adding component EvtPersistencySvc/EventPersistencySvc to the job Py:ComponentAccumulator DEBUG Adding component ProxyProviderSvc/ProxyProviderSvc to the job Py:ComponentAccumulator DEBUG Adding component TagInfoMgr/TagInfoMgr to the job +Py:ComponentAccumulator DEBUG Reconciled configuration of component TagInfoMgr +Py:ComponentAccumulator DEBUG Reconciled configuration of component EventPersistencySvc Py:ComponentAccumulator DEBUG Adding component ProxyProviderSvc/ProxyProviderSvc to the job Py:ComponentAccumulator DEBUG Adding component GeoModelSvc/GeoModelSvc to the job Py:ComponentAccumulator DEBUG Adding component DetDescrCnvSvc/DetDescrCnvSvc to the job Py:ComponentAccumulator DEBUG Adding component EvtPersistencySvc/EventPersistencySvc to the job Py:ComponentAccumulator DEBUG Adding component TagInfoMgr/TagInfoMgr to the job Py:ComponentAccumulator DEBUG Adding component ProxyProviderSvc/ProxyProviderSvc to the job +Py:ComponentAccumulator DEBUG Reconciled configuration of component GeoModelSvc Py:ComponentAccumulator DEBUG Adding component Muon::MuonIdHelperTool/Muon::MuonIdHelperTool to the job Py:ComponentAccumulator DEBUG Adding component GeoModelSvc/GeoModelSvc to the job Py:ComponentAccumulator DEBUG Adding component DetDescrCnvSvc/DetDescrCnvSvc to the job @@ -220,8 +405,10 @@ Py:ComponentAccumulator DEBUG Adding component CondInputLoader/CondInputLoader Py:ComponentAccumulator DEBUG Adding component IOVDbSvc/IOVDbSvc to the job Py:ComponentAccumulator DEBUG Adding component PoolSvc/PoolSvc to the job Py:ComponentAccumulator DEBUG Adding component CondSvc/CondSvc to the job +Py:ComponentAccumulator DEBUG Reconciled configuration of component ProxyProviderSvc Py:ComponentAccumulator DEBUG Adding component DBReplicaSvc/DBReplicaSvc to the job Py:ComponentAccumulator DEBUG Adding component AthenaPoolCnvSvc/AthenaPoolCnvSvc to the job +Py:ComponentAccumulator DEBUG Reconciled configuration of component EventPersistencySvc Py:ComponentAccumulator DEBUG Adding component MuonMDT_CablingAlg/MuonMDT_CablingAlg to the job Py:ComponentAccumulator DEBUG Adding component MDTCablingDbTool/MDTCablingDbTool to the job Py:ComponentAccumulator DEBUG Adding component MuonMDT_CablingSvc/MuonMDT_CablingSvc to the job @@ -262,6 +449,12 @@ Py:ComponentAccumulator DEBUG Adding component ProxyProviderSvc/ProxyProviderS Py:ComponentAccumulator DEBUG Adding component DBReplicaSvc/DBReplicaSvc to the job Py:ComponentAccumulator DEBUG Adding component AthenaPoolCnvSvc/AthenaPoolCnvSvc to the job Py:ComponentAccumulator DEBUG Adding component EvtPersistencySvc/EventPersistencySvc to the job +Py:ComponentAccumulator DEBUG Reconciled configuration of component CondInputLoader +Py:ComponentAccumulator DEBUG Reconciled configuration of component IOVDbSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component PoolSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component CondSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component ProxyProviderSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component DBReplicaSvc Py:ComponentAccumulator DEBUG Adding component AthenaPoolCnvSvc/AthenaPoolCnvSvc to the job Py:ComponentAccumulator DEBUG Adding component EvtPersistencySvc/EventPersistencySvc to the job Py:ComponentAccumulator DEBUG Adding component MagField::AtlasFieldSvc/AtlasFieldSvc to the job @@ -276,6 +469,166 @@ Py:ComponentAccumulator DEBUG Adding component EvtPersistencySvc/EventPersiste Py:ComponentAccumulator DEBUG Adding component MagField::AtlasFieldSvc/AtlasFieldSvc to the job dynamically loading the flag Muon Flag Name : Value +Beam.BunchSpacing : 25 +Beam.Energy : [function] +Beam.NumberOfCollisions : 0 +Beam.Type : 'collisions' +Beam.estimatedLuminosity : [function] +Calo.Noise.fixedLumiForNoise : -1 +Calo.Noise.useCaloNoiseLumi : True +Calo.TopoCluster.doTreatEnergyCutAsAbsol : False +Calo.TopoCluster.doTwoGaussianNoise : True +Common.Project : 'Athena' +Common.isOnline : False +Concurrency.NumConcurrentEvents : 0 +Concurrency.NumProcs : 0 +Concurrency.NumThreads : 0 +Detector.Geometry : [function] +Detector.GeometryAFP : False +Detector.GeometryALFA : False +Detector.GeometryBCM : False +Detector.GeometryBpipe : False +Detector.GeometryCSC : False +Detector.GeometryCalo : [function] +Detector.GeometryCavern : False +Detector.GeometryDBM : False +Detector.GeometryForward : [function] +Detector.GeometryFwdRegion : False +Detector.GeometryID : [function] +Detector.GeometryLAr : False +Detector.GeometryLucid : False +Detector.GeometryMDT : False +Detector.GeometryMM : False +Detector.GeometryMuon : [function] +Detector.GeometryPixel : False +Detector.GeometryRPC : False +Detector.GeometrySCT : False +Detector.GeometryTGC : False +Detector.GeometryTRT : False +Detector.GeometryTile : False +Detector.GeometryZDC : False +Detector.GeometrysTGC : False +Detector.Overlay : [function] +Detector.OverlayBCM : False +Detector.OverlayCSC : False +Detector.OverlayCalo : [function] +Detector.OverlayDBM : False +Detector.OverlayID : [function] +Detector.OverlayLAr : False +Detector.OverlayMDT : False +Detector.OverlayMM : False +Detector.OverlayMuon : [function] +Detector.OverlayPixel : False +Detector.OverlayRPC : False +Detector.OverlaySCT : False +Detector.OverlayTGC : False +Detector.OverlayTRT : False +Detector.OverlayTile : False +Detector.OverlaysTGC : False +Detector.Simulate : False +Detector.SimulateAFP : False +Detector.SimulateALFA : False +Detector.SimulateBCM : False +Detector.SimulateBpipe : False +Detector.SimulateCSC : False +Detector.SimulateCalo : False +Detector.SimulateCavern : False +Detector.SimulateDBM : False +Detector.SimulateForward : False +Detector.SimulateFwdRegion : False +Detector.SimulateHGTD : False +Detector.SimulateID : False +Detector.SimulateLAr : False +Detector.SimulateLucid : False +Detector.SimulateMDT : False +Detector.SimulateMM : False +Detector.SimulateMuon : False +Detector.SimulatePixel : False +Detector.SimulateRPC : False +Detector.SimulateSCT : False +Detector.SimulateTGC : False +Detector.SimulateTRT : False +Detector.SimulateTile : False +Detector.SimulateZDC : False +Detector.SimulatesTGC : False +GeoModel.Align.Dynamic : [function] +GeoModel.AtlasVersion : 'ATLAS-R2-2016-01-00-01' +GeoModel.Layout : 'atlas' +GeoModel.Run : 'RUN2' +GeoModel.StripGeoType : 'GMX' +IOVDb.DatabaseInstance : 'CONDBR2' +IOVDb.GlobalTag : 'CONDBR2-BLKPA-2018-13' +Input.Files : ['/cvmfs/atlas-nightlies.cern.ch/repo/data/data-art/TrigP1Test/data17_13TeV.00327265.physics_EnhancedBias.merge.RAW._lb0100._SFO-1._0001.1'] +Input.ProjectName : 'data17_13TeV' +Input.RunNumber : [function] +Input.isMC : False +Muon.Align.UseALines : False +Muon.Align.UseAsBuilt : False +Muon.Align.UseBLines : 'none' +Muon.Align.UseILines : False +Muon.Calib.CscF001FromLocalFile : False +Muon.Calib.CscNoiseFromLocalFile : False +Muon.Calib.CscPSlopeFromLocalFile : False +Muon.Calib.CscPedFromLocalFile : False +Muon.Calib.CscRmsFromLocalFile : False +Muon.Calib.CscStatusFromLocalFile : False +Muon.Calib.CscT0BaseFromLocalFile : False +Muon.Calib.CscT0PhaseFromLocalFile : False +Muon.Calib.EventTag : 'MoMu' +Muon.Calib.applyRtScaling : True +Muon.Calib.correctMdtRtForBField : False +Muon.Calib.correctMdtRtForTimeSlewing : False +Muon.Calib.correctMdtRtWireSag : False +Muon.Calib.mdtCalibrationSource : 'MDT' +Muon.Calib.mdtMode : 'ntuple' +Muon.Calib.mdtPropagationSpeedBeta : 0.85 +Muon.Calib.readMDTCalibFromBlob : True +Muon.Calib.useMLRt : True +Muon.Chi2NDofCut : 20.0 +Muon.createTrackParticles : True +Muon.doCSCs : True +Muon.doDigitization : True +Muon.doFastDigitization : False +Muon.doMDTs : True +Muon.doMSVertex : False +Muon.doMicromegas : False +Muon.doPseudoTracking : False +Muon.doRPCClusterSegmentFinding : False +Muon.doRPCs : True +Muon.doSegmentT0Fit : False +Muon.doTGCClusterSegmentFinding : False +Muon.doTGCs : True +Muon.dosTGCs : False +Muon.enableCurvedSegmentFinding : False +Muon.enableErrorTuning : False +Muon.optimiseMomentumResolutionUsingChi2 : False +Muon.patternsOnly : False +Muon.prdToxAOD : False +Muon.printSummary : False +Muon.refinementTool : 'Moore' +Muon.rpcRawToxAOD : False +Muon.segmentOrigin : 'Muon' +Muon.straightLineFitMomentum : 2000.0 +Muon.strategy : [] +Muon.trackBuilder : 'Moore' +Muon.updateSegmentSecondCoordinate : [function] +Muon.useAlignmentCorrections : False +Muon.useLooseErrorTuning : False +Muon.useSegmentMatching : [function] +Muon.useTGCPriorNextBC : False +Muon.useTrackSegmentMatching : True +Muon.useWireSagCorrections : False +Output.AODFileName : 'myAOD.pool.root' +Output.ESDFileName : 'myESD.pool.root' +Output.EVNTFileName : 'myEVNT.pool.root' +Output.HISTFileName : 'myHIST.root' +Output.HITSFileName : 'myHITS.pool.root' +Output.RDOFileName : 'myROD.pool.root' +Output.doESD : False +Scheduler.CheckDependencies : True +Scheduler.ShowControlFlow : True +Scheduler.ShowDataDeps : True +Scheduler.ShowDataFlow : True Flag categories that can be loaded dynamically Category : Generator name : Defined in DQ : __dq : AthenaConfiguration/AllConfigFlags.py @@ -302,12 +655,38 @@ Py:ComponentAccumulator DEBUG Adding component CondSvc/CondSvc to the job Py:ComponentAccumulator DEBUG Adding component ProxyProviderSvc/ProxyProviderSvc to the job Py:ComponentAccumulator DEBUG Adding component DBReplicaSvc/DBReplicaSvc to the job Py:IOVDbSvc.CondDB DEBUG Loading basic services for CondDBSetup... +Py:ConfigurableDb DEBUG loading confDb files... +Py:ConfigurableDb DEBUG -loading [/home/wlampl/master/build/x86_64-centos7-gcc8-opt/lib/libMagFieldServices.confdb]... +Py:ConfigurableDb DEBUG -loading [/home/wlampl/master/build/x86_64-centos7-gcc8-opt/lib/libCaloRec.confdb]... +Py:ConfigurableDb DEBUG -loading [/home/wlampl/master/build/x86_64-centos7-gcc8-opt/lib/libTrigUpgradeTest.confdb]... +Py:ConfigurableDb DEBUG -loading [/home/wlampl/master/build/x86_64-centos7-gcc8-opt/lib/libCaloTools.confdb]... +Py:ConfigurableDb DEBUG -loading [/home/wlampl/master/build/x86_64-centos7-gcc8-opt/lib/libLArCabling.confdb]... +Py:ConfigurableDb DEBUG -loading [/home/wlampl/master/build/x86_64-centos7-gcc8-opt/lib/libegammaCaloTools.confdb]... +Py:ConfigurableDb DEBUG -loading [/home/wlampl/master/build/x86_64-centos7-gcc8-opt/lib/libLArBadChannelTool.confdb]... +Py:ConfigurableDb DEBUG -loading [/home/wlampl/master/build/x86_64-centos7-gcc8-opt/lib/libLArCellRec.confdb]... +Py:ConfigurableDb DEBUG -loading [/home/wlampl/master/build/x86_64-centos7-gcc8-opt/lib/WorkDir.confdb]... +Py:ConfigurableDb DEBUG -loading [/home/wlampl/master/build/x86_64-centos7-gcc8-opt/lib/libTrigT2CaloCommon.confdb]... +Py:ConfigurableDb DEBUG -loading [/cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-03-11T2143/GAUDI/22.0.1/InstallArea/x86_64-centos7-gcc8-opt/lib/Gaudi.confdb]... +Py:ConfigurableDb DEBUG -loading [/cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-03-11T2143/Athena/22.0.1/InstallArea/x86_64-centos7-gcc8-opt/lib/Athena.confdb]... +Py:ConfigurableDb DEBUG loading confDb files... [DONE] +Py:ConfigurableDb DEBUG loaded 1103 confDb packages +Py:ConfigurableDb INFO Read module info for 5461 configurables from 12 genConfDb files +Py:ConfigurableDb INFO No duplicates have been found: that's good ! +Py:ConfigurableDb DEBUG : Found configurable <class 'GaudiCoreSvc.GaudiCoreSvcConf.MessageSvc'> in module GaudiCoreSvc.GaudiCoreSvcConf Py:loadBasicAthenaPool DEBUG Loading basic services for AthenaPool... +Py:ConfigurableDb DEBUG : Found configurable <class 'PoolSvc.PoolSvcConf.PoolSvc'> in module PoolSvc.PoolSvcConf +Py:ConfigurableDb DEBUG : Found configurable <class 'AthenaPoolCnvSvc.AthenaPoolCnvSvcConf.AthenaPoolCnvSvc'> in module AthenaPoolCnvSvc.AthenaPoolCnvSvcConf +Py:ConfigurableDb DEBUG : Found configurable <class 'SGComps.SGCompsConf.ProxyProviderSvc'> in module SGComps.SGCompsConf +Py:ConfigurableDb DEBUG : Found configurable <class 'AthenaServices.AthenaServicesConf.MetaDataSvc'> in module AthenaServices.AthenaServicesConf +Py:ConfigurableDb DEBUG : Found configurable <class 'StoreGate.StoreGateConf.StoreGateSvc'> in module StoreGate.StoreGateConf Py:loadBasicAthenaPool DEBUG Loading basic services for AthenaPool... [DONE] Py:loadBasicIOVDb DEBUG Loading basic services for IOVDbSvc... +Py:ConfigurableDb DEBUG : Found configurable <class 'SGComps.SGCompsConf.ProxyProviderSvc'> in module SGComps.SGCompsConf Py:Configurable ERROR attempt to add a duplicate (ServiceManager.ProxyProviderSvc) ... dupe ignored Py:loadBasicEventInfoMgt DEBUG Loading basic services for EventInfoMgt... +EventInfoMgtInit: Got release version Athena-22.0.1 Py:Configurable ERROR attempt to add a duplicate (ServiceManager.EventPersistencySvc) ... dupe ignored +Py:ConfigurableDb DEBUG : Found configurable <class 'SGComps.SGCompsConf.ProxyProviderSvc'> in module SGComps.SGCompsConf Py:Configurable ERROR attempt to add a duplicate (ServiceManager.ProxyProviderSvc) ... dupe ignored Py:loadBasicEventInfoMgt DEBUG Loading basic services for EventInfoMgt... [DONE] Py:loadBasicIOVDb DEBUG Loading basic services for IOVDb... [DONE] @@ -323,9 +702,23 @@ Py:ComponentAccumulator DEBUG Adding component ProxyProviderSvc/ProxyProviderS Py:ComponentAccumulator DEBUG Adding component DBReplicaSvc/DBReplicaSvc to the job Py:ComponentAccumulator DEBUG Adding component MuonCalib::MdtCalibDbCoolStrTool/MuonCalib::MdtCalibDbCoolStrTool to the job Py:ComponentAccumulator DEBUG Adding component MdtCalibrationDbSvc/MdtCalibrationDbSvc to the job +Py:ComponentAccumulator DEBUG Reconciled configuration of component CondInputLoader +Py:ComponentAccumulator DEBUG Reconciled configuration of component IOVDbSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component PoolSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component CondSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component ProxyProviderSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component DBReplicaSvc Py:ComponentAccumulator DEBUG Adding component MdtCalibrationDbSvc/MdtCalibrationDbSvc to the job Py:ComponentAccumulator DEBUG Adding component MuonCalib::MdtCalibDbCoolStrTool/MuonCalib::MdtCalibDbCoolStrTool to the job Py:ComponentAccumulator DEBUG Adding component MdtCalibrationSvc/MdtCalibrationSvc to the job +Py:ComponentAccumulator DEBUG Reconciled configuration of component CondInputLoader +Py:ComponentAccumulator DEBUG Reconciled configuration of component IOVDbSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component PoolSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component CondSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component ProxyProviderSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component DBReplicaSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component AthenaPoolCnvSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component EventPersistencySvc Py:ComponentAccumulator DEBUG Adding component MagField::AtlasFieldSvc/AtlasFieldSvc to the job Py:ComponentAccumulator DEBUG Adding component MdtCalibrationDbSvc/MdtCalibrationDbSvc to the job Py:ComponentAccumulator DEBUG Adding component MdtCalibrationSvc/MdtCalibrationSvc to the job @@ -337,21 +730,42 @@ Py:ComponentAccumulator DEBUG Adding component TagInfoMgr/TagInfoMgr to the jo Py:ComponentAccumulator DEBUG Adding component EvtPersistencySvc/EventPersistencySvc to the job Py:ComponentAccumulator DEBUG Adding component ProxyProviderSvc/ProxyProviderSvc to the job Py:ComponentAccumulator DEBUG Adding component TagInfoMgr/TagInfoMgr to the job +Py:ComponentAccumulator DEBUG Reconciled configuration of component TagInfoMgr +Py:ComponentAccumulator DEBUG Reconciled configuration of component EventPersistencySvc Py:ComponentAccumulator DEBUG Adding component ProxyProviderSvc/ProxyProviderSvc to the job Py:ComponentAccumulator DEBUG Adding component GeoModelSvc/GeoModelSvc to the job Py:ComponentAccumulator DEBUG Adding component DetDescrCnvSvc/DetDescrCnvSvc to the job Py:ComponentAccumulator DEBUG Adding component EvtPersistencySvc/EventPersistencySvc to the job Py:ComponentAccumulator DEBUG Adding component TagInfoMgr/TagInfoMgr to the job Py:ComponentAccumulator DEBUG Adding component ProxyProviderSvc/ProxyProviderSvc to the job +Py:ComponentAccumulator DEBUG Reconciled configuration of component GeoModelSvc Py:ComponentAccumulator DEBUG Adding component Muon::MuonIdHelperTool/Muon::MuonIdHelperTool to the job +Py:ComponentAccumulator DEBUG Reconciled configuration of component GeoModelSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component DetDescrCnvSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component EventPersistencySvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component TagInfoMgr +Py:ComponentAccumulator DEBUG Reconciled configuration of component ProxyProviderSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component ToolSvc.Muon::MuonIdHelperTool Py:ComponentAccumulator DEBUG Adding component ROBDataProviderSvc/ROBDataProviderSvc to the job Py:ComponentAccumulator DEBUG Adding component Muon::MDT_RawDataProviderTool/MDT_RawDataProviderTool to the job +Py:ComponentAccumulator DEBUG Reconciled configuration of component CondInputLoader Py:ComponentAccumulator DEBUG Adding component MuonMDT_CablingAlg/MuonMDT_CablingAlg to the job +Py:ComponentAccumulator DEBUG Reconciled configuration of component GeoModelSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component DetDescrCnvSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component EventPersistencySvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component TagInfoMgr +Py:ComponentAccumulator DEBUG Reconciled configuration of component ProxyProviderSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component IOVDbSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component PoolSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component CondSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component DBReplicaSvc Py:ComponentAccumulator DEBUG Adding component AthenaPoolCnvSvc/AthenaPoolCnvSvc to the job Py:ComponentAccumulator DEBUG Adding component MuonMDT_CablingSvc/MuonMDT_CablingSvc to the job Py:ComponentAccumulator DEBUG Adding component MagField::AtlasFieldSvc/AtlasFieldSvc to the job Py:ComponentAccumulator DEBUG Adding component MdtCalibrationDbSvc/MdtCalibrationDbSvc to the job Py:ComponentAccumulator DEBUG Adding component MdtCalibrationSvc/MdtCalibrationSvc to the job +Py:ComponentAccumulator DEBUG Reconciled configuration of component ROBDataProviderSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component ToolSvc.Muon::MuonIdHelperTool Py:ComponentAccumulator DEBUG Adding component MDTCablingDbTool/MDTCablingDbTool to the job Py:ComponentAccumulator DEBUG Adding component MuonCalib::MdtCalibDbCoolStrTool/MuonCalib::MdtCalibDbCoolStrTool to the job Py:ComponentAccumulator DEBUG Adding component Muon::MDT_RawDataProviderTool/MDT_RawDataProviderTool to the job @@ -362,12 +776,15 @@ Py:ComponentAccumulator DEBUG Adding component TagInfoMgr/TagInfoMgr to the jo Py:ComponentAccumulator DEBUG Adding component EvtPersistencySvc/EventPersistencySvc to the job Py:ComponentAccumulator DEBUG Adding component ProxyProviderSvc/ProxyProviderSvc to the job Py:ComponentAccumulator DEBUG Adding component TagInfoMgr/TagInfoMgr to the job +Py:ComponentAccumulator DEBUG Reconciled configuration of component TagInfoMgr +Py:ComponentAccumulator DEBUG Reconciled configuration of component EventPersistencySvc Py:ComponentAccumulator DEBUG Adding component ProxyProviderSvc/ProxyProviderSvc to the job Py:ComponentAccumulator DEBUG Adding component GeoModelSvc/GeoModelSvc to the job Py:ComponentAccumulator DEBUG Adding component DetDescrCnvSvc/DetDescrCnvSvc to the job Py:ComponentAccumulator DEBUG Adding component EvtPersistencySvc/EventPersistencySvc to the job Py:ComponentAccumulator DEBUG Adding component TagInfoMgr/TagInfoMgr to the job Py:ComponentAccumulator DEBUG Adding component ProxyProviderSvc/ProxyProviderSvc to the job +Py:ComponentAccumulator DEBUG Reconciled configuration of component GeoModelSvc Py:ComponentAccumulator DEBUG Adding component Muon::MuonIdHelperTool/Muon::MuonIdHelperTool to the job Py:ComponentAccumulator DEBUG Adding component GeoModelSvc/GeoModelSvc to the job Py:ComponentAccumulator DEBUG Adding component DetDescrCnvSvc/DetDescrCnvSvc to the job @@ -390,16 +807,32 @@ Py:ComponentAccumulator DEBUG Adding component TagInfoMgr/TagInfoMgr to the jo Py:ComponentAccumulator DEBUG Adding component EvtPersistencySvc/EventPersistencySvc to the job Py:ComponentAccumulator DEBUG Adding component ProxyProviderSvc/ProxyProviderSvc to the job Py:ComponentAccumulator DEBUG Adding component TagInfoMgr/TagInfoMgr to the job +Py:ComponentAccumulator DEBUG Reconciled configuration of component TagInfoMgr +Py:ComponentAccumulator DEBUG Reconciled configuration of component EventPersistencySvc Py:ComponentAccumulator DEBUG Adding component ProxyProviderSvc/ProxyProviderSvc to the job Py:ComponentAccumulator DEBUG Adding component GeoModelSvc/GeoModelSvc to the job Py:ComponentAccumulator DEBUG Adding component DetDescrCnvSvc/DetDescrCnvSvc to the job Py:ComponentAccumulator DEBUG Adding component EvtPersistencySvc/EventPersistencySvc to the job Py:ComponentAccumulator DEBUG Adding component TagInfoMgr/TagInfoMgr to the job Py:ComponentAccumulator DEBUG Adding component ProxyProviderSvc/ProxyProviderSvc to the job +Py:ComponentAccumulator DEBUG Reconciled configuration of component GeoModelSvc Py:ComponentAccumulator DEBUG Adding component Muon::MuonIdHelperTool/Muon::MuonIdHelperTool to the job +Py:ComponentAccumulator DEBUG Reconciled configuration of component GeoModelSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component DetDescrCnvSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component EventPersistencySvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component TagInfoMgr +Py:ComponentAccumulator DEBUG Reconciled configuration of component ProxyProviderSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component ToolSvc.Muon::MuonIdHelperTool Py:ComponentAccumulator DEBUG Adding component ROBDataProviderSvc/ROBDataProviderSvc to the job Py:ComponentAccumulator DEBUG Adding component Muon::CSC_RawDataProviderTool/CSC_RawDataProviderTool to the job +Py:ComponentAccumulator DEBUG Reconciled configuration of component GeoModelSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component DetDescrCnvSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component EventPersistencySvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component TagInfoMgr +Py:ComponentAccumulator DEBUG Reconciled configuration of component ProxyProviderSvc Py:ComponentAccumulator DEBUG Adding component CSCcablingSvc/CSCcablingSvc to the job +Py:ComponentAccumulator DEBUG Reconciled configuration of component ROBDataProviderSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component ToolSvc.Muon::MuonIdHelperTool Py:ComponentAccumulator DEBUG Adding component Muon::CSC_RawDataProviderTool/CSC_RawDataProviderTool to the job Py:ComponentAccumulator DEBUG Adding component GeoModelSvc/GeoModelSvc to the job Py:ComponentAccumulator DEBUG Adding component DetDescrCnvSvc/DetDescrCnvSvc to the job @@ -408,12 +841,15 @@ Py:ComponentAccumulator DEBUG Adding component TagInfoMgr/TagInfoMgr to the jo Py:ComponentAccumulator DEBUG Adding component EvtPersistencySvc/EventPersistencySvc to the job Py:ComponentAccumulator DEBUG Adding component ProxyProviderSvc/ProxyProviderSvc to the job Py:ComponentAccumulator DEBUG Adding component TagInfoMgr/TagInfoMgr to the job +Py:ComponentAccumulator DEBUG Reconciled configuration of component TagInfoMgr +Py:ComponentAccumulator DEBUG Reconciled configuration of component EventPersistencySvc Py:ComponentAccumulator DEBUG Adding component ProxyProviderSvc/ProxyProviderSvc to the job Py:ComponentAccumulator DEBUG Adding component GeoModelSvc/GeoModelSvc to the job Py:ComponentAccumulator DEBUG Adding component DetDescrCnvSvc/DetDescrCnvSvc to the job Py:ComponentAccumulator DEBUG Adding component EvtPersistencySvc/EventPersistencySvc to the job Py:ComponentAccumulator DEBUG Adding component TagInfoMgr/TagInfoMgr to the job Py:ComponentAccumulator DEBUG Adding component ProxyProviderSvc/ProxyProviderSvc to the job +Py:ComponentAccumulator DEBUG Reconciled configuration of component GeoModelSvc Py:ComponentAccumulator DEBUG Adding component Muon::MuonIdHelperTool/Muon::MuonIdHelperTool to the job Py:ComponentAccumulator DEBUG Adding component GeoModelSvc/GeoModelSvc to the job Py:ComponentAccumulator DEBUG Adding component DetDescrCnvSvc/DetDescrCnvSvc to the job @@ -432,6 +868,7 @@ Py:ComponentAccumulator DEBUG Adding component CondInputLoader/CondInputLoader Py:ComponentAccumulator DEBUG Adding component IOVDbSvc/IOVDbSvc to the job Py:ComponentAccumulator DEBUG Adding component PoolSvc/PoolSvc to the job Py:ComponentAccumulator DEBUG Adding component CondSvc/CondSvc to the job +Py:ComponentAccumulator DEBUG Reconciled configuration of component ProxyProviderSvc Py:ComponentAccumulator DEBUG Adding component DBReplicaSvc/DBReplicaSvc to the job Py:ComponentAccumulator DEBUG Adding component RPCCablingDbTool/RPCCablingDbTool to the job Py:ComponentAccumulator DEBUG Adding component MuonRPC_CablingSvc/MuonRPC_CablingSvc to the job @@ -456,14 +893,38 @@ Py:ComponentAccumulator DEBUG Adding component TagInfoMgr/TagInfoMgr to the jo Py:ComponentAccumulator DEBUG Adding component EvtPersistencySvc/EventPersistencySvc to the job Py:ComponentAccumulator DEBUG Adding component ProxyProviderSvc/ProxyProviderSvc to the job Py:ComponentAccumulator DEBUG Adding component TagInfoMgr/TagInfoMgr to the job +Py:ComponentAccumulator DEBUG Reconciled configuration of component TagInfoMgr +Py:ComponentAccumulator DEBUG Reconciled configuration of component EventPersistencySvc Py:ComponentAccumulator DEBUG Adding component ProxyProviderSvc/ProxyProviderSvc to the job Py:ComponentAccumulator DEBUG Adding component GeoModelSvc/GeoModelSvc to the job Py:ComponentAccumulator DEBUG Adding component DetDescrCnvSvc/DetDescrCnvSvc to the job Py:ComponentAccumulator DEBUG Adding component EvtPersistencySvc/EventPersistencySvc to the job Py:ComponentAccumulator DEBUG Adding component TagInfoMgr/TagInfoMgr to the job Py:ComponentAccumulator DEBUG Adding component ProxyProviderSvc/ProxyProviderSvc to the job +Py:ComponentAccumulator DEBUG Reconciled configuration of component GeoModelSvc Py:ComponentAccumulator DEBUG Adding component Muon::MuonIdHelperTool/Muon::MuonIdHelperTool to the job +Py:ComponentAccumulator DEBUG Reconciled configuration of component GeoModelSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component DetDescrCnvSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component EventPersistencySvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component TagInfoMgr +Py:ComponentAccumulator DEBUG Reconciled configuration of component ProxyProviderSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component ToolSvc.Muon::MuonIdHelperTool +Py:ConfigurableDb DEBUG : Found configurable <class 'MuonRPC_CnvTools.MuonRPC_CnvToolsConf.Muon__RpcRDO_Decoder'> in module MuonRPC_CnvTools.MuonRPC_CnvToolsConf Py:ComponentAccumulator DEBUG Adding component Muon::RpcRdoToPrepDataTool/RpcRdoToRpcPrepDataTool to the job +Py:ComponentAccumulator DEBUG Reconciled configuration of component CondInputLoader +Py:ComponentAccumulator DEBUG Reconciled configuration of component GeoModelSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component DetDescrCnvSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component EventPersistencySvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component TagInfoMgr +Py:ComponentAccumulator DEBUG Reconciled configuration of component ProxyProviderSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component RPCcablingServerSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component IOVDbSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component PoolSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component CondSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component DBReplicaSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component MuonRPC_CablingSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component ToolSvc.Muon::MuonIdHelperTool +Py:ComponentAccumulator DEBUG Reconciled configuration of component ToolSvc.RPCCablingDbTool Py:ComponentAccumulator DEBUG Adding component Muon::RpcRdoToPrepDataTool/RpcRdoToRpcPrepDataTool to the job Py:ComponentAccumulator DEBUG Adding component GeoModelSvc/GeoModelSvc to the job Py:ComponentAccumulator DEBUG Adding component DetDescrCnvSvc/DetDescrCnvSvc to the job @@ -472,12 +933,15 @@ Py:ComponentAccumulator DEBUG Adding component TagInfoMgr/TagInfoMgr to the jo Py:ComponentAccumulator DEBUG Adding component EvtPersistencySvc/EventPersistencySvc to the job Py:ComponentAccumulator DEBUG Adding component ProxyProviderSvc/ProxyProviderSvc to the job Py:ComponentAccumulator DEBUG Adding component TagInfoMgr/TagInfoMgr to the job +Py:ComponentAccumulator DEBUG Reconciled configuration of component TagInfoMgr +Py:ComponentAccumulator DEBUG Reconciled configuration of component EventPersistencySvc Py:ComponentAccumulator DEBUG Adding component ProxyProviderSvc/ProxyProviderSvc to the job Py:ComponentAccumulator DEBUG Adding component GeoModelSvc/GeoModelSvc to the job Py:ComponentAccumulator DEBUG Adding component DetDescrCnvSvc/DetDescrCnvSvc to the job Py:ComponentAccumulator DEBUG Adding component EvtPersistencySvc/EventPersistencySvc to the job Py:ComponentAccumulator DEBUG Adding component TagInfoMgr/TagInfoMgr to the job Py:ComponentAccumulator DEBUG Adding component ProxyProviderSvc/ProxyProviderSvc to the job +Py:ComponentAccumulator DEBUG Reconciled configuration of component GeoModelSvc Py:ComponentAccumulator DEBUG Adding component Muon::MuonIdHelperTool/Muon::MuonIdHelperTool to the job Py:ComponentAccumulator DEBUG Adding component GeoModelSvc/GeoModelSvc to the job Py:ComponentAccumulator DEBUG Adding component DetDescrCnvSvc/DetDescrCnvSvc to the job @@ -497,6 +961,7 @@ Py:ComponentAccumulator DEBUG Adding component CondInputLoader/CondInputLoader Py:ComponentAccumulator DEBUG Adding component IOVDbSvc/IOVDbSvc to the job Py:ComponentAccumulator DEBUG Adding component PoolSvc/PoolSvc to the job Py:ComponentAccumulator DEBUG Adding component CondSvc/CondSvc to the job +Py:ComponentAccumulator DEBUG Reconciled configuration of component ProxyProviderSvc Py:ComponentAccumulator DEBUG Adding component DBReplicaSvc/DBReplicaSvc to the job Py:ComponentAccumulator DEBUG Adding component CondInputLoader/CondInputLoader to the job Py:ComponentAccumulator DEBUG Adding component GeoModelSvc/GeoModelSvc to the job @@ -518,14 +983,36 @@ Py:ComponentAccumulator DEBUG Adding component TagInfoMgr/TagInfoMgr to the jo Py:ComponentAccumulator DEBUG Adding component EvtPersistencySvc/EventPersistencySvc to the job Py:ComponentAccumulator DEBUG Adding component ProxyProviderSvc/ProxyProviderSvc to the job Py:ComponentAccumulator DEBUG Adding component TagInfoMgr/TagInfoMgr to the job +Py:ComponentAccumulator DEBUG Reconciled configuration of component TagInfoMgr +Py:ComponentAccumulator DEBUG Reconciled configuration of component EventPersistencySvc Py:ComponentAccumulator DEBUG Adding component ProxyProviderSvc/ProxyProviderSvc to the job Py:ComponentAccumulator DEBUG Adding component GeoModelSvc/GeoModelSvc to the job Py:ComponentAccumulator DEBUG Adding component DetDescrCnvSvc/DetDescrCnvSvc to the job Py:ComponentAccumulator DEBUG Adding component EvtPersistencySvc/EventPersistencySvc to the job Py:ComponentAccumulator DEBUG Adding component TagInfoMgr/TagInfoMgr to the job Py:ComponentAccumulator DEBUG Adding component ProxyProviderSvc/ProxyProviderSvc to the job +Py:ComponentAccumulator DEBUG Reconciled configuration of component GeoModelSvc Py:ComponentAccumulator DEBUG Adding component Muon::MuonIdHelperTool/Muon::MuonIdHelperTool to the job +Py:ComponentAccumulator DEBUG Reconciled configuration of component GeoModelSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component DetDescrCnvSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component EventPersistencySvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component TagInfoMgr +Py:ComponentAccumulator DEBUG Reconciled configuration of component ProxyProviderSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component ToolSvc.Muon::MuonIdHelperTool Py:ComponentAccumulator DEBUG Adding component Muon::TgcRdoToPrepDataTool/TgcRdoToTgcPrepDataTool to the job +Py:ComponentAccumulator DEBUG Reconciled configuration of component CondInputLoader +Py:ComponentAccumulator DEBUG Reconciled configuration of component GeoModelSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component DetDescrCnvSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component EventPersistencySvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component TagInfoMgr +Py:ComponentAccumulator DEBUG Reconciled configuration of component ProxyProviderSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component LVL1TGC::TGCRecRoiSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component TGCcablingServerSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component IOVDbSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component PoolSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component CondSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component DBReplicaSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component ToolSvc.Muon::MuonIdHelperTool Py:ComponentAccumulator DEBUG Adding component Muon::TgcRdoToPrepDataTool/TgcRdoToTgcPrepDataTool to the job Py:ComponentAccumulator DEBUG Adding component GeoModelSvc/GeoModelSvc to the job Py:ComponentAccumulator DEBUG Adding component DetDescrCnvSvc/DetDescrCnvSvc to the job @@ -534,12 +1021,15 @@ Py:ComponentAccumulator DEBUG Adding component TagInfoMgr/TagInfoMgr to the jo Py:ComponentAccumulator DEBUG Adding component EvtPersistencySvc/EventPersistencySvc to the job Py:ComponentAccumulator DEBUG Adding component ProxyProviderSvc/ProxyProviderSvc to the job Py:ComponentAccumulator DEBUG Adding component TagInfoMgr/TagInfoMgr to the job +Py:ComponentAccumulator DEBUG Reconciled configuration of component TagInfoMgr +Py:ComponentAccumulator DEBUG Reconciled configuration of component EventPersistencySvc Py:ComponentAccumulator DEBUG Adding component ProxyProviderSvc/ProxyProviderSvc to the job Py:ComponentAccumulator DEBUG Adding component GeoModelSvc/GeoModelSvc to the job Py:ComponentAccumulator DEBUG Adding component DetDescrCnvSvc/DetDescrCnvSvc to the job Py:ComponentAccumulator DEBUG Adding component EvtPersistencySvc/EventPersistencySvc to the job Py:ComponentAccumulator DEBUG Adding component TagInfoMgr/TagInfoMgr to the job Py:ComponentAccumulator DEBUG Adding component ProxyProviderSvc/ProxyProviderSvc to the job +Py:ComponentAccumulator DEBUG Reconciled configuration of component GeoModelSvc Py:ComponentAccumulator DEBUG Adding component Muon::MuonIdHelperTool/Muon::MuonIdHelperTool to the job Py:ComponentAccumulator DEBUG Adding component GeoModelSvc/GeoModelSvc to the job Py:ComponentAccumulator DEBUG Adding component DetDescrCnvSvc/DetDescrCnvSvc to the job @@ -559,8 +1049,10 @@ Py:ComponentAccumulator DEBUG Adding component CondInputLoader/CondInputLoader Py:ComponentAccumulator DEBUG Adding component IOVDbSvc/IOVDbSvc to the job Py:ComponentAccumulator DEBUG Adding component PoolSvc/PoolSvc to the job Py:ComponentAccumulator DEBUG Adding component CondSvc/CondSvc to the job +Py:ComponentAccumulator DEBUG Reconciled configuration of component ProxyProviderSvc Py:ComponentAccumulator DEBUG Adding component DBReplicaSvc/DBReplicaSvc to the job Py:ComponentAccumulator DEBUG Adding component AthenaPoolCnvSvc/AthenaPoolCnvSvc to the job +Py:ComponentAccumulator DEBUG Reconciled configuration of component EventPersistencySvc Py:ComponentAccumulator DEBUG Adding component MuonMDT_CablingAlg/MuonMDT_CablingAlg to the job Py:ComponentAccumulator DEBUG Adding component MDTCablingDbTool/MDTCablingDbTool to the job Py:ComponentAccumulator DEBUG Adding component MuonMDT_CablingSvc/MuonMDT_CablingSvc to the job @@ -599,6 +1091,12 @@ Py:ComponentAccumulator DEBUG Adding component ProxyProviderSvc/ProxyProviderS Py:ComponentAccumulator DEBUG Adding component DBReplicaSvc/DBReplicaSvc to the job Py:ComponentAccumulator DEBUG Adding component AthenaPoolCnvSvc/AthenaPoolCnvSvc to the job Py:ComponentAccumulator DEBUG Adding component EvtPersistencySvc/EventPersistencySvc to the job +Py:ComponentAccumulator DEBUG Reconciled configuration of component CondInputLoader +Py:ComponentAccumulator DEBUG Reconciled configuration of component IOVDbSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component PoolSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component CondSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component ProxyProviderSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component DBReplicaSvc Py:ComponentAccumulator DEBUG Adding component AthenaPoolCnvSvc/AthenaPoolCnvSvc to the job Py:ComponentAccumulator DEBUG Adding component EvtPersistencySvc/EventPersistencySvc to the job Py:ComponentAccumulator DEBUG Adding component MagField::AtlasFieldSvc/AtlasFieldSvc to the job @@ -638,9 +1136,23 @@ Py:ComponentAccumulator DEBUG Adding component ProxyProviderSvc/ProxyProviderS Py:ComponentAccumulator DEBUG Adding component DBReplicaSvc/DBReplicaSvc to the job Py:ComponentAccumulator DEBUG Adding component MuonCalib::MdtCalibDbCoolStrTool/MuonCalib::MdtCalibDbCoolStrTool to the job Py:ComponentAccumulator DEBUG Adding component MdtCalibrationDbSvc/MdtCalibrationDbSvc to the job +Py:ComponentAccumulator DEBUG Reconciled configuration of component CondInputLoader +Py:ComponentAccumulator DEBUG Reconciled configuration of component IOVDbSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component PoolSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component CondSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component ProxyProviderSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component DBReplicaSvc Py:ComponentAccumulator DEBUG Adding component MdtCalibrationDbSvc/MdtCalibrationDbSvc to the job Py:ComponentAccumulator DEBUG Adding component MuonCalib::MdtCalibDbCoolStrTool/MuonCalib::MdtCalibDbCoolStrTool to the job Py:ComponentAccumulator DEBUG Adding component MdtCalibrationSvc/MdtCalibrationSvc to the job +Py:ComponentAccumulator DEBUG Reconciled configuration of component CondInputLoader +Py:ComponentAccumulator DEBUG Reconciled configuration of component IOVDbSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component PoolSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component CondSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component ProxyProviderSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component DBReplicaSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component AthenaPoolCnvSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component EventPersistencySvc Py:ComponentAccumulator DEBUG Adding component MagField::AtlasFieldSvc/AtlasFieldSvc to the job Py:ComponentAccumulator DEBUG Adding component MdtCalibrationDbSvc/MdtCalibrationDbSvc to the job Py:ComponentAccumulator DEBUG Adding component MdtCalibrationSvc/MdtCalibrationSvc to the job @@ -652,14 +1164,42 @@ Py:ComponentAccumulator DEBUG Adding component TagInfoMgr/TagInfoMgr to the jo Py:ComponentAccumulator DEBUG Adding component EvtPersistencySvc/EventPersistencySvc to the job Py:ComponentAccumulator DEBUG Adding component ProxyProviderSvc/ProxyProviderSvc to the job Py:ComponentAccumulator DEBUG Adding component TagInfoMgr/TagInfoMgr to the job +Py:ComponentAccumulator DEBUG Reconciled configuration of component TagInfoMgr +Py:ComponentAccumulator DEBUG Reconciled configuration of component EventPersistencySvc Py:ComponentAccumulator DEBUG Adding component ProxyProviderSvc/ProxyProviderSvc to the job Py:ComponentAccumulator DEBUG Adding component GeoModelSvc/GeoModelSvc to the job Py:ComponentAccumulator DEBUG Adding component DetDescrCnvSvc/DetDescrCnvSvc to the job Py:ComponentAccumulator DEBUG Adding component EvtPersistencySvc/EventPersistencySvc to the job Py:ComponentAccumulator DEBUG Adding component TagInfoMgr/TagInfoMgr to the job Py:ComponentAccumulator DEBUG Adding component ProxyProviderSvc/ProxyProviderSvc to the job +Py:ComponentAccumulator DEBUG Reconciled configuration of component GeoModelSvc Py:ComponentAccumulator DEBUG Adding component Muon::MuonIdHelperTool/Muon::MuonIdHelperTool to the job +Py:ComponentAccumulator DEBUG Reconciled configuration of component GeoModelSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component DetDescrCnvSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component EventPersistencySvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component TagInfoMgr +Py:ComponentAccumulator DEBUG Reconciled configuration of component ProxyProviderSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component ToolSvc.Muon::MuonIdHelperTool Py:ComponentAccumulator DEBUG Adding component Muon::MdtRdoToPrepDataTool/MdtRdoToMdtPrepDataTool to the job +Py:ComponentAccumulator DEBUG Reconciled configuration of component CondInputLoader +Py:ComponentAccumulator DEBUG Reconciled configuration of component MuonMDT_CablingAlg +Py:ComponentAccumulator DEBUG Reconciled configuration of component GeoModelSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component DetDescrCnvSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component EventPersistencySvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component TagInfoMgr +Py:ComponentAccumulator DEBUG Reconciled configuration of component ProxyProviderSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component IOVDbSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component PoolSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component CondSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component DBReplicaSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component AthenaPoolCnvSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component MuonMDT_CablingSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component AtlasFieldSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component MdtCalibrationDbSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component MdtCalibrationSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component ToolSvc.Muon::MuonIdHelperTool +Py:ComponentAccumulator DEBUG Reconciled configuration of component ToolSvc.MDTCablingDbTool +Py:ComponentAccumulator DEBUG Reconciled configuration of component ToolSvc.MuonCalib::MdtCalibDbCoolStrTool Py:ComponentAccumulator DEBUG Adding component Muon::MdtRdoToPrepDataTool/MdtRdoToMdtPrepDataTool to the job Py:ComponentAccumulator DEBUG Adding component GeoModelSvc/GeoModelSvc to the job Py:ComponentAccumulator DEBUG Adding component DetDescrCnvSvc/DetDescrCnvSvc to the job @@ -668,12 +1208,15 @@ Py:ComponentAccumulator DEBUG Adding component TagInfoMgr/TagInfoMgr to the jo Py:ComponentAccumulator DEBUG Adding component EvtPersistencySvc/EventPersistencySvc to the job Py:ComponentAccumulator DEBUG Adding component ProxyProviderSvc/ProxyProviderSvc to the job Py:ComponentAccumulator DEBUG Adding component TagInfoMgr/TagInfoMgr to the job +Py:ComponentAccumulator DEBUG Reconciled configuration of component TagInfoMgr +Py:ComponentAccumulator DEBUG Reconciled configuration of component EventPersistencySvc Py:ComponentAccumulator DEBUG Adding component ProxyProviderSvc/ProxyProviderSvc to the job Py:ComponentAccumulator DEBUG Adding component GeoModelSvc/GeoModelSvc to the job Py:ComponentAccumulator DEBUG Adding component DetDescrCnvSvc/DetDescrCnvSvc to the job Py:ComponentAccumulator DEBUG Adding component EvtPersistencySvc/EventPersistencySvc to the job Py:ComponentAccumulator DEBUG Adding component TagInfoMgr/TagInfoMgr to the job Py:ComponentAccumulator DEBUG Adding component ProxyProviderSvc/ProxyProviderSvc to the job +Py:ComponentAccumulator DEBUG Reconciled configuration of component GeoModelSvc Py:ComponentAccumulator DEBUG Adding component Muon::MuonIdHelperTool/Muon::MuonIdHelperTool to the job Py:ComponentAccumulator DEBUG Adding component GeoModelSvc/GeoModelSvc to the job Py:ComponentAccumulator DEBUG Adding component DetDescrCnvSvc/DetDescrCnvSvc to the job @@ -720,6 +1263,12 @@ Py:ComponentAccumulator DEBUG Adding component PoolSvc/PoolSvc to the job Py:ComponentAccumulator DEBUG Adding component CondSvc/CondSvc to the job Py:ComponentAccumulator DEBUG Adding component ProxyProviderSvc/ProxyProviderSvc to the job Py:ComponentAccumulator DEBUG Adding component DBReplicaSvc/DBReplicaSvc to the job +Py:ComponentAccumulator DEBUG Reconciled configuration of component CondInputLoader +Py:ComponentAccumulator DEBUG Reconciled configuration of component IOVDbSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component PoolSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component CondSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component ProxyProviderSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component DBReplicaSvc Py:ComponentAccumulator DEBUG Adding component CondInputLoader/CondInputLoader to the job Py:ComponentAccumulator DEBUG Adding component IOVDbSvc/IOVDbSvc to the job Py:ComponentAccumulator DEBUG Adding component PoolSvc/PoolSvc to the job @@ -732,6 +1281,12 @@ Py:ComponentAccumulator DEBUG Adding component PoolSvc/PoolSvc to the job Py:ComponentAccumulator DEBUG Adding component CondSvc/CondSvc to the job Py:ComponentAccumulator DEBUG Adding component ProxyProviderSvc/ProxyProviderSvc to the job Py:ComponentAccumulator DEBUG Adding component DBReplicaSvc/DBReplicaSvc to the job +Py:ComponentAccumulator DEBUG Reconciled configuration of component CondInputLoader +Py:ComponentAccumulator DEBUG Reconciled configuration of component IOVDbSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component PoolSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component CondSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component ProxyProviderSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component DBReplicaSvc Py:ComponentAccumulator DEBUG Adding component CondInputLoader/CondInputLoader to the job Py:ComponentAccumulator DEBUG Adding component IOVDbSvc/IOVDbSvc to the job Py:ComponentAccumulator DEBUG Adding component PoolSvc/PoolSvc to the job @@ -744,6 +1299,12 @@ Py:ComponentAccumulator DEBUG Adding component PoolSvc/PoolSvc to the job Py:ComponentAccumulator DEBUG Adding component CondSvc/CondSvc to the job Py:ComponentAccumulator DEBUG Adding component ProxyProviderSvc/ProxyProviderSvc to the job Py:ComponentAccumulator DEBUG Adding component DBReplicaSvc/DBReplicaSvc to the job +Py:ComponentAccumulator DEBUG Reconciled configuration of component CondInputLoader +Py:ComponentAccumulator DEBUG Reconciled configuration of component IOVDbSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component PoolSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component CondSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component ProxyProviderSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component DBReplicaSvc Py:ComponentAccumulator DEBUG Adding component CondInputLoader/CondInputLoader to the job Py:ComponentAccumulator DEBUG Adding component IOVDbSvc/IOVDbSvc to the job Py:ComponentAccumulator DEBUG Adding component PoolSvc/PoolSvc to the job @@ -756,6 +1317,12 @@ Py:ComponentAccumulator DEBUG Adding component PoolSvc/PoolSvc to the job Py:ComponentAccumulator DEBUG Adding component CondSvc/CondSvc to the job Py:ComponentAccumulator DEBUG Adding component ProxyProviderSvc/ProxyProviderSvc to the job Py:ComponentAccumulator DEBUG Adding component DBReplicaSvc/DBReplicaSvc to the job +Py:ComponentAccumulator DEBUG Reconciled configuration of component CondInputLoader +Py:ComponentAccumulator DEBUG Reconciled configuration of component IOVDbSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component PoolSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component CondSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component ProxyProviderSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component DBReplicaSvc Py:ComponentAccumulator DEBUG Adding component CondInputLoader/CondInputLoader to the job Py:ComponentAccumulator DEBUG Adding component IOVDbSvc/IOVDbSvc to the job Py:ComponentAccumulator DEBUG Adding component PoolSvc/PoolSvc to the job @@ -768,6 +1335,12 @@ Py:ComponentAccumulator DEBUG Adding component PoolSvc/PoolSvc to the job Py:ComponentAccumulator DEBUG Adding component CondSvc/CondSvc to the job Py:ComponentAccumulator DEBUG Adding component ProxyProviderSvc/ProxyProviderSvc to the job Py:ComponentAccumulator DEBUG Adding component DBReplicaSvc/DBReplicaSvc to the job +Py:ComponentAccumulator DEBUG Reconciled configuration of component CondInputLoader +Py:ComponentAccumulator DEBUG Reconciled configuration of component IOVDbSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component PoolSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component CondSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component ProxyProviderSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component DBReplicaSvc Py:ComponentAccumulator DEBUG Adding component CondInputLoader/CondInputLoader to the job Py:ComponentAccumulator DEBUG Adding component IOVDbSvc/IOVDbSvc to the job Py:ComponentAccumulator DEBUG Adding component PoolSvc/PoolSvc to the job @@ -780,6 +1353,12 @@ Py:ComponentAccumulator DEBUG Adding component PoolSvc/PoolSvc to the job Py:ComponentAccumulator DEBUG Adding component CondSvc/CondSvc to the job Py:ComponentAccumulator DEBUG Adding component ProxyProviderSvc/ProxyProviderSvc to the job Py:ComponentAccumulator DEBUG Adding component DBReplicaSvc/DBReplicaSvc to the job +Py:ComponentAccumulator DEBUG Reconciled configuration of component CondInputLoader +Py:ComponentAccumulator DEBUG Reconciled configuration of component IOVDbSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component PoolSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component CondSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component ProxyProviderSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component DBReplicaSvc Py:ComponentAccumulator DEBUG Adding component CondInputLoader/CondInputLoader to the job Py:ComponentAccumulator DEBUG Adding component IOVDbSvc/IOVDbSvc to the job Py:ComponentAccumulator DEBUG Adding component PoolSvc/PoolSvc to the job @@ -792,11 +1371,18 @@ Py:ComponentAccumulator DEBUG Adding component PoolSvc/PoolSvc to the job Py:ComponentAccumulator DEBUG Adding component CondSvc/CondSvc to the job Py:ComponentAccumulator DEBUG Adding component ProxyProviderSvc/ProxyProviderSvc to the job Py:ComponentAccumulator DEBUG Adding component DBReplicaSvc/DBReplicaSvc to the job +Py:ComponentAccumulator DEBUG Reconciled configuration of component CondInputLoader +Py:ComponentAccumulator DEBUG Reconciled configuration of component IOVDbSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component PoolSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component CondSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component ProxyProviderSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component DBReplicaSvc Py:ComponentAccumulator DEBUG Adding component CondInputLoader/CondInputLoader to the job Py:ComponentAccumulator DEBUG Adding component MuonCalib::CscCoolStrSvc/MuonCalib::CscCoolStrSvc to the job Py:ComponentAccumulator DEBUG Adding component IOVDbSvc/IOVDbSvc to the job Py:ComponentAccumulator DEBUG Adding component PoolSvc/PoolSvc to the job Py:ComponentAccumulator DEBUG Adding component CondSvc/CondSvc to the job +Py:ComponentAccumulator DEBUG Reconciled configuration of component ProxyProviderSvc Py:ComponentAccumulator DEBUG Adding component DBReplicaSvc/DBReplicaSvc to the job Py:ComponentAccumulator DEBUG Adding component GeoModelSvc/GeoModelSvc to the job Py:ComponentAccumulator DEBUG Adding component DetDescrCnvSvc/DetDescrCnvSvc to the job @@ -805,19 +1391,48 @@ Py:ComponentAccumulator DEBUG Adding component TagInfoMgr/TagInfoMgr to the jo Py:ComponentAccumulator DEBUG Adding component EvtPersistencySvc/EventPersistencySvc to the job Py:ComponentAccumulator DEBUG Adding component ProxyProviderSvc/ProxyProviderSvc to the job Py:ComponentAccumulator DEBUG Adding component TagInfoMgr/TagInfoMgr to the job +Py:ComponentAccumulator DEBUG Reconciled configuration of component TagInfoMgr +Py:ComponentAccumulator DEBUG Reconciled configuration of component EventPersistencySvc Py:ComponentAccumulator DEBUG Adding component ProxyProviderSvc/ProxyProviderSvc to the job Py:ComponentAccumulator DEBUG Adding component GeoModelSvc/GeoModelSvc to the job Py:ComponentAccumulator DEBUG Adding component DetDescrCnvSvc/DetDescrCnvSvc to the job Py:ComponentAccumulator DEBUG Adding component EvtPersistencySvc/EventPersistencySvc to the job Py:ComponentAccumulator DEBUG Adding component TagInfoMgr/TagInfoMgr to the job Py:ComponentAccumulator DEBUG Adding component ProxyProviderSvc/ProxyProviderSvc to the job +Py:ComponentAccumulator DEBUG Reconciled configuration of component GeoModelSvc Py:ComponentAccumulator DEBUG Adding component Muon::MuonIdHelperTool/Muon::MuonIdHelperTool to the job +Py:ComponentAccumulator DEBUG Reconciled configuration of component GeoModelSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component DetDescrCnvSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component EventPersistencySvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component TagInfoMgr +Py:ComponentAccumulator DEBUG Reconciled configuration of component ProxyProviderSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component ToolSvc.Muon::MuonIdHelperTool +Py:ConfigurableDb DEBUG : Found configurable <class 'MuonCSC_CnvTools.MuonCSC_CnvToolsConf.Muon__CscRDO_Decoder'> in module MuonCSC_CnvTools.MuonCSC_CnvToolsConf +Py:ConfigurableDb DEBUG : Found configurable <class 'CscCalibTools.CscCalibToolsConf.CscCalibTool'> in module CscCalibTools.CscCalibToolsConf Py:ComponentAccumulator DEBUG Adding component Muon::CscRdoToCscPrepDataTool/CscRdoToCscPrepDataTool to the job +Py:ComponentAccumulator DEBUG Reconciled configuration of component CondInputLoader +Py:ComponentAccumulator DEBUG Reconciled configuration of component GeoModelSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component DetDescrCnvSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component EventPersistencySvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component TagInfoMgr +Py:ComponentAccumulator DEBUG Reconciled configuration of component ProxyProviderSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component CSCcablingSvc Py:ComponentAccumulator DEBUG Adding component MuonCalib::CscCoolStrSvc/MuonCalib::CscCoolStrSvc to the job +Py:ComponentAccumulator DEBUG Reconciled configuration of component IOVDbSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component PoolSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component CondSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component DBReplicaSvc +Py:ComponentAccumulator DEBUG Reconciled configuration of component ToolSvc.Muon::MuonIdHelperTool Py:ComponentAccumulator DEBUG Adding component Muon::CscRdoToCscPrepDataTool/CscRdoToCscPrepDataTool to the job Py:ComponentAccumulator DEBUG Adding component CscThresholdClusterBuilderTool/CscThesholdClusterBuilderTool to the job Py:ComponentAccumulator DEBUG Adding component CscThresholdClusterBuilderTool/CscThesholdClusterBuilderTool to the job +Py:ConfigurableDb DEBUG : Found configurable <class 'AthenaPoolCnvSvc.AthenaPoolCnvSvcConf.AthenaPoolCnvSvc'> in module AthenaPoolCnvSvc.AthenaPoolCnvSvcConf +Py:ComponentAccumulator DEBUG Reconciled configuration of component AthenaPoolCnvSvc Py:Athena INFO Print Config +Py:ComponentAccumulator INFO Event Inputs +Py:ComponentAccumulator INFO set([]) +Py:ComponentAccumulator INFO Event Algorithm Sequences +Py:ComponentAccumulator INFO /***** Algorithm AthSequencer/AthAlgSeq ************************************************************ |-Atomic = False |-AuditAlgorithms = False |-AuditBeginRun = False @@ -829,20 +1444,29 @@ Py:Athena INFO Print Config |-AuditRestart = False |-AuditStart = False |-AuditStop = False +|-Cardinality = 0 |-ContinueEventloopOnFPE = False +|-DetStore @0x7f8505b81f90 = ServiceHandle('StoreGateSvc/DetectorStore') |-Enable = True |-ErrorCounter = 0 |-ErrorMax = 1 +|-EvtStore @0x7f8505b81f10 = ServiceHandle('StoreGateSvc') +|-ExtraInputs @0x7f85041a0560 = [] (default: []) +|-ExtraOutputs @0x7f85041a05f0 = [] (default: []) |-FilterCircularDependencies = True |-IgnoreFilterPassed = False |-IsIOBound = False +|-Members @0x7f85041a0128 = ['Muon::RpcRawDataProvider/RpcRawDataProvider', 'Muon::TgcRawDataProvider/TgcRawDataProvider', 'Muon::MdtRawDataProvider/MdtRawDataProvider', 'Muon::CscRawDataProvider/CscRawDataProvider', 'RpcRdoToRpcPrepData/RpcRdoToRpcPrepData', 'TgcRdoToTgcPrepData/TgcRdoToTgcPrepData', 'MdtRdoToMdtPrepData/MdtRdoToMdtPrepData', 'CscRdoToCscPrepData/CscRdoToCscPrepData', 'CscThresholdClusterBuilder/CscThesholdClusterBuilder'] | (default: []) |-ModeOR = False |-MonitorService = 'MonitorSvc' +|-NeededResources @0x7f85041a0440 = [] (default: []) |-OutputLevel = 0 |-RegisterForContextService = False +|-Sequential @0x7f8507d45b00 = True (default: False) |-StopOverride = False |-TimeOut = 0.0 +|-Timeline = True |=/***** Algorithm Muon::RpcRawDataProvider/RpcRawDataProvider *************************************** | |-AuditAlgorithms = False | |-AuditBeginRun = False @@ -854,17 +1478,26 @@ Py:Athena INFO Print Config | |-AuditRestart = False | |-AuditStart = False | |-AuditStop = False +| |-Cardinality = 1 +| |-DetStore @0x7f85047a4a50 = ServiceHandle('StoreGateSvc/DetectorStore') | |-DoSeededDecoding = False | |-Enable = True | |-ErrorCounter = 0 | |-ErrorMax = 1 +| |-EvtStore @0x7f85047a49d0 = ServiceHandle('StoreGateSvc') +| |-ExtraInputs @0x7f85041a06c8 = [] (default: []) +| |-ExtraOutputs @0x7f85041a0680 = [] (default: []) | |-FilterCircularDependencies = True | |-IsIOBound = False | |-MonitorService = 'MonitorSvc' +| |-NeededResources @0x7f85041a0638 = [] (default: []) | |-OutputLevel = 0 +| |-ProviderTool @0x7f8504c62908 = PrivateToolHandle('Muon::RPC_RawDataProviderTool/RPC_RawDataProviderTool') | | (default: 'Muon::RPC_RawDataProviderTool/RpcRawDataProviderTool') +| |-RegionSelectionSvc @0x7f85047a4ad0 = ServiceHandle('RegSelSvc') | |-RegisterForContextService = False | |-RoIs = 'StoreGateSvc+OutputRoIs' +| |-Timeline = True | |=/***** Private AlgTool Muon::RPC_RawDataProviderTool/RpcRawDataProvider.RPC_RawDataProviderTool ***** | | |-AuditFinalize = False | | |-AuditInitialize = False @@ -873,6 +1506,11 @@ Py:Athena INFO Print Config | | |-AuditStart = False | | |-AuditStop = False | | |-AuditTools = False +| | |-Decoder @0x7f8504c62a00 = PrivateToolHandle('Muon::RpcROD_Decoder/RpcROD_Decoder') +| | |-DetStore @0x7f8504713890 = ServiceHandle('StoreGateSvc/DetectorStore') +| | |-EvtStore @0x7f85047138d0 = ServiceHandle('StoreGateSvc') +| | |-ExtraInputs @0x7f850478e758 = [] (default: []) +| | |-ExtraOutputs @0x7f850478e4d0 = [] (default: []) | | |-MonitorService = 'MonitorSvc' | | |-OutputLevel = 0 | | |-RPCSec = 'StoreGateSvc+RPC_SECTORLOGIC' @@ -886,6 +1524,10 @@ Py:Athena INFO Print Config | | | |-AuditStop = False | | | |-AuditTools = False | | | |-DataErrorPrintLimit = 1000 +| | | |-DetStore @0x7f8504713990 = ServiceHandle('StoreGateSvc/DetectorStore') +| | | |-EvtStore @0x7f85047139d0 = ServiceHandle('StoreGateSvc') +| | | |-ExtraInputs @0x7f850478e5f0 = [] (default: []) +| | | |-ExtraOutputs @0x7f850478e5a8 = [] (default: []) | | | |-MonitorService = 'MonitorSvc' | | | |-OutputLevel = 0 | | | |-Sector13Data = False @@ -904,15 +1546,23 @@ Py:Athena INFO Print Config | |-AuditRestart = False | |-AuditStart = False | |-AuditStop = False +| |-Cardinality = 1 +| |-DetStore @0x7f85046f5a10 = ServiceHandle('StoreGateSvc/DetectorStore') | |-Enable = True | |-ErrorCounter = 0 | |-ErrorMax = 1 +| |-EvtStore @0x7f85046f5990 = ServiceHandle('StoreGateSvc') +| |-ExtraInputs @0x7f85041a0908 = [] (default: []) +| |-ExtraOutputs @0x7f85041a09e0 = [] (default: []) | |-FilterCircularDependencies = True | |-IsIOBound = False | |-MonitorService = 'MonitorSvc' +| |-NeededResources @0x7f85041a0950 = [] (default: []) | |-OutputLevel = 0 +| |-ProviderTool @0x7f850592f9b0 = PrivateToolHandle('Muon::TGC_RawDataProviderTool/TGC_RawDataProviderTool') | | (default: 'Muon::TGC_RawDataProviderTool/TgcRawDataProviderTool') | |-RegisterForContextService = False +| |-Timeline = True | |=/***** Private AlgTool Muon::TGC_RawDataProviderTool/TgcRawDataProvider.TGC_RawDataProviderTool ***** | | |-AuditFinalize = False | | |-AuditInitialize = False @@ -921,7 +1571,12 @@ Py:Athena INFO Print Config | | |-AuditStart = False | | |-AuditStop = False | | |-AuditTools = False +| | |-Decoder @0x7f850592faa0 = PrivateToolHandle('Muon::TGC_RodDecoderReadout/TgcROD_Decoder') | | | (default: 'Muon::TGC_RodDecoderReadout/TGC_RodDecoderReadout') +| | |-DetStore @0x7f850473aed0 = ServiceHandle('StoreGateSvc/DetectorStore') +| | |-EvtStore @0x7f850473af10 = ServiceHandle('StoreGateSvc') +| | |-ExtraInputs @0x7f8504744710 = [] (default: []) +| | |-ExtraOutputs @0x7f8504744560 = [] (default: []) | | |-MonitorService = 'MonitorSvc' | | |-OutputLevel = 0 | | |-RdoLocation = 'StoreGateSvc+TGCRDO' @@ -933,6 +1588,10 @@ Py:Athena INFO Print Config | | | |-AuditStart = False | | | |-AuditStop = False | | | |-AuditTools = False +| | | |-DetStore @0x7f850473afd0 = ServiceHandle('StoreGateSvc/DetectorStore') +| | | |-EvtStore @0x7f850467f050 = ServiceHandle('StoreGateSvc') +| | | |-ExtraInputs @0x7f85047443b0 = [] (default: []) +| | | |-ExtraOutputs @0x7f8504744518 = [] (default: []) | | | |-MonitorService = 'MonitorSvc' | | | |-OutputLevel = 0 | | | |-ShowStatusWords = False @@ -951,15 +1610,23 @@ Py:Athena INFO Print Config | |-AuditRestart = False | |-AuditStart = False | |-AuditStop = False +| |-Cardinality = 1 +| |-DetStore @0x7f85046f7c50 = ServiceHandle('StoreGateSvc/DetectorStore') | |-Enable = True | |-ErrorCounter = 0 | |-ErrorMax = 1 +| |-EvtStore @0x7f85046f7bd0 = ServiceHandle('StoreGateSvc') +| |-ExtraInputs @0x7f85041a0a28 = [] (default: []) +| |-ExtraOutputs @0x7f85041a0ab8 = [] (default: []) | |-FilterCircularDependencies = True | |-IsIOBound = False | |-MonitorService = 'MonitorSvc' +| |-NeededResources @0x7f85041a0998 = [] (default: []) | |-OutputLevel = 0 +| |-ProviderTool @0x7f85049a3a50 = PrivateToolHandle('Muon::MDT_RawDataProviderTool/MDT_RawDataProviderTool') | | (default: 'Muon::MDT_RawDataProviderTool/MdtRawDataProviderTool') | |-RegisterForContextService = False +| |-Timeline = True | |=/***** Private AlgTool Muon::MDT_RawDataProviderTool/MdtRawDataProvider.MDT_RawDataProviderTool ***** | | |-AuditFinalize = False | | |-AuditInitialize = False @@ -969,6 +1636,11 @@ Py:Athena INFO Print Config | | |-AuditStop = False | | |-AuditTools = False | | |-CsmContainerCacheKey = 'StoreGateSvc+' +| | |-Decoder @0x7f850592fd70 = PrivateToolHandle('MdtROD_Decoder/MdtROD_Decoder') +| | |-DetStore @0x7f85042acfd0 = ServiceHandle('StoreGateSvc/DetectorStore') +| | |-EvtStore @0x7f8504234050 = ServiceHandle('StoreGateSvc') +| | |-ExtraInputs @0x7f85042a09e0 = [] (default: []) +| | |-ExtraOutputs @0x7f85042a0878 = [] (default: []) | | |-MonitorService = 'MonitorSvc' | | |-OutputLevel = 0 | | |-RdoLocation = 'StoreGateSvc+MDTCSM' @@ -981,6 +1653,10 @@ Py:Athena INFO Print Config | | | |-AuditStart = False | | | |-AuditStop = False | | | |-AuditTools = False +| | | |-DetStore @0x7f8504234110 = ServiceHandle('StoreGateSvc/DetectorStore') +| | | |-EvtStore @0x7f8504234150 = ServiceHandle('StoreGateSvc') +| | | |-ExtraInputs @0x7f85042a0908 = [] (default: []) +| | | |-ExtraOutputs @0x7f85042a08c0 = [] (default: []) | | | |-MonitorService = 'MonitorSvc' | | | |-OutputLevel = 0 | | | |-ReadKey = 'ConditionStore+MuonMDT_CablingMap' @@ -999,15 +1675,23 @@ Py:Athena INFO Print Config | |-AuditRestart = False | |-AuditStart = False | |-AuditStop = False +| |-Cardinality = 1 +| |-DetStore @0x7f850478ab10 = ServiceHandle('StoreGateSvc/DetectorStore') | |-Enable = True | |-ErrorCounter = 0 | |-ErrorMax = 1 +| |-EvtStore @0x7f850478aa90 = ServiceHandle('StoreGateSvc') +| |-ExtraInputs @0x7f85041a0b00 = [] (default: []) +| |-ExtraOutputs @0x7f85041a0b48 = [] (default: []) | |-FilterCircularDependencies = True | |-IsIOBound = False | |-MonitorService = 'MonitorSvc' +| |-NeededResources @0x7f85041a0488 = [] (default: []) | |-OutputLevel = 0 +| |-ProviderTool @0x7f85049a3c50 = PrivateToolHandle('Muon::CSC_RawDataProviderTool/CSC_RawDataProviderTool') | | (default: 'Muon::CSC_RawDataProviderTool/CscRawDataProviderTool') | |-RegisterForContextService = False +| |-Timeline = True | |=/***** Private AlgTool Muon::CSC_RawDataProviderTool/CscRawDataProvider.CSC_RawDataProviderTool ***** | | |-AuditFinalize = False | | |-AuditInitialize = False @@ -1017,7 +1701,12 @@ Py:Athena INFO Print Config | | |-AuditStop = False | | |-AuditTools = False | | |-CscContainerCacheKey = 'StoreGateSvc+' +| | |-Decoder @0x7f85046cf050 = PrivateToolHandle('Muon::CscROD_Decoder/CscROD_Decoder') +| | |-DetStore @0x7f850426de90 = ServiceHandle('StoreGateSvc/DetectorStore') | | |-EventInfoKey = 'StoreGateSvc+EventInfo' +| | |-EvtStore @0x7f850426ded0 = ServiceHandle('StoreGateSvc') +| | |-ExtraInputs @0x7f85041f19e0 = [] (default: []) +| | |-ExtraOutputs @0x7f85041f1c68 = [] (default: []) | | |-MonitorService = 'MonitorSvc' | | |-OutputLevel = 0 | | |-RdoLocation = 'StoreGateSvc+CSCRDO' @@ -1029,6 +1718,10 @@ Py:Athena INFO Print Config | | | |-AuditStart = False | | | |-AuditStop = False | | | |-AuditTools = False +| | | |-DetStore @0x7f850426df90 = ServiceHandle('StoreGateSvc/DetectorStore') +| | | |-EvtStore @0x7f850426dfd0 = ServiceHandle('StoreGateSvc') +| | | |-ExtraInputs @0x7f85041f1b48 = [] (default: []) +| | | |-ExtraOutputs @0x7f85041f1b00 = [] (default: []) | | | |-IsCosmics = False | | | |-IsOldCosmics = False | | | |-MonitorService = 'MonitorSvc' @@ -1047,19 +1740,29 @@ Py:Athena INFO Print Config | |-AuditRestart = False | |-AuditStart = False | |-AuditStop = False +| |-Cardinality = 1 +| |-DecodingTool @0x7f8505840e68 = PrivateToolHandle('Muon::RpcRdoToPrepDataTool/RpcRdoToRpcPrepDataTool') | | (default: 'Muon::RpcRdoToPrepDataTool/RpcRdoToPrepDataTool') +| |-DetStore @0x7f8504227950 = ServiceHandle('StoreGateSvc/DetectorStore') | |-DoSeededDecoding = False | |-Enable = True | |-ErrorCounter = 0 | |-ErrorMax = 1 +| |-EvtStore @0x7f85042278d0 = ServiceHandle('StoreGateSvc') +| |-ExtraInputs @0x7f85041a0710 = [] (default: []) +| |-ExtraOutputs @0x7f85041a0c20 = [] (default: []) | |-FilterCircularDependencies = True | |-IsIOBound = False | |-MonitorService = 'MonitorSvc' +| |-NeededResources @0x7f85041a0c68 = [] (default: []) | |-OutputCollection = 'StoreGateSvc+RPC_Measurements' | |-OutputLevel = 0 | |-PrintInputRdo = False +| |-PrintPrepData @0x7f8507d45b20 = False (default: False) +| |-RegionSelectionSvc @0x7f85042279d0 = ServiceHandle('RegSelSvc') | |-RegisterForContextService = False | |-RoIs = 'StoreGateSvc+OutputRoIs' +| |-Timeline = True | |=/***** Private AlgTool Muon::RpcRdoToPrepDataTool/RpcRdoToRpcPrepData.RpcRdoToRpcPrepDataTool ****** | | |-AuditFinalize = False | | |-AuditInitialize = False @@ -1069,11 +1772,16 @@ Py:Athena INFO Print Config | | |-AuditStop = False | | |-AuditTools = False | | |-DecodeData = True +| | |-DetStore @0x7f8504195b10 = ServiceHandle('StoreGateSvc/DetectorStore') +| | |-EvtStore @0x7f8504195b90 = ServiceHandle('StoreGateSvc') +| | |-ExtraInputs @0x7f8504202fc8 = [] (default: []) +| | |-ExtraOutputs @0x7f85042027a0 = [] (default: []) | | |-InputCollection = 'StoreGateSvc+RPC_triggerHits' | | |-MonitorService = 'MonitorSvc' | | |-OutputCollection = 'StoreGateSvc+RPCPAD' | | |-OutputLevel = 0 | | |-RPCInfoFromDb = False +| | |-RdoDecoderTool @0x7f850461a590 = PrivateToolHandle('Muon::RpcRDO_Decoder/Muon::RpcRDO_Decoder') | | | (default: 'Muon::RpcRDO_Decoder') | | |-TriggerOutputCollection = 'StoreGateSvc+RPC_Measurements' | | |-etaphi_coincidenceTime = 20.0 @@ -1091,6 +1799,10 @@ Py:Athena INFO Print Config | | | |-AuditStart = False | | | |-AuditStop = False | | | |-AuditTools = False +| | | |-DetStore @0x7f8504195c10 = ServiceHandle('StoreGateSvc/DetectorStore') +| | | |-EvtStore @0x7f8504195c50 = ServiceHandle('StoreGateSvc') +| | | |-ExtraInputs @0x7f8504202680 = [] (default: []) +| | | |-ExtraOutputs @0x7f85042028c0 = [] (default: []) | | | |-MonitorService = 'MonitorSvc' | | | |-OutputLevel = 0 | | | \----- (End of Private AlgTool Muon::RpcRDO_Decoder/RpcRdoToRpcPrepData.RpcRdoToRpcPrepDataTool.Muon::RpcRDO_Decoder) ----- @@ -1107,20 +1819,30 @@ Py:Athena INFO Print Config | |-AuditRestart = False | |-AuditStart = False | |-AuditStop = False +| |-Cardinality = 1 +| |-DecodingTool @0x7f85041a6050 = PrivateToolHandle('Muon::TgcRdoToPrepDataTool/TgcRdoToTgcPrepDataTool') | | (default: 'Muon::TgcRdoToPrepDataTool/TgcPrepDataProviderTool') +| |-DetStore @0x7f8504180850 = ServiceHandle('StoreGateSvc/DetectorStore') | |-DoSeededDecoding = False | |-Enable = True | |-ErrorCounter = 0 | |-ErrorMax = 1 +| |-EvtStore @0x7f85041807d0 = ServiceHandle('StoreGateSvc') +| |-ExtraInputs @0x7f85041a0a70 = [] (default: []) +| |-ExtraOutputs @0x7f85041a0cb0 = [] (default: []) | |-FilterCircularDependencies = True | |-IsIOBound = False | |-MonitorService = 'MonitorSvc' +| |-NeededResources @0x7f85041a0cf8 = [] (default: []) | |-OutputCollection = 'StoreGateSvc+TGC_Measurements' | |-OutputLevel = 0 | |-PrintInputRdo = False +| |-PrintPrepData @0x7f8507d45b20 = False (default: False) +| |-RegionSelectorSvc @0x7f85041808d0 = ServiceHandle('RegSelSvc') | |-RegisterForContextService = False | |-RoIs = 'StoreGateSvc+OutputRoIs' | |-Setting = 0 +| |-Timeline = True | |=/***** Private AlgTool Muon::TgcRdoToPrepDataTool/TgcRdoToTgcPrepData.TgcRdoToTgcPrepDataTool ****** | | |-AuditFinalize = False | | |-AuditInitialize = False @@ -1130,6 +1852,10 @@ Py:Athena INFO Print Config | | |-AuditStop = False | | |-AuditTools = False | | |-DecodeData = True +| | |-DetStore @0x7f8504195c90 = ServiceHandle('StoreGateSvc/DetectorStore') +| | |-EvtStore @0x7f8504195e50 = ServiceHandle('StoreGateSvc') +| | |-ExtraInputs @0x7f85041a5b00 = [] (default: []) +| | |-ExtraOutputs @0x7f85041a5ab8 = [] (default: []) | | |-FillCoinData = True | | |-MonitorService = 'MonitorSvc' | | |-OutputCoinCollection = 'TrigT1CoinDataCollection' @@ -1138,7 +1864,9 @@ Py:Athena INFO Print Config | | |-RDOContainer = 'StoreGateSvc+TGCRDO' | | |-TGCHashIdOffset = 26000 | | |-dropPrdsWithZeroWidth = True +| | |-outputCoinKey @0x7f85041a5560 = ['StoreGateSvc+dummy', 'StoreGateSvc+dummy', 'StoreGateSvc+dummy'] | | | (default: ['StoreGateSvc+dummy', 'StoreGateSvc+dummy', 'StoreGateSvc+dummy']) +| | |-prepDataKeys @0x7f85041a5b90 = ['StoreGateSvc+dummy', 'StoreGateSvc+dummy', 'StoreGateSvc+dummy', 'StoreGateSvc+dummy'] | | | (default: ['StoreGateSvc+dummy', 'StoreGateSvc+dummy', 'StoreGateSvc+dummy', 'StoreGateSvc+dummy']) | | |-show_warning_level_invalid_A09_SSW6_hit = False | | \----- (End of Private AlgTool Muon::TgcRdoToPrepDataTool/TgcRdoToTgcPrepData.TgcRdoToTgcPrepDataTool) ----- @@ -1154,19 +1882,29 @@ Py:Athena INFO Print Config | |-AuditRestart = False | |-AuditStart = False | |-AuditStop = False +| |-Cardinality = 1 +| |-DecodingTool @0x7f8507dee890 = PrivateToolHandle('Muon::MdtRdoToPrepDataTool/MdtRdoToMdtPrepDataTool') | | (default: 'Muon::MdtRdoToPrepDataTool/MdtPrepDataProviderTool') +| |-DetStore @0x7f8504215810 = ServiceHandle('StoreGateSvc/DetectorStore') | |-DoSeededDecoding = False | |-Enable = True | |-ErrorCounter = 0 | |-ErrorMax = 1 +| |-EvtStore @0x7f8504215790 = ServiceHandle('StoreGateSvc') +| |-ExtraInputs @0x7f85041a0d88 = [] (default: []) +| |-ExtraOutputs @0x7f85041a0e18 = [] (default: []) | |-FilterCircularDependencies = True | |-IsIOBound = False | |-MonitorService = 'MonitorSvc' +| |-NeededResources @0x7f85041a0dd0 = [] (default: []) | |-OutputCollection = 'StoreGateSvc+MDT_DriftCircles' | |-OutputLevel = 0 | |-PrintInputRdo = False +| |-PrintPrepData @0x7f8507d45b20 = False (default: False) +| |-RegionSelectionSvc @0x7f8504215890 = ServiceHandle('RegSelSvc') | |-RegisterForContextService = False | |-RoIs = 'StoreGateSvc+OutputRoIs' +| |-Timeline = True | |=/***** Private AlgTool Muon::MdtRdoToPrepDataTool/MdtRdoToMdtPrepData.MdtRdoToMdtPrepDataTool ****** | | |-AuditFinalize = False | | |-AuditInitialize = False @@ -1177,9 +1915,13 @@ Py:Athena INFO Print Config | | |-AuditTools = False | | |-CalibratePrepData = True | | |-DecodeData = True +| | |-DetStore @0x7f8504195d50 = ServiceHandle('StoreGateSvc/DetectorStore') | | |-DiscardSecondaryHitTwin = False | | |-DoPropagationCorrection = False | | |-DoTofCorrection = True +| | |-EvtStore @0x7f8504195fd0 = ServiceHandle('StoreGateSvc') +| | |-ExtraInputs @0x7f85041a4ef0 = [] (default: []) +| | |-ExtraOutputs @0x7f85041a4e18 = [] (default: []) | | |-MonitorService = 'MonitorSvc' | | |-OutputCollection = 'StoreGateSvc+MDT_DriftCircles' | | |-OutputLevel = 0 @@ -1206,19 +1948,29 @@ Py:Athena INFO Print Config | |-AuditRestart = False | |-AuditStart = False | |-AuditStop = False +| |-Cardinality = 1 +| |-CscRdoToCscPrepDataTool @0x7f8504886380 = PrivateToolHandle('Muon::CscRdoToCscPrepDataTool/CscRdoToCscPrepDataTool') | | (default: 'Muon::CscRdoToCscPrepDataTool/CscRdoToPrepDataTool') +| |-DetStore @0x7f85041fbcd0 = ServiceHandle('StoreGateSvc/DetectorStore') | |-DoSeededDecoding = False | |-Enable = True | |-ErrorCounter = 0 | |-ErrorMax = 1 +| |-EvtStore @0x7f85041fbbd0 = ServiceHandle('StoreGateSvc') +| |-ExtraInputs @0x7f85041a0ef0 = [] (default: []) +| |-ExtraOutputs @0x7f85041a0b90 = [] (default: []) | |-FilterCircularDependencies = True | |-IsIOBound = False | |-MonitorService = 'MonitorSvc' +| |-NeededResources @0x7f85041a0e60 = [] (default: []) | |-OutputCollection = 'StoreGateSvc+CSC_Measurements' | |-OutputLevel = 0 | |-PrintInputRdo = False +| |-PrintPrepData @0x7f8507d45b20 = False (default: False) +| |-RegionSelectionSvc @0x7f85041fbd50 = ServiceHandle('RegSelSvc') | |-RegisterForContextService = False | |-RoIs = 'StoreGateSvc+OutputRoIs' +| |-Timeline = True | |=/***** Private AlgTool Muon::CscRdoToCscPrepDataTool/CscRdoToCscPrepData.CscRdoToCscPrepDataTool ***** | | |-AuditFinalize = False | | |-AuditInitialize = False @@ -1228,7 +1980,13 @@ Py:Athena INFO Print Config | | |-AuditStop = False | | |-AuditTools = False | | |-CSCHashIdOffset = 22000 +| | |-CscCalibTool @0x7f8507df1860 = PrivateToolHandle('CscCalibTool/CscCalibTool') +| | |-CscRdoDecoderTool @0x7f85041a2de8 = PrivateToolHandle('Muon::CscRDO_Decoder/CscRDO_Decoder') | | |-DecodeData = True +| | |-DetStore @0x7f85041af090 = ServiceHandle('StoreGateSvc/DetectorStore') +| | |-EvtStore @0x7f85041af190 = ServiceHandle('StoreGateSvc') +| | |-ExtraInputs @0x7f85041b9290 = [] (default: []) +| | |-ExtraOutputs @0x7f85041b9710 = [] (default: []) | | |-MonitorService = 'MonitorSvc' | | |-OutputCollection = 'StoreGateSvc+CSC_Measurements' | | |-OutputLevel = 0 @@ -1241,6 +1999,10 @@ Py:Athena INFO Print Config | | | |-AuditStart = False | | | |-AuditStop = False | | | |-AuditTools = False +| | | |-DetStore @0x7f85041af1d0 = ServiceHandle('StoreGateSvc/DetectorStore') +| | | |-EvtStore @0x7f85041af210 = ServiceHandle('StoreGateSvc') +| | | |-ExtraInputs @0x7f85041b5fc8 = [] (default: []) +| | | |-ExtraOutputs @0x7f85041b58c0 = [] (default: []) | | | |-IsOnline = True | | | |-Latency = 100.0 | | | |-MonitorService = 'MonitorSvc' @@ -1267,6 +2029,11 @@ Py:Athena INFO Print Config | | | |-AuditStart = False | | | |-AuditStop = False | | | |-AuditTools = False +| | | |-CscCalibTool @0x7f85041af110 = PublicToolHandle('CscCalibTool') +| | | |-DetStore @0x7f85041af0d0 = ServiceHandle('StoreGateSvc/DetectorStore') +| | | |-EvtStore @0x7f85041af150 = ServiceHandle('StoreGateSvc') +| | | |-ExtraInputs @0x7f85041b92d8 = [] (default: []) +| | | |-ExtraOutputs @0x7f85041b90e0 = [] (default: []) | | | |-MonitorService = 'MonitorSvc' | | | |-OutputLevel = 0 | | | \----- (End of Private AlgTool Muon::CscRDO_Decoder/CscRdoToCscPrepData.CscRdoToCscPrepDataTool.CscRDO_Decoder) ----- @@ -1283,17 +2050,49 @@ Py:Athena INFO Print Config | |-AuditRestart = False | |-AuditStart = False | |-AuditStop = False +| |-Cardinality = 1 +| |-DetStore @0x7f85041da650 = ServiceHandle('StoreGateSvc/DetectorStore') | |-Enable = True | |-ErrorCounter = 0 | |-ErrorMax = 1 +| |-EvtStore @0x7f85041da5d0 = ServiceHandle('StoreGateSvc') +| |-ExtraInputs @0x7f8504121050 = [] (default: []) +| |-ExtraOutputs @0x7f85041a0f80 = [] (default: []) | |-FilterCircularDependencies = True | |-IsIOBound = False | |-MonitorService = 'MonitorSvc' +| |-NeededResources @0x7f85041a0fc8 = [] (default: []) | |-OutputLevel = 0 | |-RegisterForContextService = False +| |-Timeline = True +| |-cluster_builder @0x7f850410bf50 = PublicToolHandle('CscThresholdClusterBuilderTool/CscThesholdClusterBuilderTool') | | (default: 'CscThresholdClusterBuilderTool/CscThresholdClusterBuilderTool') | \----- (End of Algorithm CscThresholdClusterBuilder/CscThesholdClusterBuilder) --------------------- \----- (End of Algorithm AthSequencer/AthAlgSeq) --------------------------------------------------- +Py:ComponentAccumulator INFO Condition Algorithms +Py:ComponentAccumulator INFO ['CondInputLoader', 'MuonMDT_CablingAlg'] +Py:ComponentAccumulator INFO Services +Py:ComponentAccumulator INFO ['EventSelector', 'ByteStreamInputSvc', 'EventPersistencySvc', 'ByteStreamCnvSvc', 'ROBDataProviderSvc', 'ByteStreamAddressProviderSvc', 'MetaDataStore', 'InputMetaDataStore', 'MetaDataSvc', 'ProxyProviderSvc', 'ByteStreamAttListMetadataSvc', 'GeoModelSvc', 'DetDescrCnvSvc', 'TagInfoMgr', 'RPCcablingServerSvc', 'IOVDbSvc', 'PoolSvc', 'CondSvc', 'DBReplicaSvc', 'MuonRPC_CablingSvc', 'LVL1TGC::TGCRecRoiSvc', 'TGCcablingServerSvc', 'AthenaPoolCnvSvc', 'MuonMDT_CablingSvc', 'AtlasFieldSvc', 'MdtCalibrationDbSvc', 'MdtCalibrationSvc', 'CSCcablingSvc', 'MuonCalib::CscCoolStrSvc'] +Py:ComponentAccumulator INFO Outputs +Py:ComponentAccumulator INFO {} +Py:ComponentAccumulator INFO Public Tools +Py:ComponentAccumulator INFO [ +Py:ComponentAccumulator INFO IOVDbMetaDataTool/IOVDbMetaDataTool, +Py:ComponentAccumulator INFO ByteStreamMetadataTool/ByteStreamMetadataTool, +Py:ComponentAccumulator INFO Muon::MuonIdHelperTool/Muon::MuonIdHelperTool, +Py:ComponentAccumulator INFO RPCCablingDbTool/RPCCablingDbTool, +Py:ComponentAccumulator INFO Muon::RPC_RawDataProviderTool/RPC_RawDataProviderTool, +Py:ComponentAccumulator INFO Muon::TGC_RawDataProviderTool/TGC_RawDataProviderTool, +Py:ComponentAccumulator INFO MDTCablingDbTool/MDTCablingDbTool, +Py:ComponentAccumulator INFO MuonCalib::MdtCalibDbCoolStrTool/MuonCalib::MdtCalibDbCoolStrTool, +Py:ComponentAccumulator INFO Muon::MDT_RawDataProviderTool/MDT_RawDataProviderTool, +Py:ComponentAccumulator INFO Muon::CSC_RawDataProviderTool/CSC_RawDataProviderTool, +Py:ComponentAccumulator INFO Muon::RpcRdoToPrepDataTool/RpcRdoToRpcPrepDataTool, +Py:ComponentAccumulator INFO Muon::TgcRdoToPrepDataTool/TgcRdoToTgcPrepDataTool, +Py:ComponentAccumulator INFO Muon::MdtRdoToPrepDataTool/MdtRdoToMdtPrepDataTool, +Py:ComponentAccumulator INFO Muon::CscRdoToCscPrepDataTool/CscRdoToCscPrepDataTool, +Py:ComponentAccumulator INFO CscThresholdClusterBuilderTool/CscThesholdClusterBuilderTool, +Py:ComponentAccumulator INFO ] Py:Athena INFO Save Config /***** Algorithm AthSequencer/AthAlgSeq ************************************************************ |-Atomic = False @@ -1307,20 +2106,29 @@ Py:Athena INFO Save Config |-AuditRestart = False |-AuditStart = False |-AuditStop = False +|-Cardinality = 0 |-ContinueEventloopOnFPE = False +|-DetStore @0x7f8505b81f90 = ServiceHandle('StoreGateSvc/DetectorStore') |-Enable = True |-ErrorCounter = 0 |-ErrorMax = 1 +|-EvtStore @0x7f8505b81f10 = ServiceHandle('StoreGateSvc') +|-ExtraInputs @0x7f85041a0560 = [] (default: []) +|-ExtraOutputs @0x7f85041a05f0 = [] (default: []) |-FilterCircularDependencies = True |-IgnoreFilterPassed = False |-IsIOBound = False +|-Members @0x7f8504749320 = ['Muon::RpcRawDataProvider/RpcRawDataProvider', 'Muon::TgcRawDataProvider/TgcRawDataProvider', 'Muon::MdtRawDataProvider/MdtRawDataProvider', 'Muon::CscRawDataProvider/CscRawDataProvider', 'RpcRdoToRpcPrepData/RpcRdoToRpcPrepData', 'TgcRdoToTgcPrepData/TgcRdoToTgcPrepData', 'MdtRdoToMdtPrepData/MdtRdoToMdtPrepData', 'CscRdoToCscPrepData/CscRdoToCscPrepData', 'CscThresholdClusterBuilder/CscThesholdClusterBuilder'] | (default: []) |-ModeOR = False |-MonitorService = 'MonitorSvc' +|-NeededResources @0x7f85041a0440 = [] (default: []) |-OutputLevel = 0 |-RegisterForContextService = False +|-Sequential @0x7f8507d45b00 = True (default: False) |-StopOverride = False |-TimeOut = 0.0 +|-Timeline = True |=/***** Algorithm Muon::RpcRawDataProvider/RpcRawDataProvider *************************************** | |-AuditAlgorithms = False | |-AuditBeginRun = False @@ -1332,17 +2140,26 @@ Py:Athena INFO Save Config | |-AuditRestart = False | |-AuditStart = False | |-AuditStop = False +| |-Cardinality = 1 +| |-DetStore @0x7f85047a4a50 = ServiceHandle('StoreGateSvc/DetectorStore') | |-DoSeededDecoding = False | |-Enable = True | |-ErrorCounter = 0 | |-ErrorMax = 1 +| |-EvtStore @0x7f85047a49d0 = ServiceHandle('StoreGateSvc') +| |-ExtraInputs @0x7f85041a06c8 = [] (default: []) +| |-ExtraOutputs @0x7f85041a0680 = [] (default: []) | |-FilterCircularDependencies = True | |-IsIOBound = False | |-MonitorService = 'MonitorSvc' +| |-NeededResources @0x7f85041a0638 = [] (default: []) | |-OutputLevel = 0 +| |-ProviderTool @0x7f8504c62908 = PrivateToolHandle('Muon::RPC_RawDataProviderTool/RPC_RawDataProviderTool') | | (default: 'Muon::RPC_RawDataProviderTool/RpcRawDataProviderTool') +| |-RegionSelectionSvc @0x7f85047a4ad0 = ServiceHandle('RegSelSvc') | |-RegisterForContextService = False | |-RoIs = 'StoreGateSvc+OutputRoIs' +| |-Timeline = True | |=/***** Private AlgTool Muon::RPC_RawDataProviderTool/RpcRawDataProvider.RPC_RawDataProviderTool ***** | | |-AuditFinalize = False | | |-AuditInitialize = False @@ -1351,6 +2168,11 @@ Py:Athena INFO Save Config | | |-AuditStart = False | | |-AuditStop = False | | |-AuditTools = False +| | |-Decoder @0x7f8504c62a00 = PrivateToolHandle('Muon::RpcROD_Decoder/RpcROD_Decoder') +| | |-DetStore @0x7f8504713890 = ServiceHandle('StoreGateSvc/DetectorStore') +| | |-EvtStore @0x7f85047138d0 = ServiceHandle('StoreGateSvc') +| | |-ExtraInputs @0x7f850478e758 = [] (default: []) +| | |-ExtraOutputs @0x7f850478e4d0 = [] (default: []) | | |-MonitorService = 'MonitorSvc' | | |-OutputLevel = 0 | | |-RPCSec = 'StoreGateSvc+RPC_SECTORLOGIC' @@ -1364,6 +2186,10 @@ Py:Athena INFO Save Config | | | |-AuditStop = False | | | |-AuditTools = False | | | |-DataErrorPrintLimit = 1000 +| | | |-DetStore @0x7f8504713990 = ServiceHandle('StoreGateSvc/DetectorStore') +| | | |-EvtStore @0x7f85047139d0 = ServiceHandle('StoreGateSvc') +| | | |-ExtraInputs @0x7f850478e5f0 = [] (default: []) +| | | |-ExtraOutputs @0x7f850478e5a8 = [] (default: []) | | | |-MonitorService = 'MonitorSvc' | | | |-OutputLevel = 0 | | | |-Sector13Data = False @@ -1382,15 +2208,23 @@ Py:Athena INFO Save Config | |-AuditRestart = False | |-AuditStart = False | |-AuditStop = False +| |-Cardinality = 1 +| |-DetStore @0x7f85046f5a10 = ServiceHandle('StoreGateSvc/DetectorStore') | |-Enable = True | |-ErrorCounter = 0 | |-ErrorMax = 1 +| |-EvtStore @0x7f85046f5990 = ServiceHandle('StoreGateSvc') +| |-ExtraInputs @0x7f85041a0908 = [] (default: []) +| |-ExtraOutputs @0x7f85041a09e0 = [] (default: []) | |-FilterCircularDependencies = True | |-IsIOBound = False | |-MonitorService = 'MonitorSvc' +| |-NeededResources @0x7f85041a0950 = [] (default: []) | |-OutputLevel = 0 +| |-ProviderTool @0x7f850592f9b0 = PrivateToolHandle('Muon::TGC_RawDataProviderTool/TGC_RawDataProviderTool') | | (default: 'Muon::TGC_RawDataProviderTool/TgcRawDataProviderTool') | |-RegisterForContextService = False +| |-Timeline = True | |=/***** Private AlgTool Muon::TGC_RawDataProviderTool/TgcRawDataProvider.TGC_RawDataProviderTool ***** | | |-AuditFinalize = False | | |-AuditInitialize = False @@ -1399,7 +2233,12 @@ Py:Athena INFO Save Config | | |-AuditStart = False | | |-AuditStop = False | | |-AuditTools = False +| | |-Decoder @0x7f850592faa0 = PrivateToolHandle('Muon::TGC_RodDecoderReadout/TgcROD_Decoder') | | | (default: 'Muon::TGC_RodDecoderReadout/TGC_RodDecoderReadout') +| | |-DetStore @0x7f850473aed0 = ServiceHandle('StoreGateSvc/DetectorStore') +| | |-EvtStore @0x7f850473af10 = ServiceHandle('StoreGateSvc') +| | |-ExtraInputs @0x7f8504744710 = [] (default: []) +| | |-ExtraOutputs @0x7f8504744560 = [] (default: []) | | |-MonitorService = 'MonitorSvc' | | |-OutputLevel = 0 | | |-RdoLocation = 'StoreGateSvc+TGCRDO' @@ -1411,6 +2250,10 @@ Py:Athena INFO Save Config | | | |-AuditStart = False | | | |-AuditStop = False | | | |-AuditTools = False +| | | |-DetStore @0x7f850473afd0 = ServiceHandle('StoreGateSvc/DetectorStore') +| | | |-EvtStore @0x7f850467f050 = ServiceHandle('StoreGateSvc') +| | | |-ExtraInputs @0x7f85047443b0 = [] (default: []) +| | | |-ExtraOutputs @0x7f8504744518 = [] (default: []) | | | |-MonitorService = 'MonitorSvc' | | | |-OutputLevel = 0 | | | |-ShowStatusWords = False @@ -1429,15 +2272,23 @@ Py:Athena INFO Save Config | |-AuditRestart = False | |-AuditStart = False | |-AuditStop = False +| |-Cardinality = 1 +| |-DetStore @0x7f85046f7c50 = ServiceHandle('StoreGateSvc/DetectorStore') | |-Enable = True | |-ErrorCounter = 0 | |-ErrorMax = 1 +| |-EvtStore @0x7f85046f7bd0 = ServiceHandle('StoreGateSvc') +| |-ExtraInputs @0x7f85041a0a28 = [] (default: []) +| |-ExtraOutputs @0x7f85041a0ab8 = [] (default: []) | |-FilterCircularDependencies = True | |-IsIOBound = False | |-MonitorService = 'MonitorSvc' +| |-NeededResources @0x7f85041a0998 = [] (default: []) | |-OutputLevel = 0 +| |-ProviderTool @0x7f85049a3a50 = PrivateToolHandle('Muon::MDT_RawDataProviderTool/MDT_RawDataProviderTool') | | (default: 'Muon::MDT_RawDataProviderTool/MdtRawDataProviderTool') | |-RegisterForContextService = False +| |-Timeline = True | |=/***** Private AlgTool Muon::MDT_RawDataProviderTool/MdtRawDataProvider.MDT_RawDataProviderTool ***** | | |-AuditFinalize = False | | |-AuditInitialize = False @@ -1447,6 +2298,11 @@ Py:Athena INFO Save Config | | |-AuditStop = False | | |-AuditTools = False | | |-CsmContainerCacheKey = 'StoreGateSvc+' +| | |-Decoder @0x7f850592fd70 = PrivateToolHandle('MdtROD_Decoder/MdtROD_Decoder') +| | |-DetStore @0x7f85042acfd0 = ServiceHandle('StoreGateSvc/DetectorStore') +| | |-EvtStore @0x7f8504234050 = ServiceHandle('StoreGateSvc') +| | |-ExtraInputs @0x7f85042a09e0 = [] (default: []) +| | |-ExtraOutputs @0x7f85042a0878 = [] (default: []) | | |-MonitorService = 'MonitorSvc' | | |-OutputLevel = 0 | | |-RdoLocation = 'StoreGateSvc+MDTCSM' @@ -1459,6 +2315,10 @@ Py:Athena INFO Save Config | | | |-AuditStart = False | | | |-AuditStop = False | | | |-AuditTools = False +| | | |-DetStore @0x7f8504234110 = ServiceHandle('StoreGateSvc/DetectorStore') +| | | |-EvtStore @0x7f8504234150 = ServiceHandle('StoreGateSvc') +| | | |-ExtraInputs @0x7f85042a0908 = [] (default: []) +| | | |-ExtraOutputs @0x7f85042a08c0 = [] (default: []) | | | |-MonitorService = 'MonitorSvc' | | | |-OutputLevel = 0 | | | |-ReadKey = 'ConditionStore+MuonMDT_CablingMap' @@ -1477,15 +2337,23 @@ Py:Athena INFO Save Config | |-AuditRestart = False | |-AuditStart = False | |-AuditStop = False +| |-Cardinality = 1 +| |-DetStore @0x7f850478ab10 = ServiceHandle('StoreGateSvc/DetectorStore') | |-Enable = True | |-ErrorCounter = 0 | |-ErrorMax = 1 +| |-EvtStore @0x7f850478aa90 = ServiceHandle('StoreGateSvc') +| |-ExtraInputs @0x7f85041a0b00 = [] (default: []) +| |-ExtraOutputs @0x7f85041a0b48 = [] (default: []) | |-FilterCircularDependencies = True | |-IsIOBound = False | |-MonitorService = 'MonitorSvc' +| |-NeededResources @0x7f85041a0488 = [] (default: []) | |-OutputLevel = 0 +| |-ProviderTool @0x7f85049a3c50 = PrivateToolHandle('Muon::CSC_RawDataProviderTool/CSC_RawDataProviderTool') | | (default: 'Muon::CSC_RawDataProviderTool/CscRawDataProviderTool') | |-RegisterForContextService = False +| |-Timeline = True | |=/***** Private AlgTool Muon::CSC_RawDataProviderTool/CscRawDataProvider.CSC_RawDataProviderTool ***** | | |-AuditFinalize = False | | |-AuditInitialize = False @@ -1495,7 +2363,12 @@ Py:Athena INFO Save Config | | |-AuditStop = False | | |-AuditTools = False | | |-CscContainerCacheKey = 'StoreGateSvc+' +| | |-Decoder @0x7f85046cf050 = PrivateToolHandle('Muon::CscROD_Decoder/CscROD_Decoder') +| | |-DetStore @0x7f850426de90 = ServiceHandle('StoreGateSvc/DetectorStore') | | |-EventInfoKey = 'StoreGateSvc+EventInfo' +| | |-EvtStore @0x7f850426ded0 = ServiceHandle('StoreGateSvc') +| | |-ExtraInputs @0x7f85041f19e0 = [] (default: []) +| | |-ExtraOutputs @0x7f85041f1c68 = [] (default: []) | | |-MonitorService = 'MonitorSvc' | | |-OutputLevel = 0 | | |-RdoLocation = 'StoreGateSvc+CSCRDO' @@ -1507,6 +2380,10 @@ Py:Athena INFO Save Config | | | |-AuditStart = False | | | |-AuditStop = False | | | |-AuditTools = False +| | | |-DetStore @0x7f850426df90 = ServiceHandle('StoreGateSvc/DetectorStore') +| | | |-EvtStore @0x7f850426dfd0 = ServiceHandle('StoreGateSvc') +| | | |-ExtraInputs @0x7f85041f1b48 = [] (default: []) +| | | |-ExtraOutputs @0x7f85041f1b00 = [] (default: []) | | | |-IsCosmics = False | | | |-IsOldCosmics = False | | | |-MonitorService = 'MonitorSvc' @@ -1525,19 +2402,29 @@ Py:Athena INFO Save Config | |-AuditRestart = False | |-AuditStart = False | |-AuditStop = False +| |-Cardinality = 1 +| |-DecodingTool @0x7f8505840e68 = PrivateToolHandle('Muon::RpcRdoToPrepDataTool/RpcRdoToRpcPrepDataTool') | | (default: 'Muon::RpcRdoToPrepDataTool/RpcRdoToPrepDataTool') +| |-DetStore @0x7f8504227950 = ServiceHandle('StoreGateSvc/DetectorStore') | |-DoSeededDecoding = False | |-Enable = True | |-ErrorCounter = 0 | |-ErrorMax = 1 +| |-EvtStore @0x7f85042278d0 = ServiceHandle('StoreGateSvc') +| |-ExtraInputs @0x7f85041a0710 = [] (default: []) +| |-ExtraOutputs @0x7f85041a0c20 = [] (default: []) | |-FilterCircularDependencies = True | |-IsIOBound = False | |-MonitorService = 'MonitorSvc' +| |-NeededResources @0x7f85041a0c68 = [] (default: []) | |-OutputCollection = 'StoreGateSvc+RPC_Measurements' | |-OutputLevel = 0 | |-PrintInputRdo = False +| |-PrintPrepData @0x7f8507d45b20 = False (default: False) +| |-RegionSelectionSvc @0x7f85042279d0 = ServiceHandle('RegSelSvc') | |-RegisterForContextService = False | |-RoIs = 'StoreGateSvc+OutputRoIs' +| |-Timeline = True | |=/***** Private AlgTool Muon::RpcRdoToPrepDataTool/RpcRdoToRpcPrepData.RpcRdoToRpcPrepDataTool ****** | | |-AuditFinalize = False | | |-AuditInitialize = False @@ -1547,11 +2434,16 @@ Py:Athena INFO Save Config | | |-AuditStop = False | | |-AuditTools = False | | |-DecodeData = True +| | |-DetStore @0x7f8504195b10 = ServiceHandle('StoreGateSvc/DetectorStore') +| | |-EvtStore @0x7f8504195b90 = ServiceHandle('StoreGateSvc') +| | |-ExtraInputs @0x7f8504202fc8 = [] (default: []) +| | |-ExtraOutputs @0x7f85042027a0 = [] (default: []) | | |-InputCollection = 'StoreGateSvc+RPC_triggerHits' | | |-MonitorService = 'MonitorSvc' | | |-OutputCollection = 'StoreGateSvc+RPCPAD' | | |-OutputLevel = 0 | | |-RPCInfoFromDb = False +| | |-RdoDecoderTool @0x7f850461a590 = PrivateToolHandle('Muon::RpcRDO_Decoder/Muon::RpcRDO_Decoder') | | | (default: 'Muon::RpcRDO_Decoder') | | |-TriggerOutputCollection = 'StoreGateSvc+RPC_Measurements' | | |-etaphi_coincidenceTime = 20.0 @@ -1569,6 +2461,10 @@ Py:Athena INFO Save Config | | | |-AuditStart = False | | | |-AuditStop = False | | | |-AuditTools = False +| | | |-DetStore @0x7f8504195c10 = ServiceHandle('StoreGateSvc/DetectorStore') +| | | |-EvtStore @0x7f8504195c50 = ServiceHandle('StoreGateSvc') +| | | |-ExtraInputs @0x7f8504202680 = [] (default: []) +| | | |-ExtraOutputs @0x7f85042028c0 = [] (default: []) | | | |-MonitorService = 'MonitorSvc' | | | |-OutputLevel = 0 | | | \----- (End of Private AlgTool Muon::RpcRDO_Decoder/RpcRdoToRpcPrepData.RpcRdoToRpcPrepDataTool.Muon::RpcRDO_Decoder) ----- @@ -1585,20 +2481,30 @@ Py:Athena INFO Save Config | |-AuditRestart = False | |-AuditStart = False | |-AuditStop = False +| |-Cardinality = 1 +| |-DecodingTool @0x7f85041a6050 = PrivateToolHandle('Muon::TgcRdoToPrepDataTool/TgcRdoToTgcPrepDataTool') | | (default: 'Muon::TgcRdoToPrepDataTool/TgcPrepDataProviderTool') +| |-DetStore @0x7f8504180850 = ServiceHandle('StoreGateSvc/DetectorStore') | |-DoSeededDecoding = False | |-Enable = True | |-ErrorCounter = 0 | |-ErrorMax = 1 +| |-EvtStore @0x7f85041807d0 = ServiceHandle('StoreGateSvc') +| |-ExtraInputs @0x7f85041a0a70 = [] (default: []) +| |-ExtraOutputs @0x7f85041a0cb0 = [] (default: []) | |-FilterCircularDependencies = True | |-IsIOBound = False | |-MonitorService = 'MonitorSvc' +| |-NeededResources @0x7f85041a0cf8 = [] (default: []) | |-OutputCollection = 'StoreGateSvc+TGC_Measurements' | |-OutputLevel = 0 | |-PrintInputRdo = False +| |-PrintPrepData @0x7f8507d45b20 = False (default: False) +| |-RegionSelectorSvc @0x7f85041808d0 = ServiceHandle('RegSelSvc') | |-RegisterForContextService = False | |-RoIs = 'StoreGateSvc+OutputRoIs' | |-Setting = 0 +| |-Timeline = True | |=/***** Private AlgTool Muon::TgcRdoToPrepDataTool/TgcRdoToTgcPrepData.TgcRdoToTgcPrepDataTool ****** | | |-AuditFinalize = False | | |-AuditInitialize = False @@ -1608,6 +2514,10 @@ Py:Athena INFO Save Config | | |-AuditStop = False | | |-AuditTools = False | | |-DecodeData = True +| | |-DetStore @0x7f8504195c90 = ServiceHandle('StoreGateSvc/DetectorStore') +| | |-EvtStore @0x7f8504195e50 = ServiceHandle('StoreGateSvc') +| | |-ExtraInputs @0x7f85041a5b00 = [] (default: []) +| | |-ExtraOutputs @0x7f85041a5ab8 = [] (default: []) | | |-FillCoinData = True | | |-MonitorService = 'MonitorSvc' | | |-OutputCoinCollection = 'TrigT1CoinDataCollection' @@ -1616,7 +2526,9 @@ Py:Athena INFO Save Config | | |-RDOContainer = 'StoreGateSvc+TGCRDO' | | |-TGCHashIdOffset = 26000 | | |-dropPrdsWithZeroWidth = True +| | |-outputCoinKey @0x7f85041a5560 = ['StoreGateSvc+dummy', 'StoreGateSvc+dummy', 'StoreGateSvc+dummy'] | | | (default: ['StoreGateSvc+dummy', 'StoreGateSvc+dummy', 'StoreGateSvc+dummy']) +| | |-prepDataKeys @0x7f85041a5b90 = ['StoreGateSvc+dummy', 'StoreGateSvc+dummy', 'StoreGateSvc+dummy', 'StoreGateSvc+dummy'] | | | (default: ['StoreGateSvc+dummy', 'StoreGateSvc+dummy', 'StoreGateSvc+dummy', 'StoreGateSvc+dummy']) | | |-show_warning_level_invalid_A09_SSW6_hit = False | | \----- (End of Private AlgTool Muon::TgcRdoToPrepDataTool/TgcRdoToTgcPrepData.TgcRdoToTgcPrepDataTool) ----- @@ -1632,19 +2544,29 @@ Py:Athena INFO Save Config | |-AuditRestart = False | |-AuditStart = False | |-AuditStop = False +| |-Cardinality = 1 +| |-DecodingTool @0x7f8507dee890 = PrivateToolHandle('Muon::MdtRdoToPrepDataTool/MdtRdoToMdtPrepDataTool') | | (default: 'Muon::MdtRdoToPrepDataTool/MdtPrepDataProviderTool') +| |-DetStore @0x7f8504215810 = ServiceHandle('StoreGateSvc/DetectorStore') | |-DoSeededDecoding = False | |-Enable = True | |-ErrorCounter = 0 | |-ErrorMax = 1 +| |-EvtStore @0x7f8504215790 = ServiceHandle('StoreGateSvc') +| |-ExtraInputs @0x7f85041a0d88 = [] (default: []) +| |-ExtraOutputs @0x7f85041a0e18 = [] (default: []) | |-FilterCircularDependencies = True | |-IsIOBound = False | |-MonitorService = 'MonitorSvc' +| |-NeededResources @0x7f85041a0dd0 = [] (default: []) | |-OutputCollection = 'StoreGateSvc+MDT_DriftCircles' | |-OutputLevel = 0 | |-PrintInputRdo = False +| |-PrintPrepData @0x7f8507d45b20 = False (default: False) +| |-RegionSelectionSvc @0x7f8504215890 = ServiceHandle('RegSelSvc') | |-RegisterForContextService = False | |-RoIs = 'StoreGateSvc+OutputRoIs' +| |-Timeline = True | |=/***** Private AlgTool Muon::MdtRdoToPrepDataTool/MdtRdoToMdtPrepData.MdtRdoToMdtPrepDataTool ****** | | |-AuditFinalize = False | | |-AuditInitialize = False @@ -1655,9 +2577,13 @@ Py:Athena INFO Save Config | | |-AuditTools = False | | |-CalibratePrepData = True | | |-DecodeData = True +| | |-DetStore @0x7f8504195d50 = ServiceHandle('StoreGateSvc/DetectorStore') | | |-DiscardSecondaryHitTwin = False | | |-DoPropagationCorrection = False | | |-DoTofCorrection = True +| | |-EvtStore @0x7f8504195fd0 = ServiceHandle('StoreGateSvc') +| | |-ExtraInputs @0x7f85041a4ef0 = [] (default: []) +| | |-ExtraOutputs @0x7f85041a4e18 = [] (default: []) | | |-MonitorService = 'MonitorSvc' | | |-OutputCollection = 'StoreGateSvc+MDT_DriftCircles' | | |-OutputLevel = 0 @@ -1684,19 +2610,29 @@ Py:Athena INFO Save Config | |-AuditRestart = False | |-AuditStart = False | |-AuditStop = False +| |-Cardinality = 1 +| |-CscRdoToCscPrepDataTool @0x7f8504886380 = PrivateToolHandle('Muon::CscRdoToCscPrepDataTool/CscRdoToCscPrepDataTool') | | (default: 'Muon::CscRdoToCscPrepDataTool/CscRdoToPrepDataTool') +| |-DetStore @0x7f85041fbcd0 = ServiceHandle('StoreGateSvc/DetectorStore') | |-DoSeededDecoding = False | |-Enable = True | |-ErrorCounter = 0 | |-ErrorMax = 1 +| |-EvtStore @0x7f85041fbbd0 = ServiceHandle('StoreGateSvc') +| |-ExtraInputs @0x7f85041a0ef0 = [] (default: []) +| |-ExtraOutputs @0x7f85041a0b90 = [] (default: []) | |-FilterCircularDependencies = True | |-IsIOBound = False | |-MonitorService = 'MonitorSvc' +| |-NeededResources @0x7f85041a0e60 = [] (default: []) | |-OutputCollection = 'StoreGateSvc+CSC_Measurements' | |-OutputLevel = 0 | |-PrintInputRdo = False +| |-PrintPrepData @0x7f8507d45b20 = False (default: False) +| |-RegionSelectionSvc @0x7f85041fbd50 = ServiceHandle('RegSelSvc') | |-RegisterForContextService = False | |-RoIs = 'StoreGateSvc+OutputRoIs' +| |-Timeline = True | |=/***** Private AlgTool Muon::CscRdoToCscPrepDataTool/CscRdoToCscPrepData.CscRdoToCscPrepDataTool ***** | | |-AuditFinalize = False | | |-AuditInitialize = False @@ -1706,7 +2642,13 @@ Py:Athena INFO Save Config | | |-AuditStop = False | | |-AuditTools = False | | |-CSCHashIdOffset = 22000 +| | |-CscCalibTool @0x7f8507df1860 = PrivateToolHandle('CscCalibTool/CscCalibTool') +| | |-CscRdoDecoderTool @0x7f85041a2de8 = PrivateToolHandle('Muon::CscRDO_Decoder/CscRDO_Decoder') | | |-DecodeData = True +| | |-DetStore @0x7f85041af090 = ServiceHandle('StoreGateSvc/DetectorStore') +| | |-EvtStore @0x7f85041af190 = ServiceHandle('StoreGateSvc') +| | |-ExtraInputs @0x7f85041b9290 = [] (default: []) +| | |-ExtraOutputs @0x7f85041b9710 = [] (default: []) | | |-MonitorService = 'MonitorSvc' | | |-OutputCollection = 'StoreGateSvc+CSC_Measurements' | | |-OutputLevel = 0 @@ -1719,6 +2661,10 @@ Py:Athena INFO Save Config | | | |-AuditStart = False | | | |-AuditStop = False | | | |-AuditTools = False +| | | |-DetStore @0x7f85041af1d0 = ServiceHandle('StoreGateSvc/DetectorStore') +| | | |-EvtStore @0x7f85041af210 = ServiceHandle('StoreGateSvc') +| | | |-ExtraInputs @0x7f85041b5fc8 = [] (default: []) +| | | |-ExtraOutputs @0x7f85041b58c0 = [] (default: []) | | | |-IsOnline = True | | | |-Latency = 100.0 | | | |-MonitorService = 'MonitorSvc' @@ -1745,6 +2691,11 @@ Py:Athena INFO Save Config | | | |-AuditStart = False | | | |-AuditStop = False | | | |-AuditTools = False +| | | |-CscCalibTool @0x7f85041af110 = PublicToolHandle('CscCalibTool') +| | | |-DetStore @0x7f85041af0d0 = ServiceHandle('StoreGateSvc/DetectorStore') +| | | |-EvtStore @0x7f85041af150 = ServiceHandle('StoreGateSvc') +| | | |-ExtraInputs @0x7f85041b92d8 = [] (default: []) +| | | |-ExtraOutputs @0x7f85041b90e0 = [] (default: []) | | | |-MonitorService = 'MonitorSvc' | | | |-OutputLevel = 0 | | | \----- (End of Private AlgTool Muon::CscRDO_Decoder/CscRdoToCscPrepData.CscRdoToCscPrepDataTool.CscRDO_Decoder) ----- @@ -1761,29 +2712,57 @@ Py:Athena INFO Save Config | |-AuditRestart = False | |-AuditStart = False | |-AuditStop = False +| |-Cardinality = 1 +| |-DetStore @0x7f85041da650 = ServiceHandle('StoreGateSvc/DetectorStore') | |-Enable = True | |-ErrorCounter = 0 | |-ErrorMax = 1 +| |-EvtStore @0x7f85041da5d0 = ServiceHandle('StoreGateSvc') +| |-ExtraInputs @0x7f8504121050 = [] (default: []) +| |-ExtraOutputs @0x7f85041a0f80 = [] (default: []) | |-FilterCircularDependencies = True | |-IsIOBound = False | |-MonitorService = 'MonitorSvc' +| |-NeededResources @0x7f85041a0fc8 = [] (default: []) | |-OutputLevel = 0 | |-RegisterForContextService = False +| |-Timeline = True +| |-cluster_builder @0x7f850410bf50 = PublicToolHandle('CscThresholdClusterBuilderTool/CscThesholdClusterBuilderTool') | | (default: 'CscThresholdClusterBuilderTool/CscThresholdClusterBuilderTool') | \----- (End of Algorithm CscThresholdClusterBuilder/CscThesholdClusterBuilder) --------------------- \----- (End of Algorithm AthSequencer/AthAlgSeq) --------------------------------------------------- JOs reading stage finished, launching Athena from pickle file +Wed Mar 13 10:50:38 CET 2019 +Preloading tcmalloc_minimal.so +Py:Athena INFO using release [AthenaExternals-22.0.1] [x86_64-centos7-gcc8-opt] [2.0.25/141317d] -- built on [2019-03-11T2107] +Py:Athena INFO including file "AthenaCommon/Preparation.py" +Py:Athena INFO including file "AthenaCommon/Atlas.UnixStandardJob.py" Py:Athena INFO executing ROOT6Setup Py:Athena INFO configuring AthenaHive with [1] concurrent threads and [1] concurrent events Py:AlgScheduler INFO setting up AvalancheSchedulerSvc/AvalancheSchedulerSvc with 1 threads +Py:Athena INFO including file "AthenaCommon/Execution.py" Py:Athena INFO now loading MuonRdoDecode.pkl ... +Py:ConfigurableDb INFO Read module info for 5461 configurables from 12 genConfDb files +Py:ConfigurableDb INFO No duplicates have been found: that's good ! +ApplicationMgr INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0 +ApplicationMgr SUCCESS +==================================================================================================================================== + Welcome to ApplicationMgr (GaudiCoreSvc v31r0) + running on pcaz004 on Wed Mar 13 10:50:42 2019 +==================================================================================================================================== ApplicationMgr INFO Application Manager Configured successfully +ApplicationMgr INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0 +Py:Athena INFO including file "AthenaCommon/runbatch.py" +StatusCodeSvc INFO initialize AthDictLoaderSvc INFO in initialize... AthDictLoaderSvc INFO acquired Dso-registry +ClassIDSvc INFO getRegistryEntries: read 3440 CLIDRegistry entries for module ALL CoreDumpSvc INFO install f-a-t-a-l handler... (flag = -1) CoreDumpSvc INFO Handling signals: 11(Segmentation fault) 7(Bus error) 4(Illegal instruction) 8(Floating point exception) +ByteStreamAddre... INFO Initializing ByteStreamAddressProviderSvc - package version ByteStreamCnvSvcBase-00-00-00 +ROBDataProviderSvc INFO Initializing ROBDataProviderSvc - package version ByteStreamCnvSvcBase-00-00-00 ROBDataProviderSvc INFO ---> Filter out empty ROB fragments = 'filterEmptyROB':False ROBDataProviderSvc INFO ---> Filter out specific ROBs by Status Code: # ROBs = 0 ROBDataProviderSvc INFO ---> Filter out Sub Detector ROBs by Status Code: # Sub Detectors = 0 @@ -1798,6 +2777,10 @@ ByteStreamAddre... INFO -- Will fill Store with id = 0 PoolSvc INFO io_register[PoolSvc](xmlcatalog_file:PoolFileCatalog.xml) [ok] PoolSvc INFO Set connectionsvc retry/timeout/IDLE timeout to 'ConnectionRetrialPeriod':300/ 'ConnectionRetrialTimeOut':3600/ 'ConnectionTimeOut':5 seconds with connection cleanup disabled PoolSvc INFO Frontier compression level set to 5 +DBReplicaSvc INFO Frontier server at (serverurl=http://atlasfrontier-local.cern.ch:8000/atlr)(serverurl=http://atlasfrontier-ai.cern.ch:8000/atlr)(serverurl=http://lcgft-atlas.gridpp.rl.ac.uk:3128/frontierATLAS)(serverurl=http://ccfrontier.in2p3.fr:23128/ccin2p3-AtlasFrontier)(proxyurl=http://ca-proxy.cern.ch:3128)(proxyurl=http://ca-proxy-meyrin.cern.ch:3128)(proxyurl=http://ca-proxy-wigner.cern.ch:3128) will be considered for COOL data +DBReplicaSvc INFO Read replica configuration from /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-03-11T2143/Athena/22.0.1/InstallArea/x86_64-centos7-gcc8-opt/share/dbreplica.config +DBReplicaSvc INFO Total of 10 servers found for host pcaz004.dyndns.cern.ch [ATLF ATLAS_COOLPROD atlas_dd ATLAS_CONFIG INT8R INTR ATONR_COOL ATONR_CONF DEVDB11 ATLF ] +DBReplicaSvc INFO COOL SQLite replicas will be excluded if matching pattern /DBRelease/ PoolSvc INFO Successfully setup replica sorting algorithm PoolSvc INFO Setting up APR FileCatalog and Streams PoolSvc INFO Resolved path (via ATLAS_POOLCOND_PATH) is /cvmfs/atlas-condb.cern.ch/repo/conditions/poolcond/PoolFileCatalog.xml @@ -1806,13 +2789,26 @@ PoolSvc WARNING Unable to locate catalog for apcfile:poolcond/PoolCat_ PoolSvc WARNING Unable to locate catalog for prfile:poolcond/PoolCat_comcond.xml check your ATLAS_POOLCOND_PATH and DATAPATH variables PoolSvc WARNING Unable to locate catalog for apcfile:poolcond/PoolCat_comcond.xml check your ATLAS_POOLCOND_PATH and DATAPATH variables PoolSvc INFO POOL WriteCatalog is xmlcatalog_file:PoolFileCatalog.xml +DbSession INFO Open DbSession +Domain[ROOT_All] INFO > Access DbDomain READ [ROOT_All] IOVDbSvc INFO Opened read transaction for POOL PersistencySvc IOVDbSvc INFO Only 5 POOL conditions files will be open at once +IOVDbSvc INFO Cache alignment will be done in 3 slices IOVDbSvc INFO Global tag: CONDBR2-BLKPA-2018-13 set from joboptions IOVDbFolder INFO Inputfile tag override disabled for /GLOBAL/BField/Maps +IOVDbSvc INFO Folder /GLOBAL/BField/Maps will be written to file metadata IOVDbSvc INFO Initialised with 8 connections and 19 folders IOVDbSvc INFO Service IOVDbSvc initialised successfully +MetaDataSvc INFO Initializing MetaDataSvc - package version AthenaServices-00-00-00 +AthenaPoolCnvSvc INFO Initializing AthenaPoolCnvSvc - package version AthenaPoolCnvSvc-00-00-00 +ToolSvc.ByteStr... INFO Initializing ToolSvc.ByteStreamMetadataTool - package version ByteStreamCnvSvc-00-00-00 +MetaDataSvc INFO Found MetaDataTools = PublicToolHandleArray(['IOVDbMetaDataTool/IOVDbMetaDataTool','ByteStreamMetadataTool/ByteStreamMetadataTool']) IOVDbSvc INFO Opening COOL connection for COOLONL_MDT/CONDBR2 +ClassIDSvc INFO getRegistryEntries: read 3314 CLIDRegistry entries for module ALL +ClassIDSvc INFO getRegistryEntries: read 163 CLIDRegistry entries for module ALL +ClassIDSvc INFO getRegistryEntries: read 4046 CLIDRegistry entries for module ALL +ClassIDSvc INFO getRegistryEntries: read 129 CLIDRegistry entries for module ALL +ClassIDSvc INFO getRegistryEntries: read 3110 CLIDRegistry entries for module ALL IOVSvc INFO No IOVSvcTool associated with store "StoreGateSvc" IOVSvcTool INFO IOVRanges will be checked at every Event IOVDbSvc INFO Opening COOL connection for COOLONL_RPC/CONDBR2 @@ -1893,6 +2889,10 @@ GeoModelSvc::RD...WARNING Getting PixTBMatComponents with default tag GeoModelSvc::RD...WARNING Getting PixTBMaterials with default tag GeoModelSvc::RD...WARNING Getting InDetMatComponents with default tag GeoModelSvc::RD...WARNING Getting InDetMaterials with default tag +GeoModelSvc.Muo... INFO create MuonDetectorTool - package version = MuonGeoModel-00-00-00 +GeoModelSvc.Muo... INFO (from GeoModelSvc) AtlasVersion = <ATLAS-R2-2016-01-00-01> MuonVersion = <> +GeoModelSvc.Muo... INFO Keys for Muon Switches are (key) ATLAS-R2-2016-01-00-01 (node) ATLAS +GeoModelSvc.Muo... INFO (from GeoModelSvc) in AtlasVersion = <ATLAS-R2-2016-01-00-01> default MuonVersion is <MuonSpectrometer-R.08.01> GeoModelSvc.Muo... INFO Properties have been set as follows: GeoModelSvc.Muo... INFO LayoutName R GeoModelSvc.Muo... INFO IncludeCutouts 0 @@ -2007,6 +3007,7 @@ AtlasDetectorID::initLevelsFromDict - there are no MM entries in the dictionary! MuGM:MuonFactory INFO MMIDHELPER retrieved from DetStore MuGM:MuonFactory INFO **************** MuonDetectorFactory001 ************************ MuGM:MuonFactory INFO *** Start building the Muon Geometry Tree ********************** +MuGM:RDBReadAtlas INFO Start retriving dbObjects with tag = <ATLAS-R2-2016-01-00-01> node <ATLAS> RDBAccessSvc WARNING Could not get the tag for XtomoData node. Returning 0 pointer to IRDBQuery MuGM:RDBReadAtlas INFO After getQuery XtomoData In DblQ00Xtomo(data) @@ -2036,6 +3037,7 @@ MuGM:ProcCutouts INFO Processing Cutouts DONE MuGM:RDBReadAtlas INFO ProcessTGCreadout - version 7 wirespacing 1.8 MuGM:RDBReadAtlas INFO Intermediate Objects built from primary numbers MuGM:MuonFactory INFO theMaterialManager retrieven successfully from the DetStore +MuGM:MuonFactory INFO MuonSystem description from OracleTag=<ATLAS-R2-2016-01-00-01> and node=<ATLAS> MuGM:MuonFactory INFO TreeTop added to the Manager MuGM:MuonFactory INFO Muon Layout R.08.01 MuGM:MuonFactory INFO Fine Clash Fixing disabled: (should be ON/OFF for Simulation/Reconstruction) @@ -2059,9 +3061,13 @@ MuGM:MuonFactory INFO ***************************************************** MGM::MuonDetect... INFO Init A/B Line Containers - done - size is respectively 1758/0 MGM::MuonDetect... INFO No Aline for CSC wire layers loaded +GeoModelSvc INFO GeoModelSvc.MuonDetectorTool SZ= 42840Kb Time = 0.42S GeoModelSvc.Muo... INFO CondAttrListCollection not found in the DetectorStore GeoModelSvc.Muo... INFO Unable to register callback on CondAttrListCollection for any folder in the list GeoModelSvc.Muo... INFO This is OK unless you expect to read alignment and deformations from COOL +ClassIDSvc INFO getRegistryEntries: read 1455 CLIDRegistry entries for module ALL +AthenaEventLoopMgr INFO Initializing AthenaEventLoopMgr - package version AthenaServices-00-00-00 +ClassIDSvc INFO getRegistryEntries: read 1794 CLIDRegistry entries for module ALL CondInputLoader INFO Initializing CondInputLoader... CondInputLoader INFO Adding base classes: + ( 'CondAttrListCollection' , 'ConditionStore+/EXT/DCS/MAGNETS/SENSORDATA' ) -> @@ -2071,12 +3077,17 @@ CondInputLoader INFO Will create WriteCondHandle dependencies for the follo + ( 'CondAttrListCollection' , 'ConditionStore+/EXT/DCS/MAGNETS/SENSORDATA' ) + ( 'CondAttrListCollection' , 'ConditionStore+/MDT/CABLING/MAP_SCHEMA' ) + ( 'CondAttrListCollection' , 'ConditionStore+/MDT/CABLING/MEZZANINE_SCHEMA' ) +ClassIDSvc INFO getRegistryEntries: read 1370 CLIDRegistry entries for module ALL +ClassIDSvc INFO getRegistryEntries: read 743 CLIDRegistry entries for module ALL RpcRawDataProvider INFO RpcRawDataProvider::initialize RpcRawDataProvider INFO 'DoSeededDecoding':False +ClassIDSvc INFO getRegistryEntries: read 1699 CLIDRegistry entries for module ALL +MuonRPC_CablingSvc INFO Initializing MuonRPC_CablingSvc - package version MuonRPC_Cabling-00-00-00 ToolSvc.RPCCabl... INFO Initializing - folders names are: conf /RPC/CABLING/MAP_SCHEMA / corr /RPC/CABLING/MAP_SCHEMA_CORR MuonRPC_CablingSvc INFO RPCCablingDbTool retrieved with statusCode = SUCCESS with handle TheRpcCablingDbTool = PublicToolHandle('RPCCablingDbTool/RPCCablingDbTool') MuonRPC_CablingSvc INFO Register call-back against 2 folders listed below MuonRPC_CablingSvc INFO Folder n. 1 </RPC/CABLING/MAP_SCHEMA> found in the DetStore +ClassIDSvc INFO getRegistryEntries: read 501 CLIDRegistry entries for module ALL MuonRPC_CablingSvc INFO initMappingModel registered for call-back against folder </RPC/CABLING/MAP_SCHEMA> MuonRPC_CablingSvc INFO Folder n. 2 </RPC/CABLING/MAP_SCHEMA_CORR> found in the DetStore MuonRPC_CablingSvc INFO initMappingModel registered for call-back against folder </RPC/CABLING/MAP_SCHEMA_CORR> @@ -2091,25 +3102,32 @@ RpcRawDataProvi... INFO Retrieved service ServiceHandle('ROBDataProviderSvc') RpcRawDataProvi... INFO Tool = RpcRawDataProvider.RPC_RawDataProviderTool is connected to JobOptionsSvc Service = JobOptionsSvc RpcRawDataProvi... INFO initialize() successful in RpcRawDataProvider.RPC_RawDataProviderTool TgcRawDataProvider INFO TgcRawDataProvider::initialize +ClassIDSvc INFO getRegistryEntries: read 878 CLIDRegistry entries for module ALL TgcRawDataProvi... INFO initialize() successful in TgcRawDataProvider.TGC_RawDataProviderTool.TgcROD_Decoder TgcRawDataProvi... INFO Retrieved tool Decoder = PrivateToolHandle('Muon::TGC_RodDecoderReadout/TgcROD_Decoder') TgcRawDataProvi... INFO Retrieved service ServiceHandle('ROBDataProviderSvc') TgcRawDataProvi... INFO Tool = TgcRawDataProvider.TGC_RawDataProviderTool is connected to JobOptionsSvc Service = JobOptionsSvc MuonTGC_CablingSvc INFO for 1/12 sector initialize ToolSvc.TGCCabl... INFO initialize +ClassIDSvc INFO getRegistryEntries: read 273 CLIDRegistry entries for module ALL +IOVSvcTool INFO Still in initialize phase, not tiggering callback for MuonTGC_CablingSvc[0x120ae200]+219 bound to CondAttrListCollection[/TGC/CABLING/MAP_SCHEMA] TgcRawDataProvi... INFO initialize() successful in TgcRawDataProvider.TGC_RawDataProviderTool MdtRawDataProvider INFO MdtRawDataProvider::initialize +ClassIDSvc INFO getRegistryEntries: read 922 CLIDRegistry entries for module ALL MdtRawDataProvi... INFO Retrieved service ServiceHandle('ROBDataProviderSvc') MdtRawDataProvi... INFO Processing configuration for layouts with BME chambers. MdtRawDataProvi... INFO Processing configuration for layouts with BMG chambers. MdtRawDataProvi... INFO Retrieved tool Decoder = PrivateToolHandle('MdtROD_Decoder/MdtROD_Decoder') MdtRawDataProvi... INFO Tool = MdtRawDataProvider.MDT_RawDataProviderTool is connected to JobOptionsSvc Service = JobOptionsSvc MdtRawDataProvi... INFO initialize() successful in MdtRawDataProvider.MDT_RawDataProviderTool +ClassIDSvc INFO getRegistryEntries: read 658 CLIDRegistry entries for module ALL CscRawDataProvi... INFO Retrieved service ServiceHandle('ROBDataProviderSvc') CscRawDataProvi... INFO Tool = CscRawDataProvider.CSC_RawDataProviderTool is connected to JobOptionsSvc Service = JobOptionsSvc CscRawDataProvi... INFO Retrieved tool Decoder = PrivateToolHandle('Muon::CscROD_Decoder/CscROD_Decoder') CscRawDataProvi... INFO The Muon Geometry version is R.08.01 CscRawDataProvi... INFO initialize() successful in CscRawDataProvider.CSC_RawDataProviderTool +ClassIDSvc INFO getRegistryEntries: read 53 CLIDRegistry entries for module ALL +RpcRdoToRpcPrep... INFO package version = MuonRPC_CnvTools-00-00-00 RpcRdoToRpcPrep... INFO properties are RpcRdoToRpcPrep... INFO processingData 0 RpcRdoToRpcPrep... INFO produceRpcCoinDatafromTriggerWords 1 @@ -2124,21 +3142,35 @@ RpcRdoToRpcPrep... INFO Retrieved DecodingTool = PrivateToolHandle('Muon::RpcR TgcRdoToTgcPrep... INFO initialize() successful in TgcRdoToTgcPrepData.TgcRdoToTgcPrepDataTool TgcRdoToTgcPrep... INFO Retrieved DecodingTool = PrivateToolHandle('Muon::TgcRdoToPrepDataTool/TgcRdoToTgcPrepDataTool') MdtCalibrationSvc INFO Processing configuration for layouts with BMG chambers. +ClassIDSvc INFO getRegistryEntries: read 194 CLIDRegistry entries for module ALL AtlasFieldSvc INFO initialize() ... AtlasFieldSvc INFO maps will be chosen reading COOL folder /GLOBAL/BField/Maps +ClassIDSvc INFO getRegistryEntries: read 163 CLIDRegistry entries for module ALL AtlasFieldSvc INFO magnet currents will be read from COOL folder /EXT/DCS/MAGNETS/SENSORDATA AtlasFieldSvc INFO Booked callback for /EXT/DCS/MAGNETS/SENSORDATA AtlasFieldSvc INFO initialize() successful MdtRdoToMdtPrep... INFO Processing configuration for layouts with BME chambers. MdtRdoToMdtPrep... INFO Processing configuration for layouts with BMG chambers. MdtRdoToMdtPrep... INFO Retrieved DecodingTool = PrivateToolHandle('Muon::MdtRdoToPrepDataTool/MdtRdoToMdtPrepDataTool') +ClassIDSvc INFO getRegistryEntries: read 60 CLIDRegistry entries for module ALL CscRdoToCscPrep... INFO The Geometry version is MuonSpectrometer-R.08.01 MuonCalib::CscC... INFO Initializing CscCoolStrSvc +ClassIDSvc INFO getRegistryEntries: read 181 CLIDRegistry entries for module ALL +IOVSvcTool INFO Still in initialize phase, not tiggering callback for MuonCalib::CscCoolStrSvc[0x1b246d00]+259 bound to CondAttrListCollection[CSC_PED] +IOVSvcTool INFO Still in initialize phase, not tiggering callback for MuonCalib::CscCoolStrSvc[0x1b246d00]+259 bound to CondAttrListCollection[CSC_NOISE] +IOVSvcTool INFO Still in initialize phase, not tiggering callback for MuonCalib::CscCoolStrSvc[0x1b246d00]+259 bound to CondAttrListCollection[CSC_PSLOPE] +IOVSvcTool INFO Still in initialize phase, not tiggering callback for MuonCalib::CscCoolStrSvc[0x1b246d00]+259 bound to CondAttrListCollection[CSC_STAT] +IOVSvcTool INFO Still in initialize phase, not tiggering callback for MuonCalib::CscCoolStrSvc[0x1b246d00]+259 bound to CondAttrListCollection[CSC_RMS] +IOVSvcTool INFO Still in initialize phase, not tiggering callback for MuonCalib::CscCoolStrSvc[0x1b246d00]+259 bound to CondAttrListCollection[CSC_FTHOLD] +IOVSvcTool INFO Still in initialize phase, not tiggering callback for MuonCalib::CscCoolStrSvc[0x1b246d00]+259 bound to CondAttrListCollection[CSC_T0BASE] +IOVSvcTool INFO Still in initialize phase, not tiggering callback for MuonCalib::CscCoolStrSvc[0x1b246d00]+259 bound to CondAttrListCollection[CSC_T0PHASE] CscRdoToCscPrep... INFO Retrieved CscRdoToCscPrepDataTool = PrivateToolHandle('Muon::CscRdoToCscPrepDataTool/CscRdoToCscPrepDataTool') HistogramPersis...WARNING Histograms saving not required. +EventSelector INFO Initializing EventSelector - package version ByteStreamCnvSvc-00-00-00 EventSelector WARNING InputCollections not properly set, checking EventStorageInputSvc properties EventSelector INFO Retrieved StoreGateSvc name of '':StoreGateSvc EventSelector INFO reinitialization... +ClassIDSvc INFO getRegistryEntries: read 1126 CLIDRegistry entries for module ALL ToolSvc.Luminos... INFO LuminosityTool::initialize() registering ToolSvc.Luminos... INFO LumiFolderName is empty, skipping ToolSvc.Luminos... INFO OnlineLumiCalibrationTool.empty() is TRUE, skipping... @@ -2147,6 +3179,7 @@ ToolSvc.Luminos... INFO BunchLumisTool.empty() is TRUE, skipping... ToolSvc.Luminos... INFO BunchGroupTool.empty() is TRUE, skipping... ToolSvc.Luminos... INFO LBLBFolderName is empty, skipping... EventSelector INFO Retrieved InputCollections from InputSvc +ByteStreamInputSvc INFO Initializing ByteStreamInputSvc - package version ByteStreamCnvSvc-00-00-00 EventSelector INFO reinitialization... AthenaEventLoopMgr INFO Setup EventSelector service EventSelector ApplicationMgr INFO Application Manager Initialized successfully @@ -2228,6 +3261,7 @@ phi high-pt mu11 mu15 mu15 RPCcabling INFO CablingRPC---InitMaps from COOL: going to read configuration +RPCcabling INFO CablingRPC--->> RPC cabling map from COOL << RPCcabling INFO CablingRPC--- ReadConf: map has size 222202 RPCcabling INFO CablingRPC--- ReadConf: map n. of lines read is 924 RPCcabling INFO CablingRPC--- ReadConf: version is 5.0 Atlas R_07_03_RUN2ver104 @@ -2265,13 +3299,19 @@ AtlasFieldSvc INFO Trying to read from DCS: [channel name, index, value] AtlasFieldSvc INFO Trying to read from DCS: [channel name, index, value] Toroids_SCurrent , 4 , 20397.7 AtlasFieldSvc INFO Currents read from DCS: solenoid 7729.99 toroid 20399.9 AtlasFieldSvc INFO Initializing the field map (solenoidCurrent=7729.99 toroidCurrent=20399.9) +AtlasFieldSvc INFO reading the map from /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/atlas/offline/ReleaseData/v20/MagneticFieldMaps/bfieldmap_7730_20400_14m.root +AtlasFieldSvc INFO Initialized the field map from /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/atlas/offline/ReleaseData/v20/MagneticFieldMaps/bfieldmap_7730_20400_14m.root +ClassIDSvc INFO getRegistryEntries: read 672 CLIDRegistry entries for module ALL AthenaEventLoopMgr INFO ===>>> start processing event #186525031, run #327265 0 events processed so far <<<=== IOVDbSvc INFO Opening COOL connection for COOLONL_MDT/CONDBR2 IOVDbFolder INFO HVS tag CONDBR2-BLKPA-2018-13 resolved to MDTCablingMapSchema_BMG_01 for folder /MDT/CABLING/MAP_SCHEMA IOVDbFolder INFO HVS tag CONDBR2-BLKPA-2018-13 resolved to MDTCablingMezzanineSchema_M5-RUN2 for folder /MDT/CABLING/MEZZANINE_SCHEMA IOVDbSvc INFO Disconnecting from COOLONL_MDT/CONDBR2 MuonMDT_CablingAlg INFO Size of CondAttrListCollection ( 'CondAttrListCollection' , 'ConditionStore+/MDT/CABLING/MEZZANINE_SCHEMA' ) readCdoMez->size()= 24 +MuonMDT_CablingAlg INFO Range of input is {[0,l:0] - [INVALID]} MuonMDT_CablingAlg INFO Size of CondAttrListCollection ( 'CondAttrListCollection' , 'ConditionStore+/MDT/CABLING/MAP_SCHEMA' ) readCdoMap->size()= 2312 +MuonMDT_CablingAlg INFO Range of input is {[327264,l:4294640031] - [327265,l:4294640030]} +MuonMDT_CablingAlg INFO recorded new MuonMDT_CablingMap with range {[327264,l:4294640031] - [327265,l:4294640030]} into Conditions Store AthenaEventLoopMgr INFO ===>>> done processing event #186525031, run #327265 1 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #186524665, run #327265 1 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> done processing event #186524665, run #327265 2 events processed so far <<<=== @@ -2311,11 +3351,42 @@ AthenaEventLoopMgr INFO ===>>> start processing event #186568452, run #3272 AthenaEventLoopMgr INFO ===>>> done processing event #186568452, run #327265 19 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> start processing event #186580451, run #327265 19 events processed so far <<<=== AthenaEventLoopMgr INFO ===>>> done processing event #186580451, run #327265 20 events processed so far <<<=== +Domain[ROOT_All] INFO > Deaccess DbDomain READ [ROOT_All] ApplicationMgr INFO Application Manager Stopped successfully +IncidentProcAlg1 INFO Finalize CondInputLoader INFO Finalizing CondInputLoader... +IncidentProcAlg2 INFO Finalize AtlasFieldSvc INFO finalize() successful EventInfoByteSt... INFO finalize IdDictDetDescrCnv INFO in finalize +IOVDbFolder INFO Folder /EXT/DCS/MAGNETS/SENSORDATA (AttrListColl) db-read 1/2 objs/chan/bytes 4/4/20 (( 0.27 ))s +IOVDbFolder INFO Folder /GLOBAL/BField/Maps (AttrListColl) db-read 1/1 objs/chan/bytes 3/3/202 (( 0.76 ))s +IOVDbFolder INFO Folder /MDT/CABLING/MAP_SCHEMA (AttrListColl) db-read 1/1 objs/chan/bytes 2312/2437/216520 (( 1.37 ))s +IOVDbFolder INFO Folder /MDT/CABLING/MEZZANINE_SCHEMA (AttrListColl) db-read 1/1 objs/chan/bytes 24/24/288 (( 0.41 ))s +IOVDbFolder INFO Folder /MDT/RTBLOB (AttrListColl) db-read 0/0 objs/chan/bytes 0/1186/0 (( 0.00 ))s +IOVDbFolder INFO Folder /MDT/T0BLOB (AttrListColl) db-read 0/0 objs/chan/bytes 0/1186/0 (( 0.00 ))s +IOVDbFolder INFO Folder /RPC/CABLING/MAP_SCHEMA (AttrListColl) db-read 1/1 objs/chan/bytes 1/1/222235 (( 0.94 ))s +IOVDbFolder INFO Folder /RPC/CABLING/MAP_SCHEMA_CORR (AttrListColl) db-read 1/1 objs/chan/bytes 1/1/29402 (( 0.55 ))s +IOVDbFolder INFO Folder /RPC/TRIGGER/CM_THR_ETA (AttrListColl) db-read 1/1 objs/chan/bytes 1613/1613/7562651 (( 0.63 ))s +IOVDbFolder INFO Folder /RPC/TRIGGER/CM_THR_PHI (AttrListColl) db-read 1/1 objs/chan/bytes 1612/1612/8096306 (( 1.77 ))s +IOVDbFolder INFO Folder /TGC/CABLING/MAP_SCHEMA (AttrListColl) db-read 1/1 objs/chan/bytes 1/1/3704 (( 0.97 ))s +IOVDbFolder INFO Folder /CSC/FTHOLD (AttrListColl) db-read 1/1 objs/chan/bytes 32/32/322656 (( 0.94 ))s +IOVDbFolder INFO Folder /CSC/NOISE (AttrListColl) db-read 1/1 objs/chan/bytes 32/32/350062 (( 0.92 ))s +IOVDbFolder INFO Folder /CSC/PED (AttrListColl) db-read 1/1 objs/chan/bytes 32/32/411187 (( 0.26 ))s +IOVDbFolder INFO Folder /CSC/PSLOPE (AttrListColl) db-read 1/1 objs/chan/bytes 32/32/353376 (( 0.22 ))s +IOVDbFolder INFO Folder /CSC/RMS (AttrListColl) db-read 1/1 objs/chan/bytes 32/32/411395 (( 0.12 ))s +IOVDbFolder INFO Folder /CSC/STAT (AttrListColl) db-read 1/1 objs/chan/bytes 32/32/230496 (( 0.22 ))s +IOVDbFolder INFO Folder /CSC/T0BASE (AttrListColl) db-read 1/1 objs/chan/bytes 32/32/314380 (( 0.77 ))s +IOVDbFolder INFO Folder /CSC/T0PHASE (AttrListColl) db-read 1/1 objs/chan/bytes 32/32/3136 (( 0.58 ))s +IOVDbSvc INFO bytes in (( 11.71 ))s +IOVDbSvc INFO Connection sqlite://;schema=mycool.db;dbname=CONDBR2 : nConnect: 0 nFolders: 0 ReadTime: (( 0.00 ))s +IOVDbSvc INFO Connection COOLONL_MDT/CONDBR2 : nConnect: 2 nFolders: 2 ReadTime: (( 1.78 ))s +IOVDbSvc INFO Connection COOLONL_RPC/CONDBR2 : nConnect: 2 nFolders: 4 ReadTime: (( 3.90 ))s +IOVDbSvc INFO Connection COOLOFL_MDT/CONDBR2 : nConnect: 1 nFolders: 2 ReadTime: (( 0.00 ))s +IOVDbSvc INFO Connection COOLOFL_CSC/CONDBR2 : nConnect: 2 nFolders: 8 ReadTime: (( 4.03 ))s +IOVDbSvc INFO Connection COOLONL_GLOBAL/CONDBR2 : nConnect: 2 nFolders: 1 ReadTime: (( 0.76 ))s +IOVDbSvc INFO Connection COOLONL_TGC/CONDBR2 : nConnect: 2 nFolders: 1 ReadTime: (( 0.97 ))s +IOVDbSvc INFO Connection COOLOFL_DCS/CONDBR2 : nConnect: 2 nFolders: 1 ReadTime: (( 0.27 ))s AthDictLoaderSvc INFO in finalize... ToolSvc INFO Removing all tools created by ToolSvc ToolSvc.ByteStr... INFO in finalize() @@ -2339,6 +3410,8 @@ ToolSvc.TGCCabl... INFO finalize *****Chrono***** INFO **************************************************************************************************** *****Chrono***** INFO The Final CPU consumption ( Chrono ) Table (ordered) *****Chrono***** INFO **************************************************************************************************** +cObj_ALL INFO Time User : Tot= 0 [us] Ave/Min/Max= 0(+- 0)/ 0/ 0 [us] #= 18 +ChronoStatSvc INFO Time User : Tot= 4.92 [s] #= 1 *****Chrono***** INFO **************************************************************************************************** ChronoStatSvc.f... INFO Service finalized successfully ApplicationMgr INFO Application Manager Finalized successfully diff --git a/MuonSpectrometer/MuonConfig/share/MuonDataDecodeTest_Cache.ref b/MuonSpectrometer/MuonConfig/share/MuonDataDecodeTest_Cache.ref index bca879f265a777080aeb63bf51fd090d83231f5a..411d55dcbaee95b3b5cd697423f63b202f43aa44 100644 --- a/MuonSpectrometer/MuonConfig/share/MuonDataDecodeTest_Cache.ref +++ b/MuonSpectrometer/MuonConfig/share/MuonDataDecodeTest_Cache.ref @@ -1,4 +1,40 @@ Flag Name : Value +Beam.BunchSpacing : 25 +Beam.Energy : [function] +Beam.NumberOfCollisions : 0 +Beam.Type : 'collisions' +Beam.estimatedLuminosity : [function] +Calo.Noise.fixedLumiForNoise : -1 +Calo.Noise.useCaloNoiseLumi : True +Calo.TopoCluster.doTreatEnergyCutAsAbsol : False +Calo.TopoCluster.doTwoGaussianNoise : True +Common.Project : 'Athena' +Common.isOnline : False +Concurrency.NumConcurrentEvents : 0 +Concurrency.NumProcs : 0 +Concurrency.NumThreads : 0 +GeoModel.Align.Dynamic : [function] +GeoModel.AtlasVersion : 'ATLAS-R2-2016-01-00-01' +GeoModel.Layout : 'atlas' +GeoModel.Run : 'RUN2' +GeoModel.StripGeoType : 'GMX' +IOVDb.DatabaseInstance : [function] +IOVDb.GlobalTag : 'CONDBR2-BLKPA-2018-13' +Input.Files : ['/cvmfs/atlas-nightlies.cern.ch/repo/data/data-art/TrigP1Test/data17_13TeV.00327265.physics_EnhancedBias.merge.RAW._lb0100._SFO-1._0001.1'] +Input.ProjectName : [function] +Input.RunNumber : [function] +Input.isMC : [function] +Output.AODFileName : 'myAOD.pool.root' +Output.ESDFileName : 'myESD.pool.root' +Output.EVNTFileName : 'myEVNT.pool.root' +Output.HISTFileName : 'myHIST.root' +Output.HITSFileName : 'myHITS.pool.root' +Output.RDOFileName : 'myROD.pool.root' +Output.doESD : False +Scheduler.CheckDependencies : True +Scheduler.ShowControlFlow : True +Scheduler.ShowDataDeps : True +Scheduler.ShowDataFlow : True Flag categories that can be loaded dynamically Category : Generator name : Defined in DQ : __dq : AthenaConfiguration/AllConfigFlags.py @@ -37,8 +73,113 @@ Py:ComponentAccumulator DEBUG Adding component ByteStreamAttListMetadataSvc/By Py:ComponentAccumulator DEBUG Adding component IOVDbMetaDataTool/IOVDbMetaDataTool to the job Py:ComponentAccumulator DEBUG Adding component ByteStreamMetadataTool/ByteStreamMetadataTool to the job Py:ComponentAccumulator DEBUG Merging algorithm MuonCacheCreator to a sequence AthAlgSeq +Py:Athena INFO using release [AthenaExternals-22.0.1] [x86_64-centos7-gcc8-opt] [2.0.25/141317d] -- built on [2019-03-11T2107] dynamically loading the flag Detector Flag Name : Value +Beam.BunchSpacing : 25 +Beam.Energy : [function] +Beam.NumberOfCollisions : 0 +Beam.Type : 'collisions' +Beam.estimatedLuminosity : [function] +Calo.Noise.fixedLumiForNoise : -1 +Calo.Noise.useCaloNoiseLumi : True +Calo.TopoCluster.doTreatEnergyCutAsAbsol : False +Calo.TopoCluster.doTwoGaussianNoise : True +Common.Project : 'Athena' +Common.isOnline : False +Concurrency.NumConcurrentEvents : 0 +Concurrency.NumProcs : 0 +Concurrency.NumThreads : 0 +Detector.Geometry : [function] +Detector.GeometryAFP : False +Detector.GeometryALFA : False +Detector.GeometryBCM : False +Detector.GeometryBpipe : False +Detector.GeometryCSC : False +Detector.GeometryCalo : [function] +Detector.GeometryCavern : False +Detector.GeometryDBM : False +Detector.GeometryForward : [function] +Detector.GeometryFwdRegion : False +Detector.GeometryID : [function] +Detector.GeometryLAr : False +Detector.GeometryLucid : False +Detector.GeometryMDT : False +Detector.GeometryMM : False +Detector.GeometryMuon : [function] +Detector.GeometryPixel : False +Detector.GeometryRPC : False +Detector.GeometrySCT : False +Detector.GeometryTGC : False +Detector.GeometryTRT : False +Detector.GeometryTile : False +Detector.GeometryZDC : False +Detector.GeometrysTGC : False +Detector.Overlay : [function] +Detector.OverlayBCM : False +Detector.OverlayCSC : False +Detector.OverlayCalo : [function] +Detector.OverlayDBM : False +Detector.OverlayID : [function] +Detector.OverlayLAr : False +Detector.OverlayMDT : False +Detector.OverlayMM : False +Detector.OverlayMuon : [function] +Detector.OverlayPixel : False +Detector.OverlayRPC : False +Detector.OverlaySCT : False +Detector.OverlayTGC : False +Detector.OverlayTRT : False +Detector.OverlayTile : False +Detector.OverlaysTGC : False +Detector.Simulate : [function] +Detector.SimulateAFP : False +Detector.SimulateALFA : False +Detector.SimulateBCM : False +Detector.SimulateBpipe : False +Detector.SimulateCSC : False +Detector.SimulateCalo : [function] +Detector.SimulateCavern : False +Detector.SimulateDBM : False +Detector.SimulateForward : [function] +Detector.SimulateFwdRegion : False +Detector.SimulateHGTD : False +Detector.SimulateID : [function] +Detector.SimulateLAr : False +Detector.SimulateLucid : False +Detector.SimulateMDT : False +Detector.SimulateMM : False +Detector.SimulateMuon : [function] +Detector.SimulatePixel : False +Detector.SimulateRPC : False +Detector.SimulateSCT : False +Detector.SimulateTGC : False +Detector.SimulateTRT : False +Detector.SimulateTile : False +Detector.SimulateZDC : False +Detector.SimulatesTGC : False +GeoModel.Align.Dynamic : [function] +GeoModel.AtlasVersion : 'ATLAS-R2-2016-01-00-01' +GeoModel.Layout : 'atlas' +GeoModel.Run : 'RUN2' +GeoModel.StripGeoType : 'GMX' +IOVDb.DatabaseInstance : [function] +IOVDb.GlobalTag : 'CONDBR2-BLKPA-2018-13' +Input.Files : ['/cvmfs/atlas-nightlies.cern.ch/repo/data/data-art/TrigP1Test/data17_13TeV.00327265.physics_EnhancedBias.merge.RAW._lb0100._SFO-1._0001.1'] +Input.ProjectName : [function] +Input.RunNumber : [function] +Input.isMC : False +Output.AODFileName : 'myAOD.pool.root' +Output.ESDFileName : 'myESD.pool.root' +Output.EVNTFileName : 'myEVNT.pool.root' +Output.HISTFileName : 'myHIST.root' +Output.HITSFileName : 'myHITS.pool.root' +Output.RDOFileName : 'myROD.pool.root' +Output.doESD : False +Scheduler.CheckDependencies : True +Scheduler.ShowControlFlow : True +Scheduler.ShowDataDeps : True +Scheduler.ShowDataFlow : True Flag categories that can be loaded dynamically Category : Generator name : Defined in DQ : __dq : AthenaConfiguration/AllConfigFlags.py @@ -329,6 +470,166 @@ Py:ComponentAccumulator DEBUG Adding component EvtPersistencySvc/EventPersiste Py:ComponentAccumulator DEBUG Adding component MagField::AtlasFieldSvc/AtlasFieldSvc to the job dynamically loading the flag Muon Flag Name : Value +Beam.BunchSpacing : 25 +Beam.Energy : [function] +Beam.NumberOfCollisions : 0 +Beam.Type : 'collisions' +Beam.estimatedLuminosity : [function] +Calo.Noise.fixedLumiForNoise : -1 +Calo.Noise.useCaloNoiseLumi : True +Calo.TopoCluster.doTreatEnergyCutAsAbsol : False +Calo.TopoCluster.doTwoGaussianNoise : True +Common.Project : 'Athena' +Common.isOnline : False +Concurrency.NumConcurrentEvents : 0 +Concurrency.NumProcs : 0 +Concurrency.NumThreads : 0 +Detector.Geometry : [function] +Detector.GeometryAFP : False +Detector.GeometryALFA : False +Detector.GeometryBCM : False +Detector.GeometryBpipe : False +Detector.GeometryCSC : False +Detector.GeometryCalo : [function] +Detector.GeometryCavern : False +Detector.GeometryDBM : False +Detector.GeometryForward : [function] +Detector.GeometryFwdRegion : False +Detector.GeometryID : [function] +Detector.GeometryLAr : False +Detector.GeometryLucid : False +Detector.GeometryMDT : False +Detector.GeometryMM : False +Detector.GeometryMuon : [function] +Detector.GeometryPixel : False +Detector.GeometryRPC : False +Detector.GeometrySCT : False +Detector.GeometryTGC : False +Detector.GeometryTRT : False +Detector.GeometryTile : False +Detector.GeometryZDC : False +Detector.GeometrysTGC : False +Detector.Overlay : [function] +Detector.OverlayBCM : False +Detector.OverlayCSC : False +Detector.OverlayCalo : [function] +Detector.OverlayDBM : False +Detector.OverlayID : [function] +Detector.OverlayLAr : False +Detector.OverlayMDT : False +Detector.OverlayMM : False +Detector.OverlayMuon : [function] +Detector.OverlayPixel : False +Detector.OverlayRPC : False +Detector.OverlaySCT : False +Detector.OverlayTGC : False +Detector.OverlayTRT : False +Detector.OverlayTile : False +Detector.OverlaysTGC : False +Detector.Simulate : False +Detector.SimulateAFP : False +Detector.SimulateALFA : False +Detector.SimulateBCM : False +Detector.SimulateBpipe : False +Detector.SimulateCSC : False +Detector.SimulateCalo : False +Detector.SimulateCavern : False +Detector.SimulateDBM : False +Detector.SimulateForward : False +Detector.SimulateFwdRegion : False +Detector.SimulateHGTD : False +Detector.SimulateID : False +Detector.SimulateLAr : False +Detector.SimulateLucid : False +Detector.SimulateMDT : False +Detector.SimulateMM : False +Detector.SimulateMuon : False +Detector.SimulatePixel : False +Detector.SimulateRPC : False +Detector.SimulateSCT : False +Detector.SimulateTGC : False +Detector.SimulateTRT : False +Detector.SimulateTile : False +Detector.SimulateZDC : False +Detector.SimulatesTGC : False +GeoModel.Align.Dynamic : [function] +GeoModel.AtlasVersion : 'ATLAS-R2-2016-01-00-01' +GeoModel.Layout : 'atlas' +GeoModel.Run : 'RUN2' +GeoModel.StripGeoType : 'GMX' +IOVDb.DatabaseInstance : 'CONDBR2' +IOVDb.GlobalTag : 'CONDBR2-BLKPA-2018-13' +Input.Files : ['/cvmfs/atlas-nightlies.cern.ch/repo/data/data-art/TrigP1Test/data17_13TeV.00327265.physics_EnhancedBias.merge.RAW._lb0100._SFO-1._0001.1'] +Input.ProjectName : 'data17_13TeV' +Input.RunNumber : [function] +Input.isMC : False +Muon.Align.UseALines : False +Muon.Align.UseAsBuilt : False +Muon.Align.UseBLines : 'none' +Muon.Align.UseILines : False +Muon.Calib.CscF001FromLocalFile : False +Muon.Calib.CscNoiseFromLocalFile : False +Muon.Calib.CscPSlopeFromLocalFile : False +Muon.Calib.CscPedFromLocalFile : False +Muon.Calib.CscRmsFromLocalFile : False +Muon.Calib.CscStatusFromLocalFile : False +Muon.Calib.CscT0BaseFromLocalFile : False +Muon.Calib.CscT0PhaseFromLocalFile : False +Muon.Calib.EventTag : 'MoMu' +Muon.Calib.applyRtScaling : True +Muon.Calib.correctMdtRtForBField : False +Muon.Calib.correctMdtRtForTimeSlewing : False +Muon.Calib.correctMdtRtWireSag : False +Muon.Calib.mdtCalibrationSource : 'MDT' +Muon.Calib.mdtMode : 'ntuple' +Muon.Calib.mdtPropagationSpeedBeta : 0.85 +Muon.Calib.readMDTCalibFromBlob : True +Muon.Calib.useMLRt : True +Muon.Chi2NDofCut : 20.0 +Muon.createTrackParticles : True +Muon.doCSCs : True +Muon.doDigitization : True +Muon.doFastDigitization : False +Muon.doMDTs : True +Muon.doMSVertex : False +Muon.doMicromegas : False +Muon.doPseudoTracking : False +Muon.doRPCClusterSegmentFinding : False +Muon.doRPCs : True +Muon.doSegmentT0Fit : False +Muon.doTGCClusterSegmentFinding : False +Muon.doTGCs : True +Muon.dosTGCs : False +Muon.enableCurvedSegmentFinding : False +Muon.enableErrorTuning : False +Muon.optimiseMomentumResolutionUsingChi2 : False +Muon.patternsOnly : False +Muon.prdToxAOD : False +Muon.printSummary : False +Muon.refinementTool : 'Moore' +Muon.rpcRawToxAOD : False +Muon.segmentOrigin : 'Muon' +Muon.straightLineFitMomentum : 2000.0 +Muon.strategy : [] +Muon.trackBuilder : 'Moore' +Muon.updateSegmentSecondCoordinate : [function] +Muon.useAlignmentCorrections : False +Muon.useLooseErrorTuning : False +Muon.useSegmentMatching : [function] +Muon.useTGCPriorNextBC : False +Muon.useTrackSegmentMatching : True +Muon.useWireSagCorrections : False +Output.AODFileName : 'myAOD.pool.root' +Output.ESDFileName : 'myESD.pool.root' +Output.EVNTFileName : 'myEVNT.pool.root' +Output.HISTFileName : 'myHIST.root' +Output.HITSFileName : 'myHITS.pool.root' +Output.RDOFileName : 'myROD.pool.root' +Output.doESD : False +Scheduler.CheckDependencies : True +Scheduler.ShowControlFlow : True +Scheduler.ShowDataDeps : True +Scheduler.ShowDataFlow : True Flag categories that can be loaded dynamically Category : Generator name : Defined in DQ : __dq : AthenaConfiguration/AllConfigFlags.py @@ -355,12 +656,38 @@ Py:ComponentAccumulator DEBUG Adding component CondSvc/CondSvc to the job Py:ComponentAccumulator DEBUG Adding component ProxyProviderSvc/ProxyProviderSvc to the job Py:ComponentAccumulator DEBUG Adding component DBReplicaSvc/DBReplicaSvc to the job Py:IOVDbSvc.CondDB DEBUG Loading basic services for CondDBSetup... +Py:ConfigurableDb DEBUG loading confDb files... +Py:ConfigurableDb DEBUG -loading [/home/wlampl/master/build/x86_64-centos7-gcc8-opt/lib/libMagFieldServices.confdb]... +Py:ConfigurableDb DEBUG -loading [/home/wlampl/master/build/x86_64-centos7-gcc8-opt/lib/libCaloRec.confdb]... +Py:ConfigurableDb DEBUG -loading [/home/wlampl/master/build/x86_64-centos7-gcc8-opt/lib/libCaloTools.confdb]... +Py:ConfigurableDb DEBUG -loading [/home/wlampl/master/build/x86_64-centos7-gcc8-opt/lib/libLArCabling.confdb]... +Py:ConfigurableDb DEBUG -loading [/home/wlampl/master/build/x86_64-centos7-gcc8-opt/lib/libegammaCaloTools.confdb]... +Py:ConfigurableDb DEBUG -loading [/home/wlampl/master/build/x86_64-centos7-gcc8-opt/lib/libLArBadChannelTool.confdb]... +Py:ConfigurableDb DEBUG -loading [/home/wlampl/master/build/x86_64-centos7-gcc8-opt/lib/libLArCellRec.confdb]... +Py:ConfigurableDb DEBUG -loading [/home/wlampl/master/build/x86_64-centos7-gcc8-opt/lib/WorkDir.confdb]... +Py:ConfigurableDb DEBUG -loading [/home/wlampl/master/build/x86_64-centos7-gcc8-opt/lib/libTrigT2CaloCommon.confdb]... +Py:ConfigurableDb DEBUG -loading [/home/wlampl/master/build/x86_64-centos7-gcc8-opt/lib/libTrigUpgradeTest.confdb]... +Py:ConfigurableDb DEBUG -loading [/cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-03-11T2143/GAUDI/22.0.1/InstallArea/x86_64-centos7-gcc8-opt/lib/Gaudi.confdb]... +Py:ConfigurableDb DEBUG -loading [/cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-03-11T2143/Athena/22.0.1/InstallArea/x86_64-centos7-gcc8-opt/lib/Athena.confdb]... +Py:ConfigurableDb DEBUG loading confDb files... [DONE] +Py:ConfigurableDb DEBUG loaded 1103 confDb packages +Py:ConfigurableDb INFO Read module info for 5461 configurables from 12 genConfDb files +Py:ConfigurableDb INFO No duplicates have been found: that's good ! +Py:ConfigurableDb DEBUG : Found configurable <class 'GaudiCoreSvc.GaudiCoreSvcConf.MessageSvc'> in module GaudiCoreSvc.GaudiCoreSvcConf Py:loadBasicAthenaPool DEBUG Loading basic services for AthenaPool... +Py:ConfigurableDb DEBUG : Found configurable <class 'PoolSvc.PoolSvcConf.PoolSvc'> in module PoolSvc.PoolSvcConf +Py:ConfigurableDb DEBUG : Found configurable <class 'AthenaPoolCnvSvc.AthenaPoolCnvSvcConf.AthenaPoolCnvSvc'> in module AthenaPoolCnvSvc.AthenaPoolCnvSvcConf +Py:ConfigurableDb DEBUG : Found configurable <class 'SGComps.SGCompsConf.ProxyProviderSvc'> in module SGComps.SGCompsConf +Py:ConfigurableDb DEBUG : Found configurable <class 'AthenaServices.AthenaServicesConf.MetaDataSvc'> in module AthenaServices.AthenaServicesConf +Py:ConfigurableDb DEBUG : Found configurable <class 'StoreGate.StoreGateConf.StoreGateSvc'> in module StoreGate.StoreGateConf Py:loadBasicAthenaPool DEBUG Loading basic services for AthenaPool... [DONE] Py:loadBasicIOVDb DEBUG Loading basic services for IOVDbSvc... +Py:ConfigurableDb DEBUG : Found configurable <class 'SGComps.SGCompsConf.ProxyProviderSvc'> in module SGComps.SGCompsConf Py:Configurable ERROR attempt to add a duplicate (ServiceManager.ProxyProviderSvc) ... dupe ignored Py:loadBasicEventInfoMgt DEBUG Loading basic services for EventInfoMgt... +EventInfoMgtInit: Got release version Athena-22.0.1 Py:Configurable ERROR attempt to add a duplicate (ServiceManager.EventPersistencySvc) ... dupe ignored +Py:ConfigurableDb DEBUG : Found configurable <class 'SGComps.SGCompsConf.ProxyProviderSvc'> in module SGComps.SGCompsConf Py:Configurable ERROR attempt to add a duplicate (ServiceManager.ProxyProviderSvc) ... dupe ignored Py:loadBasicEventInfoMgt DEBUG Loading basic services for EventInfoMgt... [DONE] Py:loadBasicIOVDb DEBUG Loading basic services for IOVDb... [DONE] @@ -583,6 +910,7 @@ Py:ComponentAccumulator DEBUG Reconciled configuration of component EventPersi Py:ComponentAccumulator DEBUG Reconciled configuration of component TagInfoMgr Py:ComponentAccumulator DEBUG Reconciled configuration of component ProxyProviderSvc Py:ComponentAccumulator DEBUG Reconciled configuration of component ToolSvc.Muon::MuonIdHelperTool +Py:ConfigurableDb DEBUG : Found configurable <class 'MuonRPC_CnvTools.MuonRPC_CnvToolsConf.Muon__RpcRDO_Decoder'> in module MuonRPC_CnvTools.MuonRPC_CnvToolsConf Py:ComponentAccumulator DEBUG Adding component Muon::RpcRdoToPrepDataTool/RpcRdoToRpcPrepDataTool to the job Py:ComponentAccumulator DEBUG Reconciled configuration of component CondInputLoader Py:ComponentAccumulator DEBUG Reconciled configuration of component GeoModelSvc @@ -1080,6 +1408,8 @@ Py:ComponentAccumulator DEBUG Reconciled configuration of component EventPersi Py:ComponentAccumulator DEBUG Reconciled configuration of component TagInfoMgr Py:ComponentAccumulator DEBUG Reconciled configuration of component ProxyProviderSvc Py:ComponentAccumulator DEBUG Reconciled configuration of component ToolSvc.Muon::MuonIdHelperTool +Py:ConfigurableDb DEBUG : Found configurable <class 'MuonCSC_CnvTools.MuonCSC_CnvToolsConf.Muon__CscRDO_Decoder'> in module MuonCSC_CnvTools.MuonCSC_CnvToolsConf +Py:ConfigurableDb DEBUG : Found configurable <class 'CscCalibTools.CscCalibToolsConf.CscCalibTool'> in module CscCalibTools.CscCalibToolsConf Py:ComponentAccumulator DEBUG Adding component Muon::CscRdoToCscPrepDataTool/CscRdoToCscPrepDataTool to the job Py:ComponentAccumulator DEBUG Reconciled configuration of component CondInputLoader Py:ComponentAccumulator DEBUG Reconciled configuration of component GeoModelSvc @@ -1097,8 +1427,13 @@ Py:ComponentAccumulator DEBUG Reconciled configuration of component ToolSvc.Mu Py:ComponentAccumulator DEBUG Adding component Muon::CscRdoToCscPrepDataTool/CscRdoToCscPrepDataTool to the job Py:ComponentAccumulator DEBUG Adding component CscThresholdClusterBuilderTool/CscThesholdClusterBuilderTool to the job Py:ComponentAccumulator DEBUG Adding component CscThresholdClusterBuilderTool/CscThesholdClusterBuilderTool to the job +Py:ConfigurableDb DEBUG : Found configurable <class 'AthenaPoolCnvSvc.AthenaPoolCnvSvcConf.AthenaPoolCnvSvc'> in module AthenaPoolCnvSvc.AthenaPoolCnvSvcConf Py:ComponentAccumulator DEBUG Reconciled configuration of component AthenaPoolCnvSvc Py:Athena INFO Print Config +Py:ComponentAccumulator INFO Event Inputs +Py:ComponentAccumulator INFO set([]) +Py:ComponentAccumulator INFO Event Algorithm Sequences +Py:ComponentAccumulator INFO /***** Algorithm AthSequencer/AthAlgSeq ************************************************************ |-Atomic = False |-AuditAlgorithms = False |-AuditBeginRun = False @@ -1110,20 +1445,29 @@ Py:Athena INFO Print Config |-AuditRestart = False |-AuditStart = False |-AuditStop = False +|-Cardinality = 0 |-ContinueEventloopOnFPE = False +|-DetStore @0x7f4fdccaff90 = ServiceHandle('StoreGateSvc/DetectorStore') |-Enable = True |-ErrorCounter = 0 |-ErrorMax = 1 +|-EvtStore @0x7f4fdccaff10 = ServiceHandle('StoreGateSvc') +|-ExtraInputs @0x7f4fdb241830 = [] (default: []) +|-ExtraOutputs @0x7f4fdb2418c0 = [] (default: []) |-FilterCircularDependencies = True |-IgnoreFilterPassed = False |-IsIOBound = False +|-Members @0x7f4fdb2413f8 = ['MuonCacheCreator/MuonCacheCreator', 'Muon::RpcRawDataProvider/RpcRawDataProvider', 'Muon::TgcRawDataProvider/TgcRawDataProvider', 'Muon::MdtRawDataProvider/MdtRawDataProvider', 'Muon::CscRawDataProvider/CscRawDataProvider', 'RpcRdoToRpcPrepData/RpcRdoToRpcPrepData', 'TgcRdoToTgcPrepData/TgcRdoToTgcPrepData', 'MdtRdoToMdtPrepData/MdtRdoToMdtPrepData', 'CscRdoToCscPrepData/CscRdoToCscPrepData', 'CscThresholdClusterBuilder/CscThesholdClusterBuilder'] | (default: []) |-ModeOR = False |-MonitorService = 'MonitorSvc' +|-NeededResources @0x7f4fdb241710 = [] (default: []) |-OutputLevel = 0 |-RegisterForContextService = False +|-Sequential @0x7f4fdee72b00 = True (default: False) |-StopOverride = False |-TimeOut = 0.0 +|-Timeline = True |=/***** Algorithm MuonCacheCreator/MuonCacheCreator ************************************************* | |-AuditAlgorithms = False | |-AuditBeginRun = False @@ -1135,15 +1479,26 @@ Py:Athena INFO Print Config | |-AuditRestart = False | |-AuditStart = False | |-AuditStop = False +| |-Cardinality = 0 +| |-CscCacheKey @0x7f4fdbb9e780 = 'CscCache' (default: 'StoreGateSvc+') +| |-DetStore @0x7f4fdb9cfed0 = ServiceHandle('StoreGateSvc/DetectorStore') | |-DisableViewWarning = False | |-Enable = True | |-ErrorCounter = 0 | |-ErrorMax = 1 +| |-EvtStore @0x7f4fdb9cfe50 = ServiceHandle('StoreGateSvc') +| |-ExtraInputs @0x7f4fdb241908 = [] (default: []) +| |-ExtraOutputs @0x7f4fdb241758 = [] (default: []) | |-FilterCircularDependencies = True | |-IsIOBound = False +| |-MdtCsmCacheKey @0x7f4fdbb9e480 = 'MdtCsmCache' (default: 'StoreGateSvc+') | |-MonitorService = 'MonitorSvc' +| |-NeededResources @0x7f4fdb241950 = [] (default: []) | |-OutputLevel = 0 | |-RegisterForContextService = False +| |-RpcCacheKey @0x7f4fdbb9e4b0 = 'RpcCache' (default: 'StoreGateSvc+') +| |-TgcCacheKey @0x7f4fdbb9e4e0 = 'TgcCache' (default: 'StoreGateSvc+') +| |-Timeline = True | \----- (End of Algorithm MuonCacheCreator/MuonCacheCreator) ---------------------------------------- |=/***** Algorithm Muon::RpcRawDataProvider/RpcRawDataProvider *************************************** | |-AuditAlgorithms = False @@ -1156,17 +1511,26 @@ Py:Athena INFO Print Config | |-AuditRestart = False | |-AuditStart = False | |-AuditStop = False +| |-Cardinality = 1 +| |-DetStore @0x7f4fdb9c1150 = ServiceHandle('StoreGateSvc/DetectorStore') | |-DoSeededDecoding = False | |-Enable = True | |-ErrorCounter = 0 | |-ErrorMax = 1 +| |-EvtStore @0x7f4fdb9c10d0 = ServiceHandle('StoreGateSvc') +| |-ExtraInputs @0x7f4fdb2415f0 = [] (default: []) +| |-ExtraOutputs @0x7f4fdb241a70 = [] (default: []) | |-FilterCircularDependencies = True | |-IsIOBound = False | |-MonitorService = 'MonitorSvc' +| |-NeededResources @0x7f4fdb241ab8 = [] (default: []) | |-OutputLevel = 0 +| |-ProviderTool @0x7f4fdbbf8718 = PrivateToolHandle('Muon::RPC_RawDataProviderTool/RPC_RawDataProviderTool') | | (default: 'Muon::RPC_RawDataProviderTool/RpcRawDataProviderTool') +| |-RegionSelectionSvc @0x7f4fdb9c11d0 = ServiceHandle('RegSelSvc') | |-RegisterForContextService = False | |-RoIs = 'StoreGateSvc+OutputRoIs' +| |-Timeline = True | |=/***** Private AlgTool Muon::RPC_RawDataProviderTool/RpcRawDataProvider.RPC_RawDataProviderTool ***** | | |-AuditFinalize = False | | |-AuditInitialize = False @@ -1175,6 +1539,11 @@ Py:Athena INFO Print Config | | |-AuditStart = False | | |-AuditStop = False | | |-AuditTools = False +| | |-Decoder @0x7f4fdbbf8810 = PrivateToolHandle('Muon::RpcROD_Decoder/RpcROD_Decoder') +| | |-DetStore @0x7f4fdb87c890 = ServiceHandle('StoreGateSvc/DetectorStore') +| | |-EvtStore @0x7f4fdb87c8d0 = ServiceHandle('StoreGateSvc') +| | |-ExtraInputs @0x7f4fdb877c20 = [] (default: []) +| | |-ExtraOutputs @0x7f4fdb877d40 = [] (default: []) | | |-MonitorService = 'MonitorSvc' | | |-OutputLevel = 0 | | |-RPCSec = 'StoreGateSvc+RPC_SECTORLOGIC' @@ -1188,6 +1557,10 @@ Py:Athena INFO Print Config | | | |-AuditStop = False | | | |-AuditTools = False | | | |-DataErrorPrintLimit = 1000 +| | | |-DetStore @0x7f4fdb87c990 = ServiceHandle('StoreGateSvc/DetectorStore') +| | | |-EvtStore @0x7f4fdb87c9d0 = ServiceHandle('StoreGateSvc') +| | | |-ExtraInputs @0x7f4fdb877dd0 = [] (default: []) +| | | |-ExtraOutputs @0x7f4fdb877d88 = [] (default: []) | | | |-MonitorService = 'MonitorSvc' | | | |-OutputLevel = 0 | | | |-Sector13Data = False @@ -1206,15 +1579,23 @@ Py:Athena INFO Print Config | |-AuditRestart = False | |-AuditStart = False | |-AuditStop = False +| |-Cardinality = 1 +| |-DetStore @0x7f4fdb9cf110 = ServiceHandle('StoreGateSvc/DetectorStore') | |-Enable = True | |-ErrorCounter = 0 | |-ErrorMax = 1 +| |-EvtStore @0x7f4fdb9cf090 = ServiceHandle('StoreGateSvc') +| |-ExtraInputs @0x7f4fdb241cf8 = [] (default: []) +| |-ExtraOutputs @0x7f4fdb241dd0 = [] (default: []) | |-FilterCircularDependencies = True | |-IsIOBound = False | |-MonitorService = 'MonitorSvc' +| |-NeededResources @0x7f4fdb241d40 = [] (default: []) | |-OutputLevel = 0 +| |-ProviderTool @0x7f4fdca5f9b0 = PrivateToolHandle('Muon::TGC_RawDataProviderTool/TGC_RawDataProviderTool') | | (default: 'Muon::TGC_RawDataProviderTool/TgcRawDataProviderTool') | |-RegisterForContextService = False +| |-Timeline = True | |=/***** Private AlgTool Muon::TGC_RawDataProviderTool/TgcRawDataProvider.TGC_RawDataProviderTool ***** | | |-AuditFinalize = False | | |-AuditInitialize = False @@ -1223,7 +1604,12 @@ Py:Athena INFO Print Config | | |-AuditStart = False | | |-AuditStop = False | | |-AuditTools = False +| | |-Decoder @0x7f4fdca5faa0 = PrivateToolHandle('Muon::TGC_RodDecoderReadout/TgcROD_Decoder') | | | (default: 'Muon::TGC_RodDecoderReadout/TGC_RodDecoderReadout') +| | |-DetStore @0x7f4fdb826ed0 = ServiceHandle('StoreGateSvc/DetectorStore') +| | |-EvtStore @0x7f4fdb826f10 = ServiceHandle('StoreGateSvc') +| | |-ExtraInputs @0x7f4fdb82c8c0 = [] (default: []) +| | |-ExtraOutputs @0x7f4fdb82c710 = [] (default: []) | | |-MonitorService = 'MonitorSvc' | | |-OutputLevel = 0 | | |-RdoLocation = 'StoreGateSvc+TGCRDO' @@ -1235,6 +1621,10 @@ Py:Athena INFO Print Config | | | |-AuditStart = False | | | |-AuditStop = False | | | |-AuditTools = False +| | | |-DetStore @0x7f4fdb826fd0 = ServiceHandle('StoreGateSvc/DetectorStore') +| | | |-EvtStore @0x7f4fdb831050 = ServiceHandle('StoreGateSvc') +| | | |-ExtraInputs @0x7f4fdb82c560 = [] (default: []) +| | | |-ExtraOutputs @0x7f4fdb82c6c8 = [] (default: []) | | | |-MonitorService = 'MonitorSvc' | | | |-OutputLevel = 0 | | | |-ShowStatusWords = False @@ -1253,15 +1643,23 @@ Py:Athena INFO Print Config | |-AuditRestart = False | |-AuditStart = False | |-AuditStop = False +| |-Cardinality = 1 +| |-DetStore @0x7f4fdb9b4350 = ServiceHandle('StoreGateSvc/DetectorStore') | |-Enable = True | |-ErrorCounter = 0 | |-ErrorMax = 1 +| |-EvtStore @0x7f4fdb9b42d0 = ServiceHandle('StoreGateSvc') +| |-ExtraInputs @0x7f4fdb241e18 = [] (default: []) +| |-ExtraOutputs @0x7f4fdb241ea8 = [] (default: []) | |-FilterCircularDependencies = True | |-IsIOBound = False | |-MonitorService = 'MonitorSvc' +| |-NeededResources @0x7f4fdb241d88 = [] (default: []) | |-OutputLevel = 0 +| |-ProviderTool @0x7f4fdbb9cc50 = PrivateToolHandle('Muon::MDT_RawDataProviderTool/MDT_RawDataProviderTool') | | (default: 'Muon::MDT_RawDataProviderTool/MdtRawDataProviderTool') | |-RegisterForContextService = False +| |-Timeline = True | |=/***** Private AlgTool Muon::MDT_RawDataProviderTool/MdtRawDataProvider.MDT_RawDataProviderTool ***** | | |-AuditFinalize = False | | |-AuditInitialize = False @@ -1270,7 +1668,14 @@ Py:Athena INFO Print Config | | |-AuditStart = False | | |-AuditStop = False | | |-AuditTools = False +| | |-CsmContainerCacheKey @0x7f4fdbb9e480 = 'MdtCsmCache' (default: 'StoreGateSvc+') +| | |-Decoder @0x7f4fdca5fd70 = PrivateToolHandle('MdtROD_Decoder/MdtROD_Decoder') +| | |-DetStore @0x7f4fdb3dafd0 = ServiceHandle('StoreGateSvc/DetectorStore') +| | |-EvtStore @0x7f4fdb363050 = ServiceHandle('StoreGateSvc') +| | |-ExtraInputs @0x7f4fdb3ceb90 = [] (default: []) +| | |-ExtraOutputs @0x7f4fdb3cea28 = [] (default: []) | | |-MonitorService = 'MonitorSvc' +| | |-OutputLevel @ 0xa0e1d8 = 1 (default: 0) | | |-RdoLocation = 'StoreGateSvc+MDTCSM' | | |-ReadKey = 'ConditionStore+MuonMDT_CablingMap' | | |=/***** Private AlgTool MdtROD_Decoder/MdtRawDataProvider.MDT_RawDataProviderTool.MdtROD_Decoder ***** @@ -1281,6 +1686,10 @@ Py:Athena INFO Print Config | | | |-AuditStart = False | | | |-AuditStop = False | | | |-AuditTools = False +| | | |-DetStore @0x7f4fdb363110 = ServiceHandle('StoreGateSvc/DetectorStore') +| | | |-EvtStore @0x7f4fdb363150 = ServiceHandle('StoreGateSvc') +| | | |-ExtraInputs @0x7f4fdb3ceab8 = [] (default: []) +| | | |-ExtraOutputs @0x7f4fdb3cea70 = [] (default: []) | | | |-MonitorService = 'MonitorSvc' | | | |-OutputLevel = 0 | | | |-ReadKey = 'ConditionStore+MuonMDT_CablingMap' @@ -1299,15 +1708,23 @@ Py:Athena INFO Print Config | |-AuditRestart = False | |-AuditStart = False | |-AuditStop = False +| |-Cardinality = 1 +| |-DetStore @0x7f4fdb9c5850 = ServiceHandle('StoreGateSvc/DetectorStore') | |-Enable = True | |-ErrorCounter = 0 | |-ErrorMax = 1 +| |-EvtStore @0x7f4fdb9c5790 = ServiceHandle('StoreGateSvc') +| |-ExtraInputs @0x7f4fdb241f38 = [] (default: []) +| |-ExtraOutputs @0x7f4fdb241e60 = [] (default: []) | |-FilterCircularDependencies = True | |-IsIOBound = False | |-MonitorService = 'MonitorSvc' +| |-NeededResources @0x7f4fdb2419e0 = [] (default: []) | |-OutputLevel = 0 +| |-ProviderTool @0x7f4fdbb9ce50 = PrivateToolHandle('Muon::CSC_RawDataProviderTool/CSC_RawDataProviderTool') | | (default: 'Muon::CSC_RawDataProviderTool/CscRawDataProviderTool') | |-RegisterForContextService = False +| |-Timeline = True | |=/***** Private AlgTool Muon::CSC_RawDataProviderTool/CscRawDataProvider.CSC_RawDataProviderTool ***** | | |-AuditFinalize = False | | |-AuditInitialize = False @@ -1316,8 +1733,15 @@ Py:Athena INFO Print Config | | |-AuditStart = False | | |-AuditStop = False | | |-AuditTools = False +| | |-CscContainerCacheKey @0x7f4fdbb9e780 = 'CscCache' (default: 'StoreGateSvc+') +| | |-Decoder @0x7f4fdb7fe050 = PrivateToolHandle('Muon::CscROD_Decoder/CscROD_Decoder') +| | |-DetStore @0x7f4fdb31ee90 = ServiceHandle('StoreGateSvc/DetectorStore') | | |-EventInfoKey = 'StoreGateSvc+EventInfo' +| | |-EvtStore @0x7f4fdb31eed0 = ServiceHandle('StoreGateSvc') +| | |-ExtraInputs @0x7f4fdb320c68 = [] (default: []) +| | |-ExtraOutputs @0x7f4fdb320f80 = [] (default: []) | | |-MonitorService = 'MonitorSvc' +| | |-OutputLevel @ 0xa0e1d8 = 1 (default: 0) | | |-RdoLocation = 'StoreGateSvc+CSCRDO' | | |=/***** Private AlgTool Muon::CscROD_Decoder/CscRawDataProvider.CSC_RawDataProviderTool.CscROD_Decoder ***** | | | |-AuditFinalize = False @@ -1327,6 +1751,10 @@ Py:Athena INFO Print Config | | | |-AuditStart = False | | | |-AuditStop = False | | | |-AuditTools = False +| | | |-DetStore @0x7f4fdb31ef90 = ServiceHandle('StoreGateSvc/DetectorStore') +| | | |-EvtStore @0x7f4fdb31efd0 = ServiceHandle('StoreGateSvc') +| | | |-ExtraInputs @0x7f4fdb320d88 = [] (default: []) +| | | |-ExtraOutputs @0x7f4fdb320d40 = [] (default: []) | | | |-IsCosmics = False | | | |-IsOldCosmics = False | | | |-MonitorService = 'MonitorSvc' @@ -1345,19 +1773,29 @@ Py:Athena INFO Print Config | |-AuditRestart = False | |-AuditStart = False | |-AuditStop = False +| |-Cardinality = 1 +| |-DecodingTool @0x7f4fdc96ce68 = PrivateToolHandle('Muon::RpcRdoToPrepDataTool/RpcRdoToRpcPrepDataTool') | | (default: 'Muon::RpcRdoToPrepDataTool/RpcRdoToPrepDataTool') +| |-DetStore @0x7f4fdb355950 = ServiceHandle('StoreGateSvc/DetectorStore') | |-DoSeededDecoding = False | |-Enable = True | |-ErrorCounter = 0 | |-ErrorMax = 1 +| |-EvtStore @0x7f4fdb3558d0 = ServiceHandle('StoreGateSvc') +| |-ExtraInputs @0x7f4fdb251128 = [] (default: []) +| |-ExtraOutputs @0x7f4fdb241ef0 = [] (default: []) | |-FilterCircularDependencies = True | |-IsIOBound = False | |-MonitorService = 'MonitorSvc' +| |-NeededResources @0x7f4fdb241b00 = [] (default: []) | |-OutputCollection = 'StoreGateSvc+RPC_Measurements' | |-OutputLevel = 0 | |-PrintInputRdo = False +| |-PrintPrepData @0x7f4fdee72b20 = False (default: False) +| |-RegionSelectionSvc @0x7f4fdb3559d0 = ServiceHandle('RegSelSvc') | |-RegisterForContextService = False | |-RoIs = 'StoreGateSvc+OutputRoIs' +| |-Timeline = True | |=/***** Private AlgTool Muon::RpcRdoToPrepDataTool/RpcRdoToRpcPrepData.RpcRdoToRpcPrepDataTool ****** | | |-AuditFinalize = False | | |-AuditInitialize = False @@ -1367,11 +1805,16 @@ Py:Athena INFO Print Config | | |-AuditStop = False | | |-AuditTools = False | | |-DecodeData = True +| | |-DetStore @0x7f4fdb2c5b10 = ServiceHandle('StoreGateSvc/DetectorStore') +| | |-EvtStore @0x7f4fdb2c5b90 = ServiceHandle('StoreGateSvc') +| | |-ExtraInputs @0x7f4fdb333fc8 = [] (default: []) +| | |-ExtraOutputs @0x7f4fdb3338c0 = [] (default: []) | | |-InputCollection = 'StoreGateSvc+RPC_triggerHits' | | |-MonitorService = 'MonitorSvc' | | |-OutputCollection = 'StoreGateSvc+RPCPAD' | | |-OutputLevel = 0 | | |-RPCInfoFromDb = False +| | |-RdoDecoderTool @0x7f4fdb7374b0 = PrivateToolHandle('Muon::RpcRDO_Decoder/Muon::RpcRDO_Decoder') | | | (default: 'Muon::RpcRDO_Decoder') | | |-TriggerOutputCollection = 'StoreGateSvc+RPC_Measurements' | | |-etaphi_coincidenceTime = 20.0 @@ -1389,6 +1832,10 @@ Py:Athena INFO Print Config | | | |-AuditStart = False | | | |-AuditStop = False | | | |-AuditTools = False +| | | |-DetStore @0x7f4fdb2c5c10 = ServiceHandle('StoreGateSvc/DetectorStore') +| | | |-EvtStore @0x7f4fdb2c5c50 = ServiceHandle('StoreGateSvc') +| | | |-ExtraInputs @0x7f4fdb333a28 = [] (default: []) +| | | |-ExtraOutputs @0x7f4fdb333ab8 = [] (default: []) | | | |-MonitorService = 'MonitorSvc' | | | |-OutputLevel = 0 | | | \----- (End of Private AlgTool Muon::RpcRDO_Decoder/RpcRdoToRpcPrepData.RpcRdoToRpcPrepDataTool.Muon::RpcRDO_Decoder) ----- @@ -1405,20 +1852,30 @@ Py:Athena INFO Print Config | |-AuditRestart = False | |-AuditStart = False | |-AuditStop = False +| |-Cardinality = 1 +| |-DecodingTool @0x7f4fdb2d3050 = PrivateToolHandle('Muon::TgcRdoToPrepDataTool/TgcRdoToTgcPrepDataTool') | | (default: 'Muon::TgcRdoToPrepDataTool/TgcPrepDataProviderTool') +| |-DetStore @0x7f4fdb2ae850 = ServiceHandle('StoreGateSvc/DetectorStore') | |-DoSeededDecoding = False | |-Enable = True | |-ErrorCounter = 0 | |-ErrorMax = 1 +| |-EvtStore @0x7f4fdb2ae7d0 = ServiceHandle('StoreGateSvc') +| |-ExtraInputs @0x7f4fdb251050 = [] (default: []) +| |-ExtraOutputs @0x7f4fdb251170 = [] (default: []) | |-FilterCircularDependencies = True | |-IsIOBound = False | |-MonitorService = 'MonitorSvc' +| |-NeededResources @0x7f4fdb251098 = [] (default: []) | |-OutputCollection = 'StoreGateSvc+TGC_Measurements' | |-OutputLevel = 0 | |-PrintInputRdo = False +| |-PrintPrepData @0x7f4fdee72b20 = False (default: False) +| |-RegionSelectorSvc @0x7f4fdb2ae8d0 = ServiceHandle('RegSelSvc') | |-RegisterForContextService = False | |-RoIs = 'StoreGateSvc+OutputRoIs' | |-Setting = 0 +| |-Timeline = True | |=/***** Private AlgTool Muon::TgcRdoToPrepDataTool/TgcRdoToTgcPrepData.TgcRdoToTgcPrepDataTool ****** | | |-AuditFinalize = False | | |-AuditInitialize = False @@ -1428,6 +1885,10 @@ Py:Athena INFO Print Config | | |-AuditStop = False | | |-AuditTools = False | | |-DecodeData = True +| | |-DetStore @0x7f4fdb2c5c90 = ServiceHandle('StoreGateSvc/DetectorStore') +| | |-EvtStore @0x7f4fdb2c5e50 = ServiceHandle('StoreGateSvc') +| | |-ExtraInputs @0x7f4fdb2d4e18 = [] (default: []) +| | |-ExtraOutputs @0x7f4fdb2d4dd0 = [] (default: []) | | |-FillCoinData = True | | |-MonitorService = 'MonitorSvc' | | |-OutputCoinCollection = 'TrigT1CoinDataCollection' @@ -1436,7 +1897,9 @@ Py:Athena INFO Print Config | | |-RDOContainer = 'StoreGateSvc+TGCRDO' | | |-TGCHashIdOffset = 26000 | | |-dropPrdsWithZeroWidth = True +| | |-outputCoinKey @0x7f4fdb2d4878 = ['StoreGateSvc+dummy', 'StoreGateSvc+dummy', 'StoreGateSvc+dummy'] | | | (default: ['StoreGateSvc+dummy', 'StoreGateSvc+dummy', 'StoreGateSvc+dummy']) +| | |-prepDataKeys @0x7f4fdb2d4ea8 = ['StoreGateSvc+dummy', 'StoreGateSvc+dummy', 'StoreGateSvc+dummy', 'StoreGateSvc+dummy'] | | | (default: ['StoreGateSvc+dummy', 'StoreGateSvc+dummy', 'StoreGateSvc+dummy', 'StoreGateSvc+dummy']) | | |-show_warning_level_invalid_A09_SSW6_hit = False | | \----- (End of Private AlgTool Muon::TgcRdoToPrepDataTool/TgcRdoToTgcPrepData.TgcRdoToTgcPrepDataTool) ----- @@ -1452,19 +1915,29 @@ Py:Athena INFO Print Config | |-AuditRestart = False | |-AuditStart = False | |-AuditStop = False +| |-Cardinality = 1 +| |-DecodingTool @0x7f4fdef1b9f0 = PrivateToolHandle('Muon::MdtRdoToPrepDataTool/MdtRdoToMdtPrepDataTool') | | (default: 'Muon::MdtRdoToPrepDataTool/MdtPrepDataProviderTool') +| |-DetStore @0x7f4fdb345810 = ServiceHandle('StoreGateSvc/DetectorStore') | |-DoSeededDecoding = False | |-Enable = True | |-ErrorCounter = 0 | |-ErrorMax = 1 +| |-EvtStore @0x7f4fdb345790 = ServiceHandle('StoreGateSvc') +| |-ExtraInputs @0x7f4fdb2512d8 = [] (default: []) +| |-ExtraOutputs @0x7f4fdb2510e0 = [] (default: []) | |-FilterCircularDependencies = True | |-IsIOBound = False | |-MonitorService = 'MonitorSvc' +| |-NeededResources @0x7f4fdb251248 = [] (default: []) | |-OutputCollection = 'StoreGateSvc+MDT_DriftCircles' | |-OutputLevel = 0 | |-PrintInputRdo = False +| |-PrintPrepData @0x7f4fdee72b20 = False (default: False) +| |-RegionSelectionSvc @0x7f4fdb345890 = ServiceHandle('RegSelSvc') | |-RegisterForContextService = False | |-RoIs = 'StoreGateSvc+OutputRoIs' +| |-Timeline = True | |=/***** Private AlgTool Muon::MdtRdoToPrepDataTool/MdtRdoToMdtPrepData.MdtRdoToMdtPrepDataTool ****** | | |-AuditFinalize = False | | |-AuditInitialize = False @@ -1475,9 +1948,13 @@ Py:Athena INFO Print Config | | |-AuditTools = False | | |-CalibratePrepData = True | | |-DecodeData = True +| | |-DetStore @0x7f4fdb2c5d50 = ServiceHandle('StoreGateSvc/DetectorStore') | | |-DiscardSecondaryHitTwin = False | | |-DoPropagationCorrection = False | | |-DoTofCorrection = True +| | |-EvtStore @0x7f4fdb2c5fd0 = ServiceHandle('StoreGateSvc') +| | |-ExtraInputs @0x7f4fdb2d0dd0 = [] (default: []) +| | |-ExtraOutputs @0x7f4fdb2d45a8 = [] (default: []) | | |-MonitorService = 'MonitorSvc' | | |-OutputCollection = 'StoreGateSvc+MDT_DriftCircles' | | |-OutputLevel = 0 @@ -1504,19 +1981,29 @@ Py:Athena INFO Print Config | |-AuditRestart = False | |-AuditStart = False | |-AuditStop = False +| |-Cardinality = 1 +| |-CscRdoToCscPrepDataTool @0x7f4fdb8fa380 = PrivateToolHandle('Muon::CscRdoToCscPrepDataTool/CscRdoToCscPrepDataTool') | | (default: 'Muon::CscRdoToCscPrepDataTool/CscRdoToPrepDataTool') +| |-DetStore @0x7f4fdb32bcd0 = ServiceHandle('StoreGateSvc/DetectorStore') | |-DoSeededDecoding = False | |-Enable = True | |-ErrorCounter = 0 | |-ErrorMax = 1 +| |-EvtStore @0x7f4fdb32bbd0 = ServiceHandle('StoreGateSvc') +| |-ExtraInputs @0x7f4fdb2513b0 = [] (default: []) +| |-ExtraOutputs @0x7f4fdb251200 = [] (default: []) | |-FilterCircularDependencies = True | |-IsIOBound = False | |-MonitorService = 'MonitorSvc' +| |-NeededResources @0x7f4fdb251320 = [] (default: []) | |-OutputCollection = 'StoreGateSvc+CSC_Measurements' | |-OutputLevel = 0 | |-PrintInputRdo = False +| |-PrintPrepData @0x7f4fdee72b20 = False (default: False) +| |-RegionSelectionSvc @0x7f4fdb32bd50 = ServiceHandle('RegSelSvc') | |-RegisterForContextService = False | |-RoIs = 'StoreGateSvc+OutputRoIs' +| |-Timeline = True | |=/***** Private AlgTool Muon::CscRdoToCscPrepDataTool/CscRdoToCscPrepData.CscRdoToCscPrepDataTool ***** | | |-AuditFinalize = False | | |-AuditInitialize = False @@ -1526,7 +2013,13 @@ Py:Athena INFO Print Config | | |-AuditStop = False | | |-AuditTools = False | | |-CSCHashIdOffset = 22000 +| | |-CscCalibTool @0x7f4fdef1e860 = PrivateToolHandle('CscCalibTool/CscCalibTool') +| | |-CscRdoDecoderTool @0x7f4fdb2cdde8 = PrivateToolHandle('Muon::CscRDO_Decoder/CscRDO_Decoder') | | |-DecodeData = True +| | |-DetStore @0x7f4fdb2de050 = ServiceHandle('StoreGateSvc/DetectorStore') +| | |-EvtStore @0x7f4fdb2de150 = ServiceHandle('StoreGateSvc') +| | |-ExtraInputs @0x7f4fdb2e5170 = [] (default: []) +| | |-ExtraOutputs @0x7f4fdb2e54d0 = [] (default: []) | | |-MonitorService = 'MonitorSvc' | | |-OutputCollection = 'StoreGateSvc+CSC_Measurements' | | |-OutputLevel = 0 @@ -1539,6 +2032,10 @@ Py:Athena INFO Print Config | | | |-AuditStart = False | | | |-AuditStop = False | | | |-AuditTools = False +| | | |-DetStore @0x7f4fdb2de190 = ServiceHandle('StoreGateSvc/DetectorStore') +| | | |-EvtStore @0x7f4fdb2de1d0 = ServiceHandle('StoreGateSvc') +| | | |-ExtraInputs @0x7f4fdb2e1bd8 = [] (default: []) +| | | |-ExtraOutputs @0x7f4fdb2e19e0 = [] (default: []) | | | |-IsOnline = True | | | |-Latency = 100.0 | | | |-MonitorService = 'MonitorSvc' @@ -1565,6 +2062,11 @@ Py:Athena INFO Print Config | | | |-AuditStart = False | | | |-AuditStop = False | | | |-AuditTools = False +| | | |-CscCalibTool @0x7f4fdb2de0d0 = PublicToolHandle('CscCalibTool') +| | | |-DetStore @0x7f4fdb2de090 = ServiceHandle('StoreGateSvc/DetectorStore') +| | | |-EvtStore @0x7f4fdb2de110 = ServiceHandle('StoreGateSvc') +| | | |-ExtraInputs @0x7f4fdb2e5248 = [] (default: []) +| | | |-ExtraOutputs @0x7f4fdb2e52d8 = [] (default: []) | | | |-MonitorService = 'MonitorSvc' | | | |-OutputLevel = 0 | | | \----- (End of Private AlgTool Muon::CscRDO_Decoder/CscRdoToCscPrepData.CscRdoToCscPrepDataTool.CscRDO_Decoder) ----- @@ -1581,17 +2083,49 @@ Py:Athena INFO Print Config | |-AuditRestart = False | |-AuditStart = False | |-AuditStop = False +| |-Cardinality = 1 +| |-DetStore @0x7f4fdb307690 = ServiceHandle('StoreGateSvc/DetectorStore') | |-Enable = True | |-ErrorCounter = 0 | |-ErrorMax = 1 +| |-EvtStore @0x7f4fdb307610 = ServiceHandle('StoreGateSvc') +| |-ExtraInputs @0x7f4fdb251368 = [] (default: []) +| |-ExtraOutputs @0x7f4fdb2511b8 = [] (default: []) | |-FilterCircularDependencies = True | |-IsIOBound = False | |-MonitorService = 'MonitorSvc' +| |-NeededResources @0x7f4fdb2513f8 = [] (default: []) | |-OutputLevel = 0 | |-RegisterForContextService = False +| |-Timeline = True +| |-cluster_builder @0x7f4fdb238f90 = PublicToolHandle('CscThresholdClusterBuilderTool/CscThesholdClusterBuilderTool') | | (default: 'CscThresholdClusterBuilderTool/CscThresholdClusterBuilderTool') | \----- (End of Algorithm CscThresholdClusterBuilder/CscThesholdClusterBuilder) --------------------- \----- (End of Algorithm AthSequencer/AthAlgSeq) --------------------------------------------------- +Py:ComponentAccumulator INFO Condition Algorithms +Py:ComponentAccumulator INFO ['CondInputLoader', 'MuonMDT_CablingAlg'] +Py:ComponentAccumulator INFO Services +Py:ComponentAccumulator INFO ['EventSelector', 'ByteStreamInputSvc', 'EventPersistencySvc', 'ByteStreamCnvSvc', 'ROBDataProviderSvc', 'ByteStreamAddressProviderSvc', 'MetaDataStore', 'InputMetaDataStore', 'MetaDataSvc', 'ProxyProviderSvc', 'ByteStreamAttListMetadataSvc', 'GeoModelSvc', 'DetDescrCnvSvc', 'TagInfoMgr', 'RPCcablingServerSvc', 'IOVDbSvc', 'PoolSvc', 'CondSvc', 'DBReplicaSvc', 'MuonRPC_CablingSvc', 'LVL1TGC::TGCRecRoiSvc', 'TGCcablingServerSvc', 'AthenaPoolCnvSvc', 'MuonMDT_CablingSvc', 'AtlasFieldSvc', 'MdtCalibrationDbSvc', 'MdtCalibrationSvc', 'CSCcablingSvc', 'MuonCalib::CscCoolStrSvc'] +Py:ComponentAccumulator INFO Outputs +Py:ComponentAccumulator INFO {} +Py:ComponentAccumulator INFO Public Tools +Py:ComponentAccumulator INFO [ +Py:ComponentAccumulator INFO IOVDbMetaDataTool/IOVDbMetaDataTool, +Py:ComponentAccumulator INFO ByteStreamMetadataTool/ByteStreamMetadataTool, +Py:ComponentAccumulator INFO Muon::MuonIdHelperTool/Muon::MuonIdHelperTool, +Py:ComponentAccumulator INFO RPCCablingDbTool/RPCCablingDbTool, +Py:ComponentAccumulator INFO Muon::RPC_RawDataProviderTool/RPC_RawDataProviderTool, +Py:ComponentAccumulator INFO Muon::TGC_RawDataProviderTool/TGC_RawDataProviderTool, +Py:ComponentAccumulator INFO MDTCablingDbTool/MDTCablingDbTool, +Py:ComponentAccumulator INFO MuonCalib::MdtCalibDbCoolStrTool/MuonCalib::MdtCalibDbCoolStrTool, +Py:ComponentAccumulator INFO Muon::MDT_RawDataProviderTool/MDT_RawDataProviderTool, +Py:ComponentAccumulator INFO Muon::CSC_RawDataProviderTool/CSC_RawDataProviderTool, +Py:ComponentAccumulator INFO Muon::RpcRdoToPrepDataTool/RpcRdoToRpcPrepDataTool, +Py:ComponentAccumulator INFO Muon::TgcRdoToPrepDataTool/TgcRdoToTgcPrepDataTool, +Py:ComponentAccumulator INFO Muon::MdtRdoToPrepDataTool/MdtRdoToMdtPrepDataTool, +Py:ComponentAccumulator INFO Muon::CscRdoToCscPrepDataTool/CscRdoToCscPrepDataTool, +Py:ComponentAccumulator INFO CscThresholdClusterBuilderTool/CscThesholdClusterBuilderTool, +Py:ComponentAccumulator INFO ] Py:Athena INFO Save Config /***** Algorithm AthSequencer/AthAlgSeq ************************************************************ |-Atomic = False @@ -1605,20 +2139,29 @@ Py:Athena INFO Save Config |-AuditRestart = False |-AuditStart = False |-AuditStop = False +|-Cardinality = 0 |-ContinueEventloopOnFPE = False +|-DetStore @0x7f4fdccaff90 = ServiceHandle('StoreGateSvc/DetectorStore') |-Enable = True |-ErrorCounter = 0 |-ErrorMax = 1 +|-EvtStore @0x7f4fdccaff10 = ServiceHandle('StoreGateSvc') +|-ExtraInputs @0x7f4fdb241830 = [] (default: []) +|-ExtraOutputs @0x7f4fdb2418c0 = [] (default: []) |-FilterCircularDependencies = True |-IgnoreFilterPassed = False |-IsIOBound = False +|-Members @0x7f4fdb836c68 = ['MuonCacheCreator/MuonCacheCreator', 'Muon::RpcRawDataProvider/RpcRawDataProvider', 'Muon::TgcRawDataProvider/TgcRawDataProvider', 'Muon::MdtRawDataProvider/MdtRawDataProvider', 'Muon::CscRawDataProvider/CscRawDataProvider', 'RpcRdoToRpcPrepData/RpcRdoToRpcPrepData', 'TgcRdoToTgcPrepData/TgcRdoToTgcPrepData', 'MdtRdoToMdtPrepData/MdtRdoToMdtPrepData', 'CscRdoToCscPrepData/CscRdoToCscPrepData', 'CscThresholdClusterBuilder/CscThesholdClusterBuilder'] | (default: []) |-ModeOR = False |-MonitorService = 'MonitorSvc' +|-NeededResources @0x7f4fdb241710 = [] (default: []) |-OutputLevel = 0 |-RegisterForContextService = False +|-Sequential @0x7f4fdee72b00 = True (default: False) |-StopOverride = False |-TimeOut = 0.0 +|-Timeline = True |=/***** Algorithm MuonCacheCreator/MuonCacheCreator ************************************************* | |-AuditAlgorithms = False | |-AuditBeginRun = False @@ -1630,15 +2173,26 @@ Py:Athena INFO Save Config | |-AuditRestart = False | |-AuditStart = False | |-AuditStop = False +| |-Cardinality = 0 +| |-CscCacheKey @0x7f4fdbb9e780 = 'CscCache' (default: 'StoreGateSvc+') +| |-DetStore @0x7f4fdb9cfed0 = ServiceHandle('StoreGateSvc/DetectorStore') | |-DisableViewWarning = False | |-Enable = True | |-ErrorCounter = 0 | |-ErrorMax = 1 +| |-EvtStore @0x7f4fdb9cfe50 = ServiceHandle('StoreGateSvc') +| |-ExtraInputs @0x7f4fdb241908 = [] (default: []) +| |-ExtraOutputs @0x7f4fdb241758 = [] (default: []) | |-FilterCircularDependencies = True | |-IsIOBound = False +| |-MdtCsmCacheKey @0x7f4fdbb9e480 = 'MdtCsmCache' (default: 'StoreGateSvc+') | |-MonitorService = 'MonitorSvc' +| |-NeededResources @0x7f4fdb241950 = [] (default: []) | |-OutputLevel = 0 | |-RegisterForContextService = False +| |-RpcCacheKey @0x7f4fdbb9e4b0 = 'RpcCache' (default: 'StoreGateSvc+') +| |-TgcCacheKey @0x7f4fdbb9e4e0 = 'TgcCache' (default: 'StoreGateSvc+') +| |-Timeline = True | \----- (End of Algorithm MuonCacheCreator/MuonCacheCreator) ---------------------------------------- |=/***** Algorithm Muon::RpcRawDataProvider/RpcRawDataProvider *************************************** | |-AuditAlgorithms = False @@ -1651,17 +2205,26 @@ Py:Athena INFO Save Config | |-AuditRestart = False | |-AuditStart = False | |-AuditStop = False +| |-Cardinality = 1 +| |-DetStore @0x7f4fdb9c1150 = ServiceHandle('StoreGateSvc/DetectorStore') | |-DoSeededDecoding = False | |-Enable = True | |-ErrorCounter = 0 | |-ErrorMax = 1 +| |-EvtStore @0x7f4fdb9c10d0 = ServiceHandle('StoreGateSvc') +| |-ExtraInputs @0x7f4fdb2415f0 = [] (default: []) +| |-ExtraOutputs @0x7f4fdb241a70 = [] (default: []) | |-FilterCircularDependencies = True | |-IsIOBound = False | |-MonitorService = 'MonitorSvc' +| |-NeededResources @0x7f4fdb241ab8 = [] (default: []) | |-OutputLevel = 0 +| |-ProviderTool @0x7f4fdbbf8718 = PrivateToolHandle('Muon::RPC_RawDataProviderTool/RPC_RawDataProviderTool') | | (default: 'Muon::RPC_RawDataProviderTool/RpcRawDataProviderTool') +| |-RegionSelectionSvc @0x7f4fdb9c11d0 = ServiceHandle('RegSelSvc') | |-RegisterForContextService = False | |-RoIs = 'StoreGateSvc+OutputRoIs' +| |-Timeline = True | |=/***** Private AlgTool Muon::RPC_RawDataProviderTool/RpcRawDataProvider.RPC_RawDataProviderTool ***** | | |-AuditFinalize = False | | |-AuditInitialize = False @@ -1670,6 +2233,11 @@ Py:Athena INFO Save Config | | |-AuditStart = False | | |-AuditStop = False | | |-AuditTools = False +| | |-Decoder @0x7f4fdbbf8810 = PrivateToolHandle('Muon::RpcROD_Decoder/RpcROD_Decoder') +| | |-DetStore @0x7f4fdb87c890 = ServiceHandle('StoreGateSvc/DetectorStore') +| | |-EvtStore @0x7f4fdb87c8d0 = ServiceHandle('StoreGateSvc') +| | |-ExtraInputs @0x7f4fdb877c20 = [] (default: []) +| | |-ExtraOutputs @0x7f4fdb877d40 = [] (default: []) | | |-MonitorService = 'MonitorSvc' | | |-OutputLevel = 0 | | |-RPCSec = 'StoreGateSvc+RPC_SECTORLOGIC' @@ -1683,6 +2251,10 @@ Py:Athena INFO Save Config | | | |-AuditStop = False | | | |-AuditTools = False | | | |-DataErrorPrintLimit = 1000 +| | | |-DetStore @0x7f4fdb87c990 = ServiceHandle('StoreGateSvc/DetectorStore') +| | | |-EvtStore @0x7f4fdb87c9d0 = ServiceHandle('StoreGateSvc') +| | | |-ExtraInputs @0x7f4fdb877dd0 = [] (default: []) +| | | |-ExtraOutputs @0x7f4fdb877d88 = [] (default: []) | | | |-MonitorService = 'MonitorSvc' | | | |-OutputLevel = 0 | | | |-Sector13Data = False @@ -1701,15 +2273,23 @@ Py:Athena INFO Save Config | |-AuditRestart = False | |-AuditStart = False | |-AuditStop = False +| |-Cardinality = 1 +| |-DetStore @0x7f4fdb9cf110 = ServiceHandle('StoreGateSvc/DetectorStore') | |-Enable = True | |-ErrorCounter = 0 | |-ErrorMax = 1 +| |-EvtStore @0x7f4fdb9cf090 = ServiceHandle('StoreGateSvc') +| |-ExtraInputs @0x7f4fdb241cf8 = [] (default: []) +| |-ExtraOutputs @0x7f4fdb241dd0 = [] (default: []) | |-FilterCircularDependencies = True | |-IsIOBound = False | |-MonitorService = 'MonitorSvc' +| |-NeededResources @0x7f4fdb241d40 = [] (default: []) | |-OutputLevel = 0 +| |-ProviderTool @0x7f4fdca5f9b0 = PrivateToolHandle('Muon::TGC_RawDataProviderTool/TGC_RawDataProviderTool') | | (default: 'Muon::TGC_RawDataProviderTool/TgcRawDataProviderTool') | |-RegisterForContextService = False +| |-Timeline = True | |=/***** Private AlgTool Muon::TGC_RawDataProviderTool/TgcRawDataProvider.TGC_RawDataProviderTool ***** | | |-AuditFinalize = False | | |-AuditInitialize = False @@ -1718,7 +2298,12 @@ Py:Athena INFO Save Config | | |-AuditStart = False | | |-AuditStop = False | | |-AuditTools = False +| | |-Decoder @0x7f4fdca5faa0 = PrivateToolHandle('Muon::TGC_RodDecoderReadout/TgcROD_Decoder') | | | (default: 'Muon::TGC_RodDecoderReadout/TGC_RodDecoderReadout') +| | |-DetStore @0x7f4fdb826ed0 = ServiceHandle('StoreGateSvc/DetectorStore') +| | |-EvtStore @0x7f4fdb826f10 = ServiceHandle('StoreGateSvc') +| | |-ExtraInputs @0x7f4fdb82c8c0 = [] (default: []) +| | |-ExtraOutputs @0x7f4fdb82c710 = [] (default: []) | | |-MonitorService = 'MonitorSvc' | | |-OutputLevel = 0 | | |-RdoLocation = 'StoreGateSvc+TGCRDO' @@ -1730,6 +2315,10 @@ Py:Athena INFO Save Config | | | |-AuditStart = False | | | |-AuditStop = False | | | |-AuditTools = False +| | | |-DetStore @0x7f4fdb826fd0 = ServiceHandle('StoreGateSvc/DetectorStore') +| | | |-EvtStore @0x7f4fdb831050 = ServiceHandle('StoreGateSvc') +| | | |-ExtraInputs @0x7f4fdb82c560 = [] (default: []) +| | | |-ExtraOutputs @0x7f4fdb82c6c8 = [] (default: []) | | | |-MonitorService = 'MonitorSvc' | | | |-OutputLevel = 0 | | | |-ShowStatusWords = False @@ -1748,15 +2337,23 @@ Py:Athena INFO Save Config | |-AuditRestart = False | |-AuditStart = False | |-AuditStop = False +| |-Cardinality = 1 +| |-DetStore @0x7f4fdb9b4350 = ServiceHandle('StoreGateSvc/DetectorStore') | |-Enable = True | |-ErrorCounter = 0 | |-ErrorMax = 1 +| |-EvtStore @0x7f4fdb9b42d0 = ServiceHandle('StoreGateSvc') +| |-ExtraInputs @0x7f4fdb241e18 = [] (default: []) +| |-ExtraOutputs @0x7f4fdb241ea8 = [] (default: []) | |-FilterCircularDependencies = True | |-IsIOBound = False | |-MonitorService = 'MonitorSvc' +| |-NeededResources @0x7f4fdb241d88 = [] (default: []) | |-OutputLevel = 0 +| |-ProviderTool @0x7f4fdbb9cc50 = PrivateToolHandle('Muon::MDT_RawDataProviderTool/MDT_RawDataProviderTool') | | (default: 'Muon::MDT_RawDataProviderTool/MdtRawDataProviderTool') | |-RegisterForContextService = False +| |-Timeline = True | |=/***** Private AlgTool Muon::MDT_RawDataProviderTool/MdtRawDataProvider.MDT_RawDataProviderTool ***** | | |-AuditFinalize = False | | |-AuditInitialize = False @@ -1765,7 +2362,14 @@ Py:Athena INFO Save Config | | |-AuditStart = False | | |-AuditStop = False | | |-AuditTools = False +| | |-CsmContainerCacheKey @0x7f4fdbb9e480 = 'MdtCsmCache' (default: 'StoreGateSvc+') +| | |-Decoder @0x7f4fdca5fd70 = PrivateToolHandle('MdtROD_Decoder/MdtROD_Decoder') +| | |-DetStore @0x7f4fdb3dafd0 = ServiceHandle('StoreGateSvc/DetectorStore') +| | |-EvtStore @0x7f4fdb363050 = ServiceHandle('StoreGateSvc') +| | |-ExtraInputs @0x7f4fdb3ceb90 = [] (default: []) +| | |-ExtraOutputs @0x7f4fdb3cea28 = [] (default: []) | | |-MonitorService = 'MonitorSvc' +| | |-OutputLevel @ 0xa0e1d8 = 1 (default: 0) | | |-RdoLocation = 'StoreGateSvc+MDTCSM' | | |-ReadKey = 'ConditionStore+MuonMDT_CablingMap' | | |=/***** Private AlgTool MdtROD_Decoder/MdtRawDataProvider.MDT_RawDataProviderTool.MdtROD_Decoder ***** @@ -1776,6 +2380,10 @@ Py:Athena INFO Save Config | | | |-AuditStart = False | | | |-AuditStop = False | | | |-AuditTools = False +| | | |-DetStore @0x7f4fdb363110 = ServiceHandle('StoreGateSvc/DetectorStore') +| | | |-EvtStore @0x7f4fdb363150 = ServiceHandle('StoreGateSvc') +| | | |-ExtraInputs @0x7f4fdb3ceab8 = [] (default: []) +| | | |-ExtraOutputs @0x7f4fdb3cea70 = [] (default: []) | | | |-MonitorService = 'MonitorSvc' | | | |-OutputLevel = 0 | | | |-ReadKey = 'ConditionStore+MuonMDT_CablingMap' @@ -1794,15 +2402,23 @@ Py:Athena INFO Save Config | |-AuditRestart = False | |-AuditStart = False | |-AuditStop = False +| |-Cardinality = 1 +| |-DetStore @0x7f4fdb9c5850 = ServiceHandle('StoreGateSvc/DetectorStore') | |-Enable = True | |-ErrorCounter = 0 | |-ErrorMax = 1 +| |-EvtStore @0x7f4fdb9c5790 = ServiceHandle('StoreGateSvc') +| |-ExtraInputs @0x7f4fdb241f38 = [] (default: []) +| |-ExtraOutputs @0x7f4fdb241e60 = [] (default: []) | |-FilterCircularDependencies = True | |-IsIOBound = False | |-MonitorService = 'MonitorSvc' +| |-NeededResources @0x7f4fdb2419e0 = [] (default: []) | |-OutputLevel = 0 +| |-ProviderTool @0x7f4fdbb9ce50 = PrivateToolHandle('Muon::CSC_RawDataProviderTool/CSC_RawDataProviderTool') | | (default: 'Muon::CSC_RawDataProviderTool/CscRawDataProviderTool') | |-RegisterForContextService = False +| |-Timeline = True | |=/***** Private AlgTool Muon::CSC_RawDataProviderTool/CscRawDataProvider.CSC_RawDataProviderTool ***** | | |-AuditFinalize = False | | |-AuditInitialize = False @@ -1811,8 +2427,15 @@ Py:Athena INFO Save Config | | |-AuditStart = False | | |-AuditStop = False | | |-AuditTools = False +| | |-CscContainerCacheKey @0x7f4fdbb9e780 = 'CscCache' (default: 'StoreGateSvc+') +| | |-Decoder @0x7f4fdb7fe050 = PrivateToolHandle('Muon::CscROD_Decoder/CscROD_Decoder') +| | |-DetStore @0x7f4fdb31ee90 = ServiceHandle('StoreGateSvc/DetectorStore') | | |-EventInfoKey = 'StoreGateSvc+EventInfo' +| | |-EvtStore @0x7f4fdb31eed0 = ServiceHandle('StoreGateSvc') +| | |-ExtraInputs @0x7f4fdb320c68 = [] (default: []) +| | |-ExtraOutputs @0x7f4fdb320f80 = [] (default: []) | | |-MonitorService = 'MonitorSvc' +| | |-OutputLevel @ 0xa0e1d8 = 1 (default: 0) | | |-RdoLocation = 'StoreGateSvc+CSCRDO' | | |=/***** Private AlgTool Muon::CscROD_Decoder/CscRawDataProvider.CSC_RawDataProviderTool.CscROD_Decoder ***** | | | |-AuditFinalize = False @@ -1822,6 +2445,10 @@ Py:Athena INFO Save Config | | | |-AuditStart = False | | | |-AuditStop = False | | | |-AuditTools = False +| | | |-DetStore @0x7f4fdb31ef90 = ServiceHandle('StoreGateSvc/DetectorStore') +| | | |-EvtStore @0x7f4fdb31efd0 = ServiceHandle('StoreGateSvc') +| | | |-ExtraInputs @0x7f4fdb320d88 = [] (default: []) +| | | |-ExtraOutputs @0x7f4fdb320d40 = [] (default: []) | | | |-IsCosmics = False | | | |-IsOldCosmics = False | | | |-MonitorService = 'MonitorSvc' @@ -1840,19 +2467,29 @@ Py:Athena INFO Save Config | |-AuditRestart = False | |-AuditStart = False | |-AuditStop = False +| |-Cardinality = 1 +| |-DecodingTool @0x7f4fdc96ce68 = PrivateToolHandle('Muon::RpcRdoToPrepDataTool/RpcRdoToRpcPrepDataTool') | | (default: 'Muon::RpcRdoToPrepDataTool/RpcRdoToPrepDataTool') +| |-DetStore @0x7f4fdb355950 = ServiceHandle('StoreGateSvc/DetectorStore') | |-DoSeededDecoding = False | |-Enable = True | |-ErrorCounter = 0 | |-ErrorMax = 1 +| |-EvtStore @0x7f4fdb3558d0 = ServiceHandle('StoreGateSvc') +| |-ExtraInputs @0x7f4fdb251128 = [] (default: []) +| |-ExtraOutputs @0x7f4fdb241ef0 = [] (default: []) | |-FilterCircularDependencies = True | |-IsIOBound = False | |-MonitorService = 'MonitorSvc' +| |-NeededResources @0x7f4fdb241b00 = [] (default: []) | |-OutputCollection = 'StoreGateSvc+RPC_Measurements' | |-OutputLevel = 0 | |-PrintInputRdo = False +| |-PrintPrepData @0x7f4fdee72b20 = False (default: False) +| |-RegionSelectionSvc @0x7f4fdb3559d0 = ServiceHandle('RegSelSvc') | |-RegisterForContextService = False | |-RoIs = 'StoreGateSvc+OutputRoIs' +| |-Timeline = True | |=/***** Private AlgTool Muon::RpcRdoToPrepDataTool/RpcRdoToRpcPrepData.RpcRdoToRpcPrepDataTool ****** | | |-AuditFinalize = False | | |-AuditInitialize = False @@ -1862,11 +2499,16 @@ Py:Athena INFO Save Config | | |-AuditStop = False | | |-AuditTools = False | | |-DecodeData = True +| | |-DetStore @0x7f4fdb2c5b10 = ServiceHandle('StoreGateSvc/DetectorStore') +| | |-EvtStore @0x7f4fdb2c5b90 = ServiceHandle('StoreGateSvc') +| | |-ExtraInputs @0x7f4fdb333fc8 = [] (default: []) +| | |-ExtraOutputs @0x7f4fdb3338c0 = [] (default: []) | | |-InputCollection = 'StoreGateSvc+RPC_triggerHits' | | |-MonitorService = 'MonitorSvc' | | |-OutputCollection = 'StoreGateSvc+RPCPAD' | | |-OutputLevel = 0 | | |-RPCInfoFromDb = False +| | |-RdoDecoderTool @0x7f4fdb7374b0 = PrivateToolHandle('Muon::RpcRDO_Decoder/Muon::RpcRDO_Decoder') | | | (default: 'Muon::RpcRDO_Decoder') | | |-TriggerOutputCollection = 'StoreGateSvc+RPC_Measurements' | | |-etaphi_coincidenceTime = 20.0 @@ -1884,6 +2526,10 @@ Py:Athena INFO Save Config | | | |-AuditStart = False | | | |-AuditStop = False | | | |-AuditTools = False +| | | |-DetStore @0x7f4fdb2c5c10 = ServiceHandle('StoreGateSvc/DetectorStore') +| | | |-EvtStore @0x7f4fdb2c5c50 = ServiceHandle('StoreGateSvc') +| | | |-ExtraInputs @0x7f4fdb333a28 = [] (default: []) +| | | |-ExtraOutputs @0x7f4fdb333ab8 = [] (default: []) | | | |-MonitorService = 'MonitorSvc' | | | |-OutputLevel = 0 | | | \----- (End of Private AlgTool Muon::RpcRDO_Decoder/RpcRdoToRpcPrepData.RpcRdoToRpcPrepDataTool.Muon::RpcRDO_Decoder) ----- @@ -1900,20 +2546,30 @@ Py:Athena INFO Save Config | |-AuditRestart = False | |-AuditStart = False | |-AuditStop = False +| |-Cardinality = 1 +| |-DecodingTool @0x7f4fdb2d3050 = PrivateToolHandle('Muon::TgcRdoToPrepDataTool/TgcRdoToTgcPrepDataTool') | | (default: 'Muon::TgcRdoToPrepDataTool/TgcPrepDataProviderTool') +| |-DetStore @0x7f4fdb2ae850 = ServiceHandle('StoreGateSvc/DetectorStore') | |-DoSeededDecoding = False | |-Enable = True | |-ErrorCounter = 0 | |-ErrorMax = 1 +| |-EvtStore @0x7f4fdb2ae7d0 = ServiceHandle('StoreGateSvc') +| |-ExtraInputs @0x7f4fdb251050 = [] (default: []) +| |-ExtraOutputs @0x7f4fdb251170 = [] (default: []) | |-FilterCircularDependencies = True | |-IsIOBound = False | |-MonitorService = 'MonitorSvc' +| |-NeededResources @0x7f4fdb251098 = [] (default: []) | |-OutputCollection = 'StoreGateSvc+TGC_Measurements' | |-OutputLevel = 0 | |-PrintInputRdo = False +| |-PrintPrepData @0x7f4fdee72b20 = False (default: False) +| |-RegionSelectorSvc @0x7f4fdb2ae8d0 = ServiceHandle('RegSelSvc') | |-RegisterForContextService = False | |-RoIs = 'StoreGateSvc+OutputRoIs' | |-Setting = 0 +| |-Timeline = True | |=/***** Private AlgTool Muon::TgcRdoToPrepDataTool/TgcRdoToTgcPrepData.TgcRdoToTgcPrepDataTool ****** | | |-AuditFinalize = False | | |-AuditInitialize = False @@ -1923,6 +2579,10 @@ Py:Athena INFO Save Config | | |-AuditStop = False | | |-AuditTools = False | | |-DecodeData = True +| | |-DetStore @0x7f4fdb2c5c90 = ServiceHandle('StoreGateSvc/DetectorStore') +| | |-EvtStore @0x7f4fdb2c5e50 = ServiceHandle('StoreGateSvc') +| | |-ExtraInputs @0x7f4fdb2d4e18 = [] (default: []) +| | |-ExtraOutputs @0x7f4fdb2d4dd0 = [] (default: []) | | |-FillCoinData = True | | |-MonitorService = 'MonitorSvc' | | |-OutputCoinCollection = 'TrigT1CoinDataCollection' @@ -1931,7 +2591,9 @@ Py:Athena INFO Save Config | | |-RDOContainer = 'StoreGateSvc+TGCRDO' | | |-TGCHashIdOffset = 26000 | | |-dropPrdsWithZeroWidth = True +| | |-outputCoinKey @0x7f4fdb2d4878 = ['StoreGateSvc+dummy', 'StoreGateSvc+dummy', 'StoreGateSvc+dummy'] | | | (default: ['StoreGateSvc+dummy', 'StoreGateSvc+dummy', 'StoreGateSvc+dummy']) +| | |-prepDataKeys @0x7f4fdb2d4ea8 = ['StoreGateSvc+dummy', 'StoreGateSvc+dummy', 'StoreGateSvc+dummy', 'StoreGateSvc+dummy'] | | | (default: ['StoreGateSvc+dummy', 'StoreGateSvc+dummy', 'StoreGateSvc+dummy', 'StoreGateSvc+dummy']) | | |-show_warning_level_invalid_A09_SSW6_hit = False | | \----- (End of Private AlgTool Muon::TgcRdoToPrepDataTool/TgcRdoToTgcPrepData.TgcRdoToTgcPrepDataTool) ----- @@ -1947,19 +2609,29 @@ Py:Athena INFO Save Config | |-AuditRestart = False | |-AuditStart = False | |-AuditStop = False +| |-Cardinality = 1 +| |-DecodingTool @0x7f4fdef1b9f0 = PrivateToolHandle('Muon::MdtRdoToPrepDataTool/MdtRdoToMdtPrepDataTool') | | (default: 'Muon::MdtRdoToPrepDataTool/MdtPrepDataProviderTool') +| |-DetStore @0x7f4fdb345810 = ServiceHandle('StoreGateSvc/DetectorStore') | |-DoSeededDecoding = False | |-Enable = True | |-ErrorCounter = 0 | |-ErrorMax = 1 +| |-EvtStore @0x7f4fdb345790 = ServiceHandle('StoreGateSvc') +| |-ExtraInputs @0x7f4fdb2512d8 = [] (default: []) +| |-ExtraOutputs @0x7f4fdb2510e0 = [] (default: []) | |-FilterCircularDependencies = True | |-IsIOBound = False | |-MonitorService = 'MonitorSvc' +| |-NeededResources @0x7f4fdb251248 = [] (default: []) | |-OutputCollection = 'StoreGateSvc+MDT_DriftCircles' | |-OutputLevel = 0 | |-PrintInputRdo = False +| |-PrintPrepData @0x7f4fdee72b20 = False (default: False) +| |-RegionSelectionSvc @0x7f4fdb345890 = ServiceHandle('RegSelSvc') | |-RegisterForContextService = False | |-RoIs = 'StoreGateSvc+OutputRoIs' +| |-Timeline = True | |=/***** Private AlgTool Muon::MdtRdoToPrepDataTool/MdtRdoToMdtPrepData.MdtRdoToMdtPrepDataTool ****** | | |-AuditFinalize = False | | |-AuditInitialize = False @@ -1970,9 +2642,13 @@ Py:Athena INFO Save Config | | |-AuditTools = False | | |-CalibratePrepData = True | | |-DecodeData = True +| | |-DetStore @0x7f4fdb2c5d50 = ServiceHandle('StoreGateSvc/DetectorStore') | | |-DiscardSecondaryHitTwin = False | | |-DoPropagationCorrection = False | | |-DoTofCorrection = True +| | |-EvtStore @0x7f4fdb2c5fd0 = ServiceHandle('StoreGateSvc') +| | |-ExtraInputs @0x7f4fdb2d0dd0 = [] (default: []) +| | |-ExtraOutputs @0x7f4fdb2d45a8 = [] (default: []) | | |-MonitorService = 'MonitorSvc' | | |-OutputCollection = 'StoreGateSvc+MDT_DriftCircles' | | |-OutputLevel = 0 @@ -1999,19 +2675,29 @@ Py:Athena INFO Save Config | |-AuditRestart = False | |-AuditStart = False | |-AuditStop = False +| |-Cardinality = 1 +| |-CscRdoToCscPrepDataTool @0x7f4fdb8fa380 = PrivateToolHandle('Muon::CscRdoToCscPrepDataTool/CscRdoToCscPrepDataTool') | | (default: 'Muon::CscRdoToCscPrepDataTool/CscRdoToPrepDataTool') +| |-DetStore @0x7f4fdb32bcd0 = ServiceHandle('StoreGateSvc/DetectorStore') | |-DoSeededDecoding = False | |-Enable = True | |-ErrorCounter = 0 | |-ErrorMax = 1 +| |-EvtStore @0x7f4fdb32bbd0 = ServiceHandle('StoreGateSvc') +| |-ExtraInputs @0x7f4fdb2513b0 = [] (default: []) +| |-ExtraOutputs @0x7f4fdb251200 = [] (default: []) | |-FilterCircularDependencies = True | |-IsIOBound = False | |-MonitorService = 'MonitorSvc' +| |-NeededResources @0x7f4fdb251320 = [] (default: []) | |-OutputCollection = 'StoreGateSvc+CSC_Measurements' | |-OutputLevel = 0 | |-PrintInputRdo = False +| |-PrintPrepData @0x7f4fdee72b20 = False (default: False) +| |-RegionSelectionSvc @0x7f4fdb32bd50 = ServiceHandle('RegSelSvc') | |-RegisterForContextService = False | |-RoIs = 'StoreGateSvc+OutputRoIs' +| |-Timeline = True | |=/***** Private AlgTool Muon::CscRdoToCscPrepDataTool/CscRdoToCscPrepData.CscRdoToCscPrepDataTool ***** | | |-AuditFinalize = False | | |-AuditInitialize = False @@ -2021,7 +2707,13 @@ Py:Athena INFO Save Config | | |-AuditStop = False | | |-AuditTools = False | | |-CSCHashIdOffset = 22000 +| | |-CscCalibTool @0x7f4fdef1e860 = PrivateToolHandle('CscCalibTool/CscCalibTool') +| | |-CscRdoDecoderTool @0x7f4fdb2cdde8 = PrivateToolHandle('Muon::CscRDO_Decoder/CscRDO_Decoder') | | |-DecodeData = True +| | |-DetStore @0x7f4fdb2de050 = ServiceHandle('StoreGateSvc/DetectorStore') +| | |-EvtStore @0x7f4fdb2de150 = ServiceHandle('StoreGateSvc') +| | |-ExtraInputs @0x7f4fdb2e5170 = [] (default: []) +| | |-ExtraOutputs @0x7f4fdb2e54d0 = [] (default: []) | | |-MonitorService = 'MonitorSvc' | | |-OutputCollection = 'StoreGateSvc+CSC_Measurements' | | |-OutputLevel = 0 @@ -2034,6 +2726,10 @@ Py:Athena INFO Save Config | | | |-AuditStart = False | | | |-AuditStop = False | | | |-AuditTools = False +| | | |-DetStore @0x7f4fdb2de190 = ServiceHandle('StoreGateSvc/DetectorStore') +| | | |-EvtStore @0x7f4fdb2de1d0 = ServiceHandle('StoreGateSvc') +| | | |-ExtraInputs @0x7f4fdb2e1bd8 = [] (default: []) +| | | |-ExtraOutputs @0x7f4fdb2e19e0 = [] (default: []) | | | |-IsOnline = True | | | |-Latency = 100.0 | | | |-MonitorService = 'MonitorSvc' @@ -2060,6 +2756,11 @@ Py:Athena INFO Save Config | | | |-AuditStart = False | | | |-AuditStop = False | | | |-AuditTools = False +| | | |-CscCalibTool @0x7f4fdb2de0d0 = PublicToolHandle('CscCalibTool') +| | | |-DetStore @0x7f4fdb2de090 = ServiceHandle('StoreGateSvc/DetectorStore') +| | | |-EvtStore @0x7f4fdb2de110 = ServiceHandle('StoreGateSvc') +| | | |-ExtraInputs @0x7f4fdb2e5248 = [] (default: []) +| | | |-ExtraOutputs @0x7f4fdb2e52d8 = [] (default: []) | | | |-MonitorService = 'MonitorSvc' | | | |-OutputLevel = 0 | | | \----- (End of Private AlgTool Muon::CscRDO_Decoder/CscRdoToCscPrepData.CscRdoToCscPrepDataTool.CscRDO_Decoder) ----- @@ -2076,29 +2777,57 @@ Py:Athena INFO Save Config | |-AuditRestart = False | |-AuditStart = False | |-AuditStop = False +| |-Cardinality = 1 +| |-DetStore @0x7f4fdb307690 = ServiceHandle('StoreGateSvc/DetectorStore') | |-Enable = True | |-ErrorCounter = 0 | |-ErrorMax = 1 +| |-EvtStore @0x7f4fdb307610 = ServiceHandle('StoreGateSvc') +| |-ExtraInputs @0x7f4fdb251368 = [] (default: []) +| |-ExtraOutputs @0x7f4fdb2511b8 = [] (default: []) | |-FilterCircularDependencies = True | |-IsIOBound = False | |-MonitorService = 'MonitorSvc' +| |-NeededResources @0x7f4fdb2513f8 = [] (default: []) | |-OutputLevel = 0 | |-RegisterForContextService = False +| |-Timeline = True +| |-cluster_builder @0x7f4fdb238f90 = PublicToolHandle('CscThresholdClusterBuilderTool/CscThesholdClusterBuilderTool') | | (default: 'CscThresholdClusterBuilderTool/CscThresholdClusterBuilderTool') | \----- (End of Algorithm CscThresholdClusterBuilder/CscThesholdClusterBuilder) --------------------- \----- (End of Algorithm AthSequencer/AthAlgSeq) --------------------------------------------------- JOs reading stage finished, launching Athena from pickle file +Wed Mar 13 14:28:03 CET 2019 +Preloading tcmalloc_minimal.so +Py:Athena INFO using release [AthenaExternals-22.0.1] [x86_64-centos7-gcc8-opt] [2.0.25/141317d] -- built on [2019-03-11T2107] +Py:Athena INFO including file "AthenaCommon/Preparation.py" +Py:Athena INFO including file "AthenaCommon/Atlas.UnixStandardJob.py" Py:Athena INFO executing ROOT6Setup Py:Athena INFO configuring AthenaHive with [1] concurrent threads and [1] concurrent events Py:AlgScheduler INFO setting up AvalancheSchedulerSvc/AvalancheSchedulerSvc with 1 threads +Py:Athena INFO including file "AthenaCommon/Execution.py" Py:Athena INFO now loading MuonRdoDecode_Cache.pkl ... +Py:ConfigurableDb INFO Read module info for 5461 configurables from 12 genConfDb files +Py:ConfigurableDb INFO No duplicates have been found: that's good ! +ApplicationMgr INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0 +ApplicationMgr SUCCESS +==================================================================================================================================== + Welcome to ApplicationMgr (GaudiCoreSvc v31r0) + running on pcaz004 on Wed Mar 13 14:28:07 2019 +==================================================================================================================================== ApplicationMgr INFO Application Manager Configured successfully +ApplicationMgr INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0 +Py:Athena INFO including file "AthenaCommon/runbatch.py" +StatusCodeSvc INFO initialize AthDictLoaderSvc INFO in initialize... AthDictLoaderSvc INFO acquired Dso-registry +ClassIDSvc INFO getRegistryEntries: read 3440 CLIDRegistry entries for module ALL CoreDumpSvc INFO install f-a-t-a-l handler... (flag = -1) CoreDumpSvc INFO Handling signals: 11(Segmentation fault) 7(Bus error) 4(Illegal instruction) 8(Floating point exception) +ByteStreamAddre... INFO Initializing ByteStreamAddressProviderSvc - package version ByteStreamCnvSvcBase-00-00-00 +ROBDataProviderSvc INFO Initializing ROBDataProviderSvc - package version ByteStreamCnvSvcBase-00-00-00 ROBDataProviderSvc INFO ---> Filter out empty ROB fragments = 'filterEmptyROB':False ROBDataProviderSvc INFO ---> Filter out specific ROBs by Status Code: # ROBs = 0 ROBDataProviderSvc INFO ---> Filter out Sub Detector ROBs by Status Code: # Sub Detectors = 0 @@ -2113,6 +2842,10 @@ ByteStreamAddre... INFO -- Will fill Store with id = 0 PoolSvc INFO io_register[PoolSvc](xmlcatalog_file:PoolFileCatalog.xml) [ok] PoolSvc INFO Set connectionsvc retry/timeout/IDLE timeout to 'ConnectionRetrialPeriod':300/ 'ConnectionRetrialTimeOut':3600/ 'ConnectionTimeOut':5 seconds with connection cleanup disabled PoolSvc INFO Frontier compression level set to 5 +DBReplicaSvc INFO Frontier server at (serverurl=http://atlasfrontier-local.cern.ch:8000/atlr)(serverurl=http://atlasfrontier-ai.cern.ch:8000/atlr)(serverurl=http://lcgft-atlas.gridpp.rl.ac.uk:3128/frontierATLAS)(serverurl=http://ccfrontier.in2p3.fr:23128/ccin2p3-AtlasFrontier)(proxyurl=http://ca-proxy.cern.ch:3128)(proxyurl=http://ca-proxy-meyrin.cern.ch:3128)(proxyurl=http://ca-proxy-wigner.cern.ch:3128)(proxyurl=http://atlasbpfrontier.cern.ch:3127)(proxyurl=http://atlasbpfrontier.fnal.gov:3127) will be considered for COOL data +DBReplicaSvc INFO Read replica configuration from /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-03-11T2143/Athena/22.0.1/InstallArea/x86_64-centos7-gcc8-opt/share/dbreplica.config +DBReplicaSvc INFO Total of 10 servers found for host pcaz004.dyndns.cern.ch [ATLF ATLAS_COOLPROD atlas_dd ATLAS_CONFIG INT8R INTR ATONR_COOL ATONR_CONF DEVDB11 ATLF ] +DBReplicaSvc INFO COOL SQLite replicas will be excluded if matching pattern /DBRelease/ PoolSvc INFO Successfully setup replica sorting algorithm PoolSvc INFO Setting up APR FileCatalog and Streams PoolSvc INFO Resolved path (via ATLAS_POOLCOND_PATH) is /cvmfs/atlas-condb.cern.ch/repo/conditions/poolcond/PoolFileCatalog.xml @@ -2121,13 +2854,26 @@ PoolSvc WARNING Unable to locate catalog for apcfile:poolcond/PoolCat_ PoolSvc WARNING Unable to locate catalog for prfile:poolcond/PoolCat_comcond.xml check your ATLAS_POOLCOND_PATH and DATAPATH variables PoolSvc WARNING Unable to locate catalog for apcfile:poolcond/PoolCat_comcond.xml check your ATLAS_POOLCOND_PATH and DATAPATH variables PoolSvc INFO POOL WriteCatalog is xmlcatalog_file:PoolFileCatalog.xml +DbSession INFO Open DbSession +Domain[ROOT_All] INFO > Access DbDomain READ [ROOT_All] IOVDbSvc INFO Opened read transaction for POOL PersistencySvc IOVDbSvc INFO Only 5 POOL conditions files will be open at once +IOVDbSvc INFO Cache alignment will be done in 3 slices IOVDbSvc INFO Global tag: CONDBR2-BLKPA-2018-13 set from joboptions IOVDbFolder INFO Inputfile tag override disabled for /GLOBAL/BField/Maps +IOVDbSvc INFO Folder /GLOBAL/BField/Maps will be written to file metadata IOVDbSvc INFO Initialised with 8 connections and 19 folders IOVDbSvc INFO Service IOVDbSvc initialised successfully +MetaDataSvc INFO Initializing MetaDataSvc - package version AthenaServices-00-00-00 +AthenaPoolCnvSvc INFO Initializing AthenaPoolCnvSvc - package version AthenaPoolCnvSvc-00-00-00 +ToolSvc.ByteStr... INFO Initializing ToolSvc.ByteStreamMetadataTool - package version ByteStreamCnvSvc-00-00-00 +MetaDataSvc INFO Found MetaDataTools = PublicToolHandleArray(['IOVDbMetaDataTool/IOVDbMetaDataTool','ByteStreamMetadataTool/ByteStreamMetadataTool']) IOVDbSvc INFO Opening COOL connection for COOLONL_MDT/CONDBR2 +ClassIDSvc INFO getRegistryEntries: read 3314 CLIDRegistry entries for module ALL +ClassIDSvc INFO getRegistryEntries: read 163 CLIDRegistry entries for module ALL +ClassIDSvc INFO getRegistryEntries: read 4046 CLIDRegistry entries for module ALL +ClassIDSvc INFO getRegistryEntries: read 129 CLIDRegistry entries for module ALL +ClassIDSvc INFO getRegistryEntries: read 3110 CLIDRegistry entries for module ALL IOVSvc INFO No IOVSvcTool associated with store "StoreGateSvc" IOVSvcTool INFO IOVRanges will be checked at every Event IOVDbSvc INFO Opening COOL connection for COOLONL_RPC/CONDBR2 @@ -2208,6 +2954,10 @@ GeoModelSvc::RD...WARNING Getting PixTBMatComponents with default tag GeoModelSvc::RD...WARNING Getting PixTBMaterials with default tag GeoModelSvc::RD...WARNING Getting InDetMatComponents with default tag GeoModelSvc::RD...WARNING Getting InDetMaterials with default tag +GeoModelSvc.Muo... INFO create MuonDetectorTool - package version = MuonGeoModel-00-00-00 +GeoModelSvc.Muo... INFO (from GeoModelSvc) AtlasVersion = <ATLAS-R2-2016-01-00-01> MuonVersion = <> +GeoModelSvc.Muo... INFO Keys for Muon Switches are (key) ATLAS-R2-2016-01-00-01 (node) ATLAS +GeoModelSvc.Muo... INFO (from GeoModelSvc) in AtlasVersion = <ATLAS-R2-2016-01-00-01> default MuonVersion is <MuonSpectrometer-R.08.01> GeoModelSvc.Muo... INFO Properties have been set as follows: GeoModelSvc.Muo... INFO LayoutName R GeoModelSvc.Muo... INFO IncludeCutouts 0 @@ -2322,6 +3072,7 @@ AtlasDetectorID::initLevelsFromDict - there are no MM entries in the dictionary! MuGM:MuonFactory INFO MMIDHELPER retrieved from DetStore MuGM:MuonFactory INFO **************** MuonDetectorFactory001 ************************ MuGM:MuonFactory INFO *** Start building the Muon Geometry Tree ********************** +MuGM:RDBReadAtlas INFO Start retriving dbObjects with tag = <ATLAS-R2-2016-01-00-01> node <ATLAS> RDBAccessSvc WARNING Could not get the tag for XtomoData node. Returning 0 pointer to IRDBQuery MuGM:RDBReadAtlas INFO After getQuery XtomoData In DblQ00Xtomo(data) @@ -2351,6 +3102,7 @@ MuGM:ProcCutouts INFO Processing Cutouts DONE MuGM:RDBReadAtlas INFO ProcessTGCreadout - version 7 wirespacing 1.8 MuGM:RDBReadAtlas INFO Intermediate Objects built from primary numbers MuGM:MuonFactory INFO theMaterialManager retrieven successfully from the DetStore +MuGM:MuonFactory INFO MuonSystem description from OracleTag=<ATLAS-R2-2016-01-00-01> and node=<ATLAS> MuGM:MuonFactory INFO TreeTop added to the Manager MuGM:MuonFactory INFO Muon Layout R.08.01 MuGM:MuonFactory INFO Fine Clash Fixing disabled: (should be ON/OFF for Simulation/Reconstruction) @@ -2374,9 +3126,13 @@ MuGM:MuonFactory INFO ***************************************************** MGM::MuonDetect... INFO Init A/B Line Containers - done - size is respectively 1758/0 MGM::MuonDetect... INFO No Aline for CSC wire layers loaded +GeoModelSvc INFO GeoModelSvc.MuonDetectorTool SZ= 42840Kb Time = 0.45S GeoModelSvc.Muo... INFO CondAttrListCollection not found in the DetectorStore GeoModelSvc.Muo... INFO Unable to register callback on CondAttrListCollection for any folder in the list GeoModelSvc.Muo... INFO This is OK unless you expect to read alignment and deformations from COOL +ClassIDSvc INFO getRegistryEntries: read 1455 CLIDRegistry entries for module ALL +AthenaEventLoopMgr INFO Initializing AthenaEventLoopMgr - package version AthenaServices-00-00-00 +ClassIDSvc INFO getRegistryEntries: read 1794 CLIDRegistry entries for module ALL CondInputLoader INFO Initializing CondInputLoader... CondInputLoader INFO Adding base classes: + ( 'CondAttrListCollection' , 'ConditionStore+/EXT/DCS/MAGNETS/SENSORDATA' ) -> @@ -2386,12 +3142,17 @@ CondInputLoader INFO Will create WriteCondHandle dependencies for the follo + ( 'CondAttrListCollection' , 'ConditionStore+/EXT/DCS/MAGNETS/SENSORDATA' ) + ( 'CondAttrListCollection' , 'ConditionStore+/MDT/CABLING/MAP_SCHEMA' ) + ( 'CondAttrListCollection' , 'ConditionStore+/MDT/CABLING/MEZZANINE_SCHEMA' ) +ClassIDSvc INFO getRegistryEntries: read 1370 CLIDRegistry entries for module ALL +ClassIDSvc INFO getRegistryEntries: read 743 CLIDRegistry entries for module ALL RpcRawDataProvider INFO RpcRawDataProvider::initialize RpcRawDataProvider INFO 'DoSeededDecoding':False +ClassIDSvc INFO getRegistryEntries: read 1699 CLIDRegistry entries for module ALL +MuonRPC_CablingSvc INFO Initializing MuonRPC_CablingSvc - package version MuonRPC_Cabling-00-00-00 ToolSvc.RPCCabl... INFO Initializing - folders names are: conf /RPC/CABLING/MAP_SCHEMA / corr /RPC/CABLING/MAP_SCHEMA_CORR MuonRPC_CablingSvc INFO RPCCablingDbTool retrieved with statusCode = SUCCESS with handle TheRpcCablingDbTool = PublicToolHandle('RPCCablingDbTool/RPCCablingDbTool') MuonRPC_CablingSvc INFO Register call-back against 2 folders listed below MuonRPC_CablingSvc INFO Folder n. 1 </RPC/CABLING/MAP_SCHEMA> found in the DetStore +ClassIDSvc INFO getRegistryEntries: read 501 CLIDRegistry entries for module ALL MuonRPC_CablingSvc INFO initMappingModel registered for call-back against folder </RPC/CABLING/MAP_SCHEMA> MuonRPC_CablingSvc INFO Folder n. 2 </RPC/CABLING/MAP_SCHEMA_CORR> found in the DetStore MuonRPC_CablingSvc INFO initMappingModel registered for call-back against folder </RPC/CABLING/MAP_SCHEMA_CORR> @@ -2406,19 +3167,25 @@ RpcRawDataProvi... INFO Retrieved service ServiceHandle('ROBDataProviderSvc') RpcRawDataProvi... INFO Tool = RpcRawDataProvider.RPC_RawDataProviderTool is connected to JobOptionsSvc Service = JobOptionsSvc RpcRawDataProvi... INFO initialize() successful in RpcRawDataProvider.RPC_RawDataProviderTool TgcRawDataProvider INFO TgcRawDataProvider::initialize +ClassIDSvc INFO getRegistryEntries: read 878 CLIDRegistry entries for module ALL TgcRawDataProvi... INFO initialize() successful in TgcRawDataProvider.TGC_RawDataProviderTool.TgcROD_Decoder TgcRawDataProvi... INFO Retrieved tool Decoder = PrivateToolHandle('Muon::TGC_RodDecoderReadout/TgcROD_Decoder') TgcRawDataProvi... INFO Retrieved service ServiceHandle('ROBDataProviderSvc') TgcRawDataProvi... INFO Tool = TgcRawDataProvider.TGC_RawDataProviderTool is connected to JobOptionsSvc Service = JobOptionsSvc MuonTGC_CablingSvc INFO for 1/12 sector initialize ToolSvc.TGCCabl... INFO initialize +ClassIDSvc INFO getRegistryEntries: read 273 CLIDRegistry entries for module ALL +IOVSvcTool INFO Still in initialize phase, not tiggering callback for MuonTGC_CablingSvc[0x10cbcc00]+219 bound to CondAttrListCollection[/TGC/CABLING/MAP_SCHEMA] TgcRawDataProvi... INFO initialize() successful in TgcRawDataProvider.TGC_RawDataProviderTool MdtRawDataProvider INFO MdtRawDataProvider::initialize +ClassIDSvc INFO getRegistryEntries: read 922 CLIDRegistry entries for module ALL +MdtRawDataProvi... DEBUG Property update for OutputLevel : new value = 1 MdtRawDataProvi...VERBOSE Starting init MdtRawDataProvi...VERBOSE Getting m_robDataProvider MdtRawDataProvi... INFO Retrieved service ServiceHandle('ROBDataProviderSvc') MdtRawDataProvi...VERBOSE Getting MuonDetectorManager MdtRawDataProvi...VERBOSE Getting m_decoder +MdtRawDataProvi... DEBUG Property update for OutputLevel : new value = 1 MdtRawDataProvi... INFO Processing configuration for layouts with BME chambers. MdtRawDataProvi... INFO Processing configuration for layouts with BMG chambers. MdtRawDataProvi... INFO Retrieved tool Decoder = PrivateToolHandle('MdtROD_Decoder/MdtROD_Decoder') @@ -2426,15 +3193,20 @@ MdtRawDataProvi... INFO Tool = MdtRawDataProvider.MDT_RawDataProviderTool is MdtRawDataProvi... DEBUG Could not find TrigConf::HLTJobOptionsSvc MdtRawDataProvi... INFO initialize() successful in MdtRawDataProvider.MDT_RawDataProviderTool MdtRawDataProvi... DEBUG Adding private ToolHandle tool MdtRawDataProvider.MDT_RawDataProviderTool.MdtROD_Decoder (MdtROD_Decoder) +ClassIDSvc INFO getRegistryEntries: read 658 CLIDRegistry entries for module ALL +CscRawDataProvi... DEBUG Property update for OutputLevel : new value = 1 CscRawDataProvi... INFO Retrieved service ServiceHandle('ROBDataProviderSvc') CscRawDataProvi...VERBOSE ServiceLocatorHelper::service: found service JobOptionsSvc CscRawDataProvi... INFO Tool = CscRawDataProvider.CSC_RawDataProviderTool is connected to JobOptionsSvc Service = JobOptionsSvc CscRawDataProvi... DEBUG Could not find TrigConf::HLTJobOptionsSvc +CscRawDataProvi... DEBUG Property update for OutputLevel : new value = 1 CscRawDataProvi... DEBUG Found the CscIdHelper. CscRawDataProvi... INFO Retrieved tool Decoder = PrivateToolHandle('Muon::CscROD_Decoder/CscROD_Decoder') CscRawDataProvi... INFO The Muon Geometry version is R.08.01 CscRawDataProvi... INFO initialize() successful in CscRawDataProvider.CSC_RawDataProviderTool CscRawDataProvi... DEBUG Adding private ToolHandle tool CscRawDataProvider.CSC_RawDataProviderTool.CscROD_Decoder (Muon::CscROD_Decoder) +ClassIDSvc INFO getRegistryEntries: read 53 CLIDRegistry entries for module ALL +RpcRdoToRpcPrep... INFO package version = MuonRPC_CnvTools-00-00-00 RpcRdoToRpcPrep... INFO properties are RpcRdoToRpcPrep... INFO processingData 0 RpcRdoToRpcPrep... INFO produceRpcCoinDatafromTriggerWords 1 @@ -2449,21 +3221,35 @@ RpcRdoToRpcPrep... INFO Retrieved DecodingTool = PrivateToolHandle('Muon::RpcR TgcRdoToTgcPrep... INFO initialize() successful in TgcRdoToTgcPrepData.TgcRdoToTgcPrepDataTool TgcRdoToTgcPrep... INFO Retrieved DecodingTool = PrivateToolHandle('Muon::TgcRdoToPrepDataTool/TgcRdoToTgcPrepDataTool') MdtCalibrationSvc INFO Processing configuration for layouts with BMG chambers. +ClassIDSvc INFO getRegistryEntries: read 194 CLIDRegistry entries for module ALL AtlasFieldSvc INFO initialize() ... AtlasFieldSvc INFO maps will be chosen reading COOL folder /GLOBAL/BField/Maps +ClassIDSvc INFO getRegistryEntries: read 163 CLIDRegistry entries for module ALL AtlasFieldSvc INFO magnet currents will be read from COOL folder /EXT/DCS/MAGNETS/SENSORDATA AtlasFieldSvc INFO Booked callback for /EXT/DCS/MAGNETS/SENSORDATA AtlasFieldSvc INFO initialize() successful MdtRdoToMdtPrep... INFO Processing configuration for layouts with BME chambers. MdtRdoToMdtPrep... INFO Processing configuration for layouts with BMG chambers. MdtRdoToMdtPrep... INFO Retrieved DecodingTool = PrivateToolHandle('Muon::MdtRdoToPrepDataTool/MdtRdoToMdtPrepDataTool') +ClassIDSvc INFO getRegistryEntries: read 60 CLIDRegistry entries for module ALL CscRdoToCscPrep... INFO The Geometry version is MuonSpectrometer-R.08.01 MuonCalib::CscC... INFO Initializing CscCoolStrSvc +ClassIDSvc INFO getRegistryEntries: read 181 CLIDRegistry entries for module ALL +IOVSvcTool INFO Still in initialize phase, not tiggering callback for MuonCalib::CscCoolStrSvc[0x1ae96d00]+259 bound to CondAttrListCollection[CSC_PED] +IOVSvcTool INFO Still in initialize phase, not tiggering callback for MuonCalib::CscCoolStrSvc[0x1ae96d00]+259 bound to CondAttrListCollection[CSC_NOISE] +IOVSvcTool INFO Still in initialize phase, not tiggering callback for MuonCalib::CscCoolStrSvc[0x1ae96d00]+259 bound to CondAttrListCollection[CSC_PSLOPE] +IOVSvcTool INFO Still in initialize phase, not tiggering callback for MuonCalib::CscCoolStrSvc[0x1ae96d00]+259 bound to CondAttrListCollection[CSC_STAT] +IOVSvcTool INFO Still in initialize phase, not tiggering callback for MuonCalib::CscCoolStrSvc[0x1ae96d00]+259 bound to CondAttrListCollection[CSC_RMS] +IOVSvcTool INFO Still in initialize phase, not tiggering callback for MuonCalib::CscCoolStrSvc[0x1ae96d00]+259 bound to CondAttrListCollection[CSC_FTHOLD] +IOVSvcTool INFO Still in initialize phase, not tiggering callback for MuonCalib::CscCoolStrSvc[0x1ae96d00]+259 bound to CondAttrListCollection[CSC_T0BASE] +IOVSvcTool INFO Still in initialize phase, not tiggering callback for MuonCalib::CscCoolStrSvc[0x1ae96d00]+259 bound to CondAttrListCollection[CSC_T0PHASE] CscRdoToCscPrep... INFO Retrieved CscRdoToCscPrepDataTool = PrivateToolHandle('Muon::CscRdoToCscPrepDataTool/CscRdoToCscPrepDataTool') HistogramPersis...WARNING Histograms saving not required. +EventSelector INFO Initializing EventSelector - package version ByteStreamCnvSvc-00-00-00 EventSelector WARNING InputCollections not properly set, checking EventStorageInputSvc properties EventSelector INFO Retrieved StoreGateSvc name of '':StoreGateSvc EventSelector INFO reinitialization... +ClassIDSvc INFO getRegistryEntries: read 1126 CLIDRegistry entries for module ALL ToolSvc.Luminos... INFO LuminosityTool::initialize() registering ToolSvc.Luminos... INFO LumiFolderName is empty, skipping ToolSvc.Luminos... INFO OnlineLumiCalibrationTool.empty() is TRUE, skipping... @@ -2472,6 +3258,7 @@ ToolSvc.Luminos... INFO BunchLumisTool.empty() is TRUE, skipping... ToolSvc.Luminos... INFO BunchGroupTool.empty() is TRUE, skipping... ToolSvc.Luminos... INFO LBLBFolderName is empty, skipping... EventSelector INFO Retrieved InputCollections from InputSvc +ByteStreamInputSvc INFO Initializing ByteStreamInputSvc - package version ByteStreamCnvSvc-00-00-00 EventSelector INFO reinitialization... AthenaEventLoopMgr INFO Setup EventSelector service EventSelector ApplicationMgr INFO Application Manager Initialized successfully @@ -2553,6 +3340,7 @@ phi high-pt mu11 mu15 mu15 RPCcabling INFO CablingRPC---InitMaps from COOL: going to read configuration +RPCcabling INFO CablingRPC--->> RPC cabling map from COOL << RPCcabling INFO CablingRPC--- ReadConf: map has size 222202 RPCcabling INFO CablingRPC--- ReadConf: map n. of lines read is 924 RPCcabling INFO CablingRPC--- ReadConf: version is 5.0 Atlas R_07_03_RUN2ver104 @@ -2590,13 +3378,19 @@ AtlasFieldSvc INFO Trying to read from DCS: [channel name, index, value] AtlasFieldSvc INFO Trying to read from DCS: [channel name, index, value] Toroids_SCurrent , 4 , 20397.7 AtlasFieldSvc INFO Currents read from DCS: solenoid 7729.99 toroid 20399.9 AtlasFieldSvc INFO Initializing the field map (solenoidCurrent=7729.99 toroidCurrent=20399.9) +AtlasFieldSvc INFO reading the map from /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/atlas/offline/ReleaseData/v20/MagneticFieldMaps/bfieldmap_7730_20400_14m.root +AtlasFieldSvc INFO Initialized the field map from /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/atlas/offline/ReleaseData/v20/MagneticFieldMaps/bfieldmap_7730_20400_14m.root +ClassIDSvc INFO getRegistryEntries: read 672 CLIDRegistry entries for module ALL AthenaEventLoopMgr INFO ===>>> start processing event #186525031, run #327265 0 events processed so far <<<=== IOVDbSvc INFO Opening COOL connection for COOLONL_MDT/CONDBR2 IOVDbFolder INFO HVS tag CONDBR2-BLKPA-2018-13 resolved to MDTCablingMapSchema_BMG_01 for folder /MDT/CABLING/MAP_SCHEMA IOVDbFolder INFO HVS tag CONDBR2-BLKPA-2018-13 resolved to MDTCablingMezzanineSchema_M5-RUN2 for folder /MDT/CABLING/MEZZANINE_SCHEMA IOVDbSvc INFO Disconnecting from COOLONL_MDT/CONDBR2 MuonMDT_CablingAlg INFO Size of CondAttrListCollection ( 'CondAttrListCollection' , 'ConditionStore+/MDT/CABLING/MEZZANINE_SCHEMA' ) readCdoMez->size()= 24 +MuonMDT_CablingAlg INFO Range of input is {[0,l:0] - [INVALID]} MuonMDT_CablingAlg INFO Size of CondAttrListCollection ( 'CondAttrListCollection' , 'ConditionStore+/MDT/CABLING/MAP_SCHEMA' ) readCdoMap->size()= 2312 +MuonMDT_CablingAlg INFO Range of input is {[327264,l:4294640031] - [327265,l:4294640030]} +MuonMDT_CablingAlg INFO recorded new MuonMDT_CablingMap with range {[327264,l:4294640031] - [327265,l:4294640030]} into Conditions Store MdtRawDataProvi...VERBOSE convert(): 264 ROBFragments. MdtRawDataProvi... DEBUG Created container using cache for MdtCsmCache MdtRawDataProvi... DEBUG fillCollection: starting @@ -2710,6 +3504,7 @@ MdtRawDataProvi... DEBUG getOfflineIdfromOnlineID result: MdtRawDataProvi... DEBUG Name : 0 MdtRawDataProvi... DEBUG Eta : 1 MdtRawDataProvi... DEBUG Phi : 1 +MdtRawDataProvi... DEBUG Collection ID = 0x6048000000000000 does not exist, create it MdtRawDataProvi... DEBUG Decoding data from TDC number : 3 MdtRawDataProvi... DEBUG Found the Beginnning of Link MdtRawDataProvi... DEBUG subdetId : 97 mrodId : 0 csmId : 1 @@ -2717,6 +3512,7 @@ MdtRawDataProvi... DEBUG getOfflineIdfromOnlineID result: MdtRawDataProvi... DEBUG Name : 0 MdtRawDataProvi... DEBUG Eta : 2 MdtRawDataProvi... DEBUG Phi : 1 +MdtRawDataProvi... DEBUG Collection ID = 0x6050000000000000 does not exist, create it MdtRawDataProvi... DEBUG Decoding data from TDC number : 2 MdtRawDataProvi... DEBUG Decoding data from TDC number : 3 MdtRawDataProvi... DEBUG Decoding data from TDC number : 4 @@ -2726,6 +3522,7 @@ MdtRawDataProvi... DEBUG getOfflineIdfromOnlineID result: MdtRawDataProvi... DEBUG Name : 2 MdtRawDataProvi... DEBUG Eta : 1 MdtRawDataProvi... DEBUG Phi : 1 +MdtRawDataProvi... DEBUG Collection ID = 0x6248000000000000 does not exist, create it MdtRawDataProvi... DEBUG Decoding data from TDC number : 6 MdtRawDataProvi... DEBUG Found the Beginnning of Link MdtRawDataProvi... DEBUG subdetId : 97 mrodId : 0 csmId : 3 @@ -2733,6 +3530,7 @@ MdtRawDataProvi... DEBUG getOfflineIdfromOnlineID result: MdtRawDataProvi... DEBUG Name : 2 MdtRawDataProvi... DEBUG Eta : 2 MdtRawDataProvi... DEBUG Phi : 1 +MdtRawDataProvi... DEBUG Collection ID = 0x6250000000000000 does not exist, create it MdtRawDataProvi... DEBUG Decoding data from TDC number : 0 MdtRawDataProvi... DEBUG Decoding data from TDC number : 7 MdtRawDataProvi... DEBUG Decoding data from TDC number : 8 @@ -2742,6 +3540,7 @@ MdtRawDataProvi... DEBUG getOfflineIdfromOnlineID result: MdtRawDataProvi... DEBUG Name : 4 MdtRawDataProvi... DEBUG Eta : 1 MdtRawDataProvi... DEBUG Phi : 1 +MdtRawDataProvi... DEBUG Collection ID = 0x6448000000000000 does not exist, create it MdtRawDataProvi... DEBUG Decoding data from TDC number : 15 MdtRawDataProvi... DEBUG Found the Beginnning of Link MdtRawDataProvi... DEBUG subdetId : 97 mrodId : 0 csmId : 5 @@ -2749,6 +3548,7 @@ MdtRawDataProvi... DEBUG getOfflineIdfromOnlineID result: MdtRawDataProvi... DEBUG Name : 4 MdtRawDataProvi... DEBUG Eta : 2 MdtRawDataProvi... DEBUG Phi : 1 +MdtRawDataProvi... DEBUG Collection ID = 0x6450000000000000 does not exist, create it MdtRawDataProvi... DEBUG Decoding data from TDC number : 0 MdtRawDataProvi... DEBUG Decoding data from TDC number : 2 MdtRawDataProvi... DEBUG Decoding data from TDC number : 8 @@ -2884,12 +3684,14 @@ MdtRawDataProvi... DEBUG getOfflineIdfromOnlineID result: MdtRawDataProvi... DEBUG Name : 0 MdtRawDataProvi... DEBUG Eta : 1 MdtRawDataProvi... DEBUG Phi : 2 +MdtRawDataProvi... DEBUG Collection ID = 0x6049000000000000 does not exist, create it MdtRawDataProvi... DEBUG Found the Beginnning of Link MdtRawDataProvi... DEBUG subdetId : 97 mrodId : 1 csmId : 1 MdtRawDataProvi... DEBUG getOfflineIdfromOnlineID result: MdtRawDataProvi... DEBUG Name : 0 MdtRawDataProvi... DEBUG Eta : 2 MdtRawDataProvi... DEBUG Phi : 2 +MdtRawDataProvi... DEBUG Collection ID = 0x6051000000000000 does not exist, create it MdtRawDataProvi... DEBUG Decoding data from TDC number : 1 MdtRawDataProvi... DEBUG Decoding data from TDC number : 3 MdtRawDataProvi... DEBUG Decoding data from TDC number : 10 @@ -2900,6 +3702,7 @@ MdtRawDataProvi... DEBUG getOfflineIdfromOnlineID result: MdtRawDataProvi... DEBUG Name : 2 MdtRawDataProvi... DEBUG Eta : 1 MdtRawDataProvi... DEBUG Phi : 2 +MdtRawDataProvi... DEBUG Collection ID = 0x6249000000000000 does not exist, create it MdtRawDataProvi... DEBUG Decoding data from TDC number : 3 MdtRawDataProvi... DEBUG Found the Beginnning of Link MdtRawDataProvi... DEBUG subdetId : 97 mrodId : 1 csmId : 3 @@ -2907,6 +3710,7 @@ MdtRawDataProvi... DEBUG getOfflineIdfromOnlineID result: MdtRawDataProvi... DEBUG Name : 2 MdtRawDataProvi... DEBUG Eta : 2 MdtRawDataProvi... DEBUG Phi : 2 +MdtRawDataProvi... DEBUG Collection ID = 0x6251000000000000 does not exist, create it MdtRawDataProvi... DEBUG Decoding data from TDC number : 3 MdtRawDataProvi... DEBUG Decoding data from TDC number : 6 MdtRawDataProvi... DEBUG Found the Beginnning of Link @@ -2915,6 +3719,7 @@ MdtRawDataProvi... DEBUG getOfflineIdfromOnlineID result: MdtRawDataProvi... DEBUG Name : 4 MdtRawDataProvi... DEBUG Eta : 1 MdtRawDataProvi... DEBUG Phi : 2 +MdtRawDataProvi... DEBUG Collection ID = 0x6449000000000000 does not exist, create it MdtRawDataProvi... DEBUG Decoding data from TDC number : 2 MdtRawDataProvi... DEBUG Error: corresponding leading edge not found for the trailing edge tdc: 2 chan: 22 MdtRawDataProvi... DEBUG Decoding data from TDC number : 4 @@ -2930,6 +3735,7 @@ MdtRawDataProvi... DEBUG getOfflineIdfromOnlineID result: MdtRawDataProvi... DEBUG Name : 4 MdtRawDataProvi... DEBUG Eta : 2 MdtRawDataProvi... DEBUG Phi : 2 +MdtRawDataProvi... DEBUG Collection ID = 0x6451000000000000 does not exist, create it MdtRawDataProvi... DEBUG Decoding data from TDC number : 5 MdtRawDataProvi... DEBUG Decoding data from TDC number : 6 MdtRawDataProvi... DEBUG Decoding data from TDC number : 8 @@ -3037,18 +3843,21 @@ MdtRawDataProvi... DEBUG getOfflineIdfromOnlineID result: MdtRawDataProvi... DEBUG Name : 0 MdtRawDataProvi... DEBUG Eta : 1 MdtRawDataProvi... DEBUG Phi : 3 +MdtRawDataProvi... DEBUG Collection ID = 0x604a000000000000 does not exist, create it MdtRawDataProvi... DEBUG Found the Beginnning of Link MdtRawDataProvi... DEBUG subdetId : 97 mrodId : 2 csmId : 1 MdtRawDataProvi... DEBUG getOfflineIdfromOnlineID result: MdtRawDataProvi... DEBUG Name : 0 MdtRawDataProvi... DEBUG Eta : 2 MdtRawDataProvi... DEBUG Phi : 3 +MdtRawDataProvi... DEBUG Collection ID = 0x6052000000000000 does not exist, create it MdtRawDataProvi... DEBUG Found the Beginnning of Link MdtRawDataProvi... DEBUG subdetId : 97 mrodId : 2 csmId : 2 MdtRawDataProvi... DEBUG getOfflineIdfromOnlineID result: MdtRawDataProvi... DEBUG Name : 2 MdtRawDataProvi... DEBUG Eta : 1 MdtRawDataProvi... DEBUG Phi : 3 +MdtRawDataProvi... DEBUG Collection ID = 0x624a000000000000 does not exist, create it MdtRawDataProvi... DEBUG Decoding data from TDC number : 0 MdtRawDataProvi... DEBUG Error: corresponding leading edge not found for the trailing edge tdc: 0 chan: 20 MdtRawDataProvi... DEBUG Decoding data from TDC number : 1 @@ -3060,6 +3869,7 @@ MdtRawDataProvi... DEBUG getOfflineIdfromOnlineID result: MdtRawDataProvi... DEBUG Name : 2 MdtRawDataProvi... DEBUG Eta : 2 MdtRawDataProvi... DEBUG Phi : 3 +MdtRawDataProvi... DEBUG Collection ID = 0x6252000000000000 does not exist, create it MdtRawDataProvi... DEBUG Decoding data from TDC number : 5 MdtRawDataProvi... DEBUG Decoding data from TDC number : 7 MdtRawDataProvi... DEBUG Error: corresponding leading edge not found for the trailing edge tdc: 7 chan: 12 @@ -3071,6 +3881,7 @@ MdtRawDataProvi... DEBUG getOfflineIdfromOnlineID result: MdtRawDataProvi... DEBUG Name : 4 MdtRawDataProvi... DEBUG Eta : 1 MdtRawDataProvi... DEBUG Phi : 3 +MdtRawDataProvi... DEBUG Collection ID = 0x644a000000000000 does not exist, create it MdtRawDataProvi... DEBUG Decoding data from TDC number : 1 MdtRawDataProvi... DEBUG Decoding data from TDC number : 4 MdtRawDataProvi... DEBUG Decoding data from TDC number : 9 @@ -3092,6 +3903,7 @@ CscRawDataProvi... DEBUG in CscROD_Decoder::fillCollection :ROD version 401 CscRawDataProvi... DEBUG CscRawDataProvi... DEBUG =================================================== CscRawDataProvi... DEBUG in CscROD_Decode::fillCollection() - ROD version 2 +CscRawDataProvi... DEBUG DetDescr tag = ATLAS-R2-2016-01-00-01 CscRawDataProvi... DEBUG Online ROD id is 0x80 CscRawDataProvi... DEBUG Online ROD / ROD / collection / subDetector IDs are 0x80 24 8 106 CscRawDataProvi... DEBUG CSC RDO collection does not exist - creating a new one with hash = 8 @@ -3101,28 +3913,55 @@ CscRawDataProvi... DEBUG Is Calibration Enabled?: 0 Calibration Amplitude: 5 CscRawDataProvi... DEBUG Calibration Layer: 0 Latency: 126 CscRawDataProvi... DEBUG Is neutron rejection ON?: 0 Is sparsified data?: 1 CscRawDataProvi... DEBUG CscROD_Decoder Total words received = 112 +CscRawDataProvi... DEBUG RPU Header word 0x5000070 CscRawDataProvi... DEBUG RPU ID original = 5 CscRawDataProvi... DEBUG RPU ID Updated = 5 CscRawDataProvi... DEBUG RPU size = 112 CscRawDataProvi... DEBUG SCA Address = 724315438 +CscRawDataProvi... DEBUG Number of Precision Cluster word 0x20202 CscRawDataProvi... DEBUG Number of precision Cluster Counts - Layer Index = 0 Cluster Counts = 0 CscRawDataProvi... DEBUG Number of precision Cluster Counts - Layer Index = 1 Cluster Counts = 2 CscRawDataProvi... DEBUG Number of precision Cluster Counts - Layer Index = 2 Cluster Counts = 2 CscRawDataProvi... DEBUG Number of precision Cluster Counts - Layer Index = 3 Cluster Counts = 2 +CscRawDataProvi... DEBUG Second cluster word 0x600006c CscRawDataProvi... DEBUG Summed Number of Clusters for non-precision layers 6 CscRawDataProvi... DEBUG Cluster Data Words = 108 CscRawDataProvi... DEBUG Total summed Cluster Count for precision and non-precision layers = 12 +CscRawDataProvi... DEBUG cluster location word 0x10a2d +CscRawDataProvi... DEBUG cluster time size word : stripId (CscIdHelper) 0x10000004 46 CscRawDataProvi... DEBUG idColl clusHashid spuID stationId :: 8 31725 6 51 :: measphi0 L2 strId 46 nStr 4 T0 nSampWords 8 [7.51.-1.1.1.2.2.0.46] +CscRawDataProvi... DEBUG cluster location word 0x10a35 +CscRawDataProvi... DEBUG cluster time size word : stripId (CscIdHelper) 0x10000003 54 CscRawDataProvi... DEBUG idColl clusHashid spuID stationId :: 8 31733 6 51 :: measphi0 L2 strId 54 nStr 3 T0 nSampWords 6 [7.51.-1.1.1.2.2.0.54] +CscRawDataProvi... DEBUG cluster location word 0x10c2c +CscRawDataProvi... DEBUG cluster time size word : stripId (CscIdHelper) 0x10000005 45 CscRawDataProvi... DEBUG idColl clusHashid spuID stationId :: 8 31916 7 51 :: measphi0 L3 strId 45 nStr 5 T0 nSampWords 10 [7.51.-1.1.1.2.3.0.45] +CscRawDataProvi... DEBUG cluster location word 0x10c37 +CscRawDataProvi... DEBUG cluster time size word : stripId (CscIdHelper) 0x10000004 56 CscRawDataProvi... DEBUG idColl clusHashid spuID stationId :: 8 31927 7 51 :: measphi0 L3 strId 56 nStr 4 T0 nSampWords 8 [7.51.-1.1.1.2.3.0.56] +CscRawDataProvi... DEBUG cluster location word 0x10e2d +CscRawDataProvi... DEBUG cluster time size word : stripId (CscIdHelper) 0x10000003 46 CscRawDataProvi... DEBUG idColl clusHashid spuID stationId :: 8 32109 8 51 :: measphi0 L4 strId 46 nStr 3 T0 nSampWords 6 [7.51.-1.1.1.2.4.0.46] +CscRawDataProvi... DEBUG cluster location word 0x10e39 +CscRawDataProvi... DEBUG cluster time size word : stripId (CscIdHelper) 0x10000003 58 CscRawDataProvi... DEBUG idColl clusHashid spuID stationId :: 8 32121 8 51 :: measphi0 L4 strId 58 nStr 3 T0 nSampWords 6 [7.51.-1.1.1.2.4.0.58] +CscRawDataProvi... DEBUG cluster location word 0x10903 +CscRawDataProvi... DEBUG cluster time size word : stripId (CscIdHelper) 0x10000003 4 CscRawDataProvi... DEBUG idColl clusHashid spuID stationId :: 8 55491 9 51 :: measphi1 L1 strId 4 nStr 3 T0 nSampWords 6 [7.51.-1.1.1.2.1.1.4] +CscRawDataProvi... DEBUG cluster location word 0x10b08 +CscRawDataProvi... DEBUG cluster time size word : stripId (CscIdHelper) 0x10000003 9 CscRawDataProvi... DEBUG idColl clusHashid spuID stationId :: 8 55544 9 51 :: measphi1 L2 strId 9 nStr 3 T0 nSampWords 6 [7.51.-1.1.1.2.2.1.9] +CscRawDataProvi... DEBUG cluster location word 0x10b1e +CscRawDataProvi... DEBUG cluster time size word : stripId (CscIdHelper) 0x10000003 31 CscRawDataProvi... DEBUG idColl clusHashid spuID stationId :: 8 55566 9 51 :: measphi1 L2 strId 31 nStr 3 T0 nSampWords 6 [7.51.-1.1.1.2.2.1.31] +CscRawDataProvi... DEBUG cluster location word 0x10d07 +CscRawDataProvi... DEBUG cluster time size word : stripId (CscIdHelper) 0x10000005 8 CscRawDataProvi... DEBUG idColl clusHashid spuID stationId :: 8 55591 9 51 :: measphi1 L3 strId 8 nStr 5 T0 nSampWords 10 [7.51.-1.1.1.2.3.1.8] +CscRawDataProvi... DEBUG cluster location word 0x10d1e +CscRawDataProvi... DEBUG cluster time size word : stripId (CscIdHelper) 0x10000003 31 CscRawDataProvi... DEBUG idColl clusHashid spuID stationId :: 8 55614 9 51 :: measphi1 L3 strId 31 nStr 3 T0 nSampWords 6 [7.51.-1.1.1.2.3.1.31] +CscRawDataProvi... DEBUG cluster location word 0x10f08 +CscRawDataProvi... DEBUG cluster time size word : stripId (CscIdHelper) 0x10000003 9 CscRawDataProvi... DEBUG idColl clusHashid spuID stationId :: 8 55640 9 51 :: measphi1 L4 strId 9 nStr 3 T0 nSampWords 6 [7.51.-1.1.1.2.4.1.9] CscRawDataProvi... DEBUG ****Total Cluster count = 12 for RPU ID 5 CscRawDataProvi... DEBUG end of CscROD_Decode::fillCollection() @@ -3131,6 +3970,7 @@ CscRawDataProvi... DEBUG in CscROD_Decoder::fillCollection :ROD version 401 CscRawDataProvi... DEBUG CscRawDataProvi... DEBUG =================================================== CscRawDataProvi... DEBUG in CscROD_Decode::fillCollection() - ROD version 2 +CscRawDataProvi... DEBUG DetDescr tag = ATLAS-R2-2016-01-00-01 CscRawDataProvi... DEBUG Online ROD id is 0x81 CscRawDataProvi... DEBUG Online ROD / ROD / collection / subDetector IDs are 0x81 16 0 106 CscRawDataProvi... DEBUG CSC RDO collection does not exist - creating a new one with hash = 0 @@ -3140,38 +3980,52 @@ CscRawDataProvi... DEBUG Is Calibration Enabled?: 0 Calibration Amplitude: 5 CscRawDataProvi... DEBUG Calibration Layer: 0 Latency: 126 CscRawDataProvi... DEBUG Is neutron rejection ON?: 0 Is sparsified data?: 1 CscRawDataProvi... DEBUG CscROD_Decoder Total words received = 122 +CscRawDataProvi... DEBUG RPU Header word 0xd00007a CscRawDataProvi... DEBUG RPU ID original = 13 CscRawDataProvi... DEBUG RPU ID Updated = 11 CscRawDataProvi... DEBUG RPU size = 122 CscRawDataProvi... DEBUG SCA Address = 2358087311 +CscRawDataProvi... DEBUG Number of Precision Cluster word 0x2000002 CscRawDataProvi... DEBUG Number of precision Cluster Counts - Layer Index = 0 Cluster Counts = 2 CscRawDataProvi... DEBUG Number of precision Cluster Counts - Layer Index = 1 Cluster Counts = 0 CscRawDataProvi... DEBUG Number of precision Cluster Counts - Layer Index = 2 Cluster Counts = 0 CscRawDataProvi... DEBUG Number of precision Cluster Counts - Layer Index = 3 Cluster Counts = 2 +CscRawDataProvi... DEBUG Second cluster word 0x7000076 CscRawDataProvi... DEBUG Summed Number of Clusters for non-precision layers 7 CscRawDataProvi... DEBUG Cluster Data Words = 118 CscRawDataProvi... DEBUG Total summed Cluster Count for precision and non-precision layers = 11 CscRawDataProvi... DEBUG cluster location word 0x810 +CscRawDataProvi... DEBUG cluster time size word : stripId (CscIdHelper) 0x10000004 17 CscRawDataProvi... DEBUG idColl clusHashid spuID stationId :: 0 784 0 50 :: measphi0 L1 strId 17 nStr 4 T0 nSampWords 8 [7.50.-1.1.1.2.1.0.17] CscRawDataProvi... DEBUG cluster location word 0x868 +CscRawDataProvi... DEBUG cluster time size word : stripId (CscIdHelper) 0x10000007 105 CscRawDataProvi... DEBUG idColl clusHashid spuID stationId :: 0 872 0 50 :: measphi0 L1 strId 105 nStr 7 T0 nSampWords 14 [7.50.-1.1.1.2.1.0.105] CscRawDataProvi... DEBUG cluster location word 0xe11 +CscRawDataProvi... DEBUG cluster time size word : stripId (CscIdHelper) 0x1000000a 18 CscRawDataProvi... DEBUG idColl clusHashid spuID stationId :: 0 1361 3 50 :: measphi0 L4 strId 18 nStr 10 T0 nSampWords 20 [7.50.-1.1.1.2.4.0.18] CscRawDataProvi... DEBUG cluster location word 0xe41 +CscRawDataProvi... DEBUG cluster time size word : stripId (CscIdHelper) 0x10000004 66 CscRawDataProvi... DEBUG idColl clusHashid spuID stationId :: 0 1409 3 50 :: measphi0 L4 strId 66 nStr 4 T0 nSampWords 8 [7.50.-1.1.1.2.4.0.66] CscRawDataProvi... DEBUG cluster location word 0x916 +CscRawDataProvi... DEBUG cluster time size word : stripId (CscIdHelper) 0x10000005 23 CscRawDataProvi... DEBUG idColl clusHashid spuID stationId :: 0 24790 4 50 :: measphi1 L1 strId 23 nStr 5 T0 nSampWords 10 [7.50.-1.1.1.2.1.1.23] CscRawDataProvi... DEBUG cluster location word 0xb16 +CscRawDataProvi... DEBUG cluster time size word : stripId (CscIdHelper) 0x10000003 23 CscRawDataProvi... DEBUG idColl clusHashid spuID stationId :: 0 24838 4 50 :: measphi1 L2 strId 23 nStr 3 T0 nSampWords 6 [7.50.-1.1.1.2.2.1.23] CscRawDataProvi... DEBUG cluster location word 0xd03 +CscRawDataProvi... DEBUG cluster time size word : stripId (CscIdHelper) 0x10000003 4 CscRawDataProvi... DEBUG idColl clusHashid spuID stationId :: 0 24867 4 50 :: measphi1 L3 strId 4 nStr 3 T0 nSampWords 6 [7.50.-1.1.1.2.3.1.4] CscRawDataProvi... DEBUG cluster location word 0xd15 +CscRawDataProvi... DEBUG cluster time size word : stripId (CscIdHelper) 0x10000003 22 CscRawDataProvi... DEBUG idColl clusHashid spuID stationId :: 0 24885 4 50 :: measphi1 L3 strId 22 nStr 3 T0 nSampWords 6 [7.50.-1.1.1.2.3.1.22] CscRawDataProvi... DEBUG cluster location word 0xd2d +CscRawDataProvi... DEBUG cluster time size word : stripId (CscIdHelper) 0x10000003 46 CscRawDataProvi... DEBUG idColl clusHashid spuID stationId :: 0 24909 4 50 :: measphi1 L3 strId 46 nStr 3 T0 nSampWords 6 [7.50.-1.1.1.2.3.1.46] CscRawDataProvi... DEBUG cluster location word 0xf15 +CscRawDataProvi... DEBUG cluster time size word : stripId (CscIdHelper) 0x10000003 22 CscRawDataProvi... DEBUG idColl clusHashid spuID stationId :: 0 24933 4 50 :: measphi1 L4 strId 22 nStr 3 T0 nSampWords 6 [7.50.-1.1.1.2.4.1.22] CscRawDataProvi... DEBUG cluster location word 0xf1e +CscRawDataProvi... DEBUG cluster time size word : stripId (CscIdHelper) 0x10000003 31 CscRawDataProvi... DEBUG idColl clusHashid spuID stationId :: 0 24942 4 50 :: measphi1 L4 strId 31 nStr 3 T0 nSampWords 6 [7.50.-1.1.1.2.4.1.31] CscRawDataProvi... DEBUG ****Total Cluster count = 11 for RPU ID 11 CscRawDataProvi... DEBUG end of CscROD_Decode::fillCollection() @@ -3180,6 +4034,7 @@ CscRawDataProvi... DEBUG in CscROD_Decoder::fillCollection :ROD version 401 CscRawDataProvi... DEBUG CscRawDataProvi... DEBUG =================================================== CscRawDataProvi... DEBUG in CscROD_Decode::fillCollection() - ROD version 2 +CscRawDataProvi... DEBUG DetDescr tag = ATLAS-R2-2016-01-00-01 CscRawDataProvi... DEBUG Online ROD id is 0x82 CscRawDataProvi... DEBUG Online ROD / ROD / collection / subDetector IDs are 0x82 25 9 106 CscRawDataProvi... DEBUG CSC RDO collection does not exist - creating a new one with hash = 9 @@ -3189,6 +4044,7 @@ CscRawDataProvi... DEBUG Is Calibration Enabled?: 0 Calibration Amplitude: 5 CscRawDataProvi... DEBUG Calibration Layer: 0 Latency: 126 CscRawDataProvi... DEBUG Is neutron rejection ON?: 0 Is sparsified data?: 1 CscRawDataProvi... DEBUG CscROD_Decoder Total words received = 50 +CscRawDataProvi... DEBUG RPU Header word 0x5000032 CscRawDataProvi... DEBUG RPU ID original = 5 CscRawDataProvi... DEBUG RPU ID Updated = 5 CscRawDataProvi... DEBUG RPU size = 50 @@ -3198,13 +4054,24 @@ CscRawDataProvi... DEBUG Number of precision Cluster Counts - Layer Index = 0 C CscRawDataProvi... DEBUG Number of precision Cluster Counts - Layer Index = 1 Cluster Counts = 0 CscRawDataProvi... DEBUG Number of precision Cluster Counts - Layer Index = 2 Cluster Counts = 1 CscRawDataProvi... DEBUG Number of precision Cluster Counts - Layer Index = 3 Cluster Counts = 2 +CscRawDataProvi... DEBUG Second cluster word 0x200002e CscRawDataProvi... DEBUG Summed Number of Clusters for non-precision layers 2 CscRawDataProvi... DEBUG Cluster Data Words = 46 CscRawDataProvi... DEBUG Total summed Cluster Count for precision and non-precision layers = 5 +CscRawDataProvi... DEBUG cluster location word 0x12c17 +CscRawDataProvi... DEBUG cluster time size word : stripId (CscIdHelper) 0x10000005 24 CscRawDataProvi... DEBUG idColl clusHashid spuID stationId :: 9 33431 7 51 :: measphi0 L3 strId 24 nStr 5 T0 nSampWords 10 [7.51.-1.2.1.2.3.0.24] +CscRawDataProvi... DEBUG cluster location word 0x12e16 +CscRawDataProvi... DEBUG cluster time size word : stripId (CscIdHelper) 0x10000003 23 CscRawDataProvi... DEBUG idColl clusHashid spuID stationId :: 9 33622 8 51 :: measphi0 L4 strId 23 nStr 3 T0 nSampWords 6 [7.51.-1.2.1.2.4.0.23] +CscRawDataProvi... DEBUG cluster location word 0x12e1a +CscRawDataProvi... DEBUG cluster time size word : stripId (CscIdHelper) 0x10000003 27 CscRawDataProvi... DEBUG idColl clusHashid spuID stationId :: 9 33626 8 51 :: measphi0 L4 strId 27 nStr 3 T0 nSampWords 6 [7.51.-1.2.1.2.4.0.27] +CscRawDataProvi... DEBUG cluster location word 0x12d24 +CscRawDataProvi... DEBUG cluster time size word : stripId (CscIdHelper) 0x10000004 37 CscRawDataProvi... DEBUG idColl clusHashid spuID stationId :: 9 56004 9 51 :: measphi1 L3 strId 37 nStr 4 T0 nSampWords 8 [7.51.-1.2.1.2.3.1.37] +CscRawDataProvi... DEBUG cluster location word 0x12f24 +CscRawDataProvi... DEBUG cluster time size word : stripId (CscIdHelper) 0x10000003 37 CscRawDataProvi... DEBUG idColl clusHashid spuID stationId :: 9 56052 9 51 :: measphi1 L4 strId 37 nStr 3 T0 nSampWords 6 [7.51.-1.2.1.2.4.1.37] CscRawDataProvi... DEBUG ****Total Cluster count = 5 for RPU ID 5 CscRawDataProvi... DEBUG end of CscROD_Decode::fillCollection() @@ -3213,6 +4080,7 @@ CscRawDataProvi... DEBUG in CscROD_Decoder::fillCollection :ROD version 401 CscRawDataProvi... DEBUG CscRawDataProvi... DEBUG =================================================== CscRawDataProvi... DEBUG in CscROD_Decode::fillCollection() - ROD version 2 +CscRawDataProvi... DEBUG DetDescr tag = ATLAS-R2-2016-01-00-01 CscRawDataProvi... DEBUG Online ROD id is 0x83 CscRawDataProvi... DEBUG Online ROD / ROD / collection / subDetector IDs are 0x83 17 1 106 CscRawDataProvi... DEBUG CSC RDO collection does not exist - creating a new one with hash = 1 @@ -3222,27 +4090,52 @@ CscRawDataProvi... DEBUG Is Calibration Enabled?: 0 Calibration Amplitude: 5 CscRawDataProvi... DEBUG Calibration Layer: 0 Latency: 126 CscRawDataProvi... DEBUG Is neutron rejection ON?: 0 Is sparsified data?: 1 CscRawDataProvi... DEBUG CscROD_Decoder Total words received = 116 +CscRawDataProvi... DEBUG RPU Header word 0xd000074 CscRawDataProvi... DEBUG RPU ID original = 13 CscRawDataProvi... DEBUG RPU ID Updated = 11 CscRawDataProvi... DEBUG RPU size = 116 CscRawDataProvi... DEBUG SCA Address = 1920169077 +CscRawDataProvi... DEBUG Number of Precision Cluster word 0x1010102 CscRawDataProvi... DEBUG Number of precision Cluster Counts - Layer Index = 0 Cluster Counts = 1 CscRawDataProvi... DEBUG Number of precision Cluster Counts - Layer Index = 1 Cluster Counts = 1 CscRawDataProvi... DEBUG Number of precision Cluster Counts - Layer Index = 2 Cluster Counts = 1 CscRawDataProvi... DEBUG Number of precision Cluster Counts - Layer Index = 3 Cluster Counts = 2 +CscRawDataProvi... DEBUG Second cluster word 0x6000070 CscRawDataProvi... DEBUG Summed Number of Clusters for non-precision layers 6 CscRawDataProvi... DEBUG Cluster Data Words = 112 CscRawDataProvi... DEBUG Total summed Cluster Count for precision and non-precision layers = 11 +CscRawDataProvi... DEBUG cluster location word 0x2818 +CscRawDataProvi... DEBUG cluster time size word : stripId (CscIdHelper) 0x10000004 25 CscRawDataProvi... DEBUG idColl clusHashid spuID stationId :: 1 2328 0 50 :: measphi0 L1 strId 25 nStr 4 T0 nSampWords 8 [7.50.-1.2.1.2.1.0.25] +CscRawDataProvi... DEBUG cluster location word 0x2a17 +CscRawDataProvi... DEBUG cluster time size word : stripId (CscIdHelper) 0x10000006 24 CscRawDataProvi... DEBUG idColl clusHashid spuID stationId :: 1 2519 1 50 :: measphi0 L2 strId 24 nStr 6 T0 nSampWords 12 [7.50.-1.2.1.2.2.0.24] +CscRawDataProvi... DEBUG cluster location word 0x2c17 +CscRawDataProvi... DEBUG cluster time size word : stripId (CscIdHelper) 0x10000005 24 CscRawDataProvi... DEBUG idColl clusHashid spuID stationId :: 1 2711 2 50 :: measphi0 L3 strId 24 nStr 5 T0 nSampWords 10 [7.50.-1.2.1.2.3.0.24] +CscRawDataProvi... DEBUG cluster location word 0x2e18 +CscRawDataProvi... DEBUG cluster time size word : stripId (CscIdHelper) 0x10000004 25 CscRawDataProvi... DEBUG idColl clusHashid spuID stationId :: 1 2904 3 50 :: measphi0 L4 strId 25 nStr 4 T0 nSampWords 8 [7.50.-1.2.1.2.4.0.25] +CscRawDataProvi... DEBUG cluster location word 0x2ebc +CscRawDataProvi... DEBUG cluster time size word : stripId (CscIdHelper) 0x10000003 189 CscRawDataProvi... DEBUG idColl clusHashid spuID stationId :: 1 3068 3 50 :: measphi0 L4 strId 189 nStr 3 T0 nSampWords 6 [7.50.-1.2.1.2.4.0.189] +CscRawDataProvi... DEBUG cluster location word 0x2909 +CscRawDataProvi... DEBUG cluster time size word : stripId (CscIdHelper) 0x10000004 10 CscRawDataProvi... DEBUG idColl clusHashid spuID stationId :: 1 25161 4 50 :: measphi1 L1 strId 10 nStr 4 T0 nSampWords 8 [7.50.-1.2.1.2.1.1.10] +CscRawDataProvi... DEBUG cluster location word 0x2b09 +CscRawDataProvi... DEBUG cluster time size word : stripId (CscIdHelper) 0x10000005 10 CscRawDataProvi... DEBUG idColl clusHashid spuID stationId :: 1 25209 4 50 :: measphi1 L2 strId 10 nStr 5 T0 nSampWords 10 [7.50.-1.2.1.2.2.1.10] +CscRawDataProvi... DEBUG cluster location word 0x2d09 +CscRawDataProvi... DEBUG cluster time size word : stripId (CscIdHelper) 0x10000004 10 CscRawDataProvi... DEBUG idColl clusHashid spuID stationId :: 1 25257 4 50 :: measphi1 L3 strId 10 nStr 4 T0 nSampWords 8 [7.50.-1.2.1.2.3.1.10] +CscRawDataProvi... DEBUG cluster location word 0x2d16 +CscRawDataProvi... DEBUG cluster time size word : stripId (CscIdHelper) 0x10000003 23 CscRawDataProvi... DEBUG idColl clusHashid spuID stationId :: 1 25270 4 50 :: measphi1 L3 strId 23 nStr 3 T0 nSampWords 6 [7.50.-1.2.1.2.3.1.23] +CscRawDataProvi... DEBUG cluster location word 0x2f09 +CscRawDataProvi... DEBUG cluster time size word : stripId (CscIdHelper) 0x10000004 10 CscRawDataProvi... DEBUG idColl clusHashid spuID stationId :: 1 25305 4 50 :: measphi1 L4 strId 10 nStr 4 T0 nSampWords 8 [7.50.-1.2.1.2.4.1.10] +CscRawDataProvi... DEBUG cluster location word 0x2f28 +CscRawDataProvi... DEBUG cluster time size word : stripId (CscIdHelper) 0x10000003 41 CscRawDataProvi... DEBUG idColl clusHashid spuID stationId :: 1 25336 4 50 :: measphi1 L4 strId 41 nStr 3 T0 nSampWords 6 [7.50.-1.2.1.2.4.1.41] CscRawDataProvi... DEBUG ****Total Cluster count = 11 for RPU ID 11 CscRawDataProvi... DEBUG end of CscROD_Decode::fillCollection() @@ -3251,6 +4144,7 @@ CscRawDataProvi... DEBUG in CscROD_Decoder::fillCollection :ROD version 401 CscRawDataProvi... DEBUG CscRawDataProvi... DEBUG =================================================== CscRawDataProvi... DEBUG in CscROD_Decode::fillCollection() - ROD version 2 +CscRawDataProvi... DEBUG DetDescr tag = ATLAS-R2-2016-01-00-01 CscRawDataProvi... DEBUG Online ROD id is 0x84 CscRawDataProvi... DEBUG Online ROD / ROD / collection / subDetector IDs are 0x84 26 10 106 CscRawDataProvi... DEBUG CSC RDO collection does not exist - creating a new one with hash = 10 @@ -3260,6 +4154,7 @@ CscRawDataProvi... DEBUG Is Calibration Enabled?: 0 Calibration Amplitude: 5 CscRawDataProvi... DEBUG Calibration Layer: 0 Latency: 126 CscRawDataProvi... DEBUG Is neutron rejection ON?: 0 Is sparsified data?: 1 CscRawDataProvi... DEBUG CscROD_Decoder Total words received = 114 +CscRawDataProvi... DEBUG RPU Header word 0x5000072 CscRawDataProvi... DEBUG RPU ID original = 5 CscRawDataProvi... DEBUG RPU ID Updated = 5 CscRawDataProvi... DEBUG RPU size = 114 @@ -3269,14 +4164,27 @@ CscRawDataProvi... DEBUG Number of precision Cluster Counts - Layer Index = 0 C CscRawDataProvi... DEBUG Number of precision Cluster Counts - Layer Index = 1 Cluster Counts = 0 CscRawDataProvi... DEBUG Number of precision Cluster Counts - Layer Index = 2 Cluster Counts = 2 CscRawDataProvi... DEBUG Number of precision Cluster Counts - Layer Index = 3 Cluster Counts = 0 +CscRawDataProvi... DEBUG Second cluster word 0x400006e CscRawDataProvi... DEBUG Summed Number of Clusters for non-precision layers 4 CscRawDataProvi... DEBUG Cluster Data Words = 110 CscRawDataProvi... DEBUG Total summed Cluster Count for precision and non-precision layers = 6 +CscRawDataProvi... DEBUG cluster location word 0x14c03 +CscRawDataProvi... DEBUG cluster time size word : stripId (CscIdHelper) 0x10000005 4 CscRawDataProvi... DEBUG idColl clusHashid spuID stationId :: 10 34947 7 51 :: measphi0 L3 strId 4 nStr 5 T0 nSampWords 10 [7.51.-1.3.1.2.3.0.4] +CscRawDataProvi... DEBUG cluster location word 0x14c66 +CscRawDataProvi... DEBUG cluster time size word : stripId (CscIdHelper) 0x10000013 103 CscRawDataProvi... DEBUG idColl clusHashid spuID stationId :: 10 35046 7 51 :: measphi0 L3 strId 103 nStr 19 T0 nSampWords 38 [7.51.-1.3.1.2.3.0.103] +CscRawDataProvi... DEBUG cluster location word 0x1491b +CscRawDataProvi... DEBUG cluster time size word : stripId (CscIdHelper) 0x10000003 28 CscRawDataProvi... DEBUG idColl clusHashid spuID stationId :: 10 56283 9 51 :: measphi1 L1 strId 28 nStr 3 T0 nSampWords 6 [7.51.-1.3.1.2.1.1.28] +CscRawDataProvi... DEBUG cluster location word 0x14d09 +CscRawDataProvi... DEBUG cluster time size word : stripId (CscIdHelper) 0x10000006 10 CscRawDataProvi... DEBUG idColl clusHashid spuID stationId :: 10 56361 9 51 :: measphi1 L3 strId 10 nStr 6 T0 nSampWords 12 [7.51.-1.3.1.2.3.1.10] +CscRawDataProvi... DEBUG cluster location word 0x14d1f +CscRawDataProvi... DEBUG cluster time size word : stripId (CscIdHelper) 0x10000003 32 CscRawDataProvi... DEBUG idColl clusHashid spuID stationId :: 10 56383 9 51 :: measphi1 L3 strId 32 nStr 3 T0 nSampWords 6 [7.51.-1.3.1.2.3.1.32] +CscRawDataProvi... DEBUG cluster location word 0x14d23 +CscRawDataProvi... DEBUG cluster time size word : stripId (CscIdHelper) 0x1000000d 36 CscRawDataProvi... DEBUG idColl clusHashid spuID stationId :: 10 56387 9 51 :: measphi1 L3 strId 36 nStr 13 T0 nSampWords 26 [7.51.-1.3.1.2.3.1.36] CscRawDataProvi... DEBUG ****Total Cluster count = 6 for RPU ID 5 CscRawDataProvi... DEBUG end of CscROD_Decode::fillCollection() @@ -3285,6 +4193,7 @@ CscRawDataProvi... DEBUG in CscROD_Decoder::fillCollection :ROD version 401 CscRawDataProvi... DEBUG CscRawDataProvi... DEBUG =================================================== CscRawDataProvi... DEBUG in CscROD_Decode::fillCollection() - ROD version 2 +CscRawDataProvi... DEBUG DetDescr tag = ATLAS-R2-2016-01-00-01 CscRawDataProvi... DEBUG Online ROD id is 0x85 CscRawDataProvi... DEBUG Online ROD / ROD / collection / subDetector IDs are 0x85 18 2 106 CscRawDataProvi... DEBUG CSC RDO collection does not exist - creating a new one with hash = 2 @@ -3294,23 +4203,40 @@ CscRawDataProvi... DEBUG Is Calibration Enabled?: 0 Calibration Amplitude: 5 CscRawDataProvi... DEBUG Calibration Layer: 0 Latency: 126 CscRawDataProvi... DEBUG Is neutron rejection ON?: 0 Is sparsified data?: 1 CscRawDataProvi... DEBUG CscROD_Decoder Total words received = 90 +CscRawDataProvi... DEBUG RPU Header word 0xd00005a CscRawDataProvi... DEBUG RPU ID original = 13 CscRawDataProvi... DEBUG RPU ID Updated = 11 CscRawDataProvi... DEBUG RPU size = 90 CscRawDataProvi... DEBUG SCA Address = 1482250843 +CscRawDataProvi... DEBUG Number of Precision Cluster word 0x20100 CscRawDataProvi... DEBUG Number of precision Cluster Counts - Layer Index = 0 Cluster Counts = 0 CscRawDataProvi... DEBUG Number of precision Cluster Counts - Layer Index = 1 Cluster Counts = 2 CscRawDataProvi... DEBUG Number of precision Cluster Counts - Layer Index = 2 Cluster Counts = 1 CscRawDataProvi... DEBUG Number of precision Cluster Counts - Layer Index = 3 Cluster Counts = 0 +CscRawDataProvi... DEBUG Second cluster word 0x4000056 CscRawDataProvi... DEBUG Summed Number of Clusters for non-precision layers 4 CscRawDataProvi... DEBUG Cluster Data Words = 86 CscRawDataProvi... DEBUG Total summed Cluster Count for precision and non-precision layers = 7 +CscRawDataProvi... DEBUG cluster location word 0x4a18 +CscRawDataProvi... DEBUG cluster time size word : stripId (CscIdHelper) 0x10000008 25 CscRawDataProvi... DEBUG idColl clusHashid spuID stationId :: 2 4056 1 50 :: measphi0 L2 strId 25 nStr 8 T0 nSampWords 16 [7.50.-1.3.1.2.2.0.25] +CscRawDataProvi... DEBUG cluster location word 0x4a3a +CscRawDataProvi... DEBUG cluster time size word : stripId (CscIdHelper) 0x10000004 59 CscRawDataProvi... DEBUG idColl clusHashid spuID stationId :: 2 4090 1 50 :: measphi0 L2 strId 59 nStr 4 T0 nSampWords 8 [7.50.-1.3.1.2.2.0.59] +CscRawDataProvi... DEBUG cluster location word 0x4c1a +CscRawDataProvi... DEBUG cluster time size word : stripId (CscIdHelper) 0x10000006 27 CscRawDataProvi... DEBUG idColl clusHashid spuID stationId :: 2 4250 2 50 :: measphi0 L3 strId 27 nStr 6 T0 nSampWords 12 [7.50.-1.3.1.2.3.0.27] +CscRawDataProvi... DEBUG cluster location word 0x4b11 +CscRawDataProvi... DEBUG cluster time size word : stripId (CscIdHelper) 0x10000003 18 CscRawDataProvi... DEBUG idColl clusHashid spuID stationId :: 2 25601 4 50 :: measphi1 L2 strId 18 nStr 3 T0 nSampWords 6 [7.50.-1.3.1.2.2.1.18] +CscRawDataProvi... DEBUG cluster location word 0x4b18 +CscRawDataProvi... DEBUG cluster time size word : stripId (CscIdHelper) 0x10000005 25 CscRawDataProvi... DEBUG idColl clusHashid spuID stationId :: 2 25608 4 50 :: measphi1 L2 strId 25 nStr 5 T0 nSampWords 10 [7.50.-1.3.1.2.2.1.25] +CscRawDataProvi... DEBUG cluster location word 0x4b1e +CscRawDataProvi... DEBUG cluster time size word : stripId (CscIdHelper) 0x10000005 31 CscRawDataProvi... DEBUG idColl clusHashid spuID stationId :: 2 25614 4 50 :: measphi1 L2 strId 31 nStr 5 T0 nSampWords 10 [7.50.-1.3.1.2.2.1.31] +CscRawDataProvi... DEBUG cluster location word 0x4d14 +CscRawDataProvi... DEBUG cluster time size word : stripId (CscIdHelper) 0x10000005 21 CscRawDataProvi... DEBUG idColl clusHashid spuID stationId :: 2 25652 4 50 :: measphi1 L3 strId 21 nStr 5 T0 nSampWords 10 [7.50.-1.3.1.2.3.1.21] CscRawDataProvi... DEBUG ****Total Cluster count = 7 for RPU ID 11 CscRawDataProvi... DEBUG end of CscROD_Decode::fillCollection() @@ -3319,6 +4245,7 @@ CscRawDataProvi... DEBUG in CscROD_Decoder::fillCollection :ROD version 401 CscRawDataProvi... DEBUG CscRawDataProvi... DEBUG =================================================== CscRawDataProvi... DEBUG in CscROD_Decode::fillCollection() - ROD version 2 +CscRawDataProvi... DEBUG DetDescr tag = ATLAS-R2-2016-01-00-01 CscRawDataProvi... DEBUG Online ROD id is 0x86 CscRawDataProvi... DEBUG Online ROD / ROD / collection / subDetector IDs are 0x86 27 11 106 CscRawDataProvi... DEBUG CSC RDO collection does not exist - creating a new one with hash = 11 @@ -3328,6 +4255,7 @@ CscRawDataProvi... DEBUG Is Calibration Enabled?: 0 Calibration Amplitude: 5 CscRawDataProvi... DEBUG Calibration Layer: 0 Latency: 126 CscRawDataProvi... DEBUG Is neutron rejection ON?: 0 Is sparsified data?: 1 CscRawDataProvi... DEBUG CscROD_Decoder Total words received = 58 +CscRawDataProvi... DEBUG RPU Header word 0x500003a CscRawDataProvi... DEBUG RPU ID original = 5 CscRawDataProvi... DEBUG RPU ID Updated = 5 CscRawDataProvi... DEBUG RPU size = 58 @@ -3337,12 +4265,21 @@ CscRawDataProvi... DEBUG Number of precision Cluster Counts - Layer Index = 0 C CscRawDataProvi... DEBUG Number of precision Cluster Counts - Layer Index = 1 Cluster Counts = 0 CscRawDataProvi... DEBUG Number of precision Cluster Counts - Layer Index = 2 Cluster Counts = 2 CscRawDataProvi... DEBUG Number of precision Cluster Counts - Layer Index = 3 Cluster Counts = 1 +CscRawDataProvi... DEBUG Second cluster word 0x1000036 CscRawDataProvi... DEBUG Summed Number of Clusters for non-precision layers 1 CscRawDataProvi... DEBUG Cluster Data Words = 54 CscRawDataProvi... DEBUG Total summed Cluster Count for precision and non-precision layers = 4 +CscRawDataProvi... DEBUG cluster location word 0x16c2f +CscRawDataProvi... DEBUG cluster time size word : stripId (CscIdHelper) 0x10000003 48 CscRawDataProvi... DEBUG idColl clusHashid spuID stationId :: 11 36527 7 51 :: measphi0 L3 strId 48 nStr 3 T0 nSampWords 6 [7.51.-1.4.1.2.3.0.48] +CscRawDataProvi... DEBUG cluster location word 0x16c56 +CscRawDataProvi... DEBUG cluster time size word : stripId (CscIdHelper) 0x10000008 87 CscRawDataProvi... DEBUG idColl clusHashid spuID stationId :: 11 36566 7 51 :: measphi0 L3 strId 87 nStr 8 T0 nSampWords 16 [7.51.-1.4.1.2.3.0.87] +CscRawDataProvi... DEBUG cluster location word 0x16e57 +CscRawDataProvi... DEBUG cluster time size word : stripId (CscIdHelper) 0x10000007 88 CscRawDataProvi... DEBUG idColl clusHashid spuID stationId :: 11 36759 8 51 :: measphi0 L4 strId 88 nStr 7 T0 nSampWords 14 [7.51.-1.4.1.2.4.0.88] +CscRawDataProvi... DEBUG cluster location word 0x16f04 +CscRawDataProvi... DEBUG cluster time size word : stripId (CscIdHelper) 0x10000005 5 CscRawDataProvi... DEBUG idColl clusHashid spuID stationId :: 11 56788 9 51 :: measphi1 L4 strId 5 nStr 5 T0 nSampWords 10 [7.51.-1.4.1.2.4.1.5] CscRawDataProvi... DEBUG ****Total Cluster count = 4 for RPU ID 5 CscRawDataProvi... DEBUG end of CscROD_Decode::fillCollection() @@ -3351,6 +4288,7 @@ CscRawDataProvi... DEBUG in CscROD_Decoder::fillCollection :ROD version 401 CscRawDataProvi... DEBUG CscRawDataProvi... DEBUG =================================================== CscRawDataProvi... DEBUG in CscROD_Decode::fillCollection() - ROD version 2 +CscRawDataProvi... DEBUG DetDescr tag = ATLAS-R2-2016-01-00-01 CscRawDataProvi... DEBUG Online ROD id is 0x87 CscRawDataProvi... DEBUG Online ROD / ROD / collection / subDetector IDs are 0x87 19 3 106 CscRawDataProvi... DEBUG CSC RDO collection does not exist - creating a new one with hash = 3 @@ -3360,26 +4298,49 @@ CscRawDataProvi... DEBUG Is Calibration Enabled?: 0 Calibration Amplitude: 5 CscRawDataProvi... DEBUG Calibration Layer: 0 Latency: 126 CscRawDataProvi... DEBUG Is neutron rejection ON?: 0 Is sparsified data?: 1 CscRawDataProvi... DEBUG CscROD_Decoder Total words received = 92 +CscRawDataProvi... DEBUG RPU Header word 0xd00005c CscRawDataProvi... DEBUG RPU ID original = 13 CscRawDataProvi... DEBUG RPU ID Updated = 11 CscRawDataProvi... DEBUG RPU size = 92 CscRawDataProvi... DEBUG SCA Address = 404298267 +CscRawDataProvi... DEBUG Number of Precision Cluster word 0x1010101 CscRawDataProvi... DEBUG Number of precision Cluster Counts - Layer Index = 0 Cluster Counts = 1 CscRawDataProvi... DEBUG Number of precision Cluster Counts - Layer Index = 1 Cluster Counts = 1 CscRawDataProvi... DEBUG Number of precision Cluster Counts - Layer Index = 2 Cluster Counts = 1 CscRawDataProvi... DEBUG Number of precision Cluster Counts - Layer Index = 3 Cluster Counts = 1 +CscRawDataProvi... DEBUG Second cluster word 0x6000058 CscRawDataProvi... DEBUG Summed Number of Clusters for non-precision layers 6 CscRawDataProvi... DEBUG Cluster Data Words = 88 CscRawDataProvi... DEBUG Total summed Cluster Count for precision and non-precision layers = 10 +CscRawDataProvi... DEBUG cluster location word 0x6855 +CscRawDataProvi... DEBUG cluster time size word : stripId (CscIdHelper) 0x10000004 86 CscRawDataProvi... DEBUG idColl clusHashid spuID stationId :: 3 5461 0 50 :: measphi0 L1 strId 86 nStr 4 T0 nSampWords 8 [7.50.-1.4.1.2.1.0.86] +CscRawDataProvi... DEBUG cluster location word 0x6a7c +CscRawDataProvi... DEBUG cluster time size word : stripId (CscIdHelper) 0x10000003 125 CscRawDataProvi... DEBUG idColl clusHashid spuID stationId :: 3 5692 1 50 :: measphi0 L2 strId 125 nStr 3 T0 nSampWords 6 [7.50.-1.4.1.2.2.0.125] +CscRawDataProvi... DEBUG cluster location word 0x6c77 +CscRawDataProvi... DEBUG cluster time size word : stripId (CscIdHelper) 0x10000005 120 CscRawDataProvi... DEBUG idColl clusHashid spuID stationId :: 3 5879 2 50 :: measphi0 L3 strId 120 nStr 5 T0 nSampWords 10 [7.50.-1.4.1.2.3.0.120] +CscRawDataProvi... DEBUG cluster location word 0x6e71 +CscRawDataProvi... DEBUG cluster time size word : stripId (CscIdHelper) 0x10000003 114 CscRawDataProvi... DEBUG idColl clusHashid spuID stationId :: 3 6065 3 50 :: measphi0 L4 strId 114 nStr 3 T0 nSampWords 6 [7.50.-1.4.1.2.4.0.114] +CscRawDataProvi... DEBUG cluster location word 0x691b +CscRawDataProvi... DEBUG cluster time size word : stripId (CscIdHelper) 0x10000003 28 CscRawDataProvi... DEBUG idColl clusHashid spuID stationId :: 3 25947 4 50 :: measphi1 L1 strId 28 nStr 3 T0 nSampWords 6 [7.50.-1.4.1.2.1.1.28] +CscRawDataProvi... DEBUG cluster location word 0x691f +CscRawDataProvi... DEBUG cluster time size word : stripId (CscIdHelper) 0x10000003 32 CscRawDataProvi... DEBUG idColl clusHashid spuID stationId :: 3 25951 4 50 :: measphi1 L1 strId 32 nStr 3 T0 nSampWords 6 [7.50.-1.4.1.2.1.1.32] +CscRawDataProvi... DEBUG cluster location word 0x6924 +CscRawDataProvi... DEBUG cluster time size word : stripId (CscIdHelper) 0x10000003 37 CscRawDataProvi... DEBUG idColl clusHashid spuID stationId :: 3 25956 4 50 :: measphi1 L1 strId 37 nStr 3 T0 nSampWords 6 [7.50.-1.4.1.2.1.1.37] +CscRawDataProvi... DEBUG cluster location word 0x6b17 +CscRawDataProvi... DEBUG cluster time size word : stripId (CscIdHelper) 0x10000003 24 CscRawDataProvi... DEBUG idColl clusHashid spuID stationId :: 3 25991 4 50 :: measphi1 L2 strId 24 nStr 3 T0 nSampWords 6 [7.50.-1.4.1.2.2.1.24] +CscRawDataProvi... DEBUG cluster location word 0x6d17 +CscRawDataProvi... DEBUG cluster time size word : stripId (CscIdHelper) 0x10000004 24 CscRawDataProvi... DEBUG idColl clusHashid spuID stationId :: 3 26039 4 50 :: measphi1 L3 strId 24 nStr 4 T0 nSampWords 8 [7.50.-1.4.1.2.3.1.24] +CscRawDataProvi... DEBUG cluster location word 0x6f2a +CscRawDataProvi... DEBUG cluster time size word : stripId (CscIdHelper) 0x10000003 43 CscRawDataProvi... DEBUG idColl clusHashid spuID stationId :: 3 26106 4 50 :: measphi1 L4 strId 43 nStr 3 T0 nSampWords 6 [7.50.-1.4.1.2.4.1.43] CscRawDataProvi... DEBUG ****Total Cluster count = 10 for RPU ID 11 CscRawDataProvi... DEBUG end of CscROD_Decode::fillCollection() @@ -3388,6 +4349,7 @@ CscRawDataProvi... DEBUG in CscROD_Decoder::fillCollection :ROD version 401 CscRawDataProvi... DEBUG CscRawDataProvi... DEBUG =================================================== CscRawDataProvi... DEBUG in CscROD_Decode::fillCollection() - ROD version 2 +CscRawDataProvi... DEBUG DetDescr tag = ATLAS-R2-2016-01-00-01 CscRawDataProvi... DEBUG Online ROD id is 0x88 CscRawDataProvi... DEBUG Online ROD / ROD / collection / subDetector IDs are 0x88 28 12 106 CscRawDataProvi... DEBUG CSC RDO collection does not exist - creating a new one with hash = 12 @@ -3397,24 +4359,42 @@ CscRawDataProvi... DEBUG Is Calibration Enabled?: 0 Calibration Amplitude: 5 CscRawDataProvi... DEBUG Calibration Layer: 0 Latency: 126 CscRawDataProvi... DEBUG Is neutron rejection ON?: 0 Is sparsified data?: 1 CscRawDataProvi... DEBUG CscROD_Decoder Total words received = 74 +CscRawDataProvi... DEBUG RPU Header word 0x500004a CscRawDataProvi... DEBUG RPU ID original = 5 CscRawDataProvi... DEBUG RPU ID Updated = 5 CscRawDataProvi... DEBUG RPU size = 74 CscRawDataProvi... DEBUG SCA Address = 1499093852 +CscRawDataProvi... DEBUG Number of Precision Cluster word 0x2000001 CscRawDataProvi... DEBUG Number of precision Cluster Counts - Layer Index = 0 Cluster Counts = 2 CscRawDataProvi... DEBUG Number of precision Cluster Counts - Layer Index = 1 Cluster Counts = 0 CscRawDataProvi... DEBUG Number of precision Cluster Counts - Layer Index = 2 Cluster Counts = 0 CscRawDataProvi... DEBUG Number of precision Cluster Counts - Layer Index = 3 Cluster Counts = 1 +CscRawDataProvi... DEBUG Second cluster word 0x5000046 CscRawDataProvi... DEBUG Summed Number of Clusters for non-precision layers 5 CscRawDataProvi... DEBUG Cluster Data Words = 70 CscRawDataProvi... DEBUG Total summed Cluster Count for precision and non-precision layers = 8 +CscRawDataProvi... DEBUG cluster location word 0x18831 +CscRawDataProvi... DEBUG cluster time size word : stripId (CscIdHelper) 0x10000003 50 CscRawDataProvi... DEBUG idColl clusHashid spuID stationId :: 12 37681 5 51 :: measphi0 L1 strId 50 nStr 3 T0 nSampWords 6 [7.51.-1.5.1.2.1.0.50] +CscRawDataProvi... DEBUG cluster location word 0x188ab +CscRawDataProvi... DEBUG cluster time size word : stripId (CscIdHelper) 0x10000003 172 CscRawDataProvi... DEBUG idColl clusHashid spuID stationId :: 12 37803 5 51 :: measphi0 L1 strId 172 nStr 3 T0 nSampWords 6 [7.51.-1.5.1.2.1.0.172] +CscRawDataProvi... DEBUG cluster location word 0x18e03 +CscRawDataProvi... DEBUG cluster time size word : stripId (CscIdHelper) 0x10000005 4 CscRawDataProvi... DEBUG idColl clusHashid spuID stationId :: 12 38211 8 51 :: measphi0 L4 strId 4 nStr 5 T0 nSampWords 10 [7.51.-1.5.1.2.4.0.4] +CscRawDataProvi... DEBUG cluster location word 0x18908 +CscRawDataProvi... DEBUG cluster time size word : stripId (CscIdHelper) 0x10000003 9 CscRawDataProvi... DEBUG idColl clusHashid spuID stationId :: 12 57032 9 51 :: measphi1 L1 strId 9 nStr 3 T0 nSampWords 6 [7.51.-1.5.1.2.1.1.9] +CscRawDataProvi... DEBUG cluster location word 0x1892e +CscRawDataProvi... DEBUG cluster time size word : stripId (CscIdHelper) 0x10000002 47 CscRawDataProvi... DEBUG idColl clusHashid spuID stationId :: 12 57070 9 51 :: measphi1 L1 strId 47 nStr 2 T0 nSampWords 4 [7.51.-1.5.1.2.1.1.47] +CscRawDataProvi... DEBUG cluster location word 0x18b00 +CscRawDataProvi... DEBUG cluster time size word : stripId (CscIdHelper) 0x10000002 1 CscRawDataProvi... DEBUG idColl clusHashid spuID stationId :: 12 57072 9 51 :: measphi1 L2 strId 1 nStr 2 T0 nSampWords 4 [7.51.-1.5.1.2.2.1.1] +CscRawDataProvi... DEBUG cluster location word 0x18d0d +CscRawDataProvi... DEBUG cluster time size word : stripId (CscIdHelper) 0x10000003 14 CscRawDataProvi... DEBUG idColl clusHashid spuID stationId :: 12 57133 9 51 :: measphi1 L3 strId 14 nStr 3 T0 nSampWords 6 [7.51.-1.5.1.2.3.1.14] +CscRawDataProvi... DEBUG cluster location word 0x18f1c CscRawDataProvi...WARNING DEBUG message limit (500) reached for CscRawDataProvider.CSC_RawDataProviderTool.CscROD_Decoder. Suppressing further output. CscRawDataProvi... DEBUG After processing numColls=32 AthenaEventLoopMgr INFO ===>>> done processing event #186525031, run #327265 1 events processed so far <<<=== @@ -3627,11 +4607,42 @@ CscRawDataProvi... DEBUG Before processing numColls=0 CscRawDataProvi... DEBUG vector of ROB ID to decode: size = 32 CscRawDataProvi... DEBUG After processing numColls=32 AthenaEventLoopMgr INFO ===>>> done processing event #186580451, run #327265 20 events processed so far <<<=== +Domain[ROOT_All] INFO > Deaccess DbDomain READ [ROOT_All] ApplicationMgr INFO Application Manager Stopped successfully +IncidentProcAlg1 INFO Finalize CondInputLoader INFO Finalizing CondInputLoader... +IncidentProcAlg2 INFO Finalize AtlasFieldSvc INFO finalize() successful EventInfoByteSt... INFO finalize IdDictDetDescrCnv INFO in finalize +IOVDbFolder INFO Folder /EXT/DCS/MAGNETS/SENSORDATA (AttrListColl) db-read 1/2 objs/chan/bytes 4/4/20 (( 0.19 ))s +IOVDbFolder INFO Folder /GLOBAL/BField/Maps (AttrListColl) db-read 1/1 objs/chan/bytes 3/3/202 (( 1.04 ))s +IOVDbFolder INFO Folder /MDT/CABLING/MAP_SCHEMA (AttrListColl) db-read 1/1 objs/chan/bytes 2312/2437/216520 (( 0.18 ))s +IOVDbFolder INFO Folder /MDT/CABLING/MEZZANINE_SCHEMA (AttrListColl) db-read 1/1 objs/chan/bytes 24/24/288 (( 0.56 ))s +IOVDbFolder INFO Folder /MDT/RTBLOB (AttrListColl) db-read 0/0 objs/chan/bytes 0/1186/0 (( 0.00 ))s +IOVDbFolder INFO Folder /MDT/T0BLOB (AttrListColl) db-read 0/0 objs/chan/bytes 0/1186/0 (( 0.00 ))s +IOVDbFolder INFO Folder /RPC/CABLING/MAP_SCHEMA (AttrListColl) db-read 1/1 objs/chan/bytes 1/1/222235 (( 0.10 ))s +IOVDbFolder INFO Folder /RPC/CABLING/MAP_SCHEMA_CORR (AttrListColl) db-read 1/1 objs/chan/bytes 1/1/29402 (( 0.46 ))s +IOVDbFolder INFO Folder /RPC/TRIGGER/CM_THR_ETA (AttrListColl) db-read 1/1 objs/chan/bytes 1613/1613/7562651 (( 0.77 ))s +IOVDbFolder INFO Folder /RPC/TRIGGER/CM_THR_PHI (AttrListColl) db-read 1/1 objs/chan/bytes 1612/1612/8096306 (( 0.16 ))s +IOVDbFolder INFO Folder /TGC/CABLING/MAP_SCHEMA (AttrListColl) db-read 1/1 objs/chan/bytes 1/1/3704 (( 0.03 ))s +IOVDbFolder INFO Folder /CSC/FTHOLD (AttrListColl) db-read 1/1 objs/chan/bytes 32/32/322656 (( 0.58 ))s +IOVDbFolder INFO Folder /CSC/NOISE (AttrListColl) db-read 1/1 objs/chan/bytes 32/32/350062 (( 0.11 ))s +IOVDbFolder INFO Folder /CSC/PED (AttrListColl) db-read 1/1 objs/chan/bytes 32/32/411187 (( 0.99 ))s +IOVDbFolder INFO Folder /CSC/PSLOPE (AttrListColl) db-read 1/1 objs/chan/bytes 32/32/353376 (( 5.85 ))s +IOVDbFolder INFO Folder /CSC/RMS (AttrListColl) db-read 1/1 objs/chan/bytes 32/32/411395 (( 0.05 ))s +IOVDbFolder INFO Folder /CSC/STAT (AttrListColl) db-read 1/1 objs/chan/bytes 32/32/230496 (( 0.05 ))s +IOVDbFolder INFO Folder /CSC/T0BASE (AttrListColl) db-read 1/1 objs/chan/bytes 32/32/314380 (( 0.04 ))s +IOVDbFolder INFO Folder /CSC/T0PHASE (AttrListColl) db-read 1/1 objs/chan/bytes 32/32/3136 (( 0.03 ))s +IOVDbSvc INFO bytes in (( 11.19 ))s +IOVDbSvc INFO Connection sqlite://;schema=mycool.db;dbname=CONDBR2 : nConnect: 0 nFolders: 0 ReadTime: (( 0.00 ))s +IOVDbSvc INFO Connection COOLONL_MDT/CONDBR2 : nConnect: 2 nFolders: 2 ReadTime: (( 0.74 ))s +IOVDbSvc INFO Connection COOLONL_RPC/CONDBR2 : nConnect: 2 nFolders: 4 ReadTime: (( 1.50 ))s +IOVDbSvc INFO Connection COOLOFL_MDT/CONDBR2 : nConnect: 1 nFolders: 2 ReadTime: (( 0.00 ))s +IOVDbSvc INFO Connection COOLOFL_CSC/CONDBR2 : nConnect: 2 nFolders: 8 ReadTime: (( 7.71 ))s +IOVDbSvc INFO Connection COOLONL_GLOBAL/CONDBR2 : nConnect: 2 nFolders: 1 ReadTime: (( 1.04 ))s +IOVDbSvc INFO Connection COOLONL_TGC/CONDBR2 : nConnect: 2 nFolders: 1 ReadTime: (( 0.03 ))s +IOVDbSvc INFO Connection COOLOFL_DCS/CONDBR2 : nConnect: 2 nFolders: 1 ReadTime: (( 0.19 ))s AthDictLoaderSvc INFO in finalize... ToolSvc INFO Removing all tools created by ToolSvc ToolSvc.ByteStr... INFO in finalize() @@ -3655,12 +4666,17 @@ ToolSvc.TGCCabl... INFO finalize *****Chrono***** INFO **************************************************************************************************** *****Chrono***** INFO The Final CPU consumption ( Chrono ) Table (ordered) *****Chrono***** INFO **************************************************************************************************** +cObj_ALL INFO Time User : Tot= 0 [us] Ave/Min/Max= 0(+- 0)/ 0/ 0 [us] #= 18 +ChronoStatSvc INFO Time User : Tot= 5.05 [s] #= 1 *****Chrono***** INFO **************************************************************************************************** ChronoStatSvc.f... INFO Service finalized successfully ApplicationMgr INFO Application Manager Finalized successfully ApplicationMgr INFO Application Manager Terminated successfully Listing sources of suppressed message: +===================================================== Message Source | Level | Count +-----------------------------+---------+------------- CscRawDataProvider.CSC_RawDataProviderTool.CscROD_Decoder| DEBUG | 35169 MdtRawDataProvider.MDT_RawDataProviderTool.MdtROD_Decoder| DEBUG | 854603 +===================================================== Py:Athena INFO leaving with code 0: "successful run" diff --git a/Reconstruction/egamma/egammaCaloTools/python/egammaCaloToolsConfig.py b/Reconstruction/egamma/egammaCaloTools/python/egammaCaloToolsConfig.py index a40efe7b4efb2c562e0104eb06a17625a00cf455..b8907c1516245667dd9575da92c0643988d36880 100644 --- a/Reconstruction/egamma/egammaCaloTools/python/egammaCaloToolsConfig.py +++ b/Reconstruction/egamma/egammaCaloTools/python/egammaCaloToolsConfig.py @@ -13,7 +13,7 @@ def CaloFillRectangularClusterCfg(flags): phi_size = 7, cells_name = flags.Egamma.Keys.Input.Cells) - result.addPrivateTool(caloFillRectangularCluster) + result.setPrivateTools(caloFillRectangularCluster) return result #--------------------------------------- diff --git a/Trigger/TrigAlgorithms/TrigT2CaloCommon/python/TrigCaloDataAccessConfig.py b/Trigger/TrigAlgorithms/TrigT2CaloCommon/python/TrigCaloDataAccessConfig.py index 79f5d951a4b95863e32b012a84d7989106c552c7..172ac995f67509cdf89175081c0c6a4388a55ea7 100644 --- a/Trigger/TrigAlgorithms/TrigT2CaloCommon/python/TrigCaloDataAccessConfig.py +++ b/Trigger/TrigAlgorithms/TrigT2CaloCommon/python/TrigCaloDataAccessConfig.py @@ -11,8 +11,8 @@ def createLArRoI_Map( flags ): from LArCabling.LArCablingConf import LArCablingLegacyService cablingTool = LArCablingLegacyService() # this is realy a tool # needed by above - acc.merge( LArFebRodMappingCfg( flags )[0] ) - acc.merge( LArCalibIdMappingCfg( flags )[0] ) + acc.merge( LArFebRodMappingCfg( flags )) + acc.merge( LArCalibIdMappingCfg( flags )) from CaloTriggerTool.CaloTriggerToolConf import CaloTriggerTowerService triggerTowerTool = CaloTriggerTowerService()