diff --git a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_AMetaJobOptions.py b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_AMetaJobOptions.py index 87f3782640609e45342ac8a6684316b55b45630f..15a9b9368cebc75f282ce992f5e923901d013e12 100755 --- a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_AMetaJobOptions.py +++ b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_AMetaJobOptions.py @@ -44,7 +44,7 @@ svcMgr.PoolSvc.FileOpen = "update"; svcMgr.AthenaPoolCnvSvc.CommitInterval = 10; from AthenaPoolCnvSvc.WriteAthenaPool import AthenaPoolOutputStream -Stream1 = AthenaPoolOutputStream( "Stream1", "ROOTTREE:SimplePoolFile5.root" ) +Stream1 = AthenaPoolOutputStream( "Stream1", "ROOTTREE:SimplePoolFile5.root", noTag=True ) Stream1.ItemList += [ "ExampleHitContainer#MyHits" ] Stream1.MetadataItemList += [ "ExampleHitContainer#PedestalWriteData" ] Stream1.ProvideDef = True diff --git a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_AppendFastJobOptions.py b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_AppendFastJobOptions.py index 124cbb6ecfc7552c9b4c4a857a4f4115b6d8d8d8..c9d4ebc6f244d988381808fb245b5134df7ed40a 100644 --- a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_AppendFastJobOptions.py +++ b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_AppendFastJobOptions.py @@ -80,7 +80,7 @@ WriteTag.Magic = 1 topSequence += WriteTag from AthenaPoolCnvSvc.WriteAthenaPool import AthenaPoolOutputStream -Stream2 = AthenaPoolOutputStream ( "Stream2" , "SimplePoolFileB.root" , True ) +Stream2 = AthenaPoolOutputStream ( "Stream2" , "SimplePoolFileB.root" , True, noTag=True ) Stream2.WritingTool.AttributeListKey = "RunEventTag" #-------------------------------------------------------------- diff --git a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_AppendJobOptions.py b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_AppendJobOptions.py index e2df04e65dfe5395444f533666bad3236413acce..ce7eab2768da34d4287755cc017fcb09e7d75e35 100755 --- a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_AppendJobOptions.py +++ b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_AppendJobOptions.py @@ -80,7 +80,7 @@ WriteTag.Magic = 1 topSequence += WriteTag from AthenaPoolCnvSvc.WriteAthenaPool import AthenaPoolOutputStream -Stream1 = AthenaPoolOutputStream ( "Stream1" , "SimplePoolFile2.root" , True ) +Stream1 = AthenaPoolOutputStream ( "Stream1" , "SimplePoolFile2.root" , True, noTag=True ) Stream1.WritingTool.AttributeListKey = "RunEventTag" #-------------------------------------------------------------- diff --git a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_ConcatJobOptions.py b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_ConcatJobOptions.py index 622280073c197dedfa13c497d0c11241904d7eee..f51829f8616fdf7b7ea38debf9dcb2c1a3d19667 100755 --- a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_ConcatJobOptions.py +++ b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_ConcatJobOptions.py @@ -48,7 +48,7 @@ topSequence += AthPoolEx__WriteData("WriteData") # Run OutputStream as an algorithm from AthenaPoolCnvSvc.WriteAthenaPool import AthenaPoolOutputStream -Stream1 = AthenaPoolOutputStream( "Stream1" , "SimplePoolFile1.root", True ) +Stream1 = AthenaPoolOutputStream( "Stream1" , "SimplePoolFile1.root", True, noTag=True ) Stream1.ItemList += [ "ExampleHitContainer#My*" ] #-------------------------------------------------------------- @@ -59,7 +59,7 @@ topSequence += MakeInputDataHeader( StreamName = "Stream1" ) topSequence += AthPoolEx__ReWriteData( "ReWriteData" ) # Run OutputStream as an algorithm -Stream2 = AthenaPoolOutputStream( "Stream2" , "SimplePoolFile3.root", True ) +Stream2 = AthenaPoolOutputStream( "Stream2" , "SimplePoolFile3.root", True, noTag=True ) Stream2.ItemList += [ "ExampleTrackContainer#*Tracks" ] # Must make sure that no OutStream's have been declared diff --git a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_CopyJobOptions.py b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_CopyJobOptions.py index 833aa27c7f7d97b6f75663f3ce6e7f5e27758d46..de7c944b46e1693fb22d5e54eeb4e6a2a6e7795c 100644 --- a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_CopyJobOptions.py +++ b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_CopyJobOptions.py @@ -73,7 +73,7 @@ svcMgr.AthenaPoolCnvSvc.CommitInterval = 10; # Load "user algorithm" top algorithms to be run, and the libraries that house them from AthenaPoolCnvSvc.WriteAthenaPool import AthenaPoolOutputStream -Stream1 = AthenaPoolOutputStream( "Stream1" , "SimplePoolReplica1.root" , True ) +Stream1 = AthenaPoolOutputStream( "Stream1" , "SimplePoolReplica1.root" , True, noTag=True ) Stream1.ItemList += [ "ExampleHitContainer#MyHits" ] Stream1.ExtendProvenanceRecord = FALSE; Stream1.ForceRead = True diff --git a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_FilterJobOptions.py b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_FilterJobOptions.py index e558af06c8d53d34d9dbac13d202fe9522f9bb82..14ab05ceb96d7835db445305b4f9abcc6eb1d8bf 100755 --- a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_FilterJobOptions.py +++ b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_FilterJobOptions.py @@ -82,7 +82,7 @@ topSequence += AthPoolEx__ReadData("ReadData") #--- Secondary Write portion ----- Don't change it !!! #-------------------------------------------------------------- from AthenaPoolCnvSvc.WriteAthenaPool import AthenaPoolOutputStream -Stream1 = AthenaPoolOutputStream( "Stream1" , "SimplePoolFile5.root" , True ) +Stream1 = AthenaPoolOutputStream( "Stream1" , "SimplePoolFile5.root" , True, noTag=True ) Stream1.ItemList += [ "ExampleTrackContainer#MyTracks" ] Stream1.WritingTool.ProcessingTag = "Stream1_derived" diff --git a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_RWBsJobOptions.py b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_RWBsJobOptions.py index 44aeeacfcd6f8ef5217827cbe0b48d56cf9d2811..875de2290f600faebf38befd23a1435549b76b38 100755 --- a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_RWBsJobOptions.py +++ b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_RWBsJobOptions.py @@ -63,7 +63,7 @@ from AthenaPoolExampleAlgorithms.AthenaPoolExampleAlgorithmsConf import AthPoolE topSequence += AthPoolEx__ReadData("ReadData") from AthenaPoolCnvSvc.WriteAthenaPool import AthenaPoolOutputStream -Stream1 = AthenaPoolOutputStream( "Stream1" , "SimplePoolFromRaw.root" , True ) +Stream1 = AthenaPoolOutputStream( "Stream1" , "SimplePoolFromRaw.root" , True, noTag=True ) Stream1.MetadataItemList += [ "ByteStreamMetadataContainer#*" ] from AthenaPoolExampleAlgorithms.AthenaPoolExampleAlgorithmsConf import AthPoolEx__WriteTag diff --git a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_RWcBsJobOptions.py b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_RWcBsJobOptions.py index 3999a583d92ba5f65a49639de0c95588a53a5bd5..dcc6b968277c1b812811c53884333f2404a52929 100644 --- a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_RWcBsJobOptions.py +++ b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_RWcBsJobOptions.py @@ -63,7 +63,7 @@ from AthenaPoolExampleAlgorithms.AthenaPoolExampleAlgorithmsConf import AthPoolE topSequence += AthPoolEx__ReadData("ReadData") from AthenaPoolCnvSvc.WriteAthenaPool import AthenaPoolOutputStream -Stream1 = AthenaPoolOutputStream( "Stream1" , "SimplePoolFromRaw.root" , True ) +Stream1 = AthenaPoolOutputStream( "Stream1" , "SimplePoolFromRaw.root" , True, noTag=True ) Stream1.MetadataItemList += [ "ByteStreamMetadataContainer#*" ] from AthenaPoolExampleAlgorithms.AthenaPoolExampleAlgorithmsConf import AthPoolEx__WriteTag diff --git a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_ReWriteAgainJobOptions.py b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_ReWriteAgainJobOptions.py index 770570db19cab5302b8113f8a75d768cb0141072..2dc117be43b3b3e505171dae86797ab0b56344e1 100644 --- a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_ReWriteAgainJobOptions.py +++ b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_ReWriteAgainJobOptions.py @@ -83,7 +83,7 @@ topSequence += MagicWriteTag #--- Secondary Write portion ----- Don't change it !!! #-------------------------------------------------------------- from AthenaPoolCnvSvc.WriteAthenaPool import AthenaPoolOutputStream -Stream1 = AthenaPoolOutputStream( "Stream1" , "SimplePoolFile3.root" , True ) +Stream1 = AthenaPoolOutputStream( "Stream1" , "SimplePoolFile3.root" , True, noTag=True ) Stream1.ItemList += [ "ExampleTrackContainer#MyTracks" ] #Stream1.ExtendProvenanceRecord = FALSE; #Stream1.WritingTool.ProvenanceTags = [] diff --git a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_WMetaJobOptions.py b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_WMetaJobOptions.py index 3af9e8794b0385996c0820cd6b3c8079ce383f32..3d38ef0046d337f0d577677970f666fe285be41f 100755 --- a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_WMetaJobOptions.py +++ b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_WMetaJobOptions.py @@ -39,7 +39,7 @@ svcMgr.PoolSvc.WriteCatalog = "xmlcatalog_file:Catalog2.xml" svcMgr.AthenaPoolCnvSvc.CommitInterval = 10; from AthenaPoolCnvSvc.WriteAthenaPool import AthenaPoolOutputStream -Stream1 = AthenaPoolOutputStream( "Stream1", "ROOTTREE:SimplePoolFile5.root" ) +Stream1 = AthenaPoolOutputStream( "Stream1", "ROOTTREE:SimplePoolFile5.root", noTag=True ) Stream1.ItemList += [ "ExampleHitContainer#MyHits" ] Stream1.MetadataItemList += [ "ExampleHitContainer#PedestalWriteData" ] """ diff --git a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_WriteFast.ref b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_WriteFast.ref new file mode 100644 index 0000000000000000000000000000000000000000..3d620465bf9a1738240696da0c40a12f713929f0 --- /dev/null +++ b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_WriteFast.ref @@ -0,0 +1,1557 @@ +Fri Mar 31 17:07:21 CEST 2017 +Preloading tcmalloc_minimal.so +Athena INFO including file "AthenaCommon/Preparation.py" +Athena INFO including file "AthenaCommon/Bootstrap.py" +Athena INFO including file "AthenaCommon/Atlas.UnixStandardJob.py" +Athena INFO executing ROOT6Setup +Athena INFO including file "AthenaCommon/Execution.py" +Athena INFO including file "AthenaPoolExampleAlgorithms/AthenaPoolExample_WriteFastJobOptions.py" +Py:ConfigurableDb INFO Read module info for 5278 configurables from 36 genConfDb files +Py:ConfigurableDb INFO No duplicates have been found: that's good ! +Athena INFO including file "AthenaCommon/runbatch.py" +ApplicationMgr INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0 +ApplicationMgr SUCCESS +==================================================================================================================================== + Welcome to ApplicationMgr (GaudiCoreSvc v28r1) + running on lxplus009.cern.ch on Fri Mar 31 17:07:33 2017 +==================================================================================================================================== +ApplicationMgr INFO Successfully loaded modules : AthenaServices +ApplicationMgr INFO Application Manager Configured successfully +ApplicationMgr INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0 +StatusCodeSvc INFO initialize +AthDictLoaderSvc INFO in initialize... +AthDictLoaderSvc INFO acquired Dso-registry +ClassIDSvc INFO getRegistryEntries: read 2251 CLIDRegistry entries for module ALL +ChronoStatSvc INFO Number of skipped events for MemStat-1 +CoreDumpSvc INFO install f-a-t-a-l handler... (flag = -1) +AthenaEventLoopMgr INFO Initializing AthenaEventLoopMgr - package version AthenaServices-00-00-00 +AthMasterSeq INFO Member list: AthSequencer/AthAlgSeq, AthSequencer/AthOutSeq, AthSequencer/AthRegSeq +AthAlgSeq INFO Member list: AthPoolEx::WriteData/WriteData, AthPoolEx::WriteTag/WriteTag, AthPoolEx::WriteTag/MagicWriteTag, AthenaOutputStream/Stream1, AthenaOutputStream/Stream2, AthPoolEx::PassNoneFilter/PassNoneFilter, AthenaOutputStream/Stream3, RegistrationStream/RegStream1, RegistrationStream/RegStream2, RegistrationStream/RegStream3 +WriteData DEBUG Property update for OutputLevel : new value = 2 +WriteData INFO in initialize() +WriteData DEBUG input handles: 0 +WriteData DEBUG output handles: 0 +WriteData DEBUG Data Deps for WriteData +WriteTag INFO in initialize() +MagicWriteTag INFO in initialize() +Stream1.Stream1... DEBUG Property update for OutputLevel : new value = 2 +ClassIDSvc INFO getRegistryEntries: read 1686 CLIDRegistry entries for module ALL +Stream1 DEBUG Property update for OutputLevel : new value = 2 +Stream1 DEBUG In initialize +Stream1 DEBUG Found IDecisionSvc. +DecisionSvc INFO Inserting stream: Stream1 with no Algs +Stream1 DEBUG End initialize +Stream1 DEBUG In initialize +MetaDataSvc INFO Initializing MetaDataSvc - package version AthenaServices-00-00-00 +AthenaPoolCnvSvc DEBUG Property update for OutputLevel : new value = 2 +AthenaPoolCnvSvc INFO Initializing AthenaPoolCnvSvc - package version AthenaPoolCnvSvc-00-00-00 +PoolSvc DEBUG Property update for OutputLevel : new value = 2 +PoolSvc INFO Initializing PoolSvc - package version PoolSvc-00-00-00 +PoolSvc INFO io_register[PoolSvc](xmlcatalog_file:Catalog1.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-ai.cern.ch:8000/atlr)(serverurl=http://aiatlas036.cern.ch:8000/atlr)(serverurl=http://aiatlas034.cern.ch:8000/atlr)(serverurl=http://ccfrontier.in2p3.fr:23128/ccin2p3-AtlasFrontier)(serverurl=http://ccfrontier01.in2p3.fr:23128/ccin2p3-AtlasFrontier)(serverurl=http://ccfrontier05.in2p3.fr:23128/ccin2p3-AtlasFrontier)(proxyurl=http://ca-proxy.cern.ch:3128)(proxyurl=http://ca20.cern.ch:3128)(proxyurl=http://ca17.cern.ch:3128)(proxyurl=http://atlast0fsquid.cern.ch:3128)(proxyurl=http://atlassquid1.cern.ch:3128)(proxyurl=http://atlassquid2.cern.ch:3128)(proxyurl=http://atlassquid4.cern.ch:3128) will be considered for COOL data +DBReplicaSvc INFO Read replica configuration from /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2017-03-30T2225/Athena/22.0.0/InstallArea/x86_64-slc6-gcc62-dbg/share/dbreplica.config +DBReplicaSvc INFO Total of 10 servers found for host lxplus009.cern.ch [ATLF ATLAS_COOLPROD atlas_dd ATLAS_CONFIG INT8R INTR ATONR_COOL ATONR_CONF DEVDB11 ATLF ] +PoolSvc INFO Successfully setup replica sorting algorithm +PoolSvc DEBUG OutputLevel is 2 +PoolSvc INFO Setting up APR FileCatalog and Streams +PoolSvc INFO POOL WriteCatalog is xmlcatalog_file:Catalog1.xml +DbSession Info Open DbSession +Domain[ROOT_All] Info > Access DbDomain READ [ROOT_All] +PoolSvc INFO Re-initializing PoolSvc +Stream1 DEBUG Found StoreGateSvc store. +Stream1 DEBUG Found MetaDataStore store. +OutputStreamSeq... INFO Initializing OutputStreamSequencerSvc - package version AthenaServices-00-00-00 +ClassIDSvc INFO getRegistryEntries: read 1208 CLIDRegistry entries for module ALL +Stream1.Stream1... DEBUG Property update for OutputLevel : new value = 2 +Stream1.Stream1... INFO Initializing Stream1.Stream1Tool - package version OutputStreamAthenaPool-00-00-00 +Stream1.Stream1... INFO streamProperty ProcessingTag = Stream1 +Stream1.Stream1... DEBUG Property update for OutputLevel : new value = 2 +Stream1.Stream1... INFO Initializing Stream1.Stream1_MakeEventStreamInfo - package version OutputStreamAthenaPool-00-00-00 +Stream1 INFO Found HelperTools = PrivateToolHandleArray(['MakeEventStreamInfo/Stream1_MakeEventStreamInfo']) +Stream1 INFO Data output: SimplePoolFile1.root +Stream1 INFO I/O reinitialization... +Stream1 DEBUG End initialize +Stream1 DEBUG input handles: 0 +Stream1 DEBUG output handles: 0 +Stream1 DEBUG Registering all Tools in ToolHandleArray HelperTools +Stream1 DEBUG Adding private ToolHandle tool Stream1.Stream1_MakeEventStreamInfo (MakeEventStreamInfo) from ToolHandleArray HelperTools +Stream1 DEBUG Adding private ToolHandle tool Stream1.Stream1Tool (AthenaPoolOutputStreamTool) +Stream1 DEBUG Data Deps for Stream1 +Stream2.Stream2... DEBUG Property update for OutputLevel : new value = 2 +Stream2 DEBUG Property update for OutputLevel : new value = 2 +Stream2 DEBUG In initialize +Stream2 DEBUG Found IDecisionSvc. +DecisionSvc INFO Inserting stream: Stream2 with no Algs +Stream2 DEBUG End initialize +Stream2 DEBUG In initialize +Stream2 DEBUG Found StoreGateSvc store. +Stream2 DEBUG Found MetaDataStore store. +Stream2.Stream2... DEBUG Property update for OutputLevel : new value = 2 +Stream2.Stream2... INFO Initializing Stream2.Stream2Tool - package version OutputStreamAthenaPool-00-00-00 +Stream2.Stream2... INFO streamProperty ProcessingTag = Stream2 +Stream2.Stream2... DEBUG Property update for OutputLevel : new value = 2 +Stream2.Stream2... INFO Initializing Stream2.Stream2_MakeEventStreamInfo - package version OutputStreamAthenaPool-00-00-00 +Stream2 INFO Found HelperTools = PrivateToolHandleArray(['MakeEventStreamInfo/Stream2_MakeEventStreamInfo']) +Stream2 INFO Data output: SimplePoolFileA.root +Stream2 INFO I/O reinitialization... +Stream2 DEBUG End initialize +Stream2 DEBUG input handles: 0 +Stream2 DEBUG output handles: 0 +Stream2 DEBUG Registering all Tools in ToolHandleArray HelperTools +Stream2 DEBUG Adding private ToolHandle tool Stream2.Stream2_MakeEventStreamInfo (MakeEventStreamInfo) from ToolHandleArray HelperTools +Stream2 DEBUG Adding private ToolHandle tool Stream2.Stream2Tool (AthenaPoolOutputStreamTool) +Stream2 DEBUG Data Deps for Stream2 +DecisionSvc INFO Inserting stream: Stream3 with no Algs +Stream3.Stream3... INFO Initializing Stream3.Stream3Tool - package version OutputStreamAthenaPool-00-00-00 +Stream3.Stream3... INFO streamProperty ProcessingTag = Stream3 +Stream3.Stream3... INFO Initializing Stream3.Stream3_MakeEventStreamInfo - package version OutputStreamAthenaPool-00-00-00 +Stream3 INFO Found HelperTools = PrivateToolHandleArray(['MakeEventStreamInfo/Stream3_MakeEventStreamInfo']) +Stream3 INFO Data output: EmptyPoolFile.root +Stream3 INFO I/O reinitialization... +RegStream1.RegS... DEBUG Property update for OutputLevel : new value = 2 +RegStream1 DEBUG Property update for OutputLevel : new value = 2 +RegStream1 DEBUG In initialize +RegStream1 DEBUG Found IDecisionSvc. +DecisionSvc INFO Inserting stream: RegStream1 with no Algs +RegStream1 DEBUG End initialize +RegStream1 DEBUG In initialize +RegStream1 DEBUG Found 'StoreName':StoreGateSvc store. +RegStream1.TagTool DEBUG Property update for OutputLevel : new value = 2 +RegStream1 DEBUG Tool initialized +RegStream1 DEBUG Retrieved IncidentSvc +RegStream1 DEBUG Added MetaDataStop listener +RegStream1 DEBUG Not class requested by Tool, skipping (40774349,"MagicTag") +RegStream1 DEBUG Not class requested by Tool, skipping (222376821,"Stream1") +RegStream1 DEBUG End initialize +RegStream1 DEBUG input handles: 0 +RegStream1 DEBUG output handles: 0 +RegStream1 DEBUG Adding private ToolHandle tool RegStream1.TagTool (RegistrationStreamTagTool) +RegStream1 DEBUG Data Deps for RegStream1 +RegStream2.RegS... DEBUG Property update for OutputLevel : new value = 2 +RegStream2 DEBUG Property update for OutputLevel : new value = 2 +RegStream2 DEBUG In initialize +RegStream2 DEBUG Found IDecisionSvc. +DecisionSvc INFO Inserting stream: RegStream2 with no Algs +RegStream2 DEBUG End initialize +RegStream2 DEBUG In initialize +RegStream2 DEBUG Found 'StoreName':StoreGateSvc store. +RegStream2.TagTool DEBUG Property update for OutputLevel : new value = 2 +RegStream2 DEBUG Tool initialized +RegStream2 DEBUG Retrieved IncidentSvc +RegStream2 DEBUG Added MetaDataStop listener +RegStream2 DEBUG Not class requested by Tool, skipping (40774349,"RunEventTag") +RegStream2 DEBUG Not class requested by Tool, skipping (222376821,"Stream2") +RegStream2 DEBUG End initialize +RegStream2 DEBUG input handles: 0 +RegStream2 DEBUG output handles: 0 +RegStream2 DEBUG Adding private ToolHandle tool RegStream2.TagTool (RegistrationStreamTagTool) +RegStream2 DEBUG Data Deps for RegStream2 +RegStream3.RegS... DEBUG Property update for OutputLevel : new value = 2 +RegStream3 DEBUG Property update for OutputLevel : new value = 2 +RegStream3 DEBUG In initialize +RegStream3 DEBUG Found IDecisionSvc. +DecisionSvc INFO Inserting stream: RegStream3 with no Algs +RegStream3 DEBUG Trying to add PassNoneFilter of stream RegStream3 to RequireAlg list +RegStream3 DEBUG End initialize +RegStream3 DEBUG In initialize +RegStream3 DEBUG Found 'StoreName':StoreGateSvc store. +RegStream3.TagTool DEBUG Property update for OutputLevel : new value = 2 +RegStream3 DEBUG Tool initialized +RegStream3 DEBUG Retrieved IncidentSvc +RegStream3 DEBUG Added MetaDataStop listener +RegStream3 DEBUG Not class requested by Tool, skipping (40774349,"MagicTag") +RegStream3 DEBUG Not class requested by Tool, skipping (222376821,"Stream2") +RegStream3 DEBUG End initialize +RegStream3 DEBUG input handles: 0 +RegStream3 DEBUG output handles: 0 +RegStream3 DEBUG Adding private ToolHandle tool RegStream3.TagTool (RegistrationStreamTagTool) +RegStream3 DEBUG Data Deps for RegStream3 +HistogramPersis...WARNING Histograms saving not required. +EventSelector INFO Enter McEventSelector Initialization +AthenaEventLoopMgr INFO Setup EventSelector service EventSelector +ApplicationMgr INFO Application Manager Initialized successfully +ClassIDSvc INFO getRegistryEntries: read 544 CLIDRegistry entries for module ALL +ApplicationMgr INFO Application Manager Started successfully +EventPersistenc... INFO Added successfully Conversion service:McCnvSvc +AthenaEventLoopMgr INFO ===>>> start of run 1 <<<=== +AthenaEventLoopMgr INFO ===>>> start processing event #0, run #1 0 events processed so far <<<=== +WriteData DEBUG in execute() +WriteData INFO EventInfo event: 0 run: 1 +WriteData INFO registered all data +WriteTag INFO EventInfo event: 0 run: 1 +WriteTag INFO registered all data +MagicWriteTag INFO EventInfo event: 0 run: 1 +MagicWriteTag INFO registered all data +DbSession Info Open DbSession +Domain[ROOT_All] Info > Access DbDomain UPDATE [ROOT_All] +AthenaPoolCnvSvc DEBUG setAttribute TREE_MAX_SIZE to 1099511627776L +AthenaPoolCnvSvc DEBUG setAttribute DEFAULT_SPLITLEVEL to 0 +AthenaPoolCnvSvc DEBUG setAttribute STREAM_MEMBER_WISE to 1 +AthenaPoolCnvSvc DEBUG setAttribute DEFAULT_BUFFERSIZE to 32000 +Domain[ROOT_All] Info -> Access DbDatabase CREATE [ROOT_All] ???? +Domain[ROOT_All] Info SimplePoolFile1.root +SimplePoolFile1.root Debug --> Access DbContainer CREATE [ROOT_All] ##Shapes +##Shapes Debug Opening +##Shapes Debug attributes# = 1 +##Shapes Debug Opened container ##Shapes of type ROOT_Tree +##Shapes Debug No objects passing selection criteria... Container has 0 Entries in total. +SimplePoolFile1.root Debug --> Access DbContainer CREATE [ROOT_All] ##Links +##Links Debug Opening +##Links Debug attributes# = 1 +##Links Debug Opened container ##Links of type ROOT_Tree +##Links Debug No objects passing selection criteria... Container has 0 Entries in total. +SimplePoolFile1.root Debug --> Access DbContainer CREATE [ROOT_All] ##Params +##Params Debug Opening +##Params Debug attributes# = 1 +##Params Debug Opened container ##Params of type ROOT_Tree +SimplePoolFile1.root Debug --->Adding Assoc :????/##Params [200] (2 , ffffffff) +SimplePoolFile1.root Debug ---->ClassID:???? +##Params Debug No objects passing selection criteria... Container has 0 Entries in total. +AthenaPoolCnvSvc DEBUG setAttribute CONTAINER_SPLITLEVEL to 99 for db: SimplePoolFile1.root and cont: TTree=POOLContainerForm(DataHeaderForm) +Stream1 DEBUG addItemObjects(2101,"*") called +Stream1 DEBUG Key:* +Stream1 DEBUG Added object 2101,"McEventInfo" +Stream1 DEBUG addItemObjects(9102,"MyHits") called +Stream1 DEBUG Key:MyHits +Stream1 DEBUG Added object 9102,"MyHits" +Stream1 DEBUG addItemObjects(9102,"PetersHits") called +Stream1 DEBUG Key:PetersHits +Stream1 DEBUG No object matching 9102,"PetersHits" found +Stream1 DEBUG Collected objects: +Stream1 DEBUG Object/count: EventInfo_McEventInfo, 1 +Stream1 DEBUG Object/count: ExampleHitContainer_MyHits, 1 +StorageSvc Info Building shape according to reflection information using shape ID for: +StorageSvc Info EventInfo_p4 [????] +SimplePoolFile1.root Debug --> Access DbContainer CREA/UPDA [ROOT_Tree] CollectionTree(EventInfo_p4/McEventInfo) +CollectionTree(EventInfo_p4/McEventInfo) Debug Opening +CollectionTree(EventInfo_p4/McEventInfo) Debug attributes# = 1 +CollectionTree(EventInfo_p4/McEventInfo) Debug Branch container 'EventInfo_p4_McEventInfo' +CollectionTree(EventInfo_p4/McEventInfo) Debug Opened container CollectionTree(EventInfo_p4/McEventInfo) of type ROOT_Tree +SimplePoolFile1.root Debug --->Adding Assoc :????/CollectionTree(EventInfo_p4/McEventInfo) [202] (3 , ffffffff) +SimplePoolFile1.root Debug ---->ClassID:???? +SimplePoolFile1.root Debug --->Adding Shape[0 , ????]: [1 Column(s)] +SimplePoolFile1.root Debug ---->Class:EventInfo_p4 +SimplePoolFile1.root Debug ---->[0]:EventInfo_p4 Typ:EventInfo_p4 [21] Size:0 Offset:0 #Elements:1 +StorageSvc Info Building shape according to reflection information using shape ID for: +StorageSvc Info ExampleHitContainer_p1 [????] +SimplePoolFile1.root Debug --> Access DbContainer CREA/UPDA [ROOT_Tree] CollectionTree(ExampleHitContainer_p1/MyHits) +CollectionTree(ExampleHitContainer_p1/MyHits) Debug Opening +CollectionTree(ExampleHitContainer_p1/MyHits) Debug attributes# = 1 +CollectionTree(ExampleHitContainer_p1/MyHits) Debug Branch container 'ExampleHitContainer_p1_MyHits' +CollectionTree(ExampleHitContainer_p1/MyHits) Debug Opened container CollectionTree(ExampleHitContainer_p1/MyHits) of type ROOT_Tree +SimplePoolFile1.root Debug --->Adding Assoc :????/CollectionTree(ExampleHitContainer_p1/MyHits) [202] (4 , ffffffff) +SimplePoolFile1.root Debug ---->ClassID:???? +SimplePoolFile1.root Debug --->Adding Shape[1 , ????]: [1 Column(s)] +SimplePoolFile1.root Debug ---->Class:ExampleHitContainer_p1 +SimplePoolFile1.root Debug ---->[0]:ExampleHitContainer_p1 Typ:ExampleHitContainer_p1 [21] Size:0 Offset:0 #Elements:1 +StorageSvc Info Building shape according to reflection information using shape ID for: +StorageSvc Info DataHeaderForm_p5 [????] +SimplePoolFile1.root Debug --> Access DbContainer CREA/UPDA [ROOT_Tree] POOLContainerForm(DataHeaderForm) +POOLContainerForm(DataHeaderForm) Debug Opening +POOLContainerForm(DataHeaderForm) Debug attributes# = 1 +POOLContainerForm(DataHeaderForm) Debug Branch container 'DataHeaderForm' +POOLContainerForm(DataHeaderForm) Debug Opened container POOLContainerForm(DataHeaderForm) of type ROOT_Tree +SimplePoolFile1.root Debug --->Adding Assoc :????/POOLContainerForm(DataHeaderForm) [202] (5 , ffffffff) +SimplePoolFile1.root Debug ---->ClassID:???? +SimplePoolFile1.root Debug --->Adding Shape[2 , ????]: [1 Column(s)] +SimplePoolFile1.root Debug ---->Class:DataHeaderForm_p5 +SimplePoolFile1.root Debug ---->[0]:DataHeaderForm_p5 Typ:DataHeaderForm_p5 [21] Size:0 Offset:0 #Elements:1 +StorageSvc Info Building shape according to reflection information using shape ID for: +StorageSvc Info DataHeader_p5 [????] +SimplePoolFile1.root Debug --> Access DbContainer CREA/UPDA [ROOT_Tree] POOLContainer(DataHeader) +POOLContainer(DataHeader) Debug Opening +POOLContainer(DataHeader) Debug attributes# = 1 +POOLContainer(DataHeader) Debug Branch container 'DataHeader' +POOLContainer(DataHeader) Debug Opened container POOLContainer(DataHeader) of type ROOT_Tree +SimplePoolFile1.root Debug --->Adding Assoc :????/POOLContainer(DataHeader) [202] (6 , ffffffff) +SimplePoolFile1.root Debug ---->ClassID:???? +SimplePoolFile1.root Debug --->Adding Shape[3 , ????]: [1 Column(s)] +SimplePoolFile1.root Debug ---->Class:DataHeader_p5 +SimplePoolFile1.root Debug ---->[0]:DataHeader_p5 Typ:DataHeader_p5 [21] Size:0 Offset:0 #Elements:1 +StorageSvc Info Building shape according to reflection information using shape ID for: +StorageSvc Info Token [????] +SimplePoolFile1.root Debug --> Access DbContainer CREA/UPDA [ROOT_Tree] POOLCollectionTree(Token) +POOLCollectionTree(Token) Debug Opening +POOLCollectionTree(Token) Debug attributes# = 1 +POOLCollectionTree(Token) Debug Branch container 'Token' +POOLCollectionTree(Token) Debug Opened container POOLCollectionTree(Token) of type ROOT_Tree +SimplePoolFile1.root Debug --->Adding Assoc :????/POOLCollectionTree(Token) [202] (7 , ffffffff) +SimplePoolFile1.root Debug ---->ClassID:???? +SimplePoolFile1.root Debug --->Adding Shape[4 , ????]: [1 Column(s)] +SimplePoolFile1.root Debug ---->Class:Token +SimplePoolFile1.root Debug ---->[0]:Token Typ:Token [18] Size:0 Offset:0 #Elements:1 +StorageSvc Info Building shape according to reflection information using shape ID for: +StorageSvc Info unsigned int [????] +SimplePoolFile1.root Debug --> Access DbContainer CREA/UPDA [ROOT_Tree] POOLCollectionTree(RunNumber) +POOLCollectionTree(RunNumber) Debug Opening +POOLCollectionTree(RunNumber) Debug attributes# = 1 +POOLCollectionTree(RunNumber) Debug Branch container 'RunNumber' +POOLCollectionTree(RunNumber) Debug Opened container POOLCollectionTree(RunNumber) of type ROOT_Tree +SimplePoolFile1.root Debug --->Adding Assoc :????/POOLCollectionTree(RunNumber) [202] (8 , ffffffff) +SimplePoolFile1.root Debug ---->ClassID:???? +SimplePoolFile1.root Debug --->Adding Shape[5 , ????]: [1 Column(s)] +SimplePoolFile1.root Debug ---->Class:unsigned int +SimplePoolFile1.root Debug ---->[0]:unsigned int Typ:unsigned int [3] Size:0 Offset:0 #Elements:1 +SimplePoolFile1.root Debug --> Access DbContainer CREA/UPDA [ROOT_Tree] POOLCollectionTree(EventNumber) +POOLCollectionTree(EventNumber) Debug Opening +POOLCollectionTree(EventNumber) Debug attributes# = 1 +POOLCollectionTree(EventNumber) Debug Branch container 'EventNumber' +POOLCollectionTree(EventNumber) Debug Opened container POOLCollectionTree(EventNumber) of type ROOT_Tree +SimplePoolFile1.root Debug --->Adding Assoc :????/POOLCollectionTree(EventNumber) [202] (9 , ffffffff) +SimplePoolFile1.root Debug ---->ClassID:???? +SimplePoolFile1.root Debug --> Access DbContainer CREA/UPDA [ROOT_Tree] POOLCollectionTree(MagicNumber) +POOLCollectionTree(MagicNumber) Debug Opening +POOLCollectionTree(MagicNumber) Debug attributes# = 1 +POOLCollectionTree(MagicNumber) Debug Branch container 'MagicNumber' +POOLCollectionTree(MagicNumber) Debug Opened container POOLCollectionTree(MagicNumber) of type ROOT_Tree +SimplePoolFile1.root Debug --->Adding Assoc :????/POOLCollectionTree(MagicNumber) [202] (a , ffffffff) +SimplePoolFile1.root Debug ---->ClassID:???? +ClassIDSvc INFO getRegistryEntries: read 126 CLIDRegistry entries for module ALL +SimplePoolFile1.root Debug --> Access DbContainer CREA/UPDA [ROOT_Tree] POOLContainer(basic/DataHeader) +POOLContainer(basic/DataHeader) Debug Opening +POOLContainer(basic/DataHeader) Debug attributes# = 1 +POOLContainer(basic/DataHeader) Debug Branch container 'basic_DataHeader' +POOLContainer(basic/DataHeader) Debug Opened container POOLContainer(basic/DataHeader) of type ROOT_Tree +SimplePoolFile1.root Debug --->Adding Assoc :????/POOLContainer(basic/DataHeader) [202] (b , ffffffff) +SimplePoolFile1.root Debug ---->ClassID:???? +AthenaPoolCnvSvc DEBUG setAttribute BRANCH_BASKET_SIZE to 256000 for db: SimplePoolFile1.root and cont: POOLContainer(DataHeader) +AthenaPoolCnvSvc DEBUG setAttribute BRANCH_BASKET_SIZE to 1024000 for db: SimplePoolFile1.root and cont: POOLContainerForm(DataHeaderForm) +Domain[ROOT_All] Info -> Access DbDatabase CREATE [ROOT_All] ???? +Domain[ROOT_All] Info SimplePoolFileA.root +SimplePoolFileA.root Debug --> Access DbContainer CREATE [ROOT_All] ##Shapes +##Shapes Debug Opening +##Shapes Debug attributes# = 1 +##Shapes Debug Opened container ##Shapes of type ROOT_Tree +##Shapes Debug No objects passing selection criteria... Container has 0 Entries in total. +SimplePoolFileA.root Debug --> Access DbContainer CREATE [ROOT_All] ##Links +##Links Debug Opening +##Links Debug attributes# = 1 +##Links Debug Opened container ##Links of type ROOT_Tree +##Links Debug No objects passing selection criteria... Container has 0 Entries in total. +SimplePoolFileA.root Debug --> Access DbContainer CREATE [ROOT_All] ##Params +##Params Debug Opening +##Params Debug attributes# = 1 +##Params Debug Opened container ##Params of type ROOT_Tree +SimplePoolFileA.root Debug --->Adding Assoc :????/##Params [200] (2 , ffffffff) +SimplePoolFileA.root Debug ---->ClassID:???? +##Params Debug No objects passing selection criteria... Container has 0 Entries in total. +AthenaPoolCnvSvc DEBUG setAttribute CONTAINER_SPLITLEVEL to 99 for db: SimplePoolFileA.root and cont: TTree=POOLContainerForm(DataHeaderForm) +Stream2 DEBUG addItemObjects(2101,"*") called +Stream2 DEBUG Key:* +Stream2 DEBUG Added object 2101,"McEventInfo" +Stream2 DEBUG addItemObjects(9102,"*") called +Stream2 DEBUG Key:* +Stream2 DEBUG Collected objects: +Stream2 DEBUG Object/count: EventInfo_McEventInfo, 1 +SimplePoolFileA.root Debug --> Access DbContainer CREA/UPDA [ROOT_Tree] CollectionTree(EventInfo_p4/McEventInfo) +CollectionTree(EventInfo_p4/McEventInfo) Debug Opening +CollectionTree(EventInfo_p4/McEventInfo) Debug attributes# = 1 +CollectionTree(EventInfo_p4/McEventInfo) Debug Branch container 'EventInfo_p4_McEventInfo' +CollectionTree(EventInfo_p4/McEventInfo) Debug Opened container CollectionTree(EventInfo_p4/McEventInfo) of type ROOT_Tree +SimplePoolFileA.root Debug --->Adding Assoc :????/CollectionTree(EventInfo_p4/McEventInfo) [202] (3 , ffffffff) +SimplePoolFileA.root Debug ---->ClassID:???? +SimplePoolFileA.root Debug --->Adding Shape[0 , ????]: [1 Column(s)] +SimplePoolFileA.root Debug ---->Class:EventInfo_p4 +SimplePoolFileA.root Debug ---->[0]:EventInfo_p4 Typ:EventInfo_p4 [21] Size:0 Offset:0 #Elements:1 +SimplePoolFileA.root Debug --> Access DbContainer CREA/UPDA [ROOT_Tree] POOLContainerForm(DataHeaderForm) +POOLContainerForm(DataHeaderForm) Debug Opening +POOLContainerForm(DataHeaderForm) Debug attributes# = 1 +POOLContainerForm(DataHeaderForm) Debug Branch container 'DataHeaderForm' +POOLContainerForm(DataHeaderForm) Debug Opened container POOLContainerForm(DataHeaderForm) of type ROOT_Tree +SimplePoolFileA.root Debug --->Adding Assoc :????/POOLContainerForm(DataHeaderForm) [202] (4 , ffffffff) +SimplePoolFileA.root Debug ---->ClassID:???? +SimplePoolFileA.root Debug --->Adding Shape[1 , ????]: [1 Column(s)] +SimplePoolFileA.root Debug ---->Class:DataHeaderForm_p5 +SimplePoolFileA.root Debug ---->[0]:DataHeaderForm_p5 Typ:DataHeaderForm_p5 [21] Size:0 Offset:0 #Elements:1 +SimplePoolFileA.root Debug --> Access DbContainer CREA/UPDA [ROOT_Tree] POOLContainer(DataHeader) +POOLContainer(DataHeader) Debug Opening +POOLContainer(DataHeader) Debug attributes# = 1 +POOLContainer(DataHeader) Debug Branch container 'DataHeader' +POOLContainer(DataHeader) Debug Opened container POOLContainer(DataHeader) of type ROOT_Tree +SimplePoolFileA.root Debug --->Adding Assoc :????/POOLContainer(DataHeader) [202] (5 , ffffffff) +SimplePoolFileA.root Debug ---->ClassID:???? +SimplePoolFileA.root Debug --->Adding Shape[2 , ????]: [1 Column(s)] +SimplePoolFileA.root Debug ---->Class:DataHeader_p5 +SimplePoolFileA.root Debug ---->[0]:DataHeader_p5 Typ:DataHeader_p5 [21] Size:0 Offset:0 #Elements:1 +SimplePoolFileA.root Debug --> Access DbContainer CREA/UPDA [ROOT_Tree] POOLCollectionTree(Token) +POOLCollectionTree(Token) Debug Opening +POOLCollectionTree(Token) Debug attributes# = 1 +POOLCollectionTree(Token) Debug Branch container 'Token' +POOLCollectionTree(Token) Debug Opened container POOLCollectionTree(Token) of type ROOT_Tree +SimplePoolFileA.root Debug --->Adding Assoc :????/POOLCollectionTree(Token) [202] (6 , ffffffff) +SimplePoolFileA.root Debug ---->ClassID:???? +SimplePoolFileA.root Debug --->Adding Shape[3 , ????]: [1 Column(s)] +SimplePoolFileA.root Debug ---->Class:Token +SimplePoolFileA.root Debug ---->[0]:Token Typ:Token [18] Size:0 Offset:0 #Elements:1 +SimplePoolFileA.root Debug --> Access DbContainer CREA/UPDA [ROOT_Tree] POOLCollectionTree(RunNumber) +POOLCollectionTree(RunNumber) Debug Opening +POOLCollectionTree(RunNumber) Debug attributes# = 1 +POOLCollectionTree(RunNumber) Debug Branch container 'RunNumber' +POOLCollectionTree(RunNumber) Debug Opened container POOLCollectionTree(RunNumber) of type ROOT_Tree +SimplePoolFileA.root Debug --->Adding Assoc :????/POOLCollectionTree(RunNumber) [202] (7 , ffffffff) +SimplePoolFileA.root Debug ---->ClassID:???? +SimplePoolFileA.root Debug --->Adding Shape[4 , ????]: [1 Column(s)] +SimplePoolFileA.root Debug ---->Class:unsigned int +SimplePoolFileA.root Debug ---->[0]:unsigned int Typ:unsigned int [3] Size:0 Offset:0 #Elements:1 +SimplePoolFileA.root Debug --> Access DbContainer CREA/UPDA [ROOT_Tree] POOLCollectionTree(EventNumber) +POOLCollectionTree(EventNumber) Debug Opening +POOLCollectionTree(EventNumber) Debug attributes# = 1 +POOLCollectionTree(EventNumber) Debug Branch container 'EventNumber' +POOLCollectionTree(EventNumber) Debug Opened container POOLCollectionTree(EventNumber) of type ROOT_Tree +SimplePoolFileA.root Debug --->Adding Assoc :????/POOLCollectionTree(EventNumber) [202] (8 , ffffffff) +SimplePoolFileA.root Debug ---->ClassID:???? +SimplePoolFileA.root Debug --> Access DbContainer CREA/UPDA [ROOT_Tree] POOLCollectionTree(MagicNumber) +POOLCollectionTree(MagicNumber) Debug Opening +POOLCollectionTree(MagicNumber) Debug attributes# = 1 +POOLCollectionTree(MagicNumber) Debug Branch container 'MagicNumber' +POOLCollectionTree(MagicNumber) Debug Opened container POOLCollectionTree(MagicNumber) of type ROOT_Tree +SimplePoolFileA.root Debug --->Adding Assoc :????/POOLCollectionTree(MagicNumber) [202] (9 , ffffffff) +SimplePoolFileA.root Debug ---->ClassID:???? +SimplePoolFileA.root Debug --> Access DbContainer CREA/UPDA [ROOT_Tree] POOLContainer(basic/DataHeader) +POOLContainer(basic/DataHeader) Debug Opening +POOLContainer(basic/DataHeader) Debug attributes# = 1 +POOLContainer(basic/DataHeader) Debug Branch container 'basic_DataHeader' +POOLContainer(basic/DataHeader) Debug Opened container POOLContainer(basic/DataHeader) of type ROOT_Tree +SimplePoolFileA.root Debug --->Adding Assoc :????/POOLContainer(basic/DataHeader) [202] (a , ffffffff) +SimplePoolFileA.root Debug ---->ClassID:???? +AthenaPoolCnvSvc DEBUG setAttribute BRANCH_BASKET_SIZE to 256000 for db: SimplePoolFileA.root and cont: POOLContainer(DataHeader) +AthenaPoolCnvSvc DEBUG setAttribute BRANCH_BASKET_SIZE to 1024000 for db: SimplePoolFileA.root and cont: POOLContainerForm(DataHeaderForm) +RegStream1 DEBUG RegistrationStream execute +RegStream1 DEBUG getRefs: Not DataHeader, skipping (40774349,"MagicTag") +RegStream1 DEBUG get ref for (222376821,"Stream1") +RegStream1 DEBUG Retrieved DataHeader with key Stream1 +RegStream1 DEBUG Pushing back ref [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000000] for Stream1 +RegStream1 DEBUG Setting tagKey to MagicTag +RegStream1 DEBUG Not class requested by Tool, skipping (222376821,"Stream1") +PoolSvc INFO Writing ExplicitROOT Collection - do not pass session pointer +RootCollection Info Opening Collection File SimplePoolCollection1.root in mode: UPDATE +RootCollection Debug File SimplePoolCollection1.root does not exist. +RootCollection Info File SimplePoolCollection1.root opened +RootCollection Debug Created Collection TTree. Collection file will be SimplePoolCollection1.root +RootCollectionSchemaEditor Debug Created Branch Token, Type=Token +RootCollection Info Root collection opened, size = 0 +POOLCollFactory Debug Generated new ID for collection PFN:SimplePoolCollection1.root GUID=???? +RootCollection::Metadata Info ****** Created metadata tree in the collection file +RootCollection Debug Commit: saving collection TTree to file: SimplePoolCollection1.root +RootCollection Debug bytes written to TTree ???? +RootCollection::MetadataCommit Debug Bytes written to the Metadata TTree ???? +RootCollectionSchemaEditor Debug Created Branch RunNumber, Type=unsigned int +RootCollectionSchemaEditor Debug Created Branch EventNumber, Type=unsigned int +RootCollectionSchemaEditor Debug Created Branch MagicNumber, Type=unsigned int +RegStream1.TagTool INFO No Primary Key defined +RootCollection Debug Collection size=1 +RegStream2 DEBUG RegistrationStream execute +RegStream2 DEBUG getRefs: Not DataHeader, skipping (40774349,"RunEventTag") +RegStream2 DEBUG get ref for (222376821,"Stream2") +RegStream2 DEBUG Retrieved DataHeader with key Stream2 +RegStream2 DEBUG Pushing back ref [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000000] for Stream2 +RegStream2 DEBUG Setting tagKey to RunEventTag +RegStream2 DEBUG Not class requested by Tool, skipping (222376821,"Stream2") +PoolSvc INFO Writing ExplicitROOT Collection - do not pass session pointer +RootCollection Info Opening Collection File SimplePoolCollection2.root in mode: UPDATE +RootCollection Debug File SimplePoolCollection2.root does not exist. +RootCollection Info File SimplePoolCollection2.root opened +RootCollection Debug Created Collection TTree. Collection file will be SimplePoolCollection2.root +RootCollectionSchemaEditor Debug Created Branch Token, Type=Token +RootCollection Info Root collection opened, size = 0 +POOLCollFactory Debug Generated new ID for collection PFN:SimplePoolCollection2.root GUID=???? +RootCollection::Metadata Info ****** Created metadata tree in the collection file +RootCollection Debug Commit: saving collection TTree to file: SimplePoolCollection2.root +RootCollection Debug bytes written to TTree ???? +RootCollection::MetadataCommit Debug Bytes written to the Metadata TTree ???? +RootCollectionSchemaEditor Debug Created Branch RunNumber, Type=unsigned int +RootCollectionSchemaEditor Debug Created Branch EventNumber, Type=unsigned int +RootCollectionSchemaEditor Debug Created Branch MagicNumber, Type=unsigned int +RegStream2.TagTool INFO No Primary Key defined +RootCollection Debug Collection size=1 +RegStream3 DEBUG RegistrationStream execute +RegStream3 DEBUG Event rejected by filtering +AthenaEventLoopMgr INFO ===>>> done processing event #0, run #1 1 events processed so far <<<=== +AthenaEventLoopMgr INFO ===>>> start processing event #1, run #1 1 events processed so far <<<=== +WriteData DEBUG in execute() +WriteData INFO EventInfo event: 1 run: 1 +WriteData INFO registered all data +WriteTag INFO EventInfo event: 1 run: 1 +WriteTag INFO registered all data +MagicWriteTag INFO EventInfo event: 1 run: 1 +MagicWriteTag INFO registered all data +Stream1 DEBUG addItemObjects(2101,"*") called +Stream1 DEBUG Key:* +Stream1 DEBUG Added object 2101,"McEventInfo" +Stream1 DEBUG addItemObjects(9102,"MyHits") called +Stream1 DEBUG Key:MyHits +Stream1 DEBUG Added object 9102,"MyHits" +Stream1 DEBUG addItemObjects(9102,"PetersHits") called +Stream1 DEBUG Key:PetersHits +Stream1 DEBUG No object matching 9102,"PetersHits" found +Stream1 DEBUG Collected objects: +Stream1 DEBUG Object/count: EventInfo_McEventInfo, 2 +Stream1 DEBUG Object/count: ExampleHitContainer_MyHits, 2 +Stream2 DEBUG addItemObjects(2101,"*") called +Stream2 DEBUG Key:* +Stream2 DEBUG Added object 2101,"McEventInfo" +Stream2 DEBUG addItemObjects(9102,"*") called +Stream2 DEBUG Key:* +Stream2 DEBUG Collected objects: +Stream2 DEBUG Object/count: EventInfo_McEventInfo, 2 +RegStream1 DEBUG RegistrationStream execute +RegStream1 DEBUG getRefs: Not DataHeader, skipping (40774349,"MagicTag") +RegStream1 DEBUG get ref for (222376821,"Stream1") +RegStream1 DEBUG Retrieved DataHeader with key Stream1 +RegStream1 DEBUG Pushing back ref [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000001] for Stream1 +RegStream1 DEBUG Setting tagKey to MagicTag +RegStream1 DEBUG Not class requested by Tool, skipping (222376821,"Stream1") +RootCollection Debug Collection size=2 +RegStream2 DEBUG RegistrationStream execute +RegStream2 DEBUG getRefs: Not DataHeader, skipping (40774349,"RunEventTag") +RegStream2 DEBUG get ref for (222376821,"Stream2") +RegStream2 DEBUG Retrieved DataHeader with key Stream2 +RegStream2 DEBUG Pushing back ref [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000001] for Stream2 +RegStream2 DEBUG Setting tagKey to RunEventTag +RegStream2 DEBUG Not class requested by Tool, skipping (222376821,"Stream2") +RootCollection Debug Collection size=2 +RegStream3 DEBUG RegistrationStream execute +RegStream3 DEBUG Event rejected by filtering +AthenaEventLoopMgr INFO ===>>> done processing event #1, run #1 2 events processed so far <<<=== +AthenaEventLoopMgr INFO ===>>> start processing event #2, run #1 2 events processed so far <<<=== +WriteData DEBUG in execute() +WriteData INFO EventInfo event: 2 run: 1 +WriteData INFO registered all data +WriteTag INFO EventInfo event: 2 run: 1 +WriteTag INFO registered all data +MagicWriteTag INFO EventInfo event: 2 run: 1 +MagicWriteTag INFO registered all data +Stream1 DEBUG addItemObjects(2101,"*") called +Stream1 DEBUG Key:* +Stream1 DEBUG Added object 2101,"McEventInfo" +Stream1 DEBUG addItemObjects(9102,"MyHits") called +Stream1 DEBUG Key:MyHits +Stream1 DEBUG Added object 9102,"MyHits" +Stream1 DEBUG addItemObjects(9102,"PetersHits") called +Stream1 DEBUG Key:PetersHits +Stream1 DEBUG No object matching 9102,"PetersHits" found +Stream1 DEBUG Collected objects: +Stream1 DEBUG Object/count: EventInfo_McEventInfo, 3 +Stream1 DEBUG Object/count: ExampleHitContainer_MyHits, 3 +Stream2 DEBUG addItemObjects(2101,"*") called +Stream2 DEBUG Key:* +Stream2 DEBUG Added object 2101,"McEventInfo" +Stream2 DEBUG addItemObjects(9102,"*") called +Stream2 DEBUG Key:* +Stream2 DEBUG Collected objects: +Stream2 DEBUG Object/count: EventInfo_McEventInfo, 3 +RegStream1 DEBUG RegistrationStream execute +RegStream1 DEBUG getRefs: Not DataHeader, skipping (40774349,"MagicTag") +RegStream1 DEBUG get ref for (222376821,"Stream1") +RegStream1 DEBUG Retrieved DataHeader with key Stream1 +RegStream1 DEBUG Pushing back ref [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000002] for Stream1 +RegStream1 DEBUG Setting tagKey to MagicTag +RegStream1 DEBUG Not class requested by Tool, skipping (222376821,"Stream1") +RootCollection Debug Collection size=3 +RegStream2 DEBUG RegistrationStream execute +RegStream2 DEBUG getRefs: Not DataHeader, skipping (40774349,"RunEventTag") +RegStream2 DEBUG get ref for (222376821,"Stream2") +RegStream2 DEBUG Retrieved DataHeader with key Stream2 +RegStream2 DEBUG Pushing back ref [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000002] for Stream2 +RegStream2 DEBUG Setting tagKey to RunEventTag +RegStream2 DEBUG Not class requested by Tool, skipping (222376821,"Stream2") +RootCollection Debug Collection size=3 +RegStream3 DEBUG RegistrationStream execute +RegStream3 DEBUG Event rejected by filtering +AthenaEventLoopMgr INFO ===>>> done processing event #2, run #1 3 events processed so far <<<=== +AthenaEventLoopMgr INFO ===>>> start processing event #3, run #1 3 events processed so far <<<=== +WriteData DEBUG in execute() +WriteData INFO EventInfo event: 3 run: 1 +WriteData INFO registered all data +WriteTag INFO EventInfo event: 3 run: 1 +WriteTag INFO registered all data +MagicWriteTag INFO EventInfo event: 3 run: 1 +MagicWriteTag INFO registered all data +Stream1 DEBUG addItemObjects(2101,"*") called +Stream1 DEBUG Key:* +Stream1 DEBUG Added object 2101,"McEventInfo" +Stream1 DEBUG addItemObjects(9102,"MyHits") called +Stream1 DEBUG Key:MyHits +Stream1 DEBUG Added object 9102,"MyHits" +Stream1 DEBUG addItemObjects(9102,"PetersHits") called +Stream1 DEBUG Key:PetersHits +Stream1 DEBUG No object matching 9102,"PetersHits" found +Stream1 DEBUG Collected objects: +Stream1 DEBUG Object/count: EventInfo_McEventInfo, 4 +Stream1 DEBUG Object/count: ExampleHitContainer_MyHits, 4 +Stream2 DEBUG addItemObjects(2101,"*") called +Stream2 DEBUG Key:* +Stream2 DEBUG Added object 2101,"McEventInfo" +Stream2 DEBUG addItemObjects(9102,"*") called +Stream2 DEBUG Key:* +Stream2 DEBUG Collected objects: +Stream2 DEBUG Object/count: EventInfo_McEventInfo, 4 +RegStream1 DEBUG RegistrationStream execute +RegStream1 DEBUG getRefs: Not DataHeader, skipping (40774349,"MagicTag") +RegStream1 DEBUG get ref for (222376821,"Stream1") +RegStream1 DEBUG Retrieved DataHeader with key Stream1 +RegStream1 DEBUG Pushing back ref [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000003] for Stream1 +RegStream1 DEBUG Setting tagKey to MagicTag +RegStream1 DEBUG Not class requested by Tool, skipping (222376821,"Stream1") +RootCollection Debug Collection size=4 +RegStream2 DEBUG RegistrationStream execute +RegStream2 DEBUG getRefs: Not DataHeader, skipping (40774349,"RunEventTag") +RegStream2 DEBUG get ref for (222376821,"Stream2") +RegStream2 DEBUG Retrieved DataHeader with key Stream2 +RegStream2 DEBUG Pushing back ref [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000003] for Stream2 +RegStream2 DEBUG Setting tagKey to RunEventTag +RegStream2 DEBUG Not class requested by Tool, skipping (222376821,"Stream2") +RootCollection Debug Collection size=4 +RegStream3 DEBUG RegistrationStream execute +RegStream3 DEBUG Event rejected by filtering +AthenaEventLoopMgr INFO ===>>> done processing event #3, run #1 4 events processed so far <<<=== +AthenaEventLoopMgr INFO ===>>> start processing event #4, run #1 4 events processed so far <<<=== +WriteData DEBUG in execute() +WriteData INFO EventInfo event: 4 run: 1 +WriteData INFO registered all data +WriteTag INFO EventInfo event: 4 run: 1 +WriteTag INFO registered all data +MagicWriteTag INFO EventInfo event: 4 run: 1 +MagicWriteTag INFO registered all data +Stream1 DEBUG addItemObjects(2101,"*") called +Stream1 DEBUG Key:* +Stream1 DEBUG Added object 2101,"McEventInfo" +Stream1 DEBUG addItemObjects(9102,"MyHits") called +Stream1 DEBUG Key:MyHits +Stream1 DEBUG Added object 9102,"MyHits" +Stream1 DEBUG addItemObjects(9102,"PetersHits") called +Stream1 DEBUG Key:PetersHits +Stream1 DEBUG No object matching 9102,"PetersHits" found +Stream1 DEBUG Collected objects: +Stream1 DEBUG Object/count: EventInfo_McEventInfo, 5 +Stream1 DEBUG Object/count: ExampleHitContainer_MyHits, 5 +Stream2 DEBUG addItemObjects(2101,"*") called +Stream2 DEBUG Key:* +Stream2 DEBUG Added object 2101,"McEventInfo" +Stream2 DEBUG addItemObjects(9102,"*") called +Stream2 DEBUG Key:* +Stream2 DEBUG Collected objects: +Stream2 DEBUG Object/count: EventInfo_McEventInfo, 5 +RegStream1 DEBUG RegistrationStream execute +RegStream1 DEBUG getRefs: Not DataHeader, skipping (40774349,"MagicTag") +RegStream1 DEBUG get ref for (222376821,"Stream1") +RegStream1 DEBUG Retrieved DataHeader with key Stream1 +RegStream1 DEBUG Pushing back ref [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000004] for Stream1 +RegStream1 DEBUG Setting tagKey to MagicTag +RegStream1 DEBUG Not class requested by Tool, skipping (222376821,"Stream1") +RootCollection Debug Collection size=5 +RegStream2 DEBUG RegistrationStream execute +RegStream2 DEBUG getRefs: Not DataHeader, skipping (40774349,"RunEventTag") +RegStream2 DEBUG get ref for (222376821,"Stream2") +RegStream2 DEBUG Retrieved DataHeader with key Stream2 +RegStream2 DEBUG Pushing back ref [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000004] for Stream2 +RegStream2 DEBUG Setting tagKey to RunEventTag +RegStream2 DEBUG Not class requested by Tool, skipping (222376821,"Stream2") +RootCollection Debug Collection size=5 +RegStream3 DEBUG RegistrationStream execute +RegStream3 DEBUG Event rejected by filtering +AthenaEventLoopMgr INFO ===>>> done processing event #4, run #1 5 events processed so far <<<=== +AthenaEventLoopMgr INFO ===>>> start processing event #5, run #1 5 events processed so far <<<=== +WriteData DEBUG in execute() +WriteData INFO EventInfo event: 5 run: 1 +WriteData INFO registered all data +WriteTag INFO EventInfo event: 5 run: 1 +WriteTag INFO registered all data +MagicWriteTag INFO EventInfo event: 5 run: 1 +MagicWriteTag INFO registered all data +Stream1 DEBUG addItemObjects(2101,"*") called +Stream1 DEBUG Key:* +Stream1 DEBUG Added object 2101,"McEventInfo" +Stream1 DEBUG addItemObjects(9102,"MyHits") called +Stream1 DEBUG Key:MyHits +Stream1 DEBUG Added object 9102,"MyHits" +Stream1 DEBUG addItemObjects(9102,"PetersHits") called +Stream1 DEBUG Key:PetersHits +Stream1 DEBUG No object matching 9102,"PetersHits" found +Stream1 DEBUG Collected objects: +Stream1 DEBUG Object/count: EventInfo_McEventInfo, 6 +Stream1 DEBUG Object/count: ExampleHitContainer_MyHits, 6 +Stream2 DEBUG addItemObjects(2101,"*") called +Stream2 DEBUG Key:* +Stream2 DEBUG Added object 2101,"McEventInfo" +Stream2 DEBUG addItemObjects(9102,"*") called +Stream2 DEBUG Key:* +Stream2 DEBUG Collected objects: +Stream2 DEBUG Object/count: EventInfo_McEventInfo, 6 +RegStream1 DEBUG RegistrationStream execute +RegStream1 DEBUG getRefs: Not DataHeader, skipping (40774349,"MagicTag") +RegStream1 DEBUG get ref for (222376821,"Stream1") +RegStream1 DEBUG Retrieved DataHeader with key Stream1 +RegStream1 DEBUG Pushing back ref [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000005] for Stream1 +RegStream1 DEBUG Setting tagKey to MagicTag +RegStream1 DEBUG Not class requested by Tool, skipping (222376821,"Stream1") +RootCollection Debug Collection size=6 +RegStream2 DEBUG RegistrationStream execute +RegStream2 DEBUG getRefs: Not DataHeader, skipping (40774349,"RunEventTag") +RegStream2 DEBUG get ref for (222376821,"Stream2") +RegStream2 DEBUG Retrieved DataHeader with key Stream2 +RegStream2 DEBUG Pushing back ref [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000005] for Stream2 +RegStream2 DEBUG Setting tagKey to RunEventTag +RegStream2 DEBUG Not class requested by Tool, skipping (222376821,"Stream2") +RootCollection Debug Collection size=6 +RegStream3 DEBUG RegistrationStream execute +RegStream3 DEBUG Event rejected by filtering +AthenaEventLoopMgr INFO ===>>> done processing event #5, run #1 6 events processed so far <<<=== +AthenaEventLoopMgr INFO ===>>> start processing event #6, run #1 6 events processed so far <<<=== +WriteData DEBUG in execute() +WriteData INFO EventInfo event: 6 run: 1 +WriteData INFO registered all data +WriteTag INFO EventInfo event: 6 run: 1 +WriteTag INFO registered all data +MagicWriteTag INFO EventInfo event: 6 run: 1 +MagicWriteTag INFO registered all data +Stream1 DEBUG addItemObjects(2101,"*") called +Stream1 DEBUG Key:* +Stream1 DEBUG Added object 2101,"McEventInfo" +Stream1 DEBUG addItemObjects(9102,"MyHits") called +Stream1 DEBUG Key:MyHits +Stream1 DEBUG Added object 9102,"MyHits" +Stream1 DEBUG addItemObjects(9102,"PetersHits") called +Stream1 DEBUG Key:PetersHits +Stream1 DEBUG No object matching 9102,"PetersHits" found +Stream1 DEBUG Collected objects: +Stream1 DEBUG Object/count: EventInfo_McEventInfo, 7 +Stream1 DEBUG Object/count: ExampleHitContainer_MyHits, 7 +Stream2 DEBUG addItemObjects(2101,"*") called +Stream2 DEBUG Key:* +Stream2 DEBUG Added object 2101,"McEventInfo" +Stream2 DEBUG addItemObjects(9102,"*") called +Stream2 DEBUG Key:* +Stream2 DEBUG Collected objects: +Stream2 DEBUG Object/count: EventInfo_McEventInfo, 7 +RegStream1 DEBUG RegistrationStream execute +RegStream1 DEBUG getRefs: Not DataHeader, skipping (40774349,"MagicTag") +RegStream1 DEBUG get ref for (222376821,"Stream1") +RegStream1 DEBUG Retrieved DataHeader with key Stream1 +RegStream1 DEBUG Pushing back ref [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000006] for Stream1 +RegStream1 DEBUG Setting tagKey to MagicTag +RegStream1 DEBUG Not class requested by Tool, skipping (222376821,"Stream1") +RootCollection Debug Collection size=7 +RegStream2 DEBUG RegistrationStream execute +RegStream2 DEBUG getRefs: Not DataHeader, skipping (40774349,"RunEventTag") +RegStream2 DEBUG get ref for (222376821,"Stream2") +RegStream2 DEBUG Retrieved DataHeader with key Stream2 +RegStream2 DEBUG Pushing back ref [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000006] for Stream2 +RegStream2 DEBUG Setting tagKey to RunEventTag +RegStream2 DEBUG Not class requested by Tool, skipping (222376821,"Stream2") +RootCollection Debug Collection size=7 +RegStream3 DEBUG RegistrationStream execute +RegStream3 DEBUG Event rejected by filtering +AthenaEventLoopMgr INFO ===>>> done processing event #6, run #1 7 events processed so far <<<=== +AthenaEventLoopMgr INFO ===>>> start processing event #7, run #1 7 events processed so far <<<=== +WriteData DEBUG in execute() +WriteData INFO EventInfo event: 7 run: 1 +WriteData INFO registered all data +WriteTag INFO EventInfo event: 7 run: 1 +WriteTag INFO registered all data +MagicWriteTag INFO EventInfo event: 7 run: 1 +MagicWriteTag INFO registered all data +Stream1 DEBUG addItemObjects(2101,"*") called +Stream1 DEBUG Key:* +Stream1 DEBUG Added object 2101,"McEventInfo" +Stream1 DEBUG addItemObjects(9102,"MyHits") called +Stream1 DEBUG Key:MyHits +Stream1 DEBUG Added object 9102,"MyHits" +Stream1 DEBUG addItemObjects(9102,"PetersHits") called +Stream1 DEBUG Key:PetersHits +Stream1 DEBUG No object matching 9102,"PetersHits" found +Stream1 DEBUG Collected objects: +Stream1 DEBUG Object/count: EventInfo_McEventInfo, 8 +Stream1 DEBUG Object/count: ExampleHitContainer_MyHits, 8 +Stream2 DEBUG addItemObjects(2101,"*") called +Stream2 DEBUG Key:* +Stream2 DEBUG Added object 2101,"McEventInfo" +Stream2 DEBUG addItemObjects(9102,"*") called +Stream2 DEBUG Key:* +Stream2 DEBUG Collected objects: +Stream2 DEBUG Object/count: EventInfo_McEventInfo, 8 +RegStream1 DEBUG RegistrationStream execute +RegStream1 DEBUG getRefs: Not DataHeader, skipping (40774349,"MagicTag") +RegStream1 DEBUG get ref for (222376821,"Stream1") +RegStream1 DEBUG Retrieved DataHeader with key Stream1 +RegStream1 DEBUG Pushing back ref [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000007] for Stream1 +RegStream1 DEBUG Setting tagKey to MagicTag +RegStream1 DEBUG Not class requested by Tool, skipping (222376821,"Stream1") +RootCollection Debug Collection size=8 +RegStream2 DEBUG RegistrationStream execute +RegStream2 DEBUG getRefs: Not DataHeader, skipping (40774349,"RunEventTag") +RegStream2 DEBUG get ref for (222376821,"Stream2") +RegStream2 DEBUG Retrieved DataHeader with key Stream2 +RegStream2 DEBUG Pushing back ref [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000007] for Stream2 +RegStream2 DEBUG Setting tagKey to RunEventTag +RegStream2 DEBUG Not class requested by Tool, skipping (222376821,"Stream2") +RootCollection Debug Collection size=8 +RegStream3 DEBUG RegistrationStream execute +RegStream3 DEBUG Event rejected by filtering +AthenaEventLoopMgr INFO ===>>> done processing event #7, run #1 8 events processed so far <<<=== +AthenaEventLoopMgr INFO ===>>> start processing event #8, run #1 8 events processed so far <<<=== +WriteData DEBUG in execute() +WriteData INFO EventInfo event: 8 run: 1 +WriteData INFO registered all data +WriteTag INFO EventInfo event: 8 run: 1 +WriteTag INFO registered all data +MagicWriteTag INFO EventInfo event: 8 run: 1 +MagicWriteTag INFO registered all data +Stream1 DEBUG addItemObjects(2101,"*") called +Stream1 DEBUG Key:* +Stream1 DEBUG Added object 2101,"McEventInfo" +Stream1 DEBUG addItemObjects(9102,"MyHits") called +Stream1 DEBUG Key:MyHits +Stream1 DEBUG Added object 9102,"MyHits" +Stream1 DEBUG addItemObjects(9102,"PetersHits") called +Stream1 DEBUG Key:PetersHits +Stream1 DEBUG No object matching 9102,"PetersHits" found +Stream1 DEBUG Collected objects: +Stream1 DEBUG Object/count: EventInfo_McEventInfo, 9 +Stream1 DEBUG Object/count: ExampleHitContainer_MyHits, 9 +Stream2 DEBUG addItemObjects(2101,"*") called +Stream2 DEBUG Key:* +Stream2 DEBUG Added object 2101,"McEventInfo" +Stream2 DEBUG addItemObjects(9102,"*") called +Stream2 DEBUG Key:* +Stream2 DEBUG Collected objects: +Stream2 DEBUG Object/count: EventInfo_McEventInfo, 9 +RegStream1 DEBUG RegistrationStream execute +RegStream1 DEBUG getRefs: Not DataHeader, skipping (40774349,"MagicTag") +RegStream1 DEBUG get ref for (222376821,"Stream1") +RegStream1 DEBUG Retrieved DataHeader with key Stream1 +RegStream1 DEBUG Pushing back ref [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000008] for Stream1 +RegStream1 DEBUG Setting tagKey to MagicTag +RegStream1 DEBUG Not class requested by Tool, skipping (222376821,"Stream1") +RootCollection Debug Collection size=9 +RegStream2 DEBUG RegistrationStream execute +RegStream2 DEBUG getRefs: Not DataHeader, skipping (40774349,"RunEventTag") +RegStream2 DEBUG get ref for (222376821,"Stream2") +RegStream2 DEBUG Retrieved DataHeader with key Stream2 +RegStream2 DEBUG Pushing back ref [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000008] for Stream2 +RegStream2 DEBUG Setting tagKey to RunEventTag +RegStream2 DEBUG Not class requested by Tool, skipping (222376821,"Stream2") +RootCollection Debug Collection size=9 +RegStream3 DEBUG RegistrationStream execute +RegStream3 DEBUG Event rejected by filtering +AthenaEventLoopMgr INFO ===>>> done processing event #8, run #1 9 events processed so far <<<=== +AthenaEventLoopMgr INFO ===>>> start processing event #9, run #1 9 events processed so far <<<=== +WriteData DEBUG in execute() +WriteData INFO EventInfo event: 9 run: 1 +WriteData INFO registered all data +WriteTag INFO EventInfo event: 9 run: 1 +WriteTag INFO registered all data +MagicWriteTag INFO EventInfo event: 9 run: 1 +MagicWriteTag INFO registered all data +Stream1 DEBUG addItemObjects(2101,"*") called +Stream1 DEBUG Key:* +Stream1 DEBUG Added object 2101,"McEventInfo" +Stream1 DEBUG addItemObjects(9102,"MyHits") called +Stream1 DEBUG Key:MyHits +Stream1 DEBUG Added object 9102,"MyHits" +Stream1 DEBUG addItemObjects(9102,"PetersHits") called +Stream1 DEBUG Key:PetersHits +Stream1 DEBUG No object matching 9102,"PetersHits" found +Stream1 DEBUG Collected objects: +Stream1 DEBUG Object/count: EventInfo_McEventInfo, 10 +Stream1 DEBUG Object/count: ExampleHitContainer_MyHits, 10 +Stream2 DEBUG addItemObjects(2101,"*") called +Stream2 DEBUG Key:* +Stream2 DEBUG Added object 2101,"McEventInfo" +Stream2 DEBUG addItemObjects(9102,"*") called +Stream2 DEBUG Key:* +Stream2 DEBUG Collected objects: +Stream2 DEBUG Object/count: EventInfo_McEventInfo, 10 +RegStream1 DEBUG RegistrationStream execute +RegStream1 DEBUG getRefs: Not DataHeader, skipping (40774349,"MagicTag") +RegStream1 DEBUG get ref for (222376821,"Stream1") +RegStream1 DEBUG Retrieved DataHeader with key Stream1 +RegStream1 DEBUG Pushing back ref [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000009] for Stream1 +RegStream1 DEBUG Setting tagKey to MagicTag +RegStream1 DEBUG Not class requested by Tool, skipping (222376821,"Stream1") +RootCollection Debug Collection size=10 +RegStream2 DEBUG RegistrationStream execute +RegStream2 DEBUG getRefs: Not DataHeader, skipping (40774349,"RunEventTag") +RegStream2 DEBUG get ref for (222376821,"Stream2") +RegStream2 DEBUG Retrieved DataHeader with key Stream2 +RegStream2 DEBUG Pushing back ref [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000009] for Stream2 +RegStream2 DEBUG Setting tagKey to RunEventTag +RegStream2 DEBUG Not class requested by Tool, skipping (222376821,"Stream2") +RootCollection Debug Collection size=10 +RegStream3 DEBUG RegistrationStream execute +RegStream3 DEBUG Event rejected by filtering +AthenaEventLoopMgr INFO ===>>> done processing event #9, run #1 10 events processed so far <<<=== +AthenaEventLoopMgr INFO ===>>> start processing event #10, run #1 10 events processed so far <<<=== +WriteData DEBUG in execute() +WriteData INFO EventInfo event: 10 run: 1 +WriteData INFO registered all data +WriteTag INFO EventInfo event: 10 run: 1 +WriteTag INFO registered all data +MagicWriteTag INFO EventInfo event: 10 run: 1 +MagicWriteTag INFO registered all data +Stream1 DEBUG addItemObjects(2101,"*") called +Stream1 DEBUG Key:* +Stream1 DEBUG Added object 2101,"McEventInfo" +Stream1 DEBUG addItemObjects(9102,"MyHits") called +Stream1 DEBUG Key:MyHits +Stream1 DEBUG Added object 9102,"MyHits" +Stream1 DEBUG addItemObjects(9102,"PetersHits") called +Stream1 DEBUG Key:PetersHits +Stream1 DEBUG No object matching 9102,"PetersHits" found +Stream1 DEBUG Collected objects: +Stream1 DEBUG Object/count: EventInfo_McEventInfo, 11 +Stream1 DEBUG Object/count: ExampleHitContainer_MyHits, 11 +Stream2 DEBUG addItemObjects(2101,"*") called +Stream2 DEBUG Key:* +Stream2 DEBUG Added object 2101,"McEventInfo" +Stream2 DEBUG addItemObjects(9102,"*") called +Stream2 DEBUG Key:* +Stream2 DEBUG Collected objects: +Stream2 DEBUG Object/count: EventInfo_McEventInfo, 11 +RegStream1 DEBUG RegistrationStream execute +RegStream1 DEBUG getRefs: Not DataHeader, skipping (40774349,"MagicTag") +RegStream1 DEBUG get ref for (222376821,"Stream1") +RegStream1 DEBUG Retrieved DataHeader with key Stream1 +RegStream1 DEBUG Pushing back ref [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000000A] for Stream1 +RegStream1 DEBUG Setting tagKey to MagicTag +RegStream1 DEBUG Not class requested by Tool, skipping (222376821,"Stream1") +RootCollection Debug Collection size=11 +RegStream2 DEBUG RegistrationStream execute +RegStream2 DEBUG getRefs: Not DataHeader, skipping (40774349,"RunEventTag") +RegStream2 DEBUG get ref for (222376821,"Stream2") +RegStream2 DEBUG Retrieved DataHeader with key Stream2 +RegStream2 DEBUG Pushing back ref [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-0000000A] for Stream2 +RegStream2 DEBUG Setting tagKey to RunEventTag +RegStream2 DEBUG Not class requested by Tool, skipping (222376821,"Stream2") +RootCollection Debug Collection size=11 +RegStream3 DEBUG RegistrationStream execute +RegStream3 DEBUG Event rejected by filtering +AthenaEventLoopMgr INFO ===>>> done processing event #10, run #1 11 events processed so far <<<=== +AthenaEventLoopMgr INFO ===>>> start processing event #11, run #1 11 events processed so far <<<=== +WriteData DEBUG in execute() +WriteData INFO EventInfo event: 11 run: 1 +WriteData INFO registered all data +WriteTag INFO EventInfo event: 11 run: 1 +WriteTag INFO registered all data +MagicWriteTag INFO EventInfo event: 11 run: 1 +MagicWriteTag INFO registered all data +Stream1 DEBUG addItemObjects(2101,"*") called +Stream1 DEBUG Key:* +Stream1 DEBUG Added object 2101,"McEventInfo" +Stream1 DEBUG addItemObjects(9102,"MyHits") called +Stream1 DEBUG Key:MyHits +Stream1 DEBUG Added object 9102,"MyHits" +Stream1 DEBUG addItemObjects(9102,"PetersHits") called +Stream1 DEBUG Key:PetersHits +Stream1 DEBUG No object matching 9102,"PetersHits" found +Stream1 DEBUG Collected objects: +Stream1 DEBUG Object/count: EventInfo_McEventInfo, 12 +Stream1 DEBUG Object/count: ExampleHitContainer_MyHits, 12 +Stream2 DEBUG addItemObjects(2101,"*") called +Stream2 DEBUG Key:* +Stream2 DEBUG Added object 2101,"McEventInfo" +Stream2 DEBUG addItemObjects(9102,"*") called +Stream2 DEBUG Key:* +Stream2 DEBUG Collected objects: +Stream2 DEBUG Object/count: EventInfo_McEventInfo, 12 +RegStream1 DEBUG RegistrationStream execute +RegStream1 DEBUG getRefs: Not DataHeader, skipping (40774349,"MagicTag") +RegStream1 DEBUG get ref for (222376821,"Stream1") +RegStream1 DEBUG Retrieved DataHeader with key Stream1 +RegStream1 DEBUG Pushing back ref [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000000B] for Stream1 +RegStream1 DEBUG Setting tagKey to MagicTag +RegStream1 DEBUG Not class requested by Tool, skipping (222376821,"Stream1") +RootCollection Debug Collection size=12 +RegStream2 DEBUG RegistrationStream execute +RegStream2 DEBUG getRefs: Not DataHeader, skipping (40774349,"RunEventTag") +RegStream2 DEBUG get ref for (222376821,"Stream2") +RegStream2 DEBUG Retrieved DataHeader with key Stream2 +RegStream2 DEBUG Pushing back ref [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-0000000B] for Stream2 +RegStream2 DEBUG Setting tagKey to RunEventTag +RegStream2 DEBUG Not class requested by Tool, skipping (222376821,"Stream2") +RootCollection Debug Collection size=12 +RegStream3 DEBUG RegistrationStream execute +RegStream3 DEBUG Event rejected by filtering +AthenaEventLoopMgr INFO ===>>> done processing event #11, run #1 12 events processed so far <<<=== +AthenaEventLoopMgr INFO ===>>> start processing event #12, run #1 12 events processed so far <<<=== +WriteData DEBUG in execute() +WriteData INFO EventInfo event: 12 run: 1 +WriteData INFO registered all data +WriteTag INFO EventInfo event: 12 run: 1 +WriteTag INFO registered all data +MagicWriteTag INFO EventInfo event: 12 run: 1 +MagicWriteTag INFO registered all data +Stream1 DEBUG addItemObjects(2101,"*") called +Stream1 DEBUG Key:* +Stream1 DEBUG Added object 2101,"McEventInfo" +Stream1 DEBUG addItemObjects(9102,"MyHits") called +Stream1 DEBUG Key:MyHits +Stream1 DEBUG Added object 9102,"MyHits" +Stream1 DEBUG addItemObjects(9102,"PetersHits") called +Stream1 DEBUG Key:PetersHits +Stream1 DEBUG No object matching 9102,"PetersHits" found +Stream1 DEBUG Collected objects: +Stream1 DEBUG Object/count: EventInfo_McEventInfo, 13 +Stream1 DEBUG Object/count: ExampleHitContainer_MyHits, 13 +Stream2 DEBUG addItemObjects(2101,"*") called +Stream2 DEBUG Key:* +Stream2 DEBUG Added object 2101,"McEventInfo" +Stream2 DEBUG addItemObjects(9102,"*") called +Stream2 DEBUG Key:* +Stream2 DEBUG Collected objects: +Stream2 DEBUG Object/count: EventInfo_McEventInfo, 13 +RegStream1 DEBUG RegistrationStream execute +RegStream1 DEBUG getRefs: Not DataHeader, skipping (40774349,"MagicTag") +RegStream1 DEBUG get ref for (222376821,"Stream1") +RegStream1 DEBUG Retrieved DataHeader with key Stream1 +RegStream1 DEBUG Pushing back ref [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000000C] for Stream1 +RegStream1 DEBUG Setting tagKey to MagicTag +RegStream1 DEBUG Not class requested by Tool, skipping (222376821,"Stream1") +RootCollection Debug Collection size=13 +RegStream2 DEBUG RegistrationStream execute +RegStream2 DEBUG getRefs: Not DataHeader, skipping (40774349,"RunEventTag") +RegStream2 DEBUG get ref for (222376821,"Stream2") +RegStream2 DEBUG Retrieved DataHeader with key Stream2 +RegStream2 DEBUG Pushing back ref [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-0000000C] for Stream2 +RegStream2 DEBUG Setting tagKey to RunEventTag +RegStream2 DEBUG Not class requested by Tool, skipping (222376821,"Stream2") +RootCollection Debug Collection size=13 +RegStream3 DEBUG RegistrationStream execute +RegStream3 DEBUG Event rejected by filtering +AthenaEventLoopMgr INFO ===>>> done processing event #12, run #1 13 events processed so far <<<=== +AthenaEventLoopMgr INFO ===>>> start processing event #13, run #1 13 events processed so far <<<=== +WriteData DEBUG in execute() +WriteData INFO EventInfo event: 13 run: 1 +WriteData INFO registered all data +WriteTag INFO EventInfo event: 13 run: 1 +WriteTag INFO registered all data +MagicWriteTag INFO EventInfo event: 13 run: 1 +MagicWriteTag INFO registered all data +Stream1 DEBUG addItemObjects(2101,"*") called +Stream1 DEBUG Key:* +Stream1 DEBUG Added object 2101,"McEventInfo" +Stream1 DEBUG addItemObjects(9102,"MyHits") called +Stream1 DEBUG Key:MyHits +Stream1 DEBUG Added object 9102,"MyHits" +Stream1 DEBUG addItemObjects(9102,"PetersHits") called +Stream1 DEBUG Key:PetersHits +Stream1 DEBUG No object matching 9102,"PetersHits" found +Stream1 DEBUG Collected objects: +Stream1 DEBUG Object/count: EventInfo_McEventInfo, 14 +Stream1 DEBUG Object/count: ExampleHitContainer_MyHits, 14 +Stream2 DEBUG addItemObjects(2101,"*") called +Stream2 DEBUG Key:* +Stream2 DEBUG Added object 2101,"McEventInfo" +Stream2 DEBUG addItemObjects(9102,"*") called +Stream2 DEBUG Key:* +Stream2 DEBUG Collected objects: +Stream2 DEBUG Object/count: EventInfo_McEventInfo, 14 +RegStream1 DEBUG RegistrationStream execute +RegStream1 DEBUG getRefs: Not DataHeader, skipping (40774349,"MagicTag") +RegStream1 DEBUG get ref for (222376821,"Stream1") +RegStream1 DEBUG Retrieved DataHeader with key Stream1 +RegStream1 DEBUG Pushing back ref [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000000D] for Stream1 +RegStream1 DEBUG Setting tagKey to MagicTag +RegStream1 DEBUG Not class requested by Tool, skipping (222376821,"Stream1") +RootCollection Debug Collection size=14 +RegStream2 DEBUG RegistrationStream execute +RegStream2 DEBUG getRefs: Not DataHeader, skipping (40774349,"RunEventTag") +RegStream2 DEBUG get ref for (222376821,"Stream2") +RegStream2 DEBUG Retrieved DataHeader with key Stream2 +RegStream2 DEBUG Pushing back ref [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-0000000D] for Stream2 +RegStream2 DEBUG Setting tagKey to RunEventTag +RegStream2 DEBUG Not class requested by Tool, skipping (222376821,"Stream2") +RootCollection Debug Collection size=14 +RegStream3 DEBUG RegistrationStream execute +RegStream3 DEBUG Event rejected by filtering +AthenaEventLoopMgr INFO ===>>> done processing event #13, run #1 14 events processed so far <<<=== +AthenaEventLoopMgr INFO ===>>> start processing event #14, run #1 14 events processed so far <<<=== +WriteData DEBUG in execute() +WriteData INFO EventInfo event: 14 run: 1 +WriteData INFO Now creating ExampleHit alias for event: 14 +WriteData INFO registered all data +WriteTag INFO EventInfo event: 14 run: 1 +WriteTag INFO registered all data +MagicWriteTag INFO EventInfo event: 14 run: 1 +MagicWriteTag INFO registered all data +Stream1 DEBUG addItemObjects(2101,"*") called +Stream1 DEBUG Key:* +Stream1 DEBUG Added object 2101,"McEventInfo" +Stream1 DEBUG addItemObjects(9102,"MyHits") called +Stream1 DEBUG Key:MyHits +Stream1 DEBUG Added object 9102,"MyHits" +Stream1 DEBUG addItemObjects(9102,"PetersHits") called +Stream1 DEBUG Key:PetersHits +Stream1 DEBUG Collected objects: +Stream1 DEBUG Object/count: EventInfo_McEventInfo, 15 +Stream1 DEBUG Object/count: ExampleHitContainer_MyHits, 15 +Stream2 DEBUG addItemObjects(2101,"*") called +Stream2 DEBUG Key:* +Stream2 DEBUG Added object 2101,"McEventInfo" +Stream2 DEBUG addItemObjects(9102,"*") called +Stream2 DEBUG Key:* +Stream2 DEBUG Collected objects: +Stream2 DEBUG Object/count: EventInfo_McEventInfo, 15 +RegStream1 DEBUG RegistrationStream execute +RegStream1 DEBUG getRefs: Not DataHeader, skipping (40774349,"MagicTag") +RegStream1 DEBUG get ref for (222376821,"Stream1") +RegStream1 DEBUG Retrieved DataHeader with key Stream1 +RegStream1 DEBUG Pushing back ref [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000000E] for Stream1 +RegStream1 DEBUG Setting tagKey to MagicTag +RegStream1 DEBUG Not class requested by Tool, skipping (222376821,"Stream1") +RootCollection Debug Collection size=15 +RegStream2 DEBUG RegistrationStream execute +RegStream2 DEBUG getRefs: Not DataHeader, skipping (40774349,"RunEventTag") +RegStream2 DEBUG get ref for (222376821,"Stream2") +RegStream2 DEBUG Retrieved DataHeader with key Stream2 +RegStream2 DEBUG Pushing back ref [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-0000000E] for Stream2 +RegStream2 DEBUG Setting tagKey to RunEventTag +RegStream2 DEBUG Not class requested by Tool, skipping (222376821,"Stream2") +RootCollection Debug Collection size=15 +RegStream3 DEBUG RegistrationStream execute +RegStream3 DEBUG Event rejected by filtering +AthenaEventLoopMgr INFO ===>>> done processing event #14, run #1 15 events processed so far <<<=== +AthenaEventLoopMgr INFO ===>>> start processing event #15, run #1 15 events processed so far <<<=== +WriteData DEBUG in execute() +WriteData INFO EventInfo event: 15 run: 1 +WriteData INFO registered all data +WriteTag INFO EventInfo event: 15 run: 1 +WriteTag INFO registered all data +MagicWriteTag INFO EventInfo event: 15 run: 1 +MagicWriteTag INFO registered all data +Stream1 DEBUG addItemObjects(2101,"*") called +Stream1 DEBUG Key:* +Stream1 DEBUG Added object 2101,"McEventInfo" +Stream1 DEBUG addItemObjects(9102,"MyHits") called +Stream1 DEBUG Key:MyHits +Stream1 DEBUG Added object 9102,"MyHits" +Stream1 DEBUG addItemObjects(9102,"PetersHits") called +Stream1 DEBUG Key:PetersHits +Stream1 DEBUG Collected objects: +Stream1 DEBUG Object/count: EventInfo_McEventInfo, 16 +Stream1 DEBUG Object/count: ExampleHitContainer_MyHits, 16 +Stream2 DEBUG addItemObjects(2101,"*") called +Stream2 DEBUG Key:* +Stream2 DEBUG Added object 2101,"McEventInfo" +Stream2 DEBUG addItemObjects(9102,"*") called +Stream2 DEBUG Key:* +Stream2 DEBUG Collected objects: +Stream2 DEBUG Object/count: EventInfo_McEventInfo, 16 +RegStream1 DEBUG RegistrationStream execute +RegStream1 DEBUG getRefs: Not DataHeader, skipping (40774349,"MagicTag") +RegStream1 DEBUG get ref for (222376821,"Stream1") +RegStream1 DEBUG Retrieved DataHeader with key Stream1 +RegStream1 DEBUG Pushing back ref [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000000F] for Stream1 +RegStream1 DEBUG Setting tagKey to MagicTag +RegStream1 DEBUG Not class requested by Tool, skipping (222376821,"Stream1") +RootCollection Debug Collection size=16 +RegStream2 DEBUG RegistrationStream execute +RegStream2 DEBUG getRefs: Not DataHeader, skipping (40774349,"RunEventTag") +RegStream2 DEBUG get ref for (222376821,"Stream2") +RegStream2 DEBUG Retrieved DataHeader with key Stream2 +RegStream2 DEBUG Pushing back ref [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-0000000F] for Stream2 +RegStream2 DEBUG Setting tagKey to RunEventTag +RegStream2 DEBUG Not class requested by Tool, skipping (222376821,"Stream2") +RootCollection Debug Collection size=16 +RegStream3 DEBUG RegistrationStream execute +RegStream3 DEBUG Event rejected by filtering +AthenaEventLoopMgr INFO ===>>> done processing event #15, run #1 16 events processed so far <<<=== +AthenaEventLoopMgr INFO ===>>> start processing event #16, run #1 16 events processed so far <<<=== +WriteData DEBUG in execute() +WriteData INFO EventInfo event: 16 run: 1 +WriteData INFO registered all data +WriteTag INFO EventInfo event: 16 run: 1 +WriteTag INFO registered all data +MagicWriteTag INFO EventInfo event: 16 run: 1 +MagicWriteTag INFO registered all data +Stream1 DEBUG addItemObjects(2101,"*") called +Stream1 DEBUG Key:* +Stream1 DEBUG Added object 2101,"McEventInfo" +Stream1 DEBUG addItemObjects(9102,"MyHits") called +Stream1 DEBUG Key:MyHits +Stream1 DEBUG Added object 9102,"MyHits" +Stream1 DEBUG addItemObjects(9102,"PetersHits") called +Stream1 DEBUG Key:PetersHits +Stream1 DEBUG Collected objects: +Stream1 DEBUG Object/count: EventInfo_McEventInfo, 17 +Stream1 DEBUG Object/count: ExampleHitContainer_MyHits, 17 +Stream2 DEBUG addItemObjects(2101,"*") called +Stream2 DEBUG Key:* +Stream2 DEBUG Added object 2101,"McEventInfo" +Stream2 DEBUG addItemObjects(9102,"*") called +Stream2 DEBUG Key:* +Stream2 DEBUG Collected objects: +Stream2 DEBUG Object/count: EventInfo_McEventInfo, 17 +RegStream1 DEBUG RegistrationStream execute +RegStream1 DEBUG getRefs: Not DataHeader, skipping (40774349,"MagicTag") +RegStream1 DEBUG get ref for (222376821,"Stream1") +RegStream1 DEBUG Retrieved DataHeader with key Stream1 +RegStream1 DEBUG Pushing back ref [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000010] for Stream1 +RegStream1 DEBUG Setting tagKey to MagicTag +RegStream1 DEBUG Not class requested by Tool, skipping (222376821,"Stream1") +RootCollection Debug Collection size=17 +RegStream2 DEBUG RegistrationStream execute +RegStream2 DEBUG getRefs: Not DataHeader, skipping (40774349,"RunEventTag") +RegStream2 DEBUG get ref for (222376821,"Stream2") +RegStream2 DEBUG Retrieved DataHeader with key Stream2 +RegStream2 DEBUG Pushing back ref [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000010] for Stream2 +RegStream2 DEBUG Setting tagKey to RunEventTag +RegStream2 DEBUG Not class requested by Tool, skipping (222376821,"Stream2") +RootCollection Debug Collection size=17 +RegStream3 DEBUG RegistrationStream execute +RegStream3 DEBUG Event rejected by filtering +AthenaEventLoopMgr INFO ===>>> done processing event #16, run #1 17 events processed so far <<<=== +AthenaEventLoopMgr INFO ===>>> start processing event #17, run #1 17 events processed so far <<<=== +WriteData DEBUG in execute() +WriteData INFO EventInfo event: 17 run: 1 +WriteData INFO registered all data +WriteTag INFO EventInfo event: 17 run: 1 +WriteTag INFO registered all data +MagicWriteTag INFO EventInfo event: 17 run: 1 +MagicWriteTag INFO registered all data +Stream1 DEBUG addItemObjects(2101,"*") called +Stream1 DEBUG Key:* +Stream1 DEBUG Added object 2101,"McEventInfo" +Stream1 DEBUG addItemObjects(9102,"MyHits") called +Stream1 DEBUG Key:MyHits +Stream1 DEBUG Added object 9102,"MyHits" +Stream1 DEBUG addItemObjects(9102,"PetersHits") called +Stream1 DEBUG Key:PetersHits +Stream1 DEBUG Collected objects: +Stream1 DEBUG Object/count: EventInfo_McEventInfo, 18 +Stream1 DEBUG Object/count: ExampleHitContainer_MyHits, 18 +Stream2 DEBUG addItemObjects(2101,"*") called +Stream2 DEBUG Key:* +Stream2 DEBUG Added object 2101,"McEventInfo" +Stream2 DEBUG addItemObjects(9102,"*") called +Stream2 DEBUG Key:* +Stream2 DEBUG Collected objects: +Stream2 DEBUG Object/count: EventInfo_McEventInfo, 18 +RegStream1 DEBUG RegistrationStream execute +RegStream1 DEBUG getRefs: Not DataHeader, skipping (40774349,"MagicTag") +RegStream1 DEBUG get ref for (222376821,"Stream1") +RegStream1 DEBUG Retrieved DataHeader with key Stream1 +RegStream1 DEBUG Pushing back ref [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000011] for Stream1 +RegStream1 DEBUG Setting tagKey to MagicTag +RegStream1 DEBUG Not class requested by Tool, skipping (222376821,"Stream1") +RootCollection Debug Collection size=18 +RegStream2 DEBUG RegistrationStream execute +RegStream2 DEBUG getRefs: Not DataHeader, skipping (40774349,"RunEventTag") +RegStream2 DEBUG get ref for (222376821,"Stream2") +RegStream2 DEBUG Retrieved DataHeader with key Stream2 +RegStream2 DEBUG Pushing back ref [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000011] for Stream2 +RegStream2 DEBUG Setting tagKey to RunEventTag +RegStream2 DEBUG Not class requested by Tool, skipping (222376821,"Stream2") +RootCollection Debug Collection size=18 +RegStream3 DEBUG RegistrationStream execute +RegStream3 DEBUG Event rejected by filtering +AthenaEventLoopMgr INFO ===>>> done processing event #17, run #1 18 events processed so far <<<=== +AthenaEventLoopMgr INFO ===>>> start processing event #18, run #1 18 events processed so far <<<=== +WriteData DEBUG in execute() +WriteData INFO EventInfo event: 18 run: 1 +WriteData INFO registered all data +WriteTag INFO EventInfo event: 18 run: 1 +WriteTag INFO registered all data +MagicWriteTag INFO EventInfo event: 18 run: 1 +MagicWriteTag INFO registered all data +Stream1 DEBUG addItemObjects(2101,"*") called +Stream1 DEBUG Key:* +Stream1 DEBUG Added object 2101,"McEventInfo" +Stream1 DEBUG addItemObjects(9102,"MyHits") called +Stream1 DEBUG Key:MyHits +Stream1 DEBUG Added object 9102,"MyHits" +Stream1 DEBUG addItemObjects(9102,"PetersHits") called +Stream1 DEBUG Key:PetersHits +Stream1 DEBUG Collected objects: +Stream1 DEBUG Object/count: EventInfo_McEventInfo, 19 +Stream1 DEBUG Object/count: ExampleHitContainer_MyHits, 19 +Stream2 DEBUG addItemObjects(2101,"*") called +Stream2 DEBUG Key:* +Stream2 DEBUG Added object 2101,"McEventInfo" +Stream2 DEBUG addItemObjects(9102,"*") called +Stream2 DEBUG Key:* +Stream2 DEBUG Collected objects: +Stream2 DEBUG Object/count: EventInfo_McEventInfo, 19 +RegStream1 DEBUG RegistrationStream execute +RegStream1 DEBUG getRefs: Not DataHeader, skipping (40774349,"MagicTag") +RegStream1 DEBUG get ref for (222376821,"Stream1") +RegStream1 DEBUG Retrieved DataHeader with key Stream1 +RegStream1 DEBUG Pushing back ref [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000012] for Stream1 +RegStream1 DEBUG Setting tagKey to MagicTag +RegStream1 DEBUG Not class requested by Tool, skipping (222376821,"Stream1") +RootCollection Debug Collection size=19 +RegStream2 DEBUG RegistrationStream execute +RegStream2 DEBUG getRefs: Not DataHeader, skipping (40774349,"RunEventTag") +RegStream2 DEBUG get ref for (222376821,"Stream2") +RegStream2 DEBUG Retrieved DataHeader with key Stream2 +RegStream2 DEBUG Pushing back ref [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000012] for Stream2 +RegStream2 DEBUG Setting tagKey to RunEventTag +RegStream2 DEBUG Not class requested by Tool, skipping (222376821,"Stream2") +RootCollection Debug Collection size=19 +RegStream3 DEBUG RegistrationStream execute +RegStream3 DEBUG Event rejected by filtering +AthenaEventLoopMgr INFO ===>>> done processing event #18, run #1 19 events processed so far <<<=== +AthenaEventLoopMgr INFO ===>>> start processing event #19, run #1 19 events processed so far <<<=== +WriteData DEBUG in execute() +WriteData INFO EventInfo event: 19 run: 1 +WriteData INFO registered all data +WriteTag INFO EventInfo event: 19 run: 1 +WriteTag INFO registered all data +MagicWriteTag INFO EventInfo event: 19 run: 1 +MagicWriteTag INFO registered all data +Stream1 DEBUG addItemObjects(2101,"*") called +Stream1 DEBUG Key:* +Stream1 DEBUG Added object 2101,"McEventInfo" +Stream1 DEBUG addItemObjects(9102,"MyHits") called +Stream1 DEBUG Key:MyHits +Stream1 DEBUG Added object 9102,"MyHits" +Stream1 DEBUG addItemObjects(9102,"PetersHits") called +Stream1 DEBUG Key:PetersHits +Stream1 DEBUG Collected objects: +Stream1 DEBUG Object/count: EventInfo_McEventInfo, 20 +Stream1 DEBUG Object/count: ExampleHitContainer_MyHits, 20 +Stream2 DEBUG addItemObjects(2101,"*") called +Stream2 DEBUG Key:* +Stream2 DEBUG Added object 2101,"McEventInfo" +Stream2 DEBUG addItemObjects(9102,"*") called +Stream2 DEBUG Key:* +Stream2 DEBUG Collected objects: +Stream2 DEBUG Object/count: EventInfo_McEventInfo, 20 +RegStream1 DEBUG RegistrationStream execute +RegStream1 DEBUG getRefs: Not DataHeader, skipping (40774349,"MagicTag") +RegStream1 DEBUG get ref for (222376821,"Stream1") +RegStream1 DEBUG Retrieved DataHeader with key Stream1 +RegStream1 DEBUG Pushing back ref [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000013] for Stream1 +RegStream1 DEBUG Setting tagKey to MagicTag +RegStream1 DEBUG Not class requested by Tool, skipping (222376821,"Stream1") +RootCollection Debug Collection size=20 +RegStream2 DEBUG RegistrationStream execute +RegStream2 DEBUG getRefs: Not DataHeader, skipping (40774349,"RunEventTag") +RegStream2 DEBUG get ref for (222376821,"Stream2") +RegStream2 DEBUG Retrieved DataHeader with key Stream2 +RegStream2 DEBUG Pushing back ref [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000013] for Stream2 +RegStream2 DEBUG Setting tagKey to RunEventTag +RegStream2 DEBUG Not class requested by Tool, skipping (222376821,"Stream2") +RootCollection Debug Collection size=20 +RegStream3 DEBUG RegistrationStream execute +RegStream3 DEBUG Event rejected by filtering +AthenaEventLoopMgr INFO ===>>> done processing event #19, run #1 20 events processed so far <<<=== +CutFlowSvc INFO CutBookkeeper CutBookkeepers N/A PassNoneFilter Cyc=0 N=0 weight^2=0 +Stream1 DEBUG handle() incident type: MetaDataStop +Stream1 DEBUG addItemObjects(167728019,"Stream1") called +Stream1 DEBUG Key:Stream1 +Stream1 DEBUG Added object 167728019,"Stream1" +Stream1 DEBUG addItemObjects(1316383046,"*") called +Stream1 DEBUG Key:* +StorageSvc Info Building shape according to reflection information using shape ID for: +StorageSvc Info EventStreamInfo_p3 [????] +SimplePoolFile1.root Debug --> Access DbContainer CREA/UPDA [ROOT_Tree] MetaData(EventStreamInfo_p3/Stream1) +MetaData(EventStreamInfo_p3/Stream1) Debug Opening +MetaData(EventStreamInfo_p3/Stream1) Debug attributes# = 1 +MetaData(EventStreamInfo_p3/Stream1) Debug Branch container 'EventStreamInfo_p3_Stream1' +MetaData(EventStreamInfo_p3/Stream1) Debug Opened container MetaData(EventStreamInfo_p3/Stream1) of type ROOT_Tree +SimplePoolFile1.root Debug --->Adding Assoc :????/MetaData(EventStreamInfo_p3/Stream1) [202] (c , ffffffff) +SimplePoolFile1.root Debug ---->ClassID:???? +SimplePoolFile1.root Debug --->Adding Shape[6 , ????]: [1 Column(s)] +SimplePoolFile1.root Debug ---->Class:EventStreamInfo_p3 +SimplePoolFile1.root Debug ---->[0]:EventStreamInfo_p3 Typ:EventStreamInfo_p3 [21] Size:0 Offset:0 #Elements:1 +SimplePoolFile1.root Debug --> Access DbContainer CREA/UPDA [ROOT_Tree] MetaDataHdrForm(DataHeaderForm) +MetaDataHdrForm(DataHeaderForm) Debug Opening +MetaDataHdrForm(DataHeaderForm) Debug attributes# = 1 +MetaDataHdrForm(DataHeaderForm) Debug Branch container 'DataHeaderForm' +MetaDataHdrForm(DataHeaderForm) Debug Opened container MetaDataHdrForm(DataHeaderForm) of type ROOT_Tree +SimplePoolFile1.root Debug --->Adding Assoc :????/MetaDataHdrForm(DataHeaderForm) [202] (d , ffffffff) +SimplePoolFile1.root Debug ---->ClassID:???? +SimplePoolFile1.root Debug --> Access DbContainer CREA/UPDA [ROOT_Tree] MetaDataHdr(DataHeader) +MetaDataHdr(DataHeader) Debug Opening +MetaDataHdr(DataHeader) Debug attributes# = 1 +MetaDataHdr(DataHeader) Debug Branch container 'DataHeader' +MetaDataHdr(DataHeader) Debug Opened container MetaDataHdr(DataHeader) of type ROOT_Tree +SimplePoolFile1.root Debug --->Adding Assoc :????/MetaDataHdr(DataHeader) [202] (e , ffffffff) +SimplePoolFile1.root Debug ---->ClassID:???? +ClassIDSvc INFO getRegistryEntries: read 5 CLIDRegistry entries for module ALL +Stream1 INFO Records written: 21 +Stream1 DEBUG Leaving handle +Stream2 DEBUG handle() incident type: MetaDataStop +Stream2 DEBUG addItemObjects(167728019,"Stream2") called +Stream2 DEBUG Key:Stream2 +Stream2 DEBUG Added object 167728019,"Stream2" +Stream2 DEBUG addItemObjects(1316383046,"*") called +Stream2 DEBUG Key:* +SimplePoolFileA.root Debug --> Access DbContainer CREA/UPDA [ROOT_Tree] MetaData(EventStreamInfo_p3/Stream2) +MetaData(EventStreamInfo_p3/Stream2) Debug Opening +MetaData(EventStreamInfo_p3/Stream2) Debug attributes# = 1 +MetaData(EventStreamInfo_p3/Stream2) Debug Branch container 'EventStreamInfo_p3_Stream2' +MetaData(EventStreamInfo_p3/Stream2) Debug Opened container MetaData(EventStreamInfo_p3/Stream2) of type ROOT_Tree +SimplePoolFileA.root Debug --->Adding Assoc :????/MetaData(EventStreamInfo_p3/Stream2) [202] (b , ffffffff) +SimplePoolFileA.root Debug ---->ClassID:???? +SimplePoolFileA.root Debug --->Adding Shape[5 , ????]: [1 Column(s)] +SimplePoolFileA.root Debug ---->Class:EventStreamInfo_p3 +SimplePoolFileA.root Debug ---->[0]:EventStreamInfo_p3 Typ:EventStreamInfo_p3 [21] Size:0 Offset:0 #Elements:1 +SimplePoolFileA.root Debug --> Access DbContainer CREA/UPDA [ROOT_Tree] MetaDataHdrForm(DataHeaderForm) +MetaDataHdrForm(DataHeaderForm) Debug Opening +MetaDataHdrForm(DataHeaderForm) Debug attributes# = 1 +MetaDataHdrForm(DataHeaderForm) Debug Branch container 'DataHeaderForm' +MetaDataHdrForm(DataHeaderForm) Debug Opened container MetaDataHdrForm(DataHeaderForm) of type ROOT_Tree +SimplePoolFileA.root Debug --->Adding Assoc :????/MetaDataHdrForm(DataHeaderForm) [202] (c , ffffffff) +SimplePoolFileA.root Debug ---->ClassID:???? +SimplePoolFileA.root Debug --> Access DbContainer CREA/UPDA [ROOT_Tree] MetaDataHdr(DataHeader) +MetaDataHdr(DataHeader) Debug Opening +MetaDataHdr(DataHeader) Debug attributes# = 1 +MetaDataHdr(DataHeader) Debug Branch container 'DataHeader' +MetaDataHdr(DataHeader) Debug Opened container MetaDataHdr(DataHeader) of type ROOT_Tree +SimplePoolFileA.root Debug --->Adding Assoc :????/MetaDataHdr(DataHeader) [202] (d , ffffffff) +SimplePoolFileA.root Debug ---->ClassID:???? +Stream2 INFO Records written: 21 +Stream2 DEBUG Leaving handle +Domain[ROOT_All] Info -> Access DbDatabase CREATE [ROOT_All] ???? +Domain[ROOT_All] Info EmptyPoolFile.root +EmptyPoolFile.root Debug --> Access DbContainer CREATE [ROOT_All] ##Shapes +##Shapes Debug Opening +##Shapes Debug attributes# = 1 +##Shapes Debug Opened container ##Shapes of type ROOT_Tree +##Shapes Debug No objects passing selection criteria... Container has 0 Entries in total. +EmptyPoolFile.root Debug --> Access DbContainer CREATE [ROOT_All] ##Links +##Links Debug Opening +##Links Debug attributes# = 1 +##Links Debug Opened container ##Links of type ROOT_Tree +##Links Debug No objects passing selection criteria... Container has 0 Entries in total. +EmptyPoolFile.root Debug --> Access DbContainer CREATE [ROOT_All] ##Params +##Params Debug Opening +##Params Debug attributes# = 1 +##Params Debug Opened container ##Params of type ROOT_Tree +EmptyPoolFile.root Debug --->Adding Assoc :????/##Params [200] (2 , ffffffff) +EmptyPoolFile.root Debug ---->ClassID:???? +##Params Debug No objects passing selection criteria... Container has 0 Entries in total. +AthenaPoolCnvSvc DEBUG setAttribute CONTAINER_SPLITLEVEL to 99 for db: EmptyPoolFile.root and cont: TTree=POOLContainerForm(DataHeaderForm) +EmptyPoolFile.root Debug --> Access DbContainer CREA/UPDA [ROOT_Tree] MetaData(EventStreamInfo_p3/Stream3) +MetaData(EventStreamInfo_p3/Stream3) Debug Opening +MetaData(EventStreamInfo_p3/Stream3) Debug attributes# = 1 +MetaData(EventStreamInfo_p3/Stream3) Debug Branch container 'EventStreamInfo_p3_Stream3' +MetaData(EventStreamInfo_p3/Stream3) Debug Opened container MetaData(EventStreamInfo_p3/Stream3) of type ROOT_Tree +EmptyPoolFile.root Debug --->Adding Assoc :????/MetaData(EventStreamInfo_p3/Stream3) [202] (3 , ffffffff) +EmptyPoolFile.root Debug ---->ClassID:???? +EmptyPoolFile.root Debug --->Adding Shape[0 , ????]: [1 Column(s)] +EmptyPoolFile.root Debug ---->Class:EventStreamInfo_p3 +EmptyPoolFile.root Debug ---->[0]:EventStreamInfo_p3 Typ:EventStreamInfo_p3 [21] Size:0 Offset:0 #Elements:1 +EmptyPoolFile.root Debug --> Access DbContainer CREA/UPDA [ROOT_Tree] MetaDataHdrForm(DataHeaderForm) +MetaDataHdrForm(DataHeaderForm) Debug Opening +MetaDataHdrForm(DataHeaderForm) Debug attributes# = 1 +MetaDataHdrForm(DataHeaderForm) Debug Branch container 'DataHeaderForm' +MetaDataHdrForm(DataHeaderForm) Debug Opened container MetaDataHdrForm(DataHeaderForm) of type ROOT_Tree +EmptyPoolFile.root Debug --->Adding Assoc :????/MetaDataHdrForm(DataHeaderForm) [202] (4 , ffffffff) +EmptyPoolFile.root Debug ---->ClassID:???? +EmptyPoolFile.root Debug --->Adding Shape[1 , ????]: [1 Column(s)] +EmptyPoolFile.root Debug ---->Class:DataHeaderForm_p5 +EmptyPoolFile.root Debug ---->[0]:DataHeaderForm_p5 Typ:DataHeaderForm_p5 [21] Size:0 Offset:0 #Elements:1 +EmptyPoolFile.root Debug --> Access DbContainer CREA/UPDA [ROOT_Tree] MetaDataHdr(DataHeader) +MetaDataHdr(DataHeader) Debug Opening +MetaDataHdr(DataHeader) Debug attributes# = 1 +MetaDataHdr(DataHeader) Debug Branch container 'DataHeader' +MetaDataHdr(DataHeader) Debug Opened container MetaDataHdr(DataHeader) of type ROOT_Tree +EmptyPoolFile.root Debug --->Adding Assoc :????/MetaDataHdr(DataHeader) [202] (5 , ffffffff) +EmptyPoolFile.root Debug ---->ClassID:???? +EmptyPoolFile.root Debug --->Adding Shape[2 , ????]: [1 Column(s)] +EmptyPoolFile.root Debug ---->Class:DataHeader_p5 +EmptyPoolFile.root Debug ---->[0]:DataHeader_p5 Typ:DataHeader_p5 [21] Size:0 Offset:0 #Elements:1 +PoolSvc DEBUG Failed to get ContainerHandle for: POOLContainer(DataHeader) +PoolSvc DEBUG Failed to get ContainerHandle to set POOL property. +AthenaPoolCnvSvc DEBUG setAttribute failed for BRANCH_BASKET_SIZE to 256000 for db: EmptyPoolFile.root and cont: POOLContainer(DataHeader) +PoolSvc DEBUG Failed to get ContainerHandle for: POOLContainerForm(DataHeaderForm) +PoolSvc DEBUG Failed to get ContainerHandle to set POOL property. +AthenaPoolCnvSvc DEBUG setAttribute failed for BRANCH_BASKET_SIZE to 1024000 for db: EmptyPoolFile.root and cont: POOLContainerForm(DataHeaderForm) +AthenaPoolCnvSvc DEBUG commitOutput failed process POOL container attributes. +Stream3 INFO Records written: 1 +RegStream1 DEBUG handle() incident type: MetaDataStop +RegStream1.TagTool INFO Collection Events output: 20 +POOLCollFactory Debug Registering existing collection PFN=RootCollection||PFN:SimplePoolCollection1.root, LFN= +RootCollection::Metadata Debug Using char buffer of size: 4100 +RootCollection::Metadata Debug readKeys: found 1 metadata keys +POOLCollFactory Debug --- found catalog guid= +POOLCollFactory Debug --- collection guid=???? +RootCollection Debug Commit: saving collection TTree to file: SimplePoolCollection1.root +RootCollection Debug bytes written to TTree ???? +RootCollection::MetadataCommit Debug Bytes written to the Metadata TTree ???? +RootCollection Info Closing open collection 'SimplePoolCollection1.root' +RootCollection Debug Retrieved Collection TTree "POOLCollectionTree" from file SimplePoolCollection1.root +RootCollectionSchemaEditor Debug ###### Writing schema.... +RegStream2 DEBUG handle() incident type: MetaDataStop +RegStream2.TagTool INFO Collection Events output: 20 +POOLCollFactory Debug Registering existing collection PFN=RootCollection||PFN:SimplePoolCollection2.root, LFN= +RootCollection::Metadata Debug Using char buffer of size: 4100 +RootCollection::Metadata Debug readKeys: found 1 metadata keys +POOLCollFactory Debug --- found catalog guid= +POOLCollFactory Debug --- collection guid=???? +RootCollection Debug Commit: saving collection TTree to file: SimplePoolCollection2.root +RootCollection Debug bytes written to TTree ???? +RootCollection::MetadataCommit Debug Bytes written to the Metadata TTree ???? +RootCollection Info Closing open collection 'SimplePoolCollection2.root' +RootCollection Debug Retrieved Collection TTree "POOLCollectionTree" from file SimplePoolCollection2.root +RootCollectionSchemaEditor Debug ###### Writing schema.... +RegStream3 DEBUG handle() incident type: MetaDataStop +RegStream3.TagTool INFO Collection Events output: 0 +PoolSvc INFO Writing ExplicitROOT Collection - do not pass session pointer +RootCollection Info Opening Collection File EmptyPoolCollection.root in mode: UPDATE +RootCollection Debug File EmptyPoolCollection.root does not exist. +RootCollection Info File EmptyPoolCollection.root opened +RootCollection Debug Created Collection TTree. Collection file will be EmptyPoolCollection.root +RootCollectionSchemaEditor Debug Created Branch Token, Type=Token +RootCollection Info Root collection opened, size = 0 +POOLCollFactory Debug Generated new ID for collection PFN:EmptyPoolCollection.root GUID=???? +RootCollection::Metadata Info ****** Created metadata tree in the collection file +RootCollection Debug Commit: saving collection TTree to file: EmptyPoolCollection.root +RootCollection Debug bytes written to TTree ???? +RootCollection::MetadataCommit Debug Bytes written to the Metadata TTree ???? +POOLCollFactory Debug Registering existing collection PFN=RootCollection||PFN:EmptyPoolCollection.root, LFN= +RootCollection::Metadata Debug Using char buffer of size: 4100 +RootCollection::Metadata Debug readKeys: found 1 metadata keys +POOLCollFactory Debug --- found catalog guid= +POOLCollFactory Debug --- collection guid=???? +RootCollection Debug Commit: saving collection TTree to file: EmptyPoolCollection.root +RootCollection Debug bytes written to TTree ???? +RootCollection::MetadataCommit Debug Bytes written to the Metadata TTree ???? +RootCollection Info Closing open collection 'EmptyPoolCollection.root' +RootCollection Debug Retrieved Collection TTree "POOLCollectionTree" from file EmptyPoolCollection.root +RootCollectionSchemaEditor Debug ###### Writing schema.... +Domain[ROOT_All] Info > Deaccess DbDomain READ [ROOT_All] +Domain[ROOT_All] Info -> Deaccess DbDatabase CREATE [ROOT_All] ???? +Domain[ROOT_All] Info -> Deaccess DbDatabase CREATE [ROOT_All] ???? +Domain[ROOT_All] Info -> Deaccess DbDatabase CREATE [ROOT_All] ???? +Domain[ROOT_All] Info > Deaccess DbDomain UPDATE [ROOT_All] +ApplicationMgr INFO Application Manager Stopped successfully +WriteData INFO in finalize() +WriteTag INFO in finalize() +MagicWriteTag INFO in finalize() +Stream1 DEBUG finalize: Optimize output +Stream1 DEBUG finalize: end optimize output +Stream2 DEBUG finalize: Optimize output +Stream2 DEBUG finalize: end optimize output +RegStream1 DEBUG In finalize +RegStream2 DEBUG In finalize +RegStream3 DEBUG In finalize +AthAlgSeq INFO Finalizing AthAlgSeq... +WriteData DEBUG Calling destructor +AthOutSeq INFO Finalizing AthOutSeq... +AthRegSeq INFO Finalizing AthRegSeq... +AthMasterSeq INFO Finalizing AthMasterSeq... +EventSelector INFO finalize +AthenaPoolCnvSvc DEBUG releasing all workers +DecisionSvc INFO Finalized successfully. +AthDictLoaderSvc INFO in finalize... +ToolSvc INFO Removing all tools created by ToolSvc +*****Chrono***** INFO **************************************************************************************************** +*****Chrono***** INFO The Final CPU consumption ( Chrono ) Table (ordered) +*****Chrono***** INFO **************************************************************************************************** +fRep_ALL INFO Time User : Tot= 0 [us] Ave/Min/Max= 0(+- 0)/ 0/ 0 [us] #=146 +commitOutput INFO Time User : Tot= 30 [ms] Ave/Min/Max=0.698(+- 2.55)/ 0/ 10 [ms] #= 43 +cRepR_ALL INFO Time User : Tot= 110 [ms] Ave/Min/Max=0.283(+- 2.07)/ 0/ 30 [ms] #=389 +cRep_ALL INFO Time User : Tot= 300 [ms] Ave/Min/Max= 2.05(+- 11.4)/ 0/ 120 [ms] #=146 +ChronoStatSvc INFO Time User : Tot= 2.42 [s] #= 1 +*****Chrono***** INFO **************************************************************************************************** +ChronoStatSvc.f... INFO Service finalized successfully +ApplicationMgr INFO Application Manager Finalized successfully +ApplicationMgr INFO Application Manager Terminated successfully +Athena INFO leaving with code 0: "successful run" +CORAL/Services/ConnectionService Info Deleting the ConnectionPool diff --git a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_WriteFastJobOptions.py b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_WriteFastJobOptions.py index 1fe952d4ff0154c1f2e43e8198cc51e928473f81..7cb4d9bc48e208312e06ac0907dc11ca60d63017 100644 --- a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_WriteFastJobOptions.py +++ b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_WriteFastJobOptions.py @@ -108,12 +108,12 @@ MagicWriteTag.Magic = 24 topSequence += MagicWriteTag from AthenaPoolCnvSvc.WriteAthenaPool import AthenaPoolOutputStream -Stream1 = AthenaPoolOutputStream( "Stream1" , "SimplePoolFile1.root" , True ) +Stream1 = AthenaPoolOutputStream( "Stream1" , "SimplePoolFile1.root" , True, noTag=True ) Stream1.ItemList += [ "ExampleHitContainer#MyHits" ] Stream1.ItemList += [ "ExampleHitContainer#PetersHits" ] Stream1.WritingTool.AttributeListKey = MagicWriteTag.Key -Stream2 = AthenaPoolOutputStream( "Stream2" , "SimplePoolFileA.root" , True ) +Stream2 = AthenaPoolOutputStream( "Stream2" , "SimplePoolFileA.root" , True, noTag=True ) Stream2.ItemList += [ "ExampleHitContainer#*" ] Stream2.ExcludeList += [ "ExampleHitContainer#MyHits" ] Stream2.WritingTool.AttributeListKey = "RunEventTag" @@ -121,7 +121,7 @@ Stream2.WritingTool.AttributeListKey = "RunEventTag" from AthenaPoolExampleAlgorithms.AthenaPoolExampleAlgorithmsConf import AthPoolEx__PassNoneFilter topSequence += AthPoolEx__PassNoneFilter( "PassNoneFilter" ) -Stream3 = AthenaPoolOutputStream( "Stream3" , "EmptyPoolFile.root" , True ) +Stream3 = AthenaPoolOutputStream( "Stream3" , "EmptyPoolFile.root" , True, noTag=True ) Stream3.RequireAlgs = [ "PassNoneFilter" ] #-------------------------------------------------------------- diff --git a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_WriteJobOptions.py b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_WriteJobOptions.py index 42bed82b556f358059c9a4db69611348633bec2a..40ec231ec2550ec24a0b2489bd668b59c645dec4 100755 --- a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_WriteJobOptions.py +++ b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_WriteJobOptions.py @@ -108,12 +108,12 @@ MagicWriteTag.Magic = 24 topSequence += MagicWriteTag from AthenaPoolCnvSvc.WriteAthenaPool import AthenaPoolOutputStream -Stream1 = AthenaPoolOutputStream( "Stream1" , "SimplePoolFile1.root" , True ) +Stream1 = AthenaPoolOutputStream( "Stream1" , "SimplePoolFile1.root" , True, noTag=True ) Stream1.ItemList += [ "ExampleHitContainer#MyHits" ] Stream1.ItemList += [ "ExampleHitContainer#PetersHits" ] Stream1.WritingTool.AttributeListKey = MagicWriteTag.Key -Stream2 = AthenaPoolOutputStream( "Stream2" , "SimplePoolFile2.root" , True ) +Stream2 = AthenaPoolOutputStream( "Stream2" , "SimplePoolFile2.root" , True, noTag=True ) Stream2.ItemList += [ "ExampleHitContainer#*" ] Stream2.ExcludeList += [ "ExampleHitContainer#MyHits" ] Stream2.WritingTool.AttributeListKey = "RunEventTag" @@ -121,7 +121,7 @@ Stream2.WritingTool.AttributeListKey = "RunEventTag" from AthenaPoolExampleAlgorithms.AthenaPoolExampleAlgorithmsConf import AthPoolEx__PassNoneFilter topSequence += AthPoolEx__PassNoneFilter( "PassNoneFilter" ) -Stream3 = AthenaPoolOutputStream( "Stream3" , "EmptyPoolFile.root" , True ) +Stream3 = AthenaPoolOutputStream( "Stream3" , "EmptyPoolFile.root" , True, noTag=True ) Stream3.RequireAlgs = [ "PassNoneFilter" ] #-------------------------------------------------------------- diff --git a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/src/WriteTag.cxx b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/src/WriteTag.cxx index 458f60eef88dfbee7722444418416e017a3c2800..09eb81fdd4a2e8de1a60896c5180f707ed11181b 100755 --- a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/src/WriteTag.cxx +++ b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/src/WriteTag.cxx @@ -10,8 +10,9 @@ #include "WriteTag.h" -// the user data-class defintions #include "AthenaPoolUtilities/TagAthenaAttributeList.h" +#include "PersistentDataModel/AthenaAttributeList.h" +#include "AthenaPoolUtilities/AthenaAttributeListSpecification.h" #include "EventInfo/EventInfo.h" #include "EventInfo/EventID.h" @@ -59,16 +60,24 @@ StatusCode WriteTag::execute() { unsigned int runNumber = evt->event_ID()->run_number(); ATH_MSG_INFO("EventInfo event: " << eventNumber << " run: " << runNumber); - TagAthenaAttributeList* attribList = new TagAthenaAttributeList(*m_attribListSpec); + auto tagAttribList = std::make_unique<TagAthenaAttributeList>(*m_attribListSpec); + (*tagAttribList)["RunNumber"].data<unsigned int>() = runNumber; + (*tagAttribList)["EventNumber"].data<unsigned int>() = eventNumber; + if (m_magic > 0) { + (*tagAttribList)["MagicNumber"].data<unsigned int>() = m_magic.value(); + } + + coral::AttributeListSpecification* cspec = new coral::AttributeListSpecification; + m_attribListSpec->coralSpec (*cspec); + auto attribList = std::make_unique<AthenaAttributeList>(*cspec); + cspec->release(); (*attribList)["RunNumber"].data<unsigned int>() = runNumber; (*attribList)["EventNumber"].data<unsigned int>() = eventNumber; if (m_magic > 0) { (*attribList)["MagicNumber"].data<unsigned int>() = m_magic.value(); } - if (evtStore()->record(attribList, m_key.value()).isFailure()) { - ATH_MSG_ERROR("Could not record TagAthenaAttributeList object."); - return StatusCode::FAILURE; - } + ATH_CHECK( evtStore()->record (std::move(attribList), m_key.value()) ); + ATH_CHECK( evtStore()->record (std::move(tagAttribList), m_key.value()) ); ATH_MSG_INFO("registered all data"); return StatusCode::SUCCESS;