diff --git a/AtlasTest/DatabaseTest/AthenaPoolMultiTest/share/ExampleStreamConfig.py b/AtlasTest/DatabaseTest/AthenaPoolMultiTest/share/ExampleStreamConfig.py
index 780fc0fd705a31024dae142e5084ba283ccdc570..ea9e76d23d60ba33b125e07ae316eaa7cb5ec9df 100755
--- a/AtlasTest/DatabaseTest/AthenaPoolMultiTest/share/ExampleStreamConfig.py
+++ b/AtlasTest/DatabaseTest/AthenaPoolMultiTest/share/ExampleStreamConfig.py
@@ -50,12 +50,12 @@ exampleMetadataList += ["LumiBlockCollection#*"]
 #   - does not disrupt further stream transforms
 
 def ExampleStreamConfig(streamname):
-   streamname.WritingTool = "AthenaPoolOutputStreamTool"
+   streamname.WritingTool = "AthenaOutputStreamTool"
    streamname.ItemList += exampleItemList
    return
 
 def ExampleStreamConfig2(streamname,tag):
-   streamname.WritingTool = "AthenaPoolOutputStreamTool"
+   streamname.WritingTool = "AthenaOutputStreamTool"
 #   streamname.ItemList += exampleItemList
    streamname.TakeItemsFromInput = True
    streamname.ProcessingTag = tag
diff --git a/AtlasTest/DatabaseTest/AthenaPoolTest/share/AthenaPoolTestCopy.py b/AtlasTest/DatabaseTest/AthenaPoolTest/share/AthenaPoolTestCopy.py
index f089b3e46feaa44fca2ae6577bc61724f4824f02..d8b0bc783b77363c1051e1b38387f12d0ca500d4 100755
--- a/AtlasTest/DatabaseTest/AthenaPoolTest/share/AthenaPoolTestCopy.py
+++ b/AtlasTest/DatabaseTest/AthenaPoolTest/share/AthenaPoolTestCopy.py
@@ -84,7 +84,7 @@ topSequence += AthenaPoolOutputStream( "Stream1" )
 # Must make sure that no OutStream's have been declared
 theApp.OutStream    = []; 
 # Stream's output file
-Stream1.WritingTool = "AthenaPoolOutputStreamTool"
+Stream1.WritingTool = "AthenaOutputStreamTool"
 Stream1.OutputFile  = "SimplePoolFile2.root"
 Stream1.OutputLevel = DEBUG
 
diff --git a/AtlasTest/DatabaseTest/AthenaPoolTest/share/AthenaPoolTestStep2Write.py b/AtlasTest/DatabaseTest/AthenaPoolTest/share/AthenaPoolTestStep2Write.py
index 49b77ac4dd736909dec5242fbb27b79afd6ede95..6cee676bfe189b9b5889047672e092d52741a694 100755
--- a/AtlasTest/DatabaseTest/AthenaPoolTest/share/AthenaPoolTestStep2Write.py
+++ b/AtlasTest/DatabaseTest/AthenaPoolTest/share/AthenaPoolTestStep2Write.py
@@ -73,7 +73,7 @@ topSequence += AthenaPoolOutputStream( "Stream1", noTag=True )
 # Must make sure that no OutStream's have been declared
 theApp.OutStream     = []; 
 # Stream's output file
-Stream1.WritingTool = "AthenaPoolOutputStreamTool"
+Stream1.WritingTool = "AthenaOutputStreamTool"
 Stream1.OutputFile  = "SimplePoolFile1.root"
 # List of DO's to write out
 #Stream1.ItemList   += fullItemList
diff --git a/AtlasTest/DatabaseTest/AthenaPoolTest/share/CaloClusterStep2Writer_jobOptions.py b/AtlasTest/DatabaseTest/AthenaPoolTest/share/CaloClusterStep2Writer_jobOptions.py
index d68a2fbe433fb0986b468c21e24535c9e74b002c..8af94f00da235199974c0abc7c923929afc259b1 100755
--- a/AtlasTest/DatabaseTest/AthenaPoolTest/share/CaloClusterStep2Writer_jobOptions.py
+++ b/AtlasTest/DatabaseTest/AthenaPoolTest/share/CaloClusterStep2Writer_jobOptions.py
@@ -74,7 +74,7 @@ theApp.TopAlg   += [ "AthenaOutputStream/Stream1" ]
 theApp.OutStream    = []; 
 # Stream's output file
 Stream1 = Algorithm( "AthenaOutputStream/Stream1" )
-Stream1.WritingTool = "AthenaPoolOutputStreamTool"
+Stream1.WritingTool = "AthenaOutputStreamTool"
 Stream1.OutputFile  = "SimplePoolFile2.root"
 # List of DO's to write out
 #Stream1.ItemList += ["CaloCellContainer#*"]
diff --git a/AtlasTest/DatabaseTest/AthenaPoolTest/share/LArCellContWriter_jobOptionsRegStep2.py b/AtlasTest/DatabaseTest/AthenaPoolTest/share/LArCellContWriter_jobOptionsRegStep2.py
index af703e12a529e1c52685973bd8db653605ffa5d4..c48652c1b2d83ff59f450639b62224a342fe8d6e 100755
--- a/AtlasTest/DatabaseTest/AthenaPoolTest/share/LArCellContWriter_jobOptionsRegStep2.py
+++ b/AtlasTest/DatabaseTest/AthenaPoolTest/share/LArCellContWriter_jobOptionsRegStep2.py
@@ -64,7 +64,7 @@ theApp.TopAlg   += [ "AthenaOutputStream/Stream1" ]
 theApp.OutStream    = []; 
 # Must assigne conversion service to output stream
 Stream1 = Algorithm( "Stream1" )
-Stream1.WritingTool = "AthenaPoolOutputStreamTool"
+Stream1.WritingTool = "AthenaOutputStreamTool"
 Stream1.OutputFile  = "SimplePoolFile1.root"
 # List of DO's to write out
 Stream1.ItemList += ["EventInfo#*"]
diff --git a/AtlasTest/DatabaseTest/IOVDbTestAlg/share/AllWriteCool.py b/AtlasTest/DatabaseTest/IOVDbTestAlg/share/AllWriteCool.py
index 1b71b9972c101764324ddb0f6e636f95b4eff832..282f4cd98d04689f1d7da46effb96b4b130881ab 100755
--- a/AtlasTest/DatabaseTest/IOVDbTestAlg/share/AllWriteCool.py
+++ b/AtlasTest/DatabaseTest/IOVDbTestAlg/share/AllWriteCool.py
@@ -104,5 +104,5 @@ theApp.OutStream = []
 
 from AthenaCommon.AppMgr import ToolSvc
 IOVDbTestAlg.StreamName = "CondStream2"
-from OutputStreamAthenaPool.OutputStreamAthenaPoolConf import AthenaPoolOutputStreamTool
-ToolSvc += AthenaPoolOutputStreamTool("CondStream2",OutputFile = str(IOVDbTestAlg.run) + "-inf.root")
+from AthenaServices.AthenaServicesConf import AthenaOutputStreamTool
+ToolSvc += AthenaOutputStreamTool("CondStream2",OutputFile = str(IOVDbTestAlg.run) + "-inf.root")
diff --git a/AtlasTest/DatabaseTest/IOVDbTestAlg/share/IOVDbTestAlgReadCoolWriteMD.py b/AtlasTest/DatabaseTest/IOVDbTestAlg/share/IOVDbTestAlgReadCoolWriteMD.py
index 4be42867412c9e45c8eed8b76924beb9a5e523d2..c60f585d421c8fd2c991f6089c02fc0683757a34 100644
--- a/AtlasTest/DatabaseTest/IOVDbTestAlg/share/IOVDbTestAlgReadCoolWriteMD.py
+++ b/AtlasTest/DatabaseTest/IOVDbTestAlg/share/IOVDbTestAlgReadCoolWriteMD.py
@@ -151,8 +151,8 @@ theApp.OutStream = []
 
 from AthenaCommon.AppMgr import ToolSvc
 IOVDbTestAlg.StreamName = "CondStream2"
-from OutputStreamAthenaPool.OutputStreamAthenaPoolConf import AthenaPoolOutputStreamTool
-ToolSvc += AthenaPoolOutputStreamTool("CondStream2",OutputFile = "SimplePoolFile.root")
+from AthenaServices.AthenaServicesConf import AthenaOutputStreamTool
+ToolSvc += AthenaOutputStreamTool("CondStream2",OutputFile = "SimplePoolFile.root")
 
 include( "EventAthenaPool/EventAthenaPoolItemList_joboptions.py" )
 
diff --git a/AtlasTest/DatabaseTest/IOVDbTestAlg/share/IOVDbTestAlgWriteCool.py b/AtlasTest/DatabaseTest/IOVDbTestAlg/share/IOVDbTestAlgWriteCool.py
index fa20eafea003a9377fc8fe7c6186fd4e47b3a06e..5fbfd58f7d1cef428ef02367b95dd8c829cf4bb8 100755
--- a/AtlasTest/DatabaseTest/IOVDbTestAlg/share/IOVDbTestAlgWriteCool.py
+++ b/AtlasTest/DatabaseTest/IOVDbTestAlg/share/IOVDbTestAlgWriteCool.py
@@ -144,5 +144,5 @@ theApp.OutStream = []
 
 from AthenaCommon.AppMgr import ToolSvc
 IOVDbTestAlg.StreamName = "CondStream2"
-from OutputStreamAthenaPool.OutputStreamAthenaPoolConf import AthenaPoolOutputStreamTool
-ToolSvc += AthenaPoolOutputStreamTool("CondStream2",OutputFile = "SimplePoolFile.root")
+from AthenaServices.AthenaServicesConf import AthenaOutputStreamTool
+ToolSvc += AthenaOutputStreamTool("CondStream2",OutputFile = "SimplePoolFile.root")
diff --git a/AtlasTest/DatabaseTest/IOVDbTestAlg/share/IOVDbTestAlgWriteCoolNewTag.py b/AtlasTest/DatabaseTest/IOVDbTestAlg/share/IOVDbTestAlgWriteCoolNewTag.py
index 7450b24567c6abaf08c6289e250b9fb09a3f5e0d..18e6b225a31108ae336ed8125d336c3876dadf9a 100644
--- a/AtlasTest/DatabaseTest/IOVDbTestAlg/share/IOVDbTestAlgWriteCoolNewTag.py
+++ b/AtlasTest/DatabaseTest/IOVDbTestAlg/share/IOVDbTestAlgWriteCoolNewTag.py
@@ -142,5 +142,5 @@ theApp.OutStream = []
 
 from AthenaCommon.AppMgr import ToolSvc
 IOVDbTestAlg.StreamName = "CondStream2"
-from OutputStreamAthenaPool.OutputStreamAthenaPoolConf import AthenaPoolOutputStreamTool
-ToolSvc += AthenaPoolOutputStreamTool("CondStream2",OutputFile = "SimplePoolFile.root")
+from AthenaServices.AthenaServicesConf import AthenaOutputStreamTool
+ToolSvc += AthenaOutputStreamTool("CondStream2",OutputFile = "SimplePoolFile.root")
diff --git a/AtlasTest/DatabaseTest/IOVDbTestAlg/share/IOVDbTestAlgWriteCoolNoReg.py b/AtlasTest/DatabaseTest/IOVDbTestAlg/share/IOVDbTestAlgWriteCoolNoReg.py
index 27940cf62a893bbefd23cb2873a623591b4f72ff..0329d150b13f0e41aefe652af4e21c307bb1bc67 100755
--- a/AtlasTest/DatabaseTest/IOVDbTestAlg/share/IOVDbTestAlgWriteCoolNoReg.py
+++ b/AtlasTest/DatabaseTest/IOVDbTestAlg/share/IOVDbTestAlgWriteCoolNoReg.py
@@ -92,7 +92,7 @@ theApp.OutStream = []
 
 from AthenaCommon.AppMgr import ToolSvc
 IOVDbTestAlg.StreamName = "CondStream1"
-from OutputStreamAthenaPool.OutputStreamAthenaPoolConf import AthenaPoolOutputStreamTool
-ToolSvc += AthenaPoolOutputStreamTool("CondStream1",OutputFile = "SimplePoolFile.root")
+from AthenaServices.AthenaServicesConf import AthenaOutputStreamTool
+ToolSvc += AthenaOutputStreamTool("CondStream1",OutputFile = "SimplePoolFile.root")
 
 
diff --git a/AtlasTest/DatabaseTest/IOVDbTestAlg/share/IOVDbTestAlgWriteCoolStep2.py b/AtlasTest/DatabaseTest/IOVDbTestAlg/share/IOVDbTestAlgWriteCoolStep2.py
index ffe24ebcac4d5cbdb52824549668458c6bf01282..d3b8ac3fbe18095d756ec889f5d04180862e9100 100755
--- a/AtlasTest/DatabaseTest/IOVDbTestAlg/share/IOVDbTestAlgWriteCoolStep2.py
+++ b/AtlasTest/DatabaseTest/IOVDbTestAlg/share/IOVDbTestAlgWriteCoolStep2.py
@@ -133,6 +133,6 @@ theApp.OutStream = []
 
 from AthenaCommon.AppMgr import ToolSvc
 IOVDbTestAlg.StreamName = "CondStream2"
-from OutputStreamAthenaPool.OutputStreamAthenaPoolConf import AthenaPoolOutputStreamTool
-ToolSvc += AthenaPoolOutputStreamTool("CondStream2",OutputFile = "SimplePoolFile.root")
+from AthenaServices.AthenaServicesConf import AthenaOutputStreamTool
+ToolSvc += AthenaOutputStreamTool("CondStream2",OutputFile = "SimplePoolFile.root")
 
diff --git a/AtlasTest/DatabaseTest/IOVDbTestAlg/share/IOVDbTestAlgWriteCoolStep3.py b/AtlasTest/DatabaseTest/IOVDbTestAlg/share/IOVDbTestAlgWriteCoolStep3.py
index 7088ce993fdbb0516392b1960bc4d3eadbccb505..6d4ed45abaeae6c21e5bfea06078ca1e57490444 100755
--- a/AtlasTest/DatabaseTest/IOVDbTestAlg/share/IOVDbTestAlgWriteCoolStep3.py
+++ b/AtlasTest/DatabaseTest/IOVDbTestAlg/share/IOVDbTestAlgWriteCoolStep3.py
@@ -133,6 +133,6 @@ theApp.OutStream = []
 
 from AthenaCommon.AppMgr import ToolSvc
 IOVDbTestAlg.StreamName = "CondStream2"
-from OutputStreamAthenaPool.OutputStreamAthenaPoolConf import AthenaPoolOutputStreamTool
-ToolSvc += AthenaPoolOutputStreamTool("CondStream2",OutputFile = "SimplePoolFile.root")
+from AthenaServices.AthenaServicesConf import AthenaOutputStreamTool
+ToolSvc += AthenaOutputStreamTool("CondStream2",OutputFile = "SimplePoolFile.root")
 
diff --git a/AtlasTest/DatabaseTest/IOVDbTestAlg/src/IOVDbTestAlg.cxx b/AtlasTest/DatabaseTest/IOVDbTestAlg/src/IOVDbTestAlg.cxx
index 2998183814e94704517966013ba8f74a867dddfc..0f88d1b818afe4ba8ef6c03d7d9252fe441d2b9a 100755
--- a/AtlasTest/DatabaseTest/IOVDbTestAlg/src/IOVDbTestAlg.cxx
+++ b/AtlasTest/DatabaseTest/IOVDbTestAlg/src/IOVDbTestAlg.cxx
@@ -162,7 +162,7 @@ StatusCode IOVDbTestAlg::initialize(){
 		<< endmsg;
 	    return StatusCode::FAILURE;
 	}
-	sc = toolSvc->retrieveTool("AthenaPoolOutputStreamTool", m_streamName, m_streamer);
+	sc = toolSvc->retrieveTool("AthenaOutputStreamTool", m_streamName, m_streamer);
 	if (sc.isFailure()) {
 	    log << MSG::INFO
 		<< "Unable to find AthenaOutputStreamTool" 
diff --git a/AtlasTest/DatabaseTest/TagCollectionTest/share/MakeDummyCollection.py b/AtlasTest/DatabaseTest/TagCollectionTest/share/MakeDummyCollection.py
index 4f3fd9d474660199bcddaea3e3b2f9171cf5ed76..cbcb49cf1d3cd27820427e4a953af3d3a855ff59 100755
--- a/AtlasTest/DatabaseTest/TagCollectionTest/share/MakeDummyCollection.py
+++ b/AtlasTest/DatabaseTest/TagCollectionTest/share/MakeDummyCollection.py
@@ -128,7 +128,7 @@ ToolSvc = Service( "ToolSvc" )
 Stream1 = AthenaOutputStream( "Stream1" )
 
 # Tool for output stream:
-Stream1.WritingTool = "AthenaPoolOutputStreamTool"
+Stream1.WritingTool = "AthenaOutputStreamTool"
 
 # Set processing stage name for <>_ref
 try:
diff --git a/AtlasTest/DatabaseTest/TagCollectionTest/share/MakeDummyCollection2.py b/AtlasTest/DatabaseTest/TagCollectionTest/share/MakeDummyCollection2.py
index acf006f3890271830a5226846297eb267be29d30..f0d28d19baf7fc3f46963899a4affc8cad206a92 100755
--- a/AtlasTest/DatabaseTest/TagCollectionTest/share/MakeDummyCollection2.py
+++ b/AtlasTest/DatabaseTest/TagCollectionTest/share/MakeDummyCollection2.py
@@ -149,7 +149,7 @@ ToolSvc = Service( "ToolSvc" )
 Stream1 = AthenaOutputStream( "Stream1" )
 
 # Tool for output stream:
-Stream1.WritingTool = "AthenaPoolOutputStreamTool"
+Stream1.WritingTool = "AthenaOutputStreamTool"
 
 # Set processing stage name for <>_ref
 try:
diff --git a/AtlasTest/DatabaseTest/TagCollectionTest/share/test_justRSProperties.py b/AtlasTest/DatabaseTest/TagCollectionTest/share/test_justRSProperties.py
index 35de6c5ef5409ea77d784d06ddc32fff0c666e7f..fb5ec99f817f89442034a00303bf84bd4d1d9563 100755
--- a/AtlasTest/DatabaseTest/TagCollectionTest/share/test_justRSProperties.py
+++ b/AtlasTest/DatabaseTest/TagCollectionTest/share/test_justRSProperties.py
@@ -75,7 +75,7 @@ ToolSvc = Service( "ToolSvc" )
 Stream1 = AthenaOutputStream( "Stream1" )
 
 # Tool for output stream:
-Stream1.WritingTool = "AthenaPoolOutputStreamTool"
+Stream1.WritingTool = "AthenaOutputStreamTool"
 # Set processing stage name for <>_ref
 Stream1.ProcessingTag = 'PROP_ONLY'
 Stream1.OutputFile = "OutputData.root"
diff --git a/AtlasTest/PyAthenaTests/share/pyathena_basic_record_retrieve.py b/AtlasTest/PyAthenaTests/share/pyathena_basic_record_retrieve.py
index 2e755e23f2aca21754314731071beb93bd3294d9..fede1ae00edea44a7555a4a8316faa2028847a48 100644
--- a/AtlasTest/PyAthenaTests/share/pyathena_basic_record_retrieve.py
+++ b/AtlasTest/PyAthenaTests/share/pyathena_basic_record_retrieve.py
@@ -27,7 +27,7 @@ theApp.EvtMax = EVTMAX
 import AthenaPoolCnvSvc.WriteAthenaPool
 
 job += CfgMgr.AthenaOutputStream("OutStream",
-                                  WritingTool="AthenaPoolOutputStreamTool")
+                                  WritingTool="AthenaOutputStreamTool")
 outStream = job.OutStream
 outStream.ItemList = [
     "EventInfo#*",
diff --git a/AtlasTest/PyAthenaTests/share/pyfilter_stream_jobOptions.py b/AtlasTest/PyAthenaTests/share/pyfilter_stream_jobOptions.py
index f5cb23509122052da600e0ede7f6a34697e1ebf2..86a315f9a4f96fb876a1a373f937f054437cd754 100644
--- a/AtlasTest/PyAthenaTests/share/pyfilter_stream_jobOptions.py
+++ b/AtlasTest/PyAthenaTests/share/pyfilter_stream_jobOptions.py
@@ -37,7 +37,7 @@ import AthenaPoolCnvSvc.WriteAthenaPool
 ## create an output stream
 job += CfgMgr.AthenaOutputStream(
     'OutStream',
-    WritingTool = "AthenaPoolOutputStreamTool"
+    WritingTool = "AthenaOutputStreamTool"
     )
 # Copy everything from the input and must force reading of all input
 # objects
diff --git a/AtlasTest/PyAthenaTests/share/pythin_basic_jobOptions.py b/AtlasTest/PyAthenaTests/share/pythin_basic_jobOptions.py
index a94453578238f50a75b1d3b88c63207f6ae56e12..4b0daeba25f1f6340d395e7c72a3a8821ae87767 100644
--- a/AtlasTest/PyAthenaTests/share/pythin_basic_jobOptions.py
+++ b/AtlasTest/PyAthenaTests/share/pythin_basic_jobOptions.py
@@ -50,7 +50,7 @@ theApp.EvtMax = EVTMAX
 import AthenaPoolCnvSvc.WriteAthenaPool
 
 job += CfgMgr.AthenaOutputStream("OutStream",
-                                  WritingTool="AthenaPoolOutputStreamTool")
+                                  WritingTool="AthenaOutputStreamTool")
 outStream = job.OutStream
 outStream.ItemList = [
      "EventInfo#*",
diff --git a/AtlasTest/PyAthenaTests/share/pythin_jobOptions.py b/AtlasTest/PyAthenaTests/share/pythin_jobOptions.py
index 7aace9036124abbd621348b1c177d731349978a1..6eb802a32e8b3f19f76c04bcda1722f9a9c750b2 100644
--- a/AtlasTest/PyAthenaTests/share/pythin_jobOptions.py
+++ b/AtlasTest/PyAthenaTests/share/pythin_jobOptions.py
@@ -45,7 +45,7 @@ import AthenaPoolCnvSvc.WriteAthenaPool
 ## create an output stream
 job += CfgMgr.AthenaOutputStream(
     'OutStream',
-    WritingTool = "AthenaPoolOutputStreamTool"
+    WritingTool = "AthenaOutputStreamTool"
     )
 # Copy everything from the input and must force reading of all input
 # objects
diff --git a/AtlasTest/PyAthenaTests/share/pythin_mctruth_jobOptions.py b/AtlasTest/PyAthenaTests/share/pythin_mctruth_jobOptions.py
index 14b3872df1667ac0e06470705861bd14f3b57a3a..d51b772821264e3783f06aff2ea11f77168150f7 100644
--- a/AtlasTest/PyAthenaTests/share/pythin_mctruth_jobOptions.py
+++ b/AtlasTest/PyAthenaTests/share/pythin_mctruth_jobOptions.py
@@ -57,7 +57,7 @@ import AthenaPoolCnvSvc.WriteAthenaPool
 ## create an output stream
 job += CfgMgr.AthenaOutputStream(
     'OutStream',
-    WritingTool = "AthenaPoolOutputStreamTool"
+    WritingTool = "AthenaOutputStreamTool"
     )
 job.OutStream.TakeItemsFromInput = False
 job.OutStream.ForceRead          = True
diff --git a/AtlasTest/PyAthenaTests/share/pythin_multistream_jobOptions.py b/AtlasTest/PyAthenaTests/share/pythin_multistream_jobOptions.py
index ef7612b239b9a060b323faaf52e0fa3f75f4ea77..893b99e456e76ac9aa0d1fdff036479c353494e6 100644
--- a/AtlasTest/PyAthenaTests/share/pythin_multistream_jobOptions.py
+++ b/AtlasTest/PyAthenaTests/share/pythin_multistream_jobOptions.py
@@ -69,7 +69,7 @@ import AthenaPoolCnvSvc.WriteAthenaPool
 ## thinning of odds elements (1,3,5,...)
 #########################################
 job += CfgMgr.AthenaOutputStream("OutStream_0",
-                                  WritingTool="AthenaPoolOutputStreamTool")
+                                  WritingTool="AthenaOutputStreamTool")
 outStream = job.OutStream_0
 outStream.ItemList = [
      "EventInfo#*",
@@ -83,7 +83,7 @@ outStream.OutputFile = OUTPUT_0
 ## no-thinning
 #########################################
 job += CfgMgr.AthenaOutputStream("OutStream_nothinning",
-                                  WritingTool="AthenaPoolOutputStreamTool")
+                                  WritingTool="AthenaOutputStreamTool")
 outStream = job.OutStream_nothinning
 outStream.ItemList = [
      "EventInfo#*",
@@ -96,7 +96,7 @@ outStream.OutputFile = OUTPUT_NOTHINNING
 ## thinning of evens elements (0,2,4,...)
 #########################################
 job += CfgMgr.AthenaOutputStream("OutStream_1",
-                                  WritingTool="AthenaPoolOutputStreamTool")
+                                  WritingTool="AthenaOutputStreamTool")
 outStream = job.OutStream_1
 outStream.ItemList = [
      "EventInfo#*",
diff --git a/AtlasTest/PyAthenaTests/share/pytrigdec_jobOptions.py b/AtlasTest/PyAthenaTests/share/pytrigdec_jobOptions.py
index 1a6d7e204e72008bcb4fe5429c370db44de86cee..edee69ba4171c27ad8562b22983a58a96218bed7 100644
--- a/AtlasTest/PyAthenaTests/share/pytrigdec_jobOptions.py
+++ b/AtlasTest/PyAthenaTests/share/pytrigdec_jobOptions.py
@@ -75,7 +75,7 @@ import AthenaPoolCnvSvc.WriteAthenaPool
 ## create an output stream
 job += CfgMgr.AthenaOutputStream(
     'OutStream',
-    WritingTool = "AthenaPoolOutputStreamTool"
+    WritingTool = "AthenaOutputStreamTool"
     )
 # Copy everything from the input and must force reading of all input
 # objects
diff --git a/Control/AthenaExamples/AthExBeginRun/share/AthExBeginRunWriteCond.py b/Control/AthenaExamples/AthExBeginRun/share/AthExBeginRunWriteCond.py
index 5028e69a37c1edb1041deb3400b9d77ee89d99de..df0fe9730bf7140cbd41430da954baf56b57b072 100644
--- a/Control/AthenaExamples/AthExBeginRun/share/AthExBeginRunWriteCond.py
+++ b/Control/AthenaExamples/AthExBeginRun/share/AthExBeginRunWriteCond.py
@@ -46,8 +46,8 @@ theApp.EvtMax = 1
 # Define output stream for POOL file
 theApp.OutStream = []
 from AthenaCommon.AppMgr import ToolSvc
-from OutputStreamAthenaPool.OutputStreamAthenaPoolConf import AthenaPoolOutputStreamTool
-ToolSvc += AthenaPoolOutputStreamTool("AthExCondStream", OutputFile = "AthExCondStream.root")
+from AthenaServices.AthenaServicesConf import AthenaOutputStreamTool
+ToolSvc += AthenaOutputStreamTool("AthExCondStream", OutputFile = "AthExCondStream.root")
 
 # Print job configuration
 print job
diff --git a/Control/AthenaExamples/AthExBeginRun/src/AthExCreateCondAlg.cxx b/Control/AthenaExamples/AthExBeginRun/src/AthExCreateCondAlg.cxx
index dcde137dd271d7e5acc04f45276b71564a938a40..69dd12bf40241f59032da847e60fbd363708aa9f 100644
--- a/Control/AthenaExamples/AthExBeginRun/src/AthExCreateCondAlg.cxx
+++ b/Control/AthenaExamples/AthExBeginRun/src/AthExCreateCondAlg.cxx
@@ -71,7 +71,7 @@ StatusCode AthExCreateCondAlg::createCondObjects()
     return StatusCode::FAILURE;
   }
 
-  ToolHandle<IAthenaOutputStreamTool> streamTool("AthenaPoolOutputStreamTool/AthExCondStream");  
+  ToolHandle<IAthenaOutputStreamTool> streamTool("AthenaOutputStreamTool/AthExCondStream");  
   if (streamTool.retrieve().isFailure()) {
     ATH_MSG_FATAL ("Unable to find AthenaOutputStreamTool");
     return StatusCode::FAILURE;
diff --git a/Control/AthenaExamples/AthExThinning/share/WriteSlimmedData_jobOptions.py b/Control/AthenaExamples/AthExThinning/share/WriteSlimmedData_jobOptions.py
index dda499d292740175ce91c108d44f0e9d63e753f0..b9c846e8a0dd0f7ebd3cd8d400493ada1ebb25c8 100644
--- a/Control/AthenaExamples/AthExThinning/share/WriteSlimmedData_jobOptions.py
+++ b/Control/AthenaExamples/AthExThinning/share/WriteSlimmedData_jobOptions.py
@@ -60,7 +60,7 @@ for i in xrange(2):
    _outStreamName = "StreamUSR_%i" % i
    topSequence += CfgMgr.AthenaOutputStream(
       _outStreamName,
-      WritingTool = "AthenaPoolOutputStreamTool"
+      WritingTool = "AthenaOutputStreamTool"
       )
    outStreams += [getattr(topSequence, _outStreamName)]
    outStream   = outStreams[i]
diff --git a/Control/AthenaExamples/AthExThinning/share/WriteThinnedData_jobOptions.py b/Control/AthenaExamples/AthExThinning/share/WriteThinnedData_jobOptions.py
index e58c271e006e2ba0580fb3cc9ee497693db1c0c7..107388cb83cabfde3d4a3a1ce57724f5f756878b 100644
--- a/Control/AthenaExamples/AthExThinning/share/WriteThinnedData_jobOptions.py
+++ b/Control/AthenaExamples/AthExThinning/share/WriteThinnedData_jobOptions.py
@@ -67,7 +67,7 @@ for i in xrange(2):
    _outStreamName = "StreamUSR_%i" % i
    topSequence += CfgMgr.AthenaOutputStream(
       _outStreamName,
-      WritingTool = "AthenaPoolOutputStreamTool")
+      WritingTool = "AthenaOutputStreamTool")
    outStreams += [getattr(topSequence, _outStreamName)]
    outStream   = outStreams[i]
    
diff --git a/Control/AthenaServices/share/AthenaOutputStream_test.py b/Control/AthenaServices/share/AthenaOutputStream_test.py
index b484e41be7b716984e8ac5899bb3180894d96434..da0ad5e715f31d479009eb905312e9d43efbf0bb 100644
--- a/Control/AthenaServices/share/AthenaOutputStream_test.py
+++ b/Control/AthenaServices/share/AthenaOutputStream_test.py
@@ -13,3 +13,5 @@ AthenaOutputStream.OutputLevel = 1
 AthenaOutputStream.ItemList=["Bar#uno", "Bar#due", "Bar#tre" ,
 			     "8101#*","13#*"]       
 AthenaOutputStream.AcceptAlgs=["AthenaOutputStream", "aSFQS"]
+AthenaOutputStreamTool = Algorithm( "AthenaOutputStreamTool" )
+AthenaOutputStreamTool.Store = StoreGateSvc
diff --git a/Control/AthenaServices/share/AthenaOutputStream_test.ref b/Control/AthenaServices/share/AthenaOutputStream_test.ref
index 9d5ebb0cfc488d81a01eb8d6ac5bfa18ddeda74e..efb1a7145cbdd6d6f945770c7fa95374e568dee9 100644
--- a/Control/AthenaServices/share/AthenaOutputStream_test.ref
+++ b/Control/AthenaServices/share/AthenaOutputStream_test.ref
@@ -2,21 +2,24 @@
 
 
 Initializing Gaudi ApplicationMgr using job opts ../share/AthenaOutputStream_test.txt
-JobOptionsSvc        INFO # =======> /afs/cern.ch/user/s/ssnyder/atlas-work3/Control/AthenaServices/share/../share/AthenaOutputStream_test.txt
+JobOptionsSvc        INFO # =======> /home/gemmeren/workarea/athena/Control/AthenaServices/share/../share/AthenaOutputStream_test.txt
 JobOptionsSvc        INFO # (5,1): MessageSvc.OutputLevel = 2
 JobOptionsSvc        INFO # (6,1): StoreGateSvc.OutputLevel = 2
 JobOptionsSvc        INFO # (8,1): AthenaOutputStream.OutputLevel = 1
 JobOptionsSvc        INFO # (10,1): AthenaOutputStream.ItemList = ["Bar#uno", "Bar#due", "Bar#tre", "8101#*", "Fee#quattro", "Fee!#cinque", "13#*"]
 JobOptionsSvc        INFO # (15,1): AthenaOutputStream.AcceptAlgs = ["AthenaOutputStream", "aSFQS"]
 JobOptionsSvc        INFO Job options successfully read in from ../share/AthenaOutputStream_test.txt
+MessageSvc          DEBUG Service base class initialized successfully
 ApplicationMgr      DEBUG Getting my own properties
 ApplicationMgr    SUCCESS 
 ====================================================================================================================================
-                                                   Welcome to ApplicationMgr (GaudiCoreSvc v30r0)
-                                          running on lxplus020.cern.ch on Mon Dec 11 13:15:32 2017
+                                                   Welcome to ApplicationMgr (GaudiCoreSvc v30r1)
+                                          running on hepd-0003 on Wed Jan 31 14:51:16 2018
 ====================================================================================================================================
 ApplicationMgr       INFO Application Manager Configured successfully
+ServiceManager      DEBUG Initializing service AppMgrRunable
 AppMgrRunable       DEBUG Service base class initialized successfully
+ServiceManager      DEBUG Initializing service EventLoopMgr
 EventLoopMgr        DEBUG Service base class initialized successfully
 IncidentSvc         DEBUG Service base class initialized successfully
 IncidentSvc         DEBUG Adding [AbortEvent] listener '<unknown>' with priority 0
@@ -32,16 +35,16 @@ ApplicationMgr       INFO Application Manager Initialized successfully
 ApplicationMgr Ready
 ClassIDSvc          DEBUG Service base class initialized successfully
 IncidentSvc         DEBUG Adding [ModuleLoaded] listener 'ClassIDSvc' with priority 100
-ClassIDSvc           INFO  getRegistryEntries: read 919 CLIDRegistry entries for module ALL
-ClassIDSvc          DEBUG processCLIDDB: read 1485 entries from CLIDDB file: /afs/cern.ch/user/s/ssnyder/atlas-work3/build-x86_64-slc6-gcc62-opt/x86_64-slc6-gcc62-opt/share/clid.db
-ClassIDSvc          DEBUG processCLIDDB: read 1485 entries from CLIDDB file: /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2017-12-10T2303/Athena/22.0.0/InstallArea/x86_64-slc6-gcc62-opt/share/clid.db
+ClassIDSvc           INFO  getRegistryEntries: read 920 CLIDRegistry entries for module ALL
+ClassIDSvc          DEBUG processCLIDDB: read 1490 entries from CLIDDB file: /home/gemmeren/workarea/build/x86_64-centos7-gcc62-opt/share/clid.db
+ClassIDSvc          DEBUG processCLIDDB: read 1490 entries from CLIDDB file: /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2018-01-30T2209/Athena/22.0.0/InstallArea/x86_64-centos7-gcc62-opt/share/clid.db
 StoreGateSvc        DEBUG Service base class initialized successfully
 StoreGateSvc        DEBUG trying to create store SGImplSvc/StoreGateSvc_Impl
 StoreGateSvc_Impl   DEBUG Service base class initialized successfully
 IncidentSvc         DEBUG Adding [EndEvent] listener 'StoreGateSvc' with priority 100
 IncidentSvc         DEBUG Adding [BeginEvent] listener 'StoreGateSvc' with priority 100
 ToolSvc             DEBUG Service base class initialized successfully
-ClassIDSvc           INFO  getRegistryEntries: read 2072 CLIDRegistry entries for module ALL
+ClassIDSvc           INFO  getRegistryEntries: read 2018 CLIDRegistry entries for module ALL
 AthenaOutputStream  DEBUG Property update for OutputLevel : new value = 1
 AthenaOutputStreamVERBOSE ServiceLocatorHelper::service: found service EventDataSvc
 TimelineSvc         DEBUG Service base class initialized successfully
@@ -83,19 +86,12 @@ IoComponentMgr      DEBUG --> io_hasitem()
 PoolSvc              INFO io_register[PoolSvc](xmlcatalog_file:PoolFileCatalog.xml) [ok]
 PoolSvc              INFO Set connectionsvc retry/timeout/IDLE timeout to  'ConnectionRetrialPeriod':300/ 'ConnectionRetrialTimeOut':3600/ 'ConnectionTimeOut':5 seconds with connection cleanup disabled
 PoolSvc              INFO Frontier compression level set to 5
-DBReplicaSvc         INFO Frontier server at (serverurl=http://atlasfrontier-local.cern.ch:8000/atlr)(serverurl=http://atlasfrontier-ai.cern.ch:8000/atlr)(serverurl=http://lcgft-atlas.gridpp.rl.ac.uk:3128/frontierATLAS)(serverurl=http://ccfrontier.in2p3.fr:23128/ccin2p3-AtlasFrontier)(proxyurl=http://ca-proxy.cern.ch:3128)(proxyurl=http://ca-proxy-meyrin.cern.ch:3128)(proxyurl=http://ca-proxy-wigner.cern.ch:3128) will be considered for COOL data
-DBReplicaSvc         INFO Read replica configuration from /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2017-12-10T2303/Athena/22.0.0/InstallArea/x86_64-slc6-gcc62-opt/share/dbreplica.config
-DBReplicaSvc        DEBUG Candidate server ATLF (priority -2700)
-DBReplicaSvc        DEBUG Candidate server ATLAS_COOLPROD (priority -695)
-DBReplicaSvc        DEBUG Candidate server atlas_dd (priority -690)
-DBReplicaSvc        DEBUG Candidate server ATLAS_CONFIG (priority -685)
-DBReplicaSvc        DEBUG Candidate server INT8R (priority -680)
-DBReplicaSvc        DEBUG Candidate server INTR (priority -675)
-DBReplicaSvc        DEBUG Candidate server ATONR_COOL (priority -670)
-DBReplicaSvc        DEBUG Candidate server ATONR_CONF (priority -665)
-DBReplicaSvc        DEBUG Candidate server DEVDB11 (priority -660)
-DBReplicaSvc        DEBUG Candidate server ATLF (priority -2200)
-DBReplicaSvc         INFO Total of 10 servers found for host lxplus020.cern.ch [ATLF ATLAS_COOLPROD atlas_dd ATLAS_CONFIG INT8R INTR ATONR_COOL ATONR_CONF DEVDB11 ATLF ]
+DBReplicaSvc        DEBUG HOSTNAME hepd-0003 has no domain - try hostname --fqdn
+DBReplicaSvc        DEBUG HOSTNAME from fqdn: hepd-0003.lcrc.anl.gov
+DBReplicaSvc         INFO Frontier server at (serverurl=http://atlasfrontier-ai.cern.ch:8000/atlr)(serverurl=http://lcgft-atlas.gridpp.rl.ac.uk:3128/frontierATLAS)(serverurl=http://frontier-atlas.lcg.triumf.ca:3128/ATLAS_frontier)(serverurl=http://ccfrontier.in2p3.fr:23128/ccin2p3-AtlasFrontier) will be considered for COOL data
+DBReplicaSvc         INFO Read replica configuration from /home/gemmeren/workarea/build/x86_64-centos7-gcc62-opt/share/dbreplica.config
+DBReplicaSvc        DEBUG Candidate server ATLF (priority -2300)
+DBReplicaSvc         INFO Total of 1 servers found for host hepd-0003.lcrc.anl.gov [ATLF ]
 PoolSvc              INFO Successfully setup replica sorting algorithm
 PoolSvc             DEBUG OutputLevel is 
 PoolSvc              INFO Setting up APR FileCatalog and Streams
@@ -117,12 +113,9 @@ IncidentSvc         DEBUG Adding [ShmProxy] listener 'MetaDataSvc' with priority
 IoComponentMgr      DEBUG --> io_register(MetaDataSvc)
 IoComponentMgr      DEBUG     registering IoComponent "MetaDataSvc"
 AthenaOutputStr...  DEBUG Property update for OutputLevel : new value = 1
-AthenaOutputStr...   INFO AthenaOutputStreamTool initialize
-AthenaOutputStr...  DEBUG Found CLIDSvc 
-AthenaOutputStr...  DEBUG In connectServices 
-AthenaOutputStr...  DEBUG In connectServices 
-AthenaOutputStr...  DEBUG Found StoreGateSvc store.
-AthenaOutputStr...  DEBUG Found EventPersistencySvc conversion service.
+AthenaOutputStr...   INFO Initializing AthenaOutputStream.AthenaOutputStreamTool - package version AthenaServices-00-00-00
+ServiceManager      FATAL No Service factory for DetectorStore available.
+AthenaOutputStr...  ERROR ServiceLocatorHelper::service: can not locate service DetectorStore
 AthenaOutputStream   INFO Found HelperTools = PrivateToolHandleArray([])
 AthenaOutputStream   INFO Data output: DidNotNameOutput.root
 IoComponentMgr      DEBUG --> io_register(AthenaOutputStream)
@@ -140,24 +133,24 @@ AthenaOutputStream  DEBUG output handles: 0
 AthenaOutputStream  DEBUG Registering all Tools in ToolHandleArray HelperTools
 AthenaOutputStream  DEBUG Adding private ToolHandle tool AthenaOutputStream.AthenaOutputStreamTool (AthenaOutputStreamTool)
 AthenaOutputStream  DEBUG Data Deps for AthenaOutputStream
-ClassIDSvc           INFO  getRegistryEntries: read 929 CLIDRegistry entries for module ALL
-StoreGateSvc_Impl   DEBUG Recorded object @0x3598c60 with key uno of type Foo(CLID 8101)
- in DataObject @0x3598ca0
+ClassIDSvc           INFO  getRegistryEntries: read 926 CLIDRegistry entries for module ALL
+StoreGateSvc_Impl   DEBUG Recorded object @0x4541940 with key uno of type Foo(CLID 8101)
+ in DataObject @0x45a4730
  object modifiable when retrieved
-StoreGateSvc_Impl   DEBUG Recorded object @0x2a0f0d0 with key due of type Foo(CLID 8101)
- in DataObject @0x29e36c0
+StoreGateSvc_Impl   DEBUG Recorded object @0x45a4a60 with key due of type Foo(CLID 8101)
+ in DataObject @0x45daa20
  object modifiable when retrieved
-StoreGateSvc_Impl   DEBUG Recorded object @0x2a67f30 with key uno of type Bar(CLID 8107)
- in DataObject @0x3632b70
+StoreGateSvc_Impl   DEBUG Recorded object @0x45db370 with key uno of type Bar(CLID 8107)
+ in DataObject @0x3b5f440
  object modifiable when retrieved
-StoreGateSvc_Impl   DEBUG Recorded object @0x2bec7a0 with key due of type Bar(CLID 8107)
- in DataObject @0x2a820f0
+StoreGateSvc_Impl   DEBUG Recorded object @0x39db510 with key due of type Bar(CLID 8107)
+ in DataObject @0x45daac0
  object modifiable when retrieved
-StoreGateSvc_Impl   DEBUG Recorded object @0x2a0c9b0 with key quattro of type Bar(CLID 8107)
- in DataObject @0x35983e0
+StoreGateSvc_Impl   DEBUG Recorded object @0x45a4f70 with key quattro of type Bar(CLID 8107)
+ in DataObject @0x45a5000
  object modifiable when retrieved
-StoreGateSvc_Impl   DEBUG Recorded object @0x3599270 with key cinque of type Bar(CLID 8107)
- in DataObject @0x2bec540
+StoreGateSvc_Impl   DEBUG Recorded object @0x45a5090 with key cinque of type Bar(CLID 8107)
+ in DataObject @0x45a53c0
  object modifiable when retrieved
 AthenaOutputStr...WARNING add: can not find clid 13 in clid db
 AthenaOutputStream  DEBUG addItemObjects(13,"*") called
@@ -238,4 +231,3 @@ AthenaOutputStream  DEBUG  Added object 8108,"quattro"
 8108 cinque
 8107 quattro
 *** AthenaOutputStream_test OK ***
-
diff --git a/Control/AthenaServices/src/AthenaOutputStream.cxx b/Control/AthenaServices/src/AthenaOutputStream.cxx
index 0e6cf7ce2608e82b2001fe6024521743f37f6f1f..142ce2f0388f38757eec8482979cfbef11229df6 100644
--- a/Control/AthenaServices/src/AthenaOutputStream.cxx
+++ b/Control/AthenaServices/src/AthenaOutputStream.cxx
@@ -145,6 +145,7 @@ AthenaOutputStream::AthenaOutputStream(const string& name, ISvcLocator* pSvcLoca
         m_metadataStore("MetaDataStore", name),
         m_currentStore(&m_dataStore),
                 m_itemSvc("ItemListSvc", name),
+	m_outputAttributes(),
           m_pCLIDSvc("ClassIDSvc", name),
           m_outSeqSvc("OutputStreamSequencerSvc", name),
         m_p2BWritten(string("SG::Folder/") + name + string("_TopFolder"), this),
@@ -160,13 +161,7 @@ AthenaOutputStream::AthenaOutputStream(const string& name, ISvcLocator* pSvcLoca
    declareProperty("WritingTool",            m_streamer);
    declareProperty("Store",                  m_dataStore);
    declareProperty("MetadataStore",          m_metadataStore);
-   declareProperty("ProcessingTag",          m_processTag=name);
    declareProperty("ForceRead",              m_forceRead=false);
-   // pers-to-pers option not used, and not currently working.
-   //declareProperty("PersToPers",             m_persToPers=false);
-   //declareProperty("ExemptPersToPers",       m_exemptPersToPers);
-   m_persToPers = false;
-   declareProperty("ProvideDef",             m_provideDef=false);
    declareProperty("ExtendProvenanceRecord", m_extendProvenanceRecord=true);
    declareProperty("WriteOnExecute",         m_writeOnExecute=true);
    declareProperty("WriteOnFinalize",        m_writeOnFinalize=false);
@@ -315,32 +310,7 @@ void AthenaOutputStream::handle(const Incident& inc) {
             throw GaudiException("Unable to connect metadata services", name(), StatusCode::FAILURE);
          }
          m_checkNumberOfWrites = false;
-         const std::string outputName0 = m_outputName;
-         m_outputName += "[OutputCollection=MetaDataHdr][PoolContainerPrefix=MetaData][AttributeListKey=][DataHeaderSatellites=]";
-         // BackwardCompatibility: Get MetadataItemList properties from ItemList of Stream_FH
-         ServiceHandle<IJobOptionsSvc> joSvc("JobOptionsSvc", name());
-         if (!joSvc.retrieve().isSuccess()) {
-            throw GaudiException("Cannot get JobOptionsSvc", name(), StatusCode::FAILURE);
-         }
-         const std::vector<const Property*>* fhProps = joSvc->getProperties(name() + "_FH");
-         if (fhProps != nullptr) {
-            StringArrayProperty fhProperty("ItemList", std::vector<std::string>());
-            for (std::vector<const Property*>::const_iterator iter = fhProps->begin(),
-                            last = fhProps->end(); iter != last; iter++) {
-               if ((*iter)->name() == fhProperty.name()) {
-                  (*iter)->load(fhProperty);
-                  std::vector<std::string> vProp = m_metadataItemList.value();
-                  for (std::vector<std::string>::const_iterator iter2 = fhProperty.value().begin(),
-                                  last2 = fhProperty.value().end(); iter2 != last2; iter2++) {
-                     vProp.push_back(*iter2);
-                  }
-                  if (this->setProperty("MetadataItemList", vProp).isFailure()) {
-                     throw GaudiException("Folder property [metadataItemList] cannot be set", name(), StatusCode::FAILURE);
-                  }
-                  break;
-               }
-            }
-         }
+         m_outputAttributes = "[OutputCollection=MetaDataHdr][PoolContainerPrefix=MetaData][AttributeListKey=][DataHeaderSatellites=]";
          m_p2BWritten->clear();
          IProperty *pAsIProp(nullptr);
          if ((m_p2BWritten.retrieve()).isFailure() ||
@@ -351,7 +321,7 @@ void AthenaOutputStream::handle(const Incident& inc) {
          if (write().isFailure()) {  // true mean write AND commit
             ATH_MSG_ERROR("Cannot write metadata");
          }
-         m_outputName = outputName0;
+         m_outputAttributes.clear();
          m_currentStore = &m_dataStore;
          status = m_streamer->connectServices(m_dataStore.type(), m_persName, m_extendProvenanceRecord);
          if (status.isFailure()) {
@@ -369,8 +339,7 @@ void AthenaOutputStream::handle(const Incident& inc) {
             }
          }
       }
-   }
-   else if (inc.type() == "UpdateOutputFile") {
+   } else if (inc.type() == "UpdateOutputFile") {
      const FileIncident* fileInc  = dynamic_cast<const FileIncident*>(&inc);
      if(fileInc!=nullptr) {
        if(m_outputName != fileInc->fileName()) {
@@ -384,12 +353,10 @@ void AthenaOutputStream::handle(const Incident& inc) {
 	   ATH_MSG_FATAL("Cannot register new output name with IoComponentMgr");
 	   return;
 	 }
-       }
-       else {
+       } else {
 	 ATH_MSG_DEBUG("New output file name received through the UpdateOutputFile incident is the same as the already defined output name. Nothing to do");
        }
-     }
-     else {
+     } else {
        ATH_MSG_FATAL("Cannot dyn-cast the UpdateOutputFile incident to FileIncident");
        return;
      }
@@ -456,11 +423,11 @@ StatusCode AthenaOutputStream::write() {
    // Connect the output file to the service
    // FIXME: this double looping sucks... got to query the
    // data store for object of a given type/key.
-   if (m_streamer->connectOutput(m_outSeqSvc->buildSequenceFileName(m_outputName)).isSuccess()) {
+   if (m_streamer->connectOutput(m_outSeqSvc->buildSequenceFileName(m_outputName) + m_outputAttributes).isSuccess()) {
       // First check if there are any new items in the list
       collectAllObjects();
       // print out info about objects collected
-      if (m_checkNumberOfWrites && !m_provideDef) {
+      if (m_checkNumberOfWrites) {
          bool checkCountError = false;
          ATH_MSG_DEBUG(" Collected objects:");
          bool first = true;
@@ -617,16 +584,8 @@ void AthenaOutputStream::addItemObjects(const SG::FolderItem& item)
          // All right, it passes key match find in itemList, but not in excludeList
          if (keyMatch && !xkeyMatch) {
             if (m_forceRead && itemProxy->isValid()) {
-               if (!m_persToPers) {
-                  if (nullptr == itemProxy->accessData()) {
-                     ATH_MSG_ERROR(" Could not get data object for id "
-                             << item.id() << ",\"" << itemProxy->name());
-                  }
-               } else if (true /*m_exemptPersToPers.find(item.id()) != m_exemptPersToPers.end()*/) {
-                  if (nullptr == itemProxy->accessData()) {
-                     ATH_MSG_ERROR(" Could not get data object for id "
-                             << item.id() << ",\"" << itemProxy->name());
-                  }
+               if (nullptr == itemProxy->accessData()) {
+                  ATH_MSG_ERROR(" Could not get data object for id " << item.id() << ",\"" << itemProxy->name());
                }
             }
             if (nullptr != itemProxy->object()) {
@@ -712,53 +671,27 @@ void AthenaOutputStream::addItemObjects(const SG::FolderItem& item)
                }
 
                added = true;
-               if (!m_provideDef) {
-                  if (m_checkNumberOfWrites) {
-                     CounterMapType::iterator cit = m_objectWriteCounter.find(tn);
-                     if (cit == m_objectWriteCounter.end()) {
-                       // First time through
-                       //std::pair<CounterMapType::iterator, bool> result =
-                       m_objectWriteCounter.insert(CounterMapType::value_type(tn, 1));
-                     } else {
-                        // set to next iteration (to avoid double counting)
-                        // StreamTools will eliminate duplicates.
-                        (*cit).second = m_events + 1;
-                     }
-                  }
-                  if (m_itemSvc->addStreamItem(this->name(),tns.str()).isFailure()) {
-                     ATH_MSG_WARNING("Unable to record item " << tns.str() << " in Svc");
+               if (m_checkNumberOfWrites) {
+                  CounterMapType::iterator cit = m_objectWriteCounter.find(tn);
+                  if (cit == m_objectWriteCounter.end()) {
+                    // First time through
+                    m_objectWriteCounter.insert(CounterMapType::value_type(tn, 1));
+                  } else {
+                     // set to next iteration (to avoid double counting)
+                     // StreamTools will eliminate duplicates.
+                     (*cit).second = m_events + 1;
                   }
                }
+               if (m_itemSvc->addStreamItem(this->name(),tns.str()).isFailure()) {
+                  ATH_MSG_WARNING("Unable to record item " << tns.str() << " in Svc");
+               }
             }
-#if 0            
-            else if (!m_forceRead && m_persToPers && itemProxy->isValid()) {
-               tAddr = itemProxy->transientAddress();
-            } //if data object there
-#endif
          } else if (keyMatch && xkeyMatch) {
             removed = true;
          }
       } // proxy loop
       if (!added && !removed) {
-#if 0
-         if (m_persToPers && tAddr != nullptr) {
-            ATH_MSG_DEBUG(" Going to attempt direct persistent copy for "
-                    << item.id() << ",\"" << item_key  << "\"");
-            DataObject* ics = new DataObject();
-            SG::DataProxy* proxy = new SG::DataProxy(ics, tAddr);
-            m_objects.push_back(proxy->object());
-         } else
-#endif
-           if (m_provideDef) {
-            ATH_MSG_DEBUG(" Going to attempt providing persistent default for "
-                    << item.id() << ",\"" << item_key  << "\"");
-            SG::TransientAddress* tAddr = new SG::TransientAddress(item.id(), item_key);
-            DataObject* ics = new DataObject();
-            SG::DataProxy* proxy = new SG::DataProxy(ics, tAddr);
-            m_objects.push_back(proxy->object());
-         } else {
-            ATH_MSG_DEBUG(" No object matching " << item.id() << ",\"" << item_key  << "\" found");
-         }
+         ATH_MSG_DEBUG(" No object matching " << item.id() << ",\"" << item_key  << "\" found");
       } else if (removed) {
          ATH_MSG_DEBUG(" Object being excluded based on property setting "
                  << item.id() << ",\"" << item_key  << "\". Skipping");
@@ -792,11 +725,9 @@ void AthenaOutputStream::excludeListHandler(Property& /* theProp */) {
 void AthenaOutputStream::tokenizeAtSep( std::vector<std::string>& subStrings,
                                         const std::string& portia,
                                         const std::string& sepstr ) const {
-  //ATH_MSG_VERBOSE("Going to break up: " << portia << ", using separator: " << sepstr);
   subStrings.clear(); // clear from previous iteration step
   // If the portia starts with a wildcard, add an empty string
   if ( portia.find(sepstr) == 0 ) {
-    //ATH_MSG_VERBOSE("String '" << portia << "' starts with wildcard '" << sepstr);
     subStrings.push_back("");
   }
   boost::char_separator<char> csep(sepstr.c_str());
@@ -808,15 +739,11 @@ void AthenaOutputStream::tokenizeAtSep( std::vector<std::string>& subStrings,
   // If the portia ends with a wildcard, add an empty string
   if ( portia.size() >= sepstr.size() &&
        portia.compare( portia.size() - sepstr.size(), sepstr.size(), sepstr) == 0 ) {
-    //ATH_MSG_VERBOSE("String '" << portia << "' ends with wildcard '" << sepstr);
     subStrings.push_back("");
   }
-  //ATH_MSG_VERBOSE("Done breaking up: " << portia << ", using separator: " << sepstr);
   return;
 }
 
-
-
 bool AthenaOutputStream::matchKey(const std::vector<std::string>& key,
                                   const SG::DataProxy* proxy) const {
   bool keyMatch = true; // default return
@@ -861,8 +788,6 @@ bool AthenaOutputStream::matchKey(const std::vector<std::string>& key,
   return(keyMatch);
 }
 
-
-
 StatusCode AthenaOutputStream::io_reinit() {
    ATH_MSG_INFO("I/O reinitialization...");
    // For 'write on finalize', we set up listener for 'LastInputFile'
diff --git a/Control/AthenaServices/src/AthenaOutputStream.h b/Control/AthenaServices/src/AthenaOutputStream.h
index 2a7151cc05698eba69af7f8aa2fedd4fffa81f85..5f4915f9db973754b928a8f02aca7102703767d7 100644
--- a/Control/AthenaServices/src/AthenaOutputStream.h
+++ b/Control/AthenaServices/src/AthenaOutputStream.h
@@ -16,8 +16,6 @@
 
 // Required for inheritance
 #include "GaudiKernel/IDataSelector.h"
-#include "GaudiKernel/Algorithm.h"
-#include "GaudiKernel/ClassID.h"
 #include "GaudiKernel/Property.h"
 #include "GaudiKernel/ServiceHandle.h"
 #include "GaudiKernel/ToolHandle.h"
@@ -68,8 +66,7 @@ protected:
    StringProperty           m_writingTool;
    /// Name of the output file
    std::string              m_outputName;
-   /// tag of processing stage:
-   StringProperty           m_processTag;
+   std::string              m_outputAttributes;
    
    typedef ServiceHandle<IClassIDSvc> IClassIDSvc_t;
    IClassIDSvc_t m_pCLIDSvc;
@@ -101,11 +98,6 @@ protected:
    int                      m_events;
    /// set to true to force read of data objects in item list
    bool m_forceRead;
-   /// set to true to allow data objects being copied persistent to persistent (without SG retrieve).
-   bool m_persToPers;
-   std::vector<unsigned int> m_exemptPersToPers;
-   /// set to true to allow defaults being provided for non-existent data objects.
-   bool m_provideDef;
    /// set to false to omit adding the current DataHeader into the DataHeader history
    /// this will cause the input file to be neglected for back navigation (replace mode).
    bool m_extendProvenanceRecord;
diff --git a/Control/AthenaServices/src/AthenaOutputStreamTool.cxx b/Control/AthenaServices/src/AthenaOutputStreamTool.cxx
index 60f61f6e8d14b2ed00e8ff25b969238067312108..c045836838646ef2962c6064b6919e166a7fe6f2 100644
--- a/Control/AthenaServices/src/AthenaOutputStreamTool.cxx
+++ b/Control/AthenaServices/src/AthenaOutputStreamTool.cxx
@@ -2,397 +2,456 @@
   Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
 */
 
+/** @file AthenaOutputStreamTool.cxx
+ *  @brief This file contains the implementation for the AthenaOutputStreamTool class.
+ *  @author Peter van Gemmeren <gemmeren@anl.gov>
+ **/
 
-/*
- * @author RD Schaffer <R.D.Schaffer@cern.ch>
- * @date   Tue Feb 18 16:37:10 2003
- * 
- * @brief Tool to stream out objects
- * 
- * $Id: AthenaOutputStreamTool.cxx,v 1.24 2008-09-23 22:00:47 binet Exp $
- */
-
+#include "AthenaOutputStreamTool.h"
 
 // Gaudi
-#include "GaudiKernel/GaudiException.h"
-#include "GaudiKernel/ISvcLocator.h"
 #include "GaudiKernel/IConversionSvc.h"
 #include "GaudiKernel/IOpaqueAddress.h"
-#include "GaudiKernel/IPersistencySvc.h"
-#include "GaudiKernel/MsgStream.h"
+#include "GaudiKernel/INamedInterface.h"
 
 // Athena
 #include "AthenaKernel/IClassIDSvc.h"
+#include "AthenaBaseComps/AthCnvSvc.h"
 #include "StoreGate/StoreGateSvc.h"
 #include "SGTools/DataProxy.h"
 #include "SGTools/SGIFolder.h"
-
-#include "AthenaOutputStreamTool.h"
+#include "PersistentDataModel/AthenaAttributeList.h"
+#include "PersistentDataModel/DataHeader.h"
 
 /// Constructor
-AthenaOutputStreamTool::AthenaOutputStreamTool(const std::string& type, 
-					       const std::string& name, 
-					       const IInterface* parent)
-	:
-        AthAlgTool(type, name, parent),
-	m_store   ( "DetectorStore",    name ),
-	m_cnvSvc  ( "AthenaPoolCnvSvc", name ),
-	m_clidSvc ( "ClassIDSvc",       name ),
+AthenaOutputStreamTool::AthenaOutputStreamTool(const std::string& type,
+		const std::string& name,
+		const IInterface* parent) : ::AthAlgTool(type, name, parent),
+	m_store("DetectorStore", name),
+	m_conversionSvc("AthenaPoolCnvSvc", name),
+	m_clidSvc("ClassIDSvc", name),
+	m_dataHeader(0),
+	m_dataHeaderKey(name),
 	m_connectionOpen(false),
-	m_extendProvenanceRecord(false)
-{
-    // Declare IAthenaOutputStreamTool interface
-    declareInterface<IAthenaOutputStreamTool>(this);
-
-    // Properties
-    declareProperty("OutputFile",       m_outputName="");
-    declareProperty("CnvSvc", 
-		    m_cnvSvc = ICnvSvc_t( "AthenaPoolCnvSvc", name ) );
-
-    declareProperty( "Store", 
-		     m_store = StoreGateSvc_t( "DetectorStore", name ) );
-
-//    declareProperty("ProcessingTag",    m_processTag=m_dataHeaderKey);
+	m_extendProvenanceRecord(false) {
+   // Declare IAthenaOutputStreamTool interface
+   declareInterface<IAthenaOutputStreamTool>(this);
+
+   // Remove "ToolSvc." from m_dataHeaderKey.
+   if (m_dataHeaderKey.find("ToolSvc.") == 0) {
+      m_dataHeaderKey = m_dataHeaderKey.substr(8);
+      // Remove "Tool" from m_dataHeaderKey.
+      if (m_dataHeaderKey.find("Tool") == m_dataHeaderKey.size() - 4) {
+         m_dataHeaderKey = m_dataHeaderKey.substr(0, m_dataHeaderKey.size() - 4);
+      }
+   } else {
+      const INamedInterface* parentAlg = dynamic_cast<const INamedInterface*>(parent);
+      if (parentAlg != 0) {
+         m_dataHeaderKey = parentAlg->name();
+      }
+   }
+   // Properties
+   declareProperty("OutputFile",            m_outputName = std::string());
+   declareProperty("Store",                 m_store = ServiceHandle<StoreGateSvc>("DetectorStore", name),
+	   "Handle to the StoreGateSvc instance from which to read data (to be written out)");
+   declareProperty("ProcessingTag",         m_processTag = m_dataHeaderKey);
+   declareProperty("OutputCollection",      m_outputCollection = std::string());
+   declareProperty("PoolContainerPrefix",   m_containerPrefix = std::string());
+   declareProperty("TopLevelContainerName", m_containerNameHint = "0");
+   declareProperty("SubLevelBranchName",    m_branchNameHint = "0");
+   declareProperty("AttributeListKey",      m_attrListKey = std::string());
 }
-
-/// Destructor
-AthenaOutputStreamTool::~AthenaOutputStreamTool()
-{}
-
-
-/// Initialize 
-StatusCode
-AthenaOutputStreamTool::initialize()
-{
-    ATH_MSG_INFO ("AthenaOutputStreamTool initialize");
-
-
-    // Get the ClassIDSvc - to get typename for clid
-    StatusCode sc = m_clidSvc.retrieve(); 
-    if (sc != StatusCode::SUCCESS ) {
-        ATH_MSG_ERROR (" Cannot get IClassIDSvc interface of the CLIDSvc ");
-	return sc ;
-    }
-    ATH_MSG_DEBUG ("Found CLIDSvc ");
-
-    return (StatusCode::SUCCESS);
+//__________________________________________________________________________
+AthenaOutputStreamTool::~AthenaOutputStreamTool() {
 }
-
-
-/// Finalize 
-StatusCode 
-AthenaOutputStreamTool::finalize()
-{
-    ATH_MSG_INFO ("AthenaOutputStreamTool finalize");
-    return (StatusCode::SUCCESS);
+//__________________________________________________________________________
+StatusCode AthenaOutputStreamTool::initialize() {
+   ATH_MSG_INFO("Initializing " << name() << " - package version " << PACKAGE_VERSION);
+   // Get the ClassIDSvc - to get typename for clid
+   if (m_clidSvc.retrieve().isFailure()) {
+      ATH_MSG_FATAL("Cannot get IClassIDSvc interface of the CLIDSvc");
+      return(StatusCode::FAILURE);
+   }
+   if (m_conversionSvc.retrieve().isFailure()) {
+      ATH_MSG_FATAL("Cannot get IConversionSvc interface of the ConversionSvc");
+      return(StatusCode::FAILURE);
+   }
+   return(StatusCode::SUCCESS);
 }
-
-/// Specify which data store and conversion service to use
-StatusCode 
-AthenaOutputStreamTool::connectServices(const std::string& dataStore, 
-					const std::string& cnvSvc,
-					bool extendProvenenceRecord)
-{
-    StatusCode status;
-
-    ATH_MSG_DEBUG ("In connectServices ");
-
-    m_store  = StoreGateSvc_t( dataStore, this->name() );
-    m_cnvSvc = ICnvSvc_t     ( cnvSvc,    this->name() );
-    m_extendProvenanceRecord = extendProvenenceRecord;
-    
-    status = connectServices();
-    return (status);
+//__________________________________________________________________________
+StatusCode AthenaOutputStreamTool::finalize() {
+   if (m_conversionSvc.release().isFailure()) {
+      ATH_MSG_WARNING("Cannot release AthenaPoolCnvSvc");
+   }
+   if (m_clidSvc.release().isFailure()) {
+      ATH_MSG_WARNING("Cannot release the CLIDSvc");
+   }
+   return(StatusCode::SUCCESS);
 }
-
-
-/// Specify which data store and conversion service to use
-StatusCode 
-AthenaOutputStreamTool::connectServices()
-{
-
-    StatusCode status;
-
-    ATH_MSG_DEBUG ("In connectServices ");
-
-    // Find the data store
-    status = m_store.retrieve();
-    if( !status.isSuccess() ) {
-        ATH_MSG_ERROR ("Could not locate " << m_store.type() << " store");
-	return status;
-    }
-    else {
-        ATH_MSG_DEBUG ("Found " << m_store.type() << " store.");
-    }
-    if ( !m_store ) {
-	ATH_MSG_ERROR ("Invalid pointer to " << m_store.type() << " store");
-    }
-
-    // Find the conversion service
-    status = m_cnvSvc.retrieve();
-    if( !status.isSuccess() ) {
-      ATH_MSG_ERROR 
-	("Unable to locate IConversionSvc interface of "<< m_cnvSvc.type());
-      return status;
-    }
-    else {
-      ATH_MSG_DEBUG 
-	("Found " << m_cnvSvc.type() << " conversion service.");
-    }
-
-    if ( m_cnvSvc.type() == "AthenaPoolCnvSvc" ) {
-      ATH_MSG_ERROR
-	("The use of AthenaOutputStreamTool for AthenaPool data is deprecated !"
-	 << endmsg
-	 << "   Please use AthenaPoolOutputStreamTool from OutputStreamAthenaPool instead." 
-	 << endmsg
-	 << "      theApp.Dlls += [ \"OutputStreamAthenaPool\" ]" << endmsg
-	 << "      StreamExample = Algorithm( \"AthenaOutputStream/\" + streamName )" 
-	 << endmsg
-	 << "      StreamExample.WritingTool = \"AthenaPoolOutputStreamTool\"" 
-	 << endmsg
-	 << "      ..." << endmsg
-	 << "   Or, try importing 'AthenaPoolCnvSvc.WriteAthenaPool'");
-      return (StatusCode::FAILURE);
-    }
-
-    return (status);
+//__________________________________________________________________________
+StatusCode AthenaOutputStreamTool::connectServices(const std::string& dataStore,
+	const std::string& cnvSvc,
+	bool extendProvenenceRecord) {
+   // Release old data store
+   if (m_store.isValid()) {
+      if (m_store.release().isFailure()) {
+         ATH_MSG_ERROR("PETER: Could not release " << m_store.type() << " store");
+      }
+   }
+   m_store = ServiceHandle<StoreGateSvc>(dataStore, this->name());
+   if (cnvSvc != m_conversionSvc.type() && cnvSvc != "EventPersistencySvc") {
+      if (m_conversionSvc.release().isFailure()) {
+         ATH_MSG_ERROR("Could not release " << m_conversionSvc.type());
+      }
+      m_conversionSvc = ServiceHandle<IConversionSvc>(cnvSvc, this->name());
+      if (m_conversionSvc.retrieve().isFailure() || m_conversionSvc == 0) {
+         ATH_MSG_ERROR("Could not locate " << m_conversionSvc.type());
+         return(StatusCode::FAILURE);
+      }
+   }
+   m_extendProvenanceRecord = extendProvenenceRecord;
+   return(connectServices());
 }
-
-    /// Connect to the output stream
-StatusCode 
-AthenaOutputStreamTool::connectOutput(const std::string& outputName)
-{
-    StatusCode status(StatusCode::FAILURE);
-
-    ATH_MSG_DEBUG ("In connectOutput ");
-
-    // Use arg if not empty, save the output name
-    if (outputName.size()) m_outputName = outputName;
-
-    if (!m_outputName.size()) {
-      ATH_MSG_ERROR ("No OutputName provided ");
-      return StatusCode::FAILURE;
-    }
-
-    // Connect services if not already available
-    if (!m_cnvSvc || !m_store) {
-	status = connectServices();
-	if( !status.isSuccess() ) {
-	  ATH_MSG_ERROR ("Unable to connect services ");
-	  return status;
-	}
-    }
-
-    // Connect the output file to the service
-    status = m_cnvSvc->connectOutput(m_outputName);
-    if( !status.isSuccess() ) {
-      ATH_MSG_ERROR ("Unable to connect output " << m_outputName);
-      return status;
-    }
-    else {
-      ATH_MSG_DEBUG ("Connected to " << m_outputName);
-    }
-
-    // Set flag that connection is open
-    m_connectionOpen = true;
-
-    return (status);
+//__________________________________________________________________________
+StatusCode AthenaOutputStreamTool::connectServices() {
+   // Find the data store
+   if (m_store.retrieve().isFailure() || m_store == 0) {
+      ATH_MSG_ERROR("PETER: Could not locate " << m_store.type() << " store");
+      return(StatusCode::FAILURE);
+   }
+   return(StatusCode::SUCCESS);
 }
-
-    
-    /// Commit the output stream after having streamed out objects
-StatusCode 
-AthenaOutputStreamTool::commitOutput()
-{
-    StatusCode status;
-
-    ATH_MSG_DEBUG ("In connectOutput ");
-
-    // Connect the output file to the service
-    status = m_cnvSvc->commitOutput(m_outputName, true);
-    if( !status.isSuccess() )   
-    {
-      ATH_MSG_ERROR ("Unable to commit output " << m_outputName);
-      return status;
-    }
-    else {
-      ATH_MSG_DEBUG ("Committed: " << m_outputName);
-    }
-
-    // Set flag that connection is closed
-    m_connectionOpen = false;
-
-    return (status);
+//__________________________________________________________________________
+StatusCode AthenaOutputStreamTool::connectOutput(const std::string& outputName) {
+   ATH_MSG_DEBUG("In connectOutput");
+
+   // Use arg if not empty, save the output name
+   if (!outputName.empty()) {
+      m_outputName.setValue(outputName);
+   }
+   if (m_outputName.value().empty()) {
+      ATH_MSG_ERROR("No OutputName provided");
+      return(StatusCode::FAILURE);
+   }
+   // Connect services if not already available
+   if (m_store == 0 || m_conversionSvc == 0) {
+      if (connectServices().isFailure()) {
+         ATH_MSG_ERROR("Unable to connect services");
+         return(StatusCode::FAILURE);
+      }
+   }
+   // Connect the output file to the service
+   std::string outputConnectionString = m_outputName.value();
+   if (!m_outputCollection.value().empty() && outputConnectionString.find("[OutputCollection=") == std::string::npos) {
+      outputConnectionString += "[OutputCollection=" + m_outputCollection.value() + "]";
+   }
+   if (!m_containerPrefix.value().empty() && outputConnectionString.find("[PoolContainerPrefix=") == std::string::npos) {
+      outputConnectionString += "[PoolContainerPrefix=" + m_containerPrefix.value() + "]";
+   }
+   if (m_containerNameHint.value() != "0" && outputConnectionString.find("[TopLevelContainerName=") == std::string::npos) {
+      outputConnectionString += "[TopLevelContainerName=" + m_containerNameHint.value() + "]";
+   }
+   if (m_branchNameHint.value() != "0" && outputConnectionString.find("[SubLevelBranchName=") == std::string::npos) {
+      outputConnectionString += "[SubLevelBranchName=" + m_branchNameHint.value() + "]";
+   }
+   if (m_conversionSvc->connectOutput(outputConnectionString).isFailure()) {
+      ATH_MSG_ERROR("Unable to connect output " << outputConnectionString);
+      return(StatusCode::FAILURE);
+   } else {
+      ATH_MSG_DEBUG("Connected to " << m_outputName.value());
+   }
+
+   // Remove DataHeader with same key if it exists
+   if (m_store->contains<DataHeader>(m_dataHeaderKey)) {
+      const DataHandle<DataHeader> preDh;
+      if (m_store->retrieve(preDh, m_dataHeaderKey).isSuccess()) {
+         if (m_store->removeDataAndProxy(preDh.cptr()).isFailure()) {
+            ATH_MSG_ERROR("Unable to get proxy for the DataHeader with key " << m_dataHeaderKey);
+            return(StatusCode::FAILURE);
+         }
+         ATH_MSG_DEBUG("Released DataHeader with key " << m_dataHeaderKey);
+      }
+   }
+
+   // Create new DataHeader
+   m_dataHeader = new DataHeader();
+   m_dataHeader->setProcessTag(m_processTag);
+
+   // Retrieve all existing DataHeaders from StroreGate
+   const DataHandle<DataHeader> dh;
+   std::vector<std::string> dhKeys;
+   m_store->keys<DataHeader>(dhKeys);
+   for (std::vector<std::string>::const_iterator dhKey = dhKeys.begin(), dhKeyEnd = dhKeys.end();
+	   dhKey != dhKeyEnd; dhKey++) {
+      if (!m_store->transientContains<DataHeader>(*dhKey)) { // Do not retrieve BackNavigation DataHeader
+         continue;
+      }
+      if (m_store->retrieve(dh, *dhKey).isFailure()) {
+         ATH_MSG_DEBUG("Unable to retrieve the DataHeader with key " << *dhKey);
+      }
+      if (dh->checkStatus(DataHeader::Primary)) {
+         // Add DataHeader token to new DataHeader
+         if (m_extendProvenanceRecord) {
+            std::string pTag;
+            SG::TransientAddress* dhTransAddr = 0;
+            for (std::vector<DataHeaderElement>::const_iterator i = dh->begin(), iEnd = dh->end();
+                i != iEnd; i++) {
+               if (i->getPrimaryClassID() == ClassID_traits<DataHeader>::ID()) {
+                  pTag = i->getKey();
+                  delete dhTransAddr; dhTransAddr = i->getAddress(0);
+               }
+            }
+            // Update dhTransAddr to handle fast merged files.
+            SG::DataProxy* dhProxy = m_store->proxy(dh.operator->());
+            if (dhProxy != 0 && dhProxy->address() != 0) {
+              delete dhTransAddr; dhTransAddr = 0;
+              m_dataHeader->insertProvenance(DataHeaderElement(dhProxy,
+                                                               dhProxy->address(),
+                                                               pTag));
+            } else {
+              m_dataHeader->insertProvenance(DataHeaderElement(dhTransAddr,
+                                                               dhTransAddr->address(),
+                                                               pTag));
+              delete dhTransAddr; dhTransAddr = 0;
+            }
+         }
+         for (std::vector<DataHeaderElement>::const_iterator i = dh->beginProvenance(),
+	      iEnd = dh->endProvenance(); i != iEnd; i++) {
+            m_dataHeader->insertProvenance(*i);
+         }
+      }
+   }
+   std::string attrListKey = m_attrListKey.value();
+   std::string::size_type pos = outputConnectionString.find("[AttributeListKey=");
+   if (pos != std::string::npos) {
+      attrListKey = outputConnectionString.substr(pos + 18, outputConnectionString.find("]", pos + 18) - pos - 18);
+   }
+   if (!attrListKey.empty()) {
+      const DataHandle<AthenaAttributeList> attrList;
+      if (m_store->retrieve(attrList, attrListKey).isFailure()) {
+         ATH_MSG_WARNING("Unable to retrieve AttributeList with key " << attrListKey);
+      } else {
+         m_dataHeader->setAttributeList(attrList);
+      }
+   }
+   // Record DataHeader in StoreGate
+   if (m_store->record(m_dataHeader, m_dataHeaderKey).isFailure()) {
+      ATH_MSG_ERROR("Unable to record DataHeader with key " << m_dataHeaderKey);
+      return(StatusCode::FAILURE);
+   } else {
+      ATH_MSG_DEBUG("Recorded DataHeader with key " << m_dataHeaderKey);
+   }
+   m_dataHeader->setStatus(DataHeader::Output);
+   // Set flag that connection is open
+   m_connectionOpen = true;
+   return(StatusCode::SUCCESS);
 }
-
-StatusCode AthenaOutputStreamTool::finalizeOutput()
-{
-    return( StatusCode::SUCCESS);
+//__________________________________________________________________________
+StatusCode AthenaOutputStreamTool::commitOutput() {
+   ATH_MSG_DEBUG("In commitOutput");
+   m_outputName.setValue(m_outputName.value().substr(0, m_outputName.value().find("[")));
+   // Connect the output file to the service
+   if (m_conversionSvc->commitOutput(m_outputName.value(), false).isFailure()) {
+      ATH_MSG_ERROR("Unable to commit output " << m_outputName.value());
+      return(StatusCode::FAILURE);
+   }
+   // Set flag that connection is closed
+   m_connectionOpen = false;
+   return(StatusCode::SUCCESS);
 }
-
-
-StatusCode 
-AthenaOutputStreamTool::streamObjects(const TypeKeyPairs& typeKeys ) 
-{
-
-    ATH_MSG_DEBUG (" in streamObjects");
-
-    // Check that a connection has been opened
-    if(!m_connectionOpen) {
-      ATH_MSG_ERROR
-	("Connection NOT open. "
-	 "Please open a connection before streaming out objects. ");
-      return( StatusCode::FAILURE);
-    } 
-   
-    // Now iterate over the type/key pairs and stream out each object
-    std::vector< DataObject* >    dataObjects;
-    StatusCode sc;
-    TypeKeyPairs::const_iterator   first = typeKeys.begin();
-    TypeKeyPairs::const_iterator   last  = typeKeys.end();
-    for (; first != last; ++first) {
-	const std::string& type = (*first).first;
-	const std::string& key  = (*first).second;
-
-	// Find the clid for type name from the CLIDSvc
-	CLID clid;
-	sc = m_clidSvc->getIDOfTypeName(type, clid);
-	if (sc.isFailure()) {
-	  ATH_MSG_ERROR ("Could not get clid for typeName " << type);
-	  return( StatusCode::FAILURE);
-	}
-	
-	DataObject* dObj = nullptr;
-	// Two options: no key or explicit key
-	if (key.size() == 0) {
-	    // No key
-
-	    ATH_MSG_DEBUG ("Get data object with no key  ");
-
-	    // Get DataObject and stream out
-	    dObj = m_store->accessData(clid);
-	    if (!dObj) {
-		// No object - print warning and return
-	      ATH_MSG_DEBUG ("No object found for clid " << clid 
-			     << " typeName " << type << " no key ");
-	      return (StatusCode::SUCCESS);
-	    }
-	    else {
-	      ATH_MSG_DEBUG ("Found object for clid " << clid 
-			     << " typeName " << type << " no key ");
-	    }
-	}
-	else {
-
-	    ATH_MSG_DEBUG ("Get data object with key  ");
-
-	    // Get DataObjects with key
-	    dObj = m_store->accessData(clid, key);
-	    if (!dObj) {
-		// No object - print warning and return
-	      ATH_MSG_DEBUG ("No object found for clid " << clid 
-			     << " typeName " << type << " key " << key);
-	      return (StatusCode::SUCCESS);
-	    }
-	    else {
-	      ATH_MSG_DEBUG ("Found object for clid " << clid 
-			     << " typeName " << type << " key " << key);
-	    }
-	    
-	}
-	
-	// Save the dObj
-	dataObjects.push_back(dObj);
-    }
-
-    // Stream out objects
-    if (dataObjects.size() == 0) {
-      ATH_MSG_DEBUG ("No data objects found ");
-      return StatusCode::SUCCESS;
-    }
-    sc = streamObjects(dataObjects);
-    if (sc.isFailure()) {
-      ATH_MSG_ERROR ("Could not stream out objects ");
-      return( StatusCode::FAILURE);
-    }
-
-    return StatusCode::SUCCESS;
+//__________________________________________________________________________
+StatusCode AthenaOutputStreamTool::finalizeOutput() {
+   AthCnvSvc* athConversionSvc = dynamic_cast<AthCnvSvc*>(m_conversionSvc.get());
+   if (athConversionSvc != 0) {
+      if (athConversionSvc->disconnectOutput().isFailure()) {
+         ATH_MSG_ERROR("Unable to finalize output ");
+         return(StatusCode::FAILURE);
+      }
+   }
+   return(StatusCode::SUCCESS);
 }
-
-/// Stream out an object 
-///   Must convert to DataObject, e.g.    
-///   \#include "SGTools/StorableConversions.h"
-///     T* obj = xxx;
-///     DataObject* dataObject = SG::asStorable(obj);
-StatusCode	
-AthenaOutputStreamTool::streamObjects  (const DataObjectVec& dataObjects)
-{
-
-    // Check that a connection has been opened
-    if(!m_connectionOpen) {
-      ATH_MSG_ERROR 
-	("Connection NOT open. "
-	 "Please open a connection before streaming out objects. ");
-	return( StatusCode::FAILURE);
-    }
-
-    StatusCode status(StatusCode::SUCCESS);
-    std::set<DataObject*> written;
-    for (unsigned int i = 0; i < dataObjects.size(); ++i) {
-	DataObject* dataObject = dataObjects[i];
-	// Do not stream out same object twice
-	if (written.find(dataObject) != written.end()) {
-	    // print out warning and skip
-	    std::string typeName;
-	    if (m_clidSvc->getTypeNameOfID(dataObject->clID(), typeName).isFailure()) {
-	      ATH_MSG_ERROR ("Could not get typeName for clid " 
-			     << dataObject->clID());
-	    }
-	    ATH_MSG_DEBUG ("Trying to write out DataObject twice (type/key): "
-			   << typeName << " " << dataObject->name()
-			   << endmsg
-			   << "    Skipping this one. ");
-	    continue;
-	}
-	else {
-	    written.insert(dataObject);
-	}
-	// Write out object
-	IOpaqueAddress* addr(nullptr);
-	if ( (m_cnvSvc->createRep(dataObject, addr)).isSuccess() ) {
-	    dataObject->registry()->setAddress(addr);
-        // SG::DataProxy* proxy = dynamic_cast<SG::DataProxy*>(dataObject->registry());
-        // m_dataHeader->insert(proxy->transientAddress());
-	}  else {
-	  ATH_MSG_ERROR ("Could not create Rep for DataObject (clid/key):"
-			 << dataObject->clID() << " " << dataObject->name());
-	    status = StatusCode::RECOVERABLE;
-	}
-    }
-
-    if ( !fillObjectRefs(dataObjects).isSuccess() ) {
-	status = StatusCode::RECOVERABLE;
-    }
-
-    return status;
+//__________________________________________________________________________
+StatusCode AthenaOutputStreamTool::streamObjects(const TypeKeyPairs& typeKeys) {
+   ATH_MSG_DEBUG("In streamObjects");
+   // Check that a connection has been opened
+   if (!m_connectionOpen) {
+      ATH_MSG_ERROR("Connection NOT open. Please open a connection before streaming out objects.");
+      return(StatusCode::FAILURE);
+   }
+   // Now iterate over the type/key pairs and stream out each object
+   std::vector<DataObject*> dataObjects;
+   for (TypeKeyPairs::const_iterator first = typeKeys.begin(), last = typeKeys.end();
+	   first != last; ++first) {
+      const std::string& type = (*first).first;
+      const std::string& key  = (*first).second;
+      // Find the clid for type name from the CLIDSvc
+      CLID clid;
+      if (m_clidSvc->getIDOfTypeName(type, clid).isFailure()) {
+         ATH_MSG_ERROR("Could not get clid for typeName " << type);
+         return(StatusCode::FAILURE);
+      }
+      DataObject* dObj = 0;
+      // Two options: no key or explicit key
+      if (key.empty()) {
+         ATH_MSG_DEBUG("Get data object with no key");
+         // Get DataObject without key
+         dObj = m_store->accessData(clid);
+      } else {
+         ATH_MSG_DEBUG("Get data object with key");
+         // Get DataObjects with key
+         dObj = m_store->accessData(clid, key);
+      }
+      if (dObj == 0) {
+         // No object - print warning and return
+         ATH_MSG_DEBUG("No object found for type " << type << " key " << key);
+         return(StatusCode::SUCCESS);
+      } else {
+         ATH_MSG_DEBUG("Found object for type " << type << " key " << key);
+      }
+      // Save the dObj
+      dataObjects.push_back(dObj);
+   }
+   // Stream out objects
+   if (dataObjects.size() == 0) {
+      ATH_MSG_DEBUG("No data objects found");
+      return(StatusCode::SUCCESS);
+   }
+   StatusCode status = streamObjects(dataObjects);
+   if (!status.isSuccess()) {
+      ATH_MSG_ERROR("Could not stream out objects");
+      return(status);
+   }
+   return(StatusCode::SUCCESS);
 }
-
-/// Fill refs of an object - done as second iteration over
-/// objects, after streamObject
-StatusCode 
-AthenaOutputStreamTool::fillObjectRefs(const DataObjectVec& dataObjects)
-{
-    StatusCode status = StatusCode::SUCCESS;
-    for (unsigned int i = 0; i < dataObjects.size(); ++i) {
-	DataObject* dataObject = dataObjects[i];
-	// call fillRepRefs of persistency service
-	if (! (m_cnvSvc->fillRepRefs( dataObject->registry()->address(), dataObject)).isSuccess() ) status = StatusCode::FAILURE;
-    }
-    return status;
+//__________________________________________________________________________
+StatusCode AthenaOutputStreamTool::streamObjects(const DataObjectVec& dataObjects) {
+   // Check that a connection has been opened
+   if (!m_connectionOpen) {
+      ATH_MSG_ERROR("Connection NOT open. Please open a connection before streaming out objects.");
+      return(StatusCode::FAILURE);
+   }
+   // Check that the DataHeader is still valid
+   DataObject* dataHeaderObj = m_store->accessData(ClassID_traits<DataHeader>::ID(), m_dataHeaderKey);
+   StatusCode status(StatusCode::SUCCESS);
+   std::set<DataObject*> written;
+   for (std::vector<DataObject*>::const_iterator doIter = dataObjects.begin(), doLast = dataObjects.end();
+	   doIter != doLast; doIter++) {
+      // Do not write the DataHeader via the explicit list
+      if ((*doIter)->clID() == ClassID_traits<DataHeader>::ID()) {
+         ATH_MSG_DEBUG("Explicit request to write DataHeader: " << (*doIter)->name() << " - skipping it.");
+      // Do not stream out same object twice
+      } else if (written.find(*doIter) != written.end()) {
+         // Print warning and skip
+         ATH_MSG_DEBUG("Trying to write DataObject twice (clid/key): " << (*doIter)->clID() << " " << (*doIter)->name());
+         ATH_MSG_DEBUG("    Skipping this one.");
+      } else {
+         written.insert(*doIter);
+         // Write object
+         IOpaqueAddress* addr(0);
+         if ((m_conversionSvc->createRep(*doIter, addr)).isSuccess()) {
+            SG::DataProxy* proxy = dynamic_cast<SG::DataProxy*>((*doIter)->registry());
+            if (proxy != 0) {
+               m_dataHeader->insert(proxy, addr);
+               if (proxy->address() == 0) {
+                  proxy->setAddress(addr);
+               } else {
+                  delete addr; addr = 0;
+               }
+            } else {
+               ATH_MSG_WARNING("Could cast DataObject " << (*doIter)->clID() << " " << (*doIter)->name());
+            }
+         } else {
+            ATH_MSG_ERROR("Could not create Rep for DataObject (clid/key):" << (*doIter)->clID() << " " << (*doIter)->name());
+            status = StatusCode::FAILURE;
+         }
+      }
+   }
+   m_dataHeader->addHash(&*m_store);
+   if (m_conversionSvc.type() == "AthenaPoolCnvSvc") {
+      // End of loop over DataObjects, write DataHeader
+      IOpaqueAddress* addr(0);
+      if ((m_conversionSvc->createRep(dataHeaderObj, addr)).isSuccess()) {
+         SG::DataProxy* proxy = dynamic_cast<SG::DataProxy*>(dataHeaderObj->registry());
+         if (proxy != 0) {
+            m_dataHeader->insert(proxy, addr, m_processTag);
+            if (proxy->address() == 0) {
+               proxy->setAddress(addr);
+            } else {
+               delete addr; addr = 0;
+            }
+         } else {
+            ATH_MSG_WARNING("Could cast DataHeader");
+            status = StatusCode::FAILURE;
+         }
+      } else {
+         ATH_MSG_ERROR("Could not create Rep for DataHeader");
+         status = StatusCode::FAILURE;
+      }
+   }
+   if (!fillObjectRefs(dataObjects).isSuccess()) {
+      status = StatusCode::FAILURE;
+   }
+   if (m_conversionSvc.type() == "AthenaPoolCnvSvc") {
+      // End of DataObjects, fill refs for DataHeader
+      DataObjectVec dataHeaderObjVec;
+      dataHeaderObjVec.push_back(dataHeaderObj);
+      if (!fillObjectRefs(dataHeaderObjVec).isSuccess()) {
+         status = StatusCode::FAILURE;
+      }
+   }
+   return(status);
 }
-
-StatusCode AthenaOutputStreamTool::getInputItemList(SG::IFolder* /*pItemList*/)
-{
-   return StatusCode::SUCCESS;
+//__________________________________________________________________________
+StatusCode AthenaOutputStreamTool::fillObjectRefs(const DataObjectVec& dataObjects) { //Copy
+   StatusCode status = StatusCode::SUCCESS;
+   for (std::vector<DataObject*>::const_iterator doIter = dataObjects.begin(), doLast = dataObjects.end();
+	   doIter != doLast; doIter++) {
+      // call fillRepRefs of persistency service
+      if (!(m_conversionSvc->fillRepRefs((*doIter)->registry()->address(), *doIter)).isSuccess()) {
+         status = StatusCode::FAILURE;
+      }
+   }
+   return(status);
+}
+//__________________________________________________________________________
+StatusCode AthenaOutputStreamTool::getInputItemList(SG::IFolder* p2BWrittenFromTool) {
+   const std::string hltKey = "HLTAutoKey";
+   const DataHandle<DataHeader> beg, ending;
+   if (m_store->retrieve(beg, ending).isFailure() || beg == ending) {
+      ATH_MSG_DEBUG("No DataHeaders present in StoreGate");
+   } else {
+      for ( ; beg != ending; ++beg) {
+         if (m_store->transientContains<DataHeader>(beg.key()) && beg->isInput()) {
+            for (std::vector<DataHeaderElement>::const_iterator it = beg->begin(), itLast = beg->end();
+	            it != itLast; ++it) {
+               // Only insert the primary clid, not the ones for the symlinks!
+               CLID clid = it->getPrimaryClassID();
+                  std::string typeName;
+                  if (clid != ClassID_traits<DataHeader>::ID()) {
+                  //check the typename is known ... we make an exception if the key contains 'Aux.' ... aux containers may not have their keys known yet in some cases
+		  //see https://its.cern.ch/jira/browse/ATLASG-59 for the solution
+                  std::string typeName;
+                  if( m_clidSvc->getTypeNameOfID(clid,typeName).isFailure() && it->getKey().find("Aux.") == std::string::npos) {
+		    if(m_skippedItems.find(it->getKey()) == m_skippedItems.end()) {
+		      ATH_MSG_WARNING("Skipping " << it->getKey() << " with unknown clid " << clid << " . Further warnings for this item are suppressed" ); 
+		      m_skippedItems.insert(it->getKey()); 
+		    }
+                    continue;
+                  }
+                  ATH_MSG_DEBUG("Adding " << typeName << "#" << it->getKey() << " (clid " << clid << ") to itemlist");
+                  const std::string keyName = it->getKey();
+                  if (keyName.size() > 10 && keyName.substr(0, 10) == hltKey) {
+                     p2BWrittenFromTool->add(clid, hltKey + "*").ignore();
+                  } else if (keyName.size() > 10 && keyName.substr(keyName.size() - 10, 10) == hltKey) {
+                     p2BWrittenFromTool->add(clid, "*" + hltKey).ignore();
+                  } else {
+                     p2BWrittenFromTool->add(clid, keyName).ignore();
+                  }
+               }
+            }
+         }
+      }
+   }
+   ATH_MSG_DEBUG("Adding DataHeader for stream " << name());
+   return(StatusCode::SUCCESS);
 }
diff --git a/Control/AthenaServices/src/AthenaOutputStreamTool.h b/Control/AthenaServices/src/AthenaOutputStreamTool.h
index a91df408a2d2df4483a970e014d4ca7c802a3021..6e7099d481d887f75ad50dd9a8f4c7444c80f029 100644
--- a/Control/AthenaServices/src/AthenaOutputStreamTool.h
+++ b/Control/AthenaServices/src/AthenaOutputStreamTool.h
@@ -2,135 +2,122 @@
   Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
 */
 
-/**
- * @file AthenaOutputStreamTool.h 
- * 
- * @brief Tool to stream out objects
- * 
- * @author RD Schaffer <R.D.Schaffer@cern.ch>
- * 
- * $Id: AthenaOutputStreamTool.h,v 1.5 2008-09-23 22:00:47 binet Exp $
- */
-
-#ifndef ATHENASERVICES_ATHENAOUTPUTSTREAMTOOL_H
-#define ATHENASERVICES_ATHENAOUTPUTSTREAMTOOL_H
-
-//<<<<<< INCLUDES                                                       >>>>>>
-
-#include "AthenaKernel/IAthenaOutputStreamTool.h"
+#ifndef ATHENAOUTPUTSTREAMTOOL_H
+#define ATHENAOUTPUTSTREAMTOOL_H
+/** @file AthenaOutputStreamTool.h
+ *  @brief This is the implementation of IAthenaOutputStreamTool.
+ *  @author Peter van Gemmeren <gemmeren@anl.gov>
+ **/
 
-// Gaudi
 #include "GaudiKernel/ServiceHandle.h"
 
-// AthenaBaseComps
+#include "AthenaKernel/IAthenaOutputStreamTool.h"
 #include "AthenaBaseComps/AthAlgTool.h"
 
+#include <string>
 
-//<<<<<< CLASS DECLARATIONS                                             >>>>>>
-
-class StoreGateSvc;
-class IConversionSvc;
 class IClassIDSvc;
+class IConversionSvc;
+class StoreGateSvc;
+class DataHeader;
 namespace SG {
-  class IFolder;
+   class IFolder;
 }
 
-/** 
- ** @class AthenaOutputStreamTool
- ** 
- ** @brief This is a tool that allows streaming out of
- ** DataObjects. This has been factorized out from AthenaOutputStream
- ** to allow output streaming to occur from anywhere, for example
- ** from the finalized method of an algorithm.
+/** @class AthenaOutputStreamTool
+ *  @brief This is the implementation of IAthenaOutputStreamTool.
  **/
+class AthenaOutputStreamTool : public ::AthAlgTool, virtual public IAthenaOutputStreamTool {
+public:
+   /// Standard AlgTool Constructor
+   AthenaOutputStreamTool(const std::string& type,
+	   const std::string& name,
+	   const IInterface* parent);
+   /// Destructor
+   virtual ~AthenaOutputStreamTool();
+
+   /// AthAlgTool Interface method implementations:
+   StatusCode initialize();
+   StatusCode finalize();
+
+   /// Specify which data store and conversion service to use
+   /// and whether to extend provenence
+   ///   Only use if one wants to override jobOptions
+   StatusCode connectServices(const std::string& dataStore,
+	   const std::string& cnvSvc,
+	   bool extendProvenenceRecord);
+
+   /// Connect to the output stream
+   ///   Must connectOutput BEFORE streaming
+   ///   Only specify "outputName" if one wants to override jobOptions
+   StatusCode connectOutput(const std::string& outputName);
+
+   /// Commit the output stream after having streamed out objects
+   ///   Must commitOutput AFTER streaming
+   StatusCode commitOutput();
+
+   /// Finalize the output stream after the last commit, e.g. in
+   /// finalize
+   StatusCode finalizeOutput();
+
+   /// Stream out objects. Provide vector of typeName/key pairs.
+   ///   If key is empty, assumes only one object and this
+   ///   will fail if there is more than one
+   typedef std::pair<std::string, std::string> TypeKeyPair;
+   typedef std::vector<TypeKeyPair>            TypeKeyPairs;
+   virtual StatusCode streamObjects(const TypeKeyPairs& typeKeys);
+
+   /// Stream out a vector of objects
+   ///   Must convert to DataObject, e.g.
+   ///   #include "SGTools/StorableConversions.h"
+   ///     T* obj = xxx;
+   ///     DataObject* dataObject = SG::asStorable(obj);
+   typedef std::vector<DataObject*> DataObjectVec;
+   virtual StatusCode streamObjects(const DataObjectVec& dataObjects);
+
+   /// Fill refs of an object - done as second iteration over
+   /// objects, after streamObject
+   virtual StatusCode fillObjectRefs(const DataObjectVec& dataObjects);
+
+   virtual StatusCode getInputItemList(SG::IFolder* m_p2BWrittenFromTool);
 
-class AthenaOutputStreamTool : public AthAlgTool,
-			       virtual public IAthenaOutputStreamTool
-{
-
-public:    
-
-    /// Constructor
-    AthenaOutputStreamTool(const std::string& type, 
-			   const std::string& name, 
-			   const IInterface* parent); 
-    /// Destructor
-    virtual ~AthenaOutputStreamTool();  
- 
-    /// Initialize 
-    virtual StatusCode initialize();
-
-    /// Finalize 
-    virtual StatusCode finalize();
-
-    /// Specify which data store and conversion service to use
-    /// and whether to extend provenence 
-    ///   Only use if one wants to override jobOptions
-    virtual StatusCode connectServices(const std::string& dataStore, 
-				       const std::string& cnvSvc,
-				       bool extendProvenenceRecord);
-
-    /// Connect to the output stream
-    ///   Must connectOutput BEFORE streaming
-    ///   Only specify "outputName" if one wants to override jobOptions
-    virtual StatusCode connectOutput(const std::string& outputName);
-    
-    /// Commit the output stream after having streamed out objects
-    ///   Must commitOutput AFTER streaming
-    virtual StatusCode commitOutput();
-
-    /// Finalize the output stream after the last commit, e.g. in
-    /// finalize
-    virtual StatusCode finalizeOutput();
-
-    /// Stream out objects. Provide vector of typeName/key pairs. 
-    ///   If key is empty, assumes only one object and this 
-    ///   will fail if there is more than one
-    typedef std::pair<std::string, std::string>   TypeKeyPair;
-    typedef std::vector< TypeKeyPair >            TypeKeyPairs;
-    virtual StatusCode streamObjects(const TypeKeyPairs& typeKeys);
-
-    /// Stream out a vector of objects
-    ///   Must convert to DataObject, e.g.    
-    ///   \#include "SGTools/StorableConversions.h"
-    ///     T* obj = xxx;
-    ///     DataObject* dataObject = SG::asStorable(obj);
-    typedef std::vector< DataObject* >            DataObjectVec;
-    virtual StatusCode streamObjects (const DataObjectVec& dataObjects);
-
-    /// Fill refs of an object - done as second iteration over
-    /// objects, after streamObject
-    virtual StatusCode fillObjectRefs(const DataObjectVec& dataObjects);
-
-    virtual StatusCode getInputItemList(SG::IFolder* m_p2BWrittenFromTool);
 private:
+   /// Do the real connection to services
+   virtual StatusCode connectServices();
 
-    /// Do the real connection to services
-    virtual StatusCode connectServices();
-
-    typedef ServiceHandle<StoreGateSvc> StoreGateSvc_t;
-    /// Pointer to the data store
-    StoreGateSvc_t     m_store;
-
-    typedef ServiceHandle<IConversionSvc> ICnvSvc_t;
-    /// Keep reference to the data conversion service
-    ICnvSvc_t    m_cnvSvc;
-
-    typedef ServiceHandle<IClassIDSvc> IClassIDSvc_t;
-    /// Ref to ClassIDSvc to convert type name to clid
-    IClassIDSvc_t       m_clidSvc;   
-
-    /// Name of the output db name
-    std::string        m_outputName;
-
-    /// Flag to tell whether connectOutput has been called
-    bool               m_connectionOpen;
-
-    /// Flag as to whether to extend provenance via the DataHeader
-    bool               m_extendProvenanceRecord;
-    
-    /// tag of processing stage:
-    std::string        m_processTag;
+private:
+   /// OutputFile, name of the output db name
+   StringProperty  m_outputName;
+   /// ProcessTag, tag of processing stage: default to SG key of DataHeader (Stream name)
+   StringProperty  m_processTag;
+   /// OutputCollection, custom container name prefix for DataHeader: default = "" (will result in "POOLContainer_")
+   StringProperty  m_outputCollection;
+   /// PoolContainerPrefix, prefix for top level POOL container: default = "CollectionTree"
+   StringProperty  m_containerPrefix;
+   /// TopLevelContainerName, naming hint policy for top level POOL container: default = ""
+   StringProperty  m_containerNameHint;
+   /// SubLevelBranchName, naming hint policy for POOL branching: default = "<type>/<key>"
+   StringProperty  m_branchNameHint;
+   /// AttributeListKey, optional key for AttributeList to be written as part of the DataHeader: default = ""
+   StringProperty  m_attrListKey;
+
+   /// Pointer to the data store
+   ServiceHandle<StoreGateSvc>   m_store;
+   /// Keep reference to the data conversion service
+   ServiceHandle<IConversionSvc> m_conversionSvc;
+   /// Ref to ClassIDSvc to convert type name to clid
+   ServiceHandle<IClassIDSvc>    m_clidSvc;
+   /// Current DataHeader for streamed objects
+   DataHeader*     m_dataHeader;
+   /// Name of DataHeader key
+   std::string     m_dataHeaderKey;
+   /// Flag to tell whether connectOutput has been called
+   bool            m_connectionOpen;
+   /// Flag as to whether to extend provenance via the DataHeader
+   bool            m_extendProvenanceRecord;
+
+   /// set of skipped item keys, because of missing CLID
+   std::set<std::string> m_skippedItems;
 };
 
-#endif // ATHENASERVICES_ATHENAOUTPUTSTREAMTOOL_H
+#endif
diff --git a/Control/DataModelTest/DataModelRunTests/share/AuxDataTestRead.ref b/Control/DataModelTest/DataModelRunTests/share/AuxDataTestRead.ref
index 5e0460cbff040037c23e35592a7ea12db21ac52e..d6b65a6865cee315b831a4f392f22e6c5fb4abf3 100644
--- a/Control/DataModelTest/DataModelRunTests/share/AuxDataTestRead.ref
+++ b/Control/DataModelTest/DataModelRunTests/share/AuxDataTestRead.ref
@@ -1,89 +1,14 @@
-Thu Nov  2 14:58:42 EDT 2017
-WARNING: TCMALLOCDIR not defined, will use libc malloc
-Py:Athena            INFO including file "AthenaCommon/Preparation.py"
-Py:Athena            INFO using release [?-21.0.0] [i686-slc5-gcc43-dbg] [?/?] -- built on [?]
-Py:Athena            INFO including file "AthenaCommon/Bootstrap.py"
-Py:Athena            INFO including file "AthenaCommon/Atlas.UnixStandardJob.py"
-Py:Athena            INFO executing ROOT6Setup
-Py:Athena            INFO including file "AthenaCommon/Execution.py"
-Py:Athena            INFO including file "DataModelRunTests/AuxDataTestRead_jo.py"
-Py:ConfigurableDb    INFO Read module info for 467 configurables from 2 genConfDb files
-Py:ConfigurableDb    INFO No duplicates have been found: that's good !
-Py:Athena            INFO including file "EventAthenaPool/EventAthenaPoolItemList_joboptions.py"
-Py:Athena            INFO including file "AthenaCommon/runbatch.py"
-# setting LC_ALL to "C"
-ApplicationMgr       INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0
-ApplicationMgr    SUCCESS 
-====================================================================================================================================
-                                                   Welcome to ApplicationMgr (GaudiCoreSvc v27r1p99)
-                                          running on karma on Thu Nov  2 14:59:13 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 10025 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)
-CoreDumpSvc          INFO Handling signals: 11(Segmentation fault) 7(Bus error) 4(Illegal instruction) 8(Floating point exception) 
-AthenaEventLoopMgr   INFO Initializing AthenaEventLoopMgr - package version AthenaServices-00-00-00
-ClassIDSvc           INFO  getRegistryEntries: read 690 CLIDRegistry entries for module ALL
-DecisionSvc          INFO Inserting stream: Stream1 with no Algs
-MetaDataSvc          INFO Initializing MetaDataSvc - package version AthenaServices-00-00-00
-AthenaPoolCnvSvc     INFO Initializing AthenaPoolCnvSvc - package version AthenaPoolCnvSvc-00-00-00
-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 Read replica configuration from /home/sss/atlas/dvtest/build/share/dbreplica.config
-DBReplicaSvc         INFO No specific match for domain found - use default fallback
-DBReplicaSvc         INFO Total of 1 servers found for host karma [atlas_dd ]
-PoolSvc              INFO Successfully setup replica sorting algorithm
-PoolSvc              INFO Setting up APR FileCatalog and Streams
-PoolSvc              INFO POOL WriteCatalog is file:AuxDataTestRead_catalog.xml
-DbSession            INFO     Open     DbSession    
-Domain[ROOT_All]     INFO >   Access   DbDomain     READ      [ROOT_All] 
-EventSelector        INFO reinitialization...
-EventSelector        INFO EventSelection with query 
-Domain[ROOT_All]     INFO ->  Access   DbDatabase   READ      [ROOT_All] BFCFD293-D1D2-9F43-9E08-DCEC7227F2EA
-Domain[ROOT_All]     INFO                           auxdata.root
-RootDatabase.open    INFO auxdata.root File version:60806
-EventPersistenc...   INFO Added successfully Conversion service:AthenaPoolCnvSvc
-EventSelector        INFO Initializing EventSelector - package version EventSelectorAthenaPool-00-00-00
-EventSelector        INFO reinitialization...
-EventSelector        INFO EventSelection with query 
-AthenaPoolAddre...   INFO Initializing AthenaPoolAddressProviderSvc - package version EventSelectorAthenaPool-00-00-00
-OutputStreamSeq...   INFO Initializing OutputStreamSequencerSvc - package version AthenaServices-00-00-00
-ClassIDSvc           INFO  getRegistryEntries: read 1093 CLIDRegistry entries for module ALL
-Stream1.Stream1...   INFO Initializing Stream1.Stream1Tool - package version OutputStreamAthenaPool-00-00-00
-Stream1.Stream1...   INFO streamProperty ProcessingTag = Stream1
 Stream1              INFO Found HelperTools = PrivateToolHandleArray([])
 Stream1              INFO Data output: auxdata2.root
-Stream1              INFO I/O reinitialization...
-DecisionSvc          INFO Inserting stream: Stream2 with no Algs
-Stream2.Stream2...   INFO Initializing Stream2.Stream2Tool - package version OutputStreamAthenaPool-00-00-00
-Stream2.Stream2...   INFO streamProperty ProcessingTag = Stream2
 Stream2              INFO Found HelperTools = PrivateToolHandleArray([])
 Stream2              INFO Data output: auxdata2b.root
-Stream2              INFO I/O reinitialization...
-HistogramPersis...WARNING Histograms saving not required.
 AthenaEventLoopMgr   INFO Setup EventSelector service EventSelector
 ApplicationMgr       INFO Application Manager Initialized successfully
-auxdata.root         INFO Database being retired...
-Domain[ROOT_All]     INFO ->  Deaccess DbDatabase   READ      [ROOT_All] BFCFD293-D1D2-9F43-9E08-DCEC7227F2EA
-DbSession            INFO     Open     DbSession    
-Domain[ROOT_All]     INFO >   Access   DbDomain     READ      [ROOT_All] 
-Domain[ROOT_All]     INFO ->  Access   DbDatabase   READ      [ROOT_All] BFCFD293-D1D2-9F43-9E08-DCEC7227F2EA
-Domain[ROOT_All]     INFO                           auxdata.root
-RootDatabase.open    INFO auxdata.root File version:60806
-ApplicationMgr       INFO Application Manager Started successfully
 AlgResourcePool      INFO TopAlg list empty. Recovering the one of Application Manager
-AthenaPoolConve...   INFO massageEventInfo: unable to get OverrideRunNumberFromInput property from EventSelector 
-ClassIDSvc           INFO  getRegistryEntries: read 16 CLIDRegistry entries for module ALL
 AthenaEventLoopMgr   INFO   ===>>>  start of run 0    <<<===
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #0, run #0 0 events processed so far  <<<===
 1
-ClassIDSvc           INFO  getRegistryEntries: read 54 CLIDRegistry entries for module ALL
 aB aFloat1 anInt1 dFloat1 pfloat pint pvfloat pvint 
  anInt1: 1100 aFloat1: 1200.5 pInt: 2 pFloat: 0.01 aB: 1300 dFloat1: 1400.5
   pvInt: []
@@ -116,14 +41,6 @@ aB aFloat1 anInt1 dFloat1 pfloat pint pvfloat pvint
   pvInt: [-310 -309 -308 -307 -306 -305 -304 -303 -302 ]
   pvFloat: [-0.409 -0.309 -0.209 -0.109 -0.009 0.091 0.191 0.291 0.391 ]
 b anInt1: 9999 aFloat1: 9999.5 anEL: bauxvec[1] aB: 10099 dFloat1: 10199.5
-DbSession            INFO     Open     DbSession    
-Domain[ROOT_All]     INFO >   Access   DbDomain     UPDATE    [ROOT_All] 
-Domain[ROOT_All]     INFO ->  Access   DbDatabase   CREATE    [ROOT_All] C35B44C1-138C-8946-835E-8465FA0E7A37
-Domain[ROOT_All]     INFO                           auxdata2.root
-RootDatabase.open    INFO auxdata2.root File version:60806
-Domain[ROOT_All]     INFO ->  Access   DbDatabase   CREATE    [ROOT_All] 1CA7EE0C-7D18-4548-9F8C-ADA7F216DBF9
-Domain[ROOT_All]     INFO                           auxdata2b.root
-RootDatabase.open    INFO auxdata2b.root File version:60806
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #0, run #0 1 events processed so far  <<<===
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #1, run #0 1 events processed so far  <<<===
 2
@@ -790,23 +707,8 @@ aB aFloat1 anInt1 dFloat1 pfloat pint pvfloat pvint
   pvFloat: [-0.390 -0.290 -0.190 -0.090 0.010 0.110 0.210 0.310 0.410 ]
 b anInt1: 199980 aFloat1: 199980.5 anEL: bauxvec[0] aB: 200080 dFloat1: 200180
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #19, run #0 20 events processed so far  <<<===
-Stream1              INFO Records written: 21
 Stream2              INFO Records written: 21
-auxdata.root         INFO Database being retired...
-Domain[ROOT_All]     INFO ->  Deaccess DbDatabase   READ      [ROOT_All] BFCFD293-D1D2-9F43-9E08-DCEC7227F2EA
-auxdata2.root        INFO Database being retired...
-Domain[ROOT_All]     INFO ->  Deaccess DbDatabase   CREATE    [ROOT_All] C35B44C1-138C-8946-835E-8465FA0E7A37
-auxdata2b.root       INFO Database being retired...
-Domain[ROOT_All]     INFO ->  Deaccess DbDatabase   CREATE    [ROOT_All] 1CA7EE0C-7D18-4548-9F8C-ADA7F216DBF9
-Domain[ROOT_All]     INFO >   Deaccess DbDomain     UPDATE    [ROOT_All] 
-ApplicationMgr       INFO Application Manager Stopped successfully
 IncidentProcAlg1     INFO Finalize
 IncidentProcAlg2     INFO Finalize
-Domain[ROOT_All]     INFO >   Deaccess DbDomain     READ      [ROOT_All] 
-DecisionSvc          INFO Finalized successfully.
-AthDictLoaderSvc     INFO in finalize...
-ToolSvc              INFO Removing all tools created by ToolSvc
-ChronoStatSvc.f...   INFO  Service finalized successfully 
 ApplicationMgr       INFO Application Manager Finalized successfully
 ApplicationMgr       INFO Application Manager Terminated successfully
-Py:Athena            INFO leaving with code 0: "successful run"
diff --git a/Control/DataModelTest/DataModelRunTests/share/AuxDataTestTypelessRead.ref b/Control/DataModelTest/DataModelRunTests/share/AuxDataTestTypelessRead.ref
index ed21405bcebb4e3dba1b23618f7bdb85f587e47b..b4409a1a33e51912502bab337e1f80974d170bf3 100644
--- a/Control/DataModelTest/DataModelRunTests/share/AuxDataTestTypelessRead.ref
+++ b/Control/DataModelTest/DataModelRunTests/share/AuxDataTestTypelessRead.ref
@@ -1,83 +1,12 @@
-Thu Nov  2 14:58:42 EDT 2017
-WARNING: TCMALLOCDIR not defined, will use libc malloc
-Py:Athena            INFO including file "AthenaCommon/Preparation.py"
-Py:Athena            INFO using release [?-21.0.0] [i686-slc5-gcc43-dbg] [?/?] -- built on [?]
-Py:Athena            INFO including file "AthenaCommon/Bootstrap.py"
-Py:Athena            INFO including file "AthenaCommon/Atlas.UnixStandardJob.py"
-Py:Athena            INFO executing ROOT6Setup
-Py:Athena            INFO including file "AthenaCommon/Execution.py"
-Py:Athena            INFO including file "DataModelRunTests/AuxDataTestTypelessRead_jo.py"
-Py:ConfigurableDb    INFO Read module info for 467 configurables from 2 genConfDb files
-Py:ConfigurableDb    INFO No duplicates have been found: that's good !
-Py:Athena            INFO including file "EventAthenaPool/EventAthenaPoolItemList_joboptions.py"
-Py:Athena            INFO including file "AthenaCommon/runbatch.py"
-# setting LC_ALL to "C"
-ApplicationMgr       INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0
-ApplicationMgr    SUCCESS 
-====================================================================================================================================
-                                                   Welcome to ApplicationMgr (GaudiCoreSvc v27r1p99)
-                                          running on karma on Thu Nov  2 14:59:11 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 10025 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)
-CoreDumpSvc          INFO Handling signals: 11(Segmentation fault) 7(Bus error) 4(Illegal instruction) 8(Floating point exception) 
-AthenaEventLoopMgr   INFO Initializing AthenaEventLoopMgr - package version AthenaServices-00-00-00
-ClassIDSvc           INFO  getRegistryEntries: read 690 CLIDRegistry entries for module ALL
-DecisionSvc          INFO Inserting stream: Stream1 with no Algs
-MetaDataSvc          INFO Initializing MetaDataSvc - package version AthenaServices-00-00-00
-AthenaPoolCnvSvc     INFO Initializing AthenaPoolCnvSvc - package version AthenaPoolCnvSvc-00-00-00
-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 Read replica configuration from /home/sss/atlas/dvtest/build/share/dbreplica.config
-DBReplicaSvc         INFO No specific match for domain found - use default fallback
-DBReplicaSvc         INFO Total of 1 servers found for host karma [atlas_dd ]
-PoolSvc              INFO Successfully setup replica sorting algorithm
-PoolSvc              INFO Setting up APR FileCatalog and Streams
-PoolSvc              INFO POOL WriteCatalog is file:AuxDataTestTypelessRead_catalog.xml
-DbSession            INFO     Open     DbSession    
-Domain[ROOT_All]     INFO >   Access   DbDomain     READ      [ROOT_All] 
-EventSelector        INFO reinitialization...
-EventSelector        INFO EventSelection with query 
-Domain[ROOT_All]     INFO ->  Access   DbDatabase   READ      [ROOT_All] BFCFD293-D1D2-9F43-9E08-DCEC7227F2EA
-Domain[ROOT_All]     INFO                           auxdata.root
-RootDatabase.open    INFO auxdata.root File version:60806
-EventPersistenc...   INFO Added successfully Conversion service:AthenaPoolCnvSvc
-EventSelector        INFO Initializing EventSelector - package version EventSelectorAthenaPool-00-00-00
-EventSelector        INFO reinitialization...
-EventSelector        INFO EventSelection with query 
-AthenaPoolAddre...   INFO Initializing AthenaPoolAddressProviderSvc - package version EventSelectorAthenaPool-00-00-00
-OutputStreamSeq...   INFO Initializing OutputStreamSequencerSvc - package version AthenaServices-00-00-00
-ClassIDSvc           INFO  getRegistryEntries: read 1093 CLIDRegistry entries for module ALL
-Stream1.Stream1...   INFO Initializing Stream1.Stream1Tool - package version OutputStreamAthenaPool-00-00-00
-Stream1.Stream1...   INFO streamProperty ProcessingTag = Stream1
 Stream1              INFO Found HelperTools = PrivateToolHandleArray([])
 Stream1              INFO Data output: auxdata3.root
-Stream1              INFO I/O reinitialization...
-HistogramPersis...WARNING Histograms saving not required.
 AthenaEventLoopMgr   INFO Setup EventSelector service EventSelector
 ApplicationMgr       INFO Application Manager Initialized successfully
-auxdata.root         INFO Database being retired...
-Domain[ROOT_All]     INFO ->  Deaccess DbDatabase   READ      [ROOT_All] BFCFD293-D1D2-9F43-9E08-DCEC7227F2EA
-DbSession            INFO     Open     DbSession    
-Domain[ROOT_All]     INFO >   Access   DbDomain     READ      [ROOT_All] 
-Domain[ROOT_All]     INFO ->  Access   DbDatabase   READ      [ROOT_All] BFCFD293-D1D2-9F43-9E08-DCEC7227F2EA
-Domain[ROOT_All]     INFO                           auxdata.root
-RootDatabase.open    INFO auxdata.root File version:60806
-ApplicationMgr       INFO Application Manager Started successfully
 AlgResourcePool      INFO TopAlg list empty. Recovering the one of Application Manager
-AthenaPoolConve...   INFO massageEventInfo: unable to get OverrideRunNumberFromInput property from EventSelector 
-ClassIDSvc           INFO  getRegistryEntries: read 16 CLIDRegistry entries for module ALL
 AthenaEventLoopMgr   INFO   ===>>>  start of run 0    <<<===
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #0, run #0 0 events processed so far  <<<===
 1
-ClassIDSvc           INFO  getRegistryEntries: read 54 CLIDRegistry entries for module ALL
 bvec types: aB/DMTest::B aFloat1/float anInt1/int dFloat1/float pfloat/float pint/unsigned int pvfloat/std::vector<float,std::allocator<float> > pvint/std::vector<int,std::allocator<int> > 
   aB: 1300; aFloat1: 1200.500; anInt1: 1100; dFloat1: 1400.500; pfloat: 0.010; pint: 2; 
     pvfloat: []; 
@@ -111,11 +40,6 @@ bvec types: aB/DMTest::B aFloat1/float anInt1/int dFloat1/float pfloat/float pin
     pvint: [-310 -309 -308 -307 -306 -305 -304 -303 -302 ]; 
 b types: aB/DMTest::B aFloat1/float anEL/ElementLink<DMTest::BAuxVec> anInt1/int dFloat1/float 
 aB: 10099; aFloat1: 9999.500; anEL: bauxvec[1]; anInt1: 9999; dFloat1: 10199.500; 
-DbSession            INFO     Open     DbSession    
-Domain[ROOT_All]     INFO >   Access   DbDomain     UPDATE    [ROOT_All] 
-Domain[ROOT_All]     INFO ->  Access   DbDatabase   CREATE    [ROOT_All] 002B8756-D35C-AD49-BC48-9B39E41FF41A
-Domain[ROOT_All]     INFO                           auxdata3.root
-RootDatabase.open    INFO auxdata3.root File version:60806
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #0, run #0 1 events processed so far  <<<===
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #1, run #0 1 events processed so far  <<<===
 2
@@ -801,20 +725,7 @@ bvec types: aB/DMTest::B aFloat1/float anInt1/int dFloat1/float pfloat/float pin
 b types: aB/DMTest::B aFloat1/float anEL/ElementLink<DMTest::BAuxVec> anInt1/int dFloat1/float 
 aB: 200080; aFloat1: 199980.500; anEL: bauxvec[0]; anInt1: 199980; dFloat1: 200180.500; 
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #19, run #0 20 events processed so far  <<<===
-Stream1              INFO Records written: 21
-auxdata.root         INFO Database being retired...
-Domain[ROOT_All]     INFO ->  Deaccess DbDatabase   READ      [ROOT_All] BFCFD293-D1D2-9F43-9E08-DCEC7227F2EA
-auxdata3.root        INFO Database being retired...
-Domain[ROOT_All]     INFO ->  Deaccess DbDatabase   CREATE    [ROOT_All] 002B8756-D35C-AD49-BC48-9B39E41FF41A
-Domain[ROOT_All]     INFO >   Deaccess DbDomain     UPDATE    [ROOT_All] 
-ApplicationMgr       INFO Application Manager Stopped successfully
 IncidentProcAlg1     INFO Finalize
 IncidentProcAlg2     INFO Finalize
-Domain[ROOT_All]     INFO >   Deaccess DbDomain     READ      [ROOT_All] 
-DecisionSvc          INFO Finalized successfully.
-AthDictLoaderSvc     INFO in finalize...
-ToolSvc              INFO Removing all tools created by ToolSvc
-ChronoStatSvc.f...   INFO  Service finalized successfully 
 ApplicationMgr       INFO Application Manager Finalized successfully
 ApplicationMgr       INFO Application Manager Terminated successfully
-Py:Athena            INFO leaving with code 0: "successful run"
diff --git a/Control/DataModelTest/DataModelRunTests/share/AuxDataTestWrite.ref b/Control/DataModelTest/DataModelRunTests/share/AuxDataTestWrite.ref
index 41bf1328289535f43e3d420ccfb9f4cc40fc00d2..ded74e9e6397577282137a4701fb100583e5381c 100644
--- a/Control/DataModelTest/DataModelRunTests/share/AuxDataTestWrite.ref
+++ b/Control/DataModelTest/DataModelRunTests/share/AuxDataTestWrite.ref
@@ -1,68 +1,11 @@
-Fri Oct 27 20:43:32 CEST 2017
-Preloading tcmalloc_minimal.so
-Py:Athena            INFO including file "AthenaCommon/Preparation.py"
-Py:Athena            INFO using release [AthenaWorkDir-22.0.0] [x86_64-slc6-gcc62-opt] [atlas-work3/9f528da37a] -- built on [2017-10-27T2018]
-Py:Athena            INFO including file "AthenaCommon/Bootstrap.py"
-Py:Athena            INFO including file "AthenaCommon/Atlas.UnixStandardJob.py"
-Py:Athena            INFO executing ROOT6Setup
-Py:Athena            INFO including file "AthenaCommon/Execution.py"
-Py:Athena            INFO including file "DataModelRunTests/AuxDataTestWrite_jo.py"
-Py:ConfigurableDb    INFO Read module info for 5436 configurables from 58 genConfDb files
-Py:ConfigurableDb    INFO No duplicates have been found: that's good !
-[?1034hPy:Athena            INFO including file "EventAthenaPool/EventAthenaPoolItemList_joboptions.py"
-Py:Athena            INFO including file "AthenaCommon/runbatch.py"
-ApplicationMgr       INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0
-ApplicationMgr    SUCCESS 
-====================================================================================================================================
-                                                   Welcome to ApplicationMgr (GaudiCoreSvc v29r0)
-                                          running on lxplus012.cern.ch on Fri Oct 27 20:43:50 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 9608 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)
-CoreDumpSvc          INFO Handling signals: 11(Segmentation fault) 7(Bus error) 4(Illegal instruction) 8(Floating point exception) 
-AthenaEventLoopMgr   INFO Initializing AthenaEventLoopMgr - package version AthenaServices-00-00-00
-ClassIDSvc           INFO  getRegistryEntries: read 754 CLIDRegistry entries for module ALL
-DecisionSvc          INFO Inserting stream: Stream1 with no Algs
-MetaDataSvc          INFO Initializing MetaDataSvc - package version AthenaServices-00-00-00
-AthenaPoolCnvSvc     INFO Initializing AthenaPoolCnvSvc - package version AthenaPoolCnvSvc-00-00-00
-PoolSvc              INFO Set connectionsvc retry/timeout/IDLE timeout to  'ConnectionRetrialPeriod':300/ 'ConnectionRetrialTimeOut':3600/ 'ConnectionTimeOut':5 seconds with connection cleanup disabled
-PoolSvc              INFO Frontier compression level set to 5
-DBReplicaSvc         INFO Frontier server at (serverurl=http://atlasfrontier-local.cern.ch:8000/atlr)(serverurl=http://atlasfrontier-ai.cern.ch:8000/atlr)(serverurl=http://lcgft-atlas.gridpp.rl.ac.uk:3128/frontierATLAS)(serverurl=http://ccfrontier.in2p3.fr:23128/ccin2p3-AtlasFrontier)(proxyurl=http://ca-proxy.cern.ch:3128)(proxyurl=http://ca-proxy-meyrin.cern.ch:3128)(proxyurl=http://ca-proxy-wigner.cern.ch:3128) will be considered for COOL data
-DBReplicaSvc         INFO Read replica configuration from /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2017-10-26T2259/Athena/22.0.0/InstallArea/x86_64-slc6-gcc62-opt/share/dbreplica.config
-DBReplicaSvc         INFO Total of 10 servers found for host lxplus012.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              INFO Setting up APR FileCatalog and Streams
-PoolSvc              INFO POOL WriteCatalog is file:AuxDataTestWrite_catalog.xml
-DbSession            INFO     Open     DbSession    
-Domain[ROOT_All]     INFO >   Access   DbDomain     READ      [ROOT_All] 
-OutputStreamSeq...   INFO Initializing OutputStreamSequencerSvc - package version AthenaServices-00-00-00
-ClassIDSvc           INFO  getRegistryEntries: read 724 CLIDRegistry entries for module ALL
-Stream1.Stream1...   INFO Initializing Stream1.Stream1Tool - package version OutputStreamAthenaPool-00-00-00
-Stream1.Stream1...   INFO streamProperty ProcessingTag = Stream1
 Stream1              INFO Found HelperTools = PrivateToolHandleArray([])
 Stream1              INFO Data output: auxdata.root
-Stream1              INFO I/O reinitialization...
-HistogramPersis...WARNING Histograms saving not required.
 EventSelector        INFO  Enter McEventSelector Initialization 
 AthenaEventLoopMgr   INFO Setup EventSelector service EventSelector
 ApplicationMgr       INFO Application Manager Initialized successfully
-ApplicationMgr       INFO Application Manager Started successfully
-EventPersistenc...   INFO Added successfully Conversion service:McCnvSvc
-ClassIDSvc           INFO  getRegistryEntries: read 108 CLIDRegistry entries for module ALL
 AthenaEventLoopMgr   INFO   ===>>>  start of run 0    <<<===
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #0, run #0 0 events processed so far  <<<===
-DbSession            INFO     Open     DbSession    
-Domain[ROOT_All]     INFO >   Access   DbDomain     UPDATE    [ROOT_All] 
-Domain[ROOT_All]     INFO ->  Access   DbDatabase   CREATE    [ROOT_All] 7BE6D420-EF07-564F-B04C-00AC846CCFB0
-Domain[ROOT_All]     INFO                           auxdata.root
-RootDatabase.open    INFO auxdata.root File version:60806
 StorageSvc           INFO Building shape according to reflection information using shape ID for:
 StorageSvc           INFO EventInfo_p4 [C634FDB6-CC4B-4BA2-B8F9-A84BE6A786C7]
 StorageSvc           INFO Building shape according to reflection information using shape ID for:
@@ -73,7 +16,6 @@ StorageSvc           INFO Building shape according to reflection information usi
 StorageSvc           INFO DataHeaderForm_p5 [3397D8A3-BBE6-463C-9F8E-4B3DFD8831FE]
 StorageSvc           INFO Building shape according to reflection information using shape ID for:
 StorageSvc           INFO DataHeader_p5 [D82968A1-CF91-4320-B2DD-E0F739CBC7E6]
-ClassIDSvc           INFO  getRegistryEntries: read 73 CLIDRegistry entries for module ALL
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #0, run #0 1 events processed so far  <<<===
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #1, run #0 1 events processed so far  <<<===
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #1, run #0 2 events processed so far  <<<===
@@ -113,19 +55,7 @@ AthenaEventLoopMgr   INFO   ===>>>  start processing event #18, run #0 18 events
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #18, run #0 19 events processed so far  <<<===
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #19, run #0 19 events processed so far  <<<===
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #19, run #0 20 events processed so far  <<<===
-Stream1              INFO Records written: 21
-Domain[ROOT_All]     INFO >   Deaccess DbDomain     READ      [ROOT_All] 
-auxdata.root         INFO Database being retired...
-Domain[ROOT_All]     INFO ->  Deaccess DbDatabase   CREATE    [ROOT_All] 7BE6D420-EF07-564F-B04C-00AC846CCFB0
-Domain[ROOT_All]     INFO >   Deaccess DbDomain     UPDATE    [ROOT_All] 
-ApplicationMgr       INFO Application Manager Stopped successfully
 IncidentProcAlg1     INFO Finalize
 IncidentProcAlg2     INFO Finalize
-EventSelector        INFO finalize
-DecisionSvc          INFO Finalized successfully.
-AthDictLoaderSvc     INFO in finalize...
-ToolSvc              INFO Removing all tools created by ToolSvc
-ChronoStatSvc.f...   INFO  Service finalized successfully 
 ApplicationMgr       INFO Application Manager Finalized successfully
 ApplicationMgr       INFO Application Manager Terminated successfully
-Py:Athena            INFO leaving with code 0: "successful run"
diff --git a/Control/DataModelTest/DataModelRunTests/share/ByteStreamTestWrite.ref b/Control/DataModelTest/DataModelRunTests/share/ByteStreamTestWrite.ref
index 63e3d70038d711e1aeab3facd36faa7cd0919aad..3f2ee86e176bf92faaf8f29bc32bfc9ca0425657 100644
--- a/Control/DataModelTest/DataModelRunTests/share/ByteStreamTestWrite.ref
+++ b/Control/DataModelTest/DataModelRunTests/share/ByteStreamTestWrite.ref
@@ -55,7 +55,6 @@ PoolSvc              INFO Successfully setup replica sorting algorithm
 PoolSvc              INFO Setting up APR FileCatalog and Streams
 PoolSvc              INFO POOL WriteCatalog is xmlcatalog_file:PoolFileCatalog.xml
 PoolSvc              INFO Re-initializing PoolSvc
-StreamBSFileOut...   INFO AthenaOutputStreamTool initialize
 ByteStreamEvent...   INFO Initializing ByteStreamEventStorageOutputSvc - package version ByteStreamCnvSvc-00-00-00
 ByteStreamEvent...   INFO eformat version to use: "current"
 ByteStreamEvent...   INFO event storage (BS) version to use: "current"
@@ -130,7 +129,6 @@ ByteStreamEvent...   INFO number of events written: 20
 DecisionSvc          INFO Finalized successfully.
 AthDictLoaderSvc     INFO in finalize...
 ToolSvc              INFO Removing all tools created by ToolSvc
-StreamBSFileOut...   INFO AthenaOutputStreamTool finalize
 ToolSvc.TrigTSe...   INFO ToolSvc.TrigTSerializer no problems encountered
 ChronoStatSvc.f...   INFO  Service finalized successfully 
 ApplicationMgr       INFO Application Manager Finalized successfully
diff --git a/Control/DataModelTest/DataModelRunTests/share/CondWriter_jo.py b/Control/DataModelTest/DataModelRunTests/share/CondWriter_jo.py
index 9ab72c28f09547262af6aeedc6e4f010675ffdc4..5ee96f49664e1d95067e66accca6a32b8d18d005 100644
--- a/Control/DataModelTest/DataModelRunTests/share/CondWriter_jo.py
+++ b/Control/DataModelTest/DataModelRunTests/share/CondWriter_jo.py
@@ -42,10 +42,9 @@ ROOT.DMTest.setConverterLibrary ('libDataModelTestDataWriteCnvPoolCnv.so')
 #--------------------------------------------------------------
 
 
-from OutputStreamAthenaPool.OutputStreamAthenaPoolConf import AthenaPoolOutputStreamTool
-condstream = AthenaPoolOutputStreamTool ('CondStream',
-                                         OutputFile = 'condtest.pool.root',
-                                         PoolContainerPrefix = 'ConditionsContainer')
+from AthenaServices.AthenaServicesConf import AthenaOutputStreamTool
+condstream = AthenaOutputStreamTool ('CondStream',
+                                         OutputFile = 'condtest.pool.root')
 
 from DataModelTestDataCommon.DataModelTestDataCommonConf import \
      DMTest__CondWriterAlg
diff --git a/Control/DataModelTest/DataModelRunTests/share/DataModelTestRead.ref b/Control/DataModelTest/DataModelRunTests/share/DataModelTestRead.ref
index 57f8baa8b2ee659d8845c545866eb9153db75f4e..1b5a26cbb43faee9f7015492978ba2d88e551189 100644
--- a/Control/DataModelTest/DataModelRunTests/share/DataModelTestRead.ref
+++ b/Control/DataModelTest/DataModelRunTests/share/DataModelTestRead.ref
@@ -1,84 +1,12 @@
-Thu Nov  2 15:25:04 EDT 2017
-WARNING: TCMALLOCDIR not defined, will use libc malloc
-Py:Athena            INFO including file "AthenaCommon/Preparation.py"
-Py:Athena            INFO using release [?-21.0.0] [i686-slc5-gcc43-dbg] [?/?] -- built on [?]
-Py:Athena            INFO including file "AthenaCommon/Bootstrap.py"
-Py:Athena            INFO including file "AthenaCommon/Atlas.UnixStandardJob.py"
-Py:Athena            INFO executing ROOT6Setup
-Py:Athena            INFO including file "AthenaCommon/Execution.py"
-Py:Athena            INFO including file "DataModelRunTests/DataModelTestRead_jo.py"
-Py:ConfigurableDb    INFO Read module info for 467 configurables from 2 genConfDb files
-Py:ConfigurableDb    INFO No duplicates have been found: that's good !
-Py:Athena            INFO including file "EventAthenaPool/EventAthenaPoolItemList_joboptions.py"
-Py:Athena            INFO including file "AthenaCommon/runbatch.py"
-# setting LC_ALL to "C"
-ApplicationMgr       INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0
-ApplicationMgr    SUCCESS 
-====================================================================================================================================
-                                                   Welcome to ApplicationMgr (GaudiCoreSvc v27r1p99)
-                                          running on karma on Thu Nov  2 15:25:31 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 10078 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)
-CoreDumpSvc          INFO Handling signals: 11(Segmentation fault) 7(Bus error) 4(Illegal instruction) 8(Floating point exception) 
-AthenaEventLoopMgr   INFO Initializing AthenaEventLoopMgr - package version AthenaServices-00-00-00
-ClassIDSvc           INFO  getRegistryEntries: read 690 CLIDRegistry entries for module ALL
-DecisionSvc          INFO Inserting stream: Stream1 with no Algs
-MetaDataSvc          INFO Initializing MetaDataSvc - package version AthenaServices-00-00-00
-AthenaPoolCnvSvc     INFO Initializing AthenaPoolCnvSvc - package version AthenaPoolCnvSvc-00-00-00
-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 Read replica configuration from /home/sss/atlas/dvtest/build/share/dbreplica.config
-DBReplicaSvc         INFO No specific match for domain found - use default fallback
-DBReplicaSvc         INFO Total of 1 servers found for host karma [atlas_dd ]
-PoolSvc              INFO Successfully setup replica sorting algorithm
-PoolSvc              INFO Setting up APR FileCatalog and Streams
-PoolSvc              INFO POOL WriteCatalog is file:DataModelTestRead_catalog.xml
-DbSession            INFO     Open     DbSession    
-Domain[ROOT_All]     INFO >   Access   DbDomain     READ      [ROOT_All] 
-EventSelector        INFO reinitialization...
-EventSelector        INFO EventSelection with query 
-Domain[ROOT_All]     INFO ->  Access   DbDatabase   READ      [ROOT_All] 886F031B-9F53-BF44-9C66-82044E649879
-Domain[ROOT_All]     INFO                           SimplePoolFile.root
-RootDatabase.open    INFO SimplePoolFile.root File version:60806
-EventPersistenc...   INFO Added successfully Conversion service:AthenaPoolCnvSvc
-EventSelector        INFO Initializing EventSelector - package version EventSelectorAthenaPool-00-00-00
-EventSelector        INFO reinitialization...
-EventSelector        INFO EventSelection with query 
-AthenaPoolAddre...   INFO Initializing AthenaPoolAddressProviderSvc - package version EventSelectorAthenaPool-00-00-00
-OutputStreamSeq...   INFO Initializing OutputStreamSequencerSvc - package version AthenaServices-00-00-00
-ClassIDSvc           INFO  getRegistryEntries: read 1040 CLIDRegistry entries for module ALL
-Stream1.Stream1...   INFO Initializing Stream1.Stream1Tool - package version OutputStreamAthenaPool-00-00-00
-Stream1.Stream1...   INFO streamProperty ProcessingTag = Stream1
 Stream1              INFO Found HelperTools = PrivateToolHandleArray([])
 Stream1              INFO Data output: SimplePoolFile2.root
-Stream1              INFO I/O reinitialization...
-HistogramPersis...WARNING Histograms saving not required.
 AthenaEventLoopMgr   INFO Setup EventSelector service EventSelector
 ApplicationMgr       INFO Application Manager Initialized successfully
-SimplePoolFile....   INFO Database being retired...
-Domain[ROOT_All]     INFO ->  Deaccess DbDatabase   READ      [ROOT_All] 886F031B-9F53-BF44-9C66-82044E649879
-DbSession            INFO     Open     DbSession    
-Domain[ROOT_All]     INFO >   Access   DbDomain     READ      [ROOT_All] 
-Domain[ROOT_All]     INFO ->  Access   DbDatabase   READ      [ROOT_All] 886F031B-9F53-BF44-9C66-82044E649879
-Domain[ROOT_All]     INFO                           SimplePoolFile.root
-RootDatabase.open    INFO SimplePoolFile.root File version:60806
-ApplicationMgr       INFO Application Manager Started successfully
 AlgResourcePool      INFO TopAlg list empty. Recovering the one of Application Manager
-AthenaPoolConve...   INFO massageEventInfo: unable to get OverrideRunNumberFromInput property from EventSelector 
-ClassIDSvc           INFO  getRegistryEntries: read 16 CLIDRegistry entries for module ALL
 AthenaEventLoopMgr   INFO   ===>>>  start of run 0    <<<===
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #0, run #0 0 events processed so far  <<<===
-ClassIDSvc           INFO  getRegistryEntries: read 12 CLIDRegistry entries for module ALL
 bvec as DataVector<DMTest::B>: 0 1 2 3 4 5 6 7 8 9 
-ClassIDSvc           INFO  getRegistryEntries: read 54 CLIDRegistry entries for module ALL
 bder as DMTest::BDer: 100 101 102 103 104 105 106 107 108 109 
 dvec as DataVector<DMTest::D>: 200 201 202 203 204 205 206 207 208 209 
 dder as DMTest::DDer: 300 301 302 303 304 305 306 307 308 309 
@@ -89,11 +17,6 @@ dder as DataVector<DMTest::D>: 300 301 302 303 304 305 306 307 308 309
 elvec: 0 3 6 9 101 104 107 
 elv_remap: 100 101 102 103 104 105 106 107 108 109 200 201 202 203 204 205 206 207 208 209 
 elv_remap v2: 100 101 102 103 104 105 106 107 108 109 200 201 202 203 204 205 206 207 208 209 
-DbSession            INFO     Open     DbSession    
-Domain[ROOT_All]     INFO >   Access   DbDomain     UPDATE    [ROOT_All] 
-Domain[ROOT_All]     INFO ->  Access   DbDatabase   CREATE    [ROOT_All] 5B4CB2C3-AC45-0241-A50A-43F874AC370F
-Domain[ROOT_All]     INFO                           SimplePoolFile2.root
-RootDatabase.open    INFO SimplePoolFile2.root File version:60806
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #0, run #0 1 events processed so far  <<<===
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #1, run #0 1 events processed so far  <<<===
 bvec as DataVector<DMTest::B>: 1 2 3 4 5 6 7 8 9 10 
@@ -342,20 +265,7 @@ elvec: 19 22 25 28 120 123 126
 elv_remap: 119 120 121 122 123 124 125 126 127 128 219 220 221 222 223 224 225 226 227 228 
 elv_remap v2: 119 120 121 122 123 124 125 126 127 128 219 220 221 222 223 224 225 226 227 228 
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #19, run #0 20 events processed so far  <<<===
-Stream1              INFO Records written: 21
-SimplePoolFile....   INFO Database being retired...
-Domain[ROOT_All]     INFO ->  Deaccess DbDatabase   READ      [ROOT_All] 886F031B-9F53-BF44-9C66-82044E649879
-SimplePoolFile2...   INFO Database being retired...
-Domain[ROOT_All]     INFO ->  Deaccess DbDatabase   CREATE    [ROOT_All] 5B4CB2C3-AC45-0241-A50A-43F874AC370F
-Domain[ROOT_All]     INFO >   Deaccess DbDomain     UPDATE    [ROOT_All] 
-ApplicationMgr       INFO Application Manager Stopped successfully
 IncidentProcAlg1     INFO Finalize
 IncidentProcAlg2     INFO Finalize
-Domain[ROOT_All]     INFO >   Deaccess DbDomain     READ      [ROOT_All] 
-DecisionSvc          INFO Finalized successfully.
-AthDictLoaderSvc     INFO in finalize...
-ToolSvc              INFO Removing all tools created by ToolSvc
-ChronoStatSvc.f...   INFO  Service finalized successfully 
 ApplicationMgr       INFO Application Manager Finalized successfully
 ApplicationMgr       INFO Application Manager Terminated successfully
-Py:Athena            INFO leaving with code 0: "successful run"
diff --git a/Control/DataModelTest/DataModelRunTests/share/DataModelTestWrite.ref b/Control/DataModelTest/DataModelRunTests/share/DataModelTestWrite.ref
index 8f694968f66762bfcd10d27fb239c85bf0dfc2a6..58c5c85b775c710953031fe7e23a1c237c01f9b6 100644
--- a/Control/DataModelTest/DataModelRunTests/share/DataModelTestWrite.ref
+++ b/Control/DataModelTest/DataModelRunTests/share/DataModelTestWrite.ref
@@ -1,68 +1,11 @@
-Fri Oct 27 20:39:05 CEST 2017
-Preloading tcmalloc_minimal.so
-Py:Athena            INFO including file "AthenaCommon/Preparation.py"
-Py:Athena            INFO using release [AthenaWorkDir-22.0.0] [x86_64-slc6-gcc62-opt] [atlas-work3/9f528da37a] -- built on [2017-10-27T2018]
-Py:Athena            INFO including file "AthenaCommon/Bootstrap.py"
-Py:Athena            INFO including file "AthenaCommon/Atlas.UnixStandardJob.py"
-Py:Athena            INFO executing ROOT6Setup
-Py:Athena            INFO including file "AthenaCommon/Execution.py"
-Py:Athena            INFO including file "DataModelRunTests/DataModelTestWrite_jo.py"
-Py:ConfigurableDb    INFO Read module info for 5436 configurables from 58 genConfDb files
-Py:ConfigurableDb    INFO No duplicates have been found: that's good !
-[?1034hPy:Athena            INFO including file "EventAthenaPool/EventAthenaPoolItemList_joboptions.py"
-Py:Athena            INFO including file "AthenaCommon/runbatch.py"
-ApplicationMgr       INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0
-ApplicationMgr    SUCCESS 
-====================================================================================================================================
-                                                   Welcome to ApplicationMgr (GaudiCoreSvc v29r0)
-                                          running on lxplus012.cern.ch on Fri Oct 27 20:39:21 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 9608 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)
-CoreDumpSvc          INFO Handling signals: 11(Segmentation fault) 7(Bus error) 4(Illegal instruction) 8(Floating point exception) 
-AthenaEventLoopMgr   INFO Initializing AthenaEventLoopMgr - package version AthenaServices-00-00-00
-ClassIDSvc           INFO  getRegistryEntries: read 754 CLIDRegistry entries for module ALL
-DecisionSvc          INFO Inserting stream: Stream1 with no Algs
-MetaDataSvc          INFO Initializing MetaDataSvc - package version AthenaServices-00-00-00
-AthenaPoolCnvSvc     INFO Initializing AthenaPoolCnvSvc - package version AthenaPoolCnvSvc-00-00-00
-PoolSvc              INFO Set connectionsvc retry/timeout/IDLE timeout to  'ConnectionRetrialPeriod':300/ 'ConnectionRetrialTimeOut':3600/ 'ConnectionTimeOut':5 seconds with connection cleanup disabled
-PoolSvc              INFO Frontier compression level set to 5
-DBReplicaSvc         INFO Frontier server at (serverurl=http://atlasfrontier-local.cern.ch:8000/atlr)(serverurl=http://atlasfrontier-ai.cern.ch:8000/atlr)(serverurl=http://lcgft-atlas.gridpp.rl.ac.uk:3128/frontierATLAS)(serverurl=http://ccfrontier.in2p3.fr:23128/ccin2p3-AtlasFrontier)(proxyurl=http://ca-proxy.cern.ch:3128)(proxyurl=http://ca-proxy-meyrin.cern.ch:3128)(proxyurl=http://ca-proxy-wigner.cern.ch:3128) will be considered for COOL data
-DBReplicaSvc         INFO Read replica configuration from /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2017-10-26T2259/Athena/22.0.0/InstallArea/x86_64-slc6-gcc62-opt/share/dbreplica.config
-DBReplicaSvc         INFO Total of 10 servers found for host lxplus012.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              INFO Setting up APR FileCatalog and Streams
-PoolSvc              INFO POOL WriteCatalog is file:DataModelTestWrite_catalog.xml
-DbSession            INFO     Open     DbSession    
-Domain[ROOT_All]     INFO >   Access   DbDomain     READ      [ROOT_All] 
-OutputStreamSeq...   INFO Initializing OutputStreamSequencerSvc - package version AthenaServices-00-00-00
-ClassIDSvc           INFO  getRegistryEntries: read 724 CLIDRegistry entries for module ALL
-Stream1.Stream1...   INFO Initializing Stream1.Stream1Tool - package version OutputStreamAthenaPool-00-00-00
-Stream1.Stream1...   INFO streamProperty ProcessingTag = Stream1
 Stream1              INFO Found HelperTools = PrivateToolHandleArray([])
 Stream1              INFO Data output: SimplePoolFile.root
-Stream1              INFO I/O reinitialization...
-HistogramPersis...WARNING Histograms saving not required.
 EventSelector        INFO  Enter McEventSelector Initialization 
 AthenaEventLoopMgr   INFO Setup EventSelector service EventSelector
 ApplicationMgr       INFO Application Manager Initialized successfully
-ApplicationMgr       INFO Application Manager Started successfully
-EventPersistenc...   INFO Added successfully Conversion service:McCnvSvc
-ClassIDSvc           INFO  getRegistryEntries: read 108 CLIDRegistry entries for module ALL
 AthenaEventLoopMgr   INFO   ===>>>  start of run 0    <<<===
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #0, run #0 0 events processed so far  <<<===
-DbSession            INFO     Open     DbSession    
-Domain[ROOT_All]     INFO >   Access   DbDomain     UPDATE    [ROOT_All] 
-Domain[ROOT_All]     INFO ->  Access   DbDatabase   CREATE    [ROOT_All] C557E30D-E011-044B-8496-904BD95C3DDD
-Domain[ROOT_All]     INFO                           SimplePoolFile.root
-RootDatabase.open    INFO SimplePoolFile.root File version:60806
 StorageSvc           INFO Building shape according to reflection information using shape ID for:
 StorageSvc           INFO EventInfo_p4 [C634FDB6-CC4B-4BA2-B8F9-A84BE6A786C7]
 StorageSvc           INFO Building shape according to reflection information using shape ID for:
@@ -79,7 +22,6 @@ StorageSvc           INFO Building shape according to reflection information usi
 StorageSvc           INFO DataHeaderForm_p5 [3397D8A3-BBE6-463C-9F8E-4B3DFD8831FE]
 StorageSvc           INFO Building shape according to reflection information using shape ID for:
 StorageSvc           INFO DataHeader_p5 [D82968A1-CF91-4320-B2DD-E0F739CBC7E6]
-ClassIDSvc           INFO  getRegistryEntries: read 73 CLIDRegistry entries for module ALL
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #0, run #0 1 events processed so far  <<<===
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #1, run #0 1 events processed so far  <<<===
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #1, run #0 2 events processed so far  <<<===
@@ -119,19 +61,7 @@ AthenaEventLoopMgr   INFO   ===>>>  start processing event #18, run #0 18 events
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #18, run #0 19 events processed so far  <<<===
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #19, run #0 19 events processed so far  <<<===
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #19, run #0 20 events processed so far  <<<===
-Stream1              INFO Records written: 21
-Domain[ROOT_All]     INFO >   Deaccess DbDomain     READ      [ROOT_All] 
-SimplePoolFile....   INFO Database being retired...
-Domain[ROOT_All]     INFO ->  Deaccess DbDatabase   CREATE    [ROOT_All] C557E30D-E011-044B-8496-904BD95C3DDD
-Domain[ROOT_All]     INFO >   Deaccess DbDomain     UPDATE    [ROOT_All] 
-ApplicationMgr       INFO Application Manager Stopped successfully
 IncidentProcAlg1     INFO Finalize
 IncidentProcAlg2     INFO Finalize
-EventSelector        INFO finalize
-DecisionSvc          INFO Finalized successfully.
-AthDictLoaderSvc     INFO in finalize...
-ToolSvc              INFO Removing all tools created by ToolSvc
-ChronoStatSvc.f...   INFO  Service finalized successfully 
 ApplicationMgr       INFO Application Manager Finalized successfully
 ApplicationMgr       INFO Application Manager Terminated successfully
-Py:Athena            INFO leaving with code 0: "successful run"
diff --git a/Control/DataModelTest/DataModelRunTests/share/xAODTestRead.ref b/Control/DataModelTest/DataModelRunTests/share/xAODTestRead.ref
index 67c69b247e5f2e4b5af076dc856a4ea245a049a3..c575e05f0c85868c6338fb938d78c24878fb2850 100644
--- a/Control/DataModelTest/DataModelRunTests/share/xAODTestRead.ref
+++ b/Control/DataModelTest/DataModelRunTests/share/xAODTestRead.ref
@@ -1,93 +1,15 @@
-Thu Nov  2 15:25:04 EDT 2017
-WARNING: TCMALLOCDIR not defined, will use libc malloc
-Py:Athena            INFO including file "AthenaCommon/Preparation.py"
-Py:Athena            INFO using release [?-21.0.0] [i686-slc5-gcc43-dbg] [?/?] -- built on [?]
-Py:Athena            INFO including file "AthenaCommon/Bootstrap.py"
-Py:Athena            INFO including file "AthenaCommon/Atlas.UnixStandardJob.py"
-Py:Athena            INFO executing ROOT6Setup
-Py:Athena            INFO including file "AthenaCommon/Execution.py"
-Py:Athena            INFO including file "DataModelRunTests/xAODTestRead_jo.py"
-Py:ConfigurableDb    INFO Read module info for 467 configurables from 2 genConfDb files
-Py:ConfigurableDb    INFO No duplicates have been found: that's good !
-Py:Athena            INFO including file "EventAthenaPool/EventAthenaPoolItemList_joboptions.py"
-Py:Athena            INFO including file "AthenaCommon/runbatch.py"
-# setting LC_ALL to "C"
-ApplicationMgr       INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0
-ApplicationMgr    SUCCESS 
-====================================================================================================================================
-                                                   Welcome to ApplicationMgr (GaudiCoreSvc v27r1p99)
-                                          running on karma on Thu Nov  2 15:25:30 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 10187 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)
-CoreDumpSvc          INFO Handling signals: 11(Segmentation fault) 7(Bus error) 4(Illegal instruction) 8(Floating point exception) 
-xAODMaker::Even...   INFO Initialising - Package version: xAODEventFormatCnv-00-00-00
-MetaDataSvc          INFO Initializing MetaDataSvc - package version AthenaServices-00-00-00
-AthenaPoolCnvSvc     INFO Initializing AthenaPoolCnvSvc - package version AthenaPoolCnvSvc-00-00-00
-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 Read replica configuration from /home/sss/atlas/dvtest/build/share/dbreplica.config
-DBReplicaSvc         INFO No specific match for domain found - use default fallback
-DBReplicaSvc         INFO Total of 1 servers found for host karma [atlas_dd ]
-PoolSvc              INFO Successfully setup replica sorting algorithm
-PoolSvc              INFO Setting up APR FileCatalog and Streams
-PoolSvc              INFO POOL WriteCatalog is file:xAODTestRead_catalog.xml
-DbSession            INFO     Open     DbSession    
-Domain[ROOT_All]     INFO >   Access   DbDomain     READ      [ROOT_All] 
-EventSelector        INFO reinitialization...
-EventSelector        INFO EventSelection with query 
-Domain[ROOT_All]     INFO ->  Access   DbDatabase   READ      [ROOT_All] D45552C7-3AA1-9A49-A420-3F8F30601500
-Domain[ROOT_All]     INFO                           xaoddata.root
-RootDatabase.open    INFO xaoddata.root File version:60806
-EventPersistenc...   INFO Added successfully Conversion service:AthenaPoolCnvSvc
-EventSelector        INFO Initializing EventSelector - package version EventSelectorAthenaPool-00-00-00
-EventSelector        INFO reinitialization...
-EventSelector        INFO EventSelection with query 
-AthenaPoolAddre...   INFO Initializing AthenaPoolAddressProviderSvc - package version EventSelectorAthenaPool-00-00-00
-AthenaEventLoopMgr   INFO Initializing AthenaEventLoopMgr - package version AthenaServices-00-00-00
-ClassIDSvc           INFO  getRegistryEntries: read 1402 CLIDRegistry entries for module ALL
-DecisionSvc          INFO Inserting stream: Stream1 with no Algs
-OutputStreamSeq...   INFO Initializing OutputStreamSequencerSvc - package version AthenaServices-00-00-00
-ClassIDSvc           INFO  getRegistryEntries: read 386 CLIDRegistry entries for module ALL
-Stream1.Stream1...   INFO Initializing Stream1.Stream1Tool - package version OutputStreamAthenaPool-00-00-00
-Stream1.Stream1...   INFO streamProperty ProcessingTag = Stream1
-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: xaoddata2.root
-Stream1              INFO I/O reinitialization...
-DecisionSvc          INFO Inserting stream: Stream2 with no Algs
-Stream2.Stream2...   INFO Initializing Stream2.Stream2Tool - package version OutputStreamAthenaPool-00-00-00
-Stream2.Stream2...   INFO streamProperty ProcessingTag = Stream2
-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: xaoddata2b.root
-Stream2              INFO I/O reinitialization...
-HistogramPersis...WARNING Histograms saving not required.
 AthenaEventLoopMgr   INFO Setup EventSelector service EventSelector
 ApplicationMgr       INFO Application Manager Initialized successfully
-xaoddata.root        INFO Database being retired...
-Domain[ROOT_All]     INFO ->  Deaccess DbDatabase   READ      [ROOT_All] D45552C7-3AA1-9A49-A420-3F8F30601500
-DbSession            INFO     Open     DbSession    
-Domain[ROOT_All]     INFO >   Access   DbDomain     READ      [ROOT_All] 
-Domain[ROOT_All]     INFO ->  Access   DbDatabase   READ      [ROOT_All] D45552C7-3AA1-9A49-A420-3F8F30601500
-Domain[ROOT_All]     INFO                           xaoddata.root
-RootDatabase.open    INFO xaoddata.root File version:60806
-ApplicationMgr       INFO Application Manager Started successfully
 AlgResourcePool      INFO TopAlg list empty. Recovering the one of Application Manager
-AthenaPoolConve...   INFO massageEventInfo: unable to get OverrideRunNumberFromInput property from EventSelector 
-ClassIDSvc           INFO  getRegistryEntries: read 16 CLIDRegistry entries for module ALL
 AthenaEventLoopMgr   INFO   ===>>>  start of run 0    <<<===
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #0, run #0 0 events processed so far  <<<===
 cvec aux items: aFloat anInt anInt2 cEL dInt1 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt 
 Type of aux store: DMTest::CAuxContainer_v1
-RootAuxDynReader     INFO FILE:LINE (const RootAuxDynReader::BranchInfo& RootAuxDynReader::getBranchInfo(const unsigned long&, const SG::AuxStoreInternal&)): attribute dVar1 (id=226 typename=f) has different type than the branch vector<int>
  anInt1 101 aFloat: 200 pInt: 501 pFloat: 0.01 anInt2: 301 dInt1: 401 dVar1: 451 dpInt1: 51 cEL: cvec[9]
   pvInt: []
   pvFloat: []
@@ -128,11 +50,9 @@ RootAuxDynReader     INFO FILE:LINE (const RootAuxDynReader::BranchInfo& RootAux
   pvInt: [-310 -309 -308 -307 -306 -305 -304 -303 -302 ]
   pvFloat: [-0.409 -0.309 -0.209 -0.109 -0.009 0.091 0.191 0.291 0.391 ]
   dpvFloat: [0.910 0.911 0.912 0.913 0.914 0.915 0.916 0.917 0.918 ]
-ClassIDSvc           INFO  getRegistryEntries: read 54 CLIDRegistry entries for module ALL
 cinfo aux items: aFloat anInt anInt2 cEL dInt1 
 cinfo  anInt1 1000 aFloat: 0.1 anInt2: 2000 dInt1: 3000 cEL: cvec[1]
 1
-ClassIDSvc           INFO  getRegistryEntries: read 32 CLIDRegistry entries for module ALL
 ctrig aux items: aFloat anInt anInt2 dInt1 
  anInt1 501 aFloat: 600 anInt2: 701 dInt1: 481
  anInt1 502 aFloat: 600.1 anInt2: 702 dInt1: 482
@@ -157,11 +77,6 @@ cvecWD 1001: 201 202 203 204 205 206 207 208 209 210
 cview: 110 109 108 107 106 105 104 103 102 101
 hvec: 401.5 402.5 403.5 404.5 405.5 406.5 407.5 408.5 409.5 410.5 411.5 412.5 413.5 414.5 415.5 416.5 417.5 418.5 419.5 420.5
 hview: 420.5 419.5 418.5 417.5 416.5 415.5 414.5 413.5 412.5 411.5 410.5 409.5 408.5 407.5 406.5 405.5 404.5 403.5 402.5 401.5
-DbSession            INFO     Open     DbSession    
-Domain[ROOT_All]     INFO >   Access   DbDomain     UPDATE    [ROOT_All] 
-Domain[ROOT_All]     INFO ->  Access   DbDatabase   CREATE    [ROOT_All] BB1BAA54-1D6C-5D4B-BADC-634CFA49EB53
-Domain[ROOT_All]     INFO                           xaoddata2.root
-RootDatabase.open    INFO xaoddata2.root File version:60806
 StorageSvc           INFO Building shape according to reflection information using shape ID for:
 StorageSvc           INFO DataVector<DMTest::H_v2> [CD6C3074-425B-4C08-AF1C-43D7E8C84288]
 StorageSvc           INFO Building shape according to reflection information using shape ID for:
@@ -174,10 +89,6 @@ StorageSvc           INFO Building shape according to reflection information usi
 StorageSvc           INFO xAOD::ShallowAuxContainer [C63C39D7-9501-49DC-B1B0-6AD98B1AEEFA]
 StorageSvc           INFO Building shape according to reflection information using shape ID for:
 StorageSvc           INFO xAOD::AuxContainerBase [C87C71B3-B03F-42FC-AF99-DF497F148397]
-ClassIDSvc           INFO  getRegistryEntries: read 22 CLIDRegistry entries for module ALL
-Domain[ROOT_All]     INFO ->  Access   DbDatabase   CREATE    [ROOT_All] E7544441-F45C-F14F-82BC-EA8EF0911D5F
-Domain[ROOT_All]     INFO                           xaoddata2b.root
-RootDatabase.open    INFO xaoddata2b.root File version:60806
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #0, run #0 1 events processed so far  <<<===
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #1, run #0 1 events processed so far  <<<===
 cvec aux items: aFloat anInt anInt2 cEL dInt1 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt 
@@ -1488,24 +1399,8 @@ cview: 2010 2009 2008 2007 2006 2005 2004 2003 2002 2001
 hvec: 8001.5 8002.5 8003.5 8004.5 8005.5 8006.5 8007.5 8008.5 8009.5 8010.5 8011.5 8012.5 8013.5 8014.5 8015.5 8016.5 8017.5 8018.5 8019.5 8020.5
 hview: 8020.5 8019.5 8018.5 8017.5 8016.5 8015.5 8014.5 8013.5 8012.5 8011.5 8010.5 8009.5 8008.5 8007.5 8006.5 8005.5 8004.5 8003.5 8002.5 8001.5
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #19, run #0 20 events processed so far  <<<===
-ClassIDSvc           INFO  getRegistryEntries: read 8 CLIDRegistry entries for module ALL
-Stream1              INFO Records written: 21
 Stream2              INFO Records written: 21
-xaoddata.root        INFO Database being retired...
-Domain[ROOT_All]     INFO ->  Deaccess DbDatabase   READ      [ROOT_All] D45552C7-3AA1-9A49-A420-3F8F30601500
-xaoddata2.root       INFO Database being retired...
-Domain[ROOT_All]     INFO ->  Deaccess DbDatabase   CREATE    [ROOT_All] BB1BAA54-1D6C-5D4B-BADC-634CFA49EB53
-xaoddata2b.root      INFO Database being retired...
-Domain[ROOT_All]     INFO ->  Deaccess DbDatabase   CREATE    [ROOT_All] E7544441-F45C-F14F-82BC-EA8EF0911D5F
-Domain[ROOT_All]     INFO >   Deaccess DbDomain     UPDATE    [ROOT_All] 
-ApplicationMgr       INFO Application Manager Stopped successfully
 IncidentProcAlg1     INFO Finalize
 IncidentProcAlg2     INFO Finalize
-DecisionSvc          INFO Finalized successfully.
-Domain[ROOT_All]     INFO >   Deaccess DbDomain     READ      [ROOT_All] 
-AthDictLoaderSvc     INFO in finalize...
-ToolSvc              INFO Removing all tools created by ToolSvc
-ChronoStatSvc.f...   INFO  Service finalized successfully 
 ApplicationMgr       INFO Application Manager Finalized successfully
 ApplicationMgr       INFO Application Manager Terminated successfully
-Py:Athena            INFO leaving with code 0: "successful run"
diff --git a/Control/DataModelTest/DataModelRunTests/share/xAODTestRead2.ref b/Control/DataModelTest/DataModelRunTests/share/xAODTestRead2.ref
index 8df578f705b23b7c0a62a8b542ce04ea818481fc..4d3b707e5fde6fda6493dd04e9d953938f8d6bda 100644
--- a/Control/DataModelTest/DataModelRunTests/share/xAODTestRead2.ref
+++ b/Control/DataModelTest/DataModelRunTests/share/xAODTestRead2.ref
@@ -1,81 +1,9 @@
-Thu Nov  2 15:31:46 EDT 2017
-WARNING: TCMALLOCDIR not defined, will use libc malloc
-Py:Athena            INFO including file "AthenaCommon/Preparation.py"
-Py:Athena            INFO using release [?-21.0.0] [i686-slc5-gcc43-dbg] [?/?] -- built on [?]
-Py:Athena            INFO including file "AthenaCommon/Bootstrap.py"
-Py:Athena            INFO including file "AthenaCommon/Atlas.UnixStandardJob.py"
-Py:Athena            INFO executing ROOT6Setup
-Py:Athena            INFO including file "AthenaCommon/Execution.py"
-Py:Athena            INFO including file "DataModelRunTests/xAODTestRead2_jo.py"
-Py:ConfigurableDb    INFO Read module info for 467 configurables from 2 genConfDb files
-Py:ConfigurableDb    INFO No duplicates have been found: that's good !
-Py:Athena            INFO including file "EventAthenaPool/EventAthenaPoolItemList_joboptions.py"
-Py:Athena            INFO including file "AthenaCommon/runbatch.py"
-# setting LC_ALL to "C"
-ApplicationMgr       INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0
-ApplicationMgr    SUCCESS 
-====================================================================================================================================
-                                                   Welcome to ApplicationMgr (GaudiCoreSvc v27r1p99)
-                                          running on karma on Thu Nov  2 15:32:15 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 10025 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)
-CoreDumpSvc          INFO Handling signals: 11(Segmentation fault) 7(Bus error) 4(Illegal instruction) 8(Floating point exception) 
-AthenaEventLoopMgr   INFO Initializing AthenaEventLoopMgr - package version AthenaServices-00-00-00
-ClassIDSvc           INFO  getRegistryEntries: read 318 CLIDRegistry entries for module ALL
-MetaDataSvc          INFO Initializing MetaDataSvc - package version AthenaServices-00-00-00
-AthenaPoolCnvSvc     INFO Initializing AthenaPoolCnvSvc - package version AthenaPoolCnvSvc-00-00-00
-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 Read replica configuration from /home/sss/atlas/dvtest/build/share/dbreplica.config
-DBReplicaSvc         INFO No specific match for domain found - use default fallback
-DBReplicaSvc         INFO Total of 1 servers found for host karma [atlas_dd ]
-PoolSvc              INFO Successfully setup replica sorting algorithm
-PoolSvc              INFO Setting up APR FileCatalog and Streams
-PoolSvc              INFO POOL WriteCatalog is file:xAODTestRead2_catalog.xml
-DbSession            INFO     Open     DbSession    
-Domain[ROOT_All]     INFO >   Access   DbDomain     READ      [ROOT_All] 
-EventSelector        INFO reinitialization...
-EventSelector        INFO EventSelection with query 
-Domain[ROOT_All]     INFO ->  Access   DbDatabase   READ      [ROOT_All] BB1BAA54-1D6C-5D4B-BADC-634CFA49EB53
-Domain[ROOT_All]     INFO                           xaoddata2.root
-RootDatabase.open    INFO xaoddata2.root File version:60806
-EventPersistenc...   INFO Added successfully Conversion service:AthenaPoolCnvSvc
-EventSelector        INFO Initializing EventSelector - package version EventSelectorAthenaPool-00-00-00
-EventSelector        INFO reinitialization...
-EventSelector        INFO EventSelection with query 
-AthenaPoolAddre...   INFO Initializing AthenaPoolAddressProviderSvc - package version EventSelectorAthenaPool-00-00-00
-ClassIDSvc           INFO  getRegistryEntries: read 1084 CLIDRegistry entries for module ALL
-DecisionSvc          INFO Inserting stream: Stream1 with no Algs
-OutputStreamSeq...   INFO Initializing OutputStreamSequencerSvc - package version AthenaServices-00-00-00
-ClassIDSvc           INFO  getRegistryEntries: read 386 CLIDRegistry entries for module ALL
-Stream1.Stream1...   INFO Initializing Stream1.Stream1Tool - package version OutputStreamAthenaPool-00-00-00
-Stream1.Stream1...   INFO streamProperty ProcessingTag = Stream1
-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: xaoddata2x.root
-Stream1              INFO I/O reinitialization...
-HistogramPersis...WARNING Histograms saving not required.
 AthenaEventLoopMgr   INFO Setup EventSelector service EventSelector
 ApplicationMgr       INFO Application Manager Initialized successfully
-xaoddata2.root       INFO Database being retired...
-Domain[ROOT_All]     INFO ->  Deaccess DbDatabase   READ      [ROOT_All] BB1BAA54-1D6C-5D4B-BADC-634CFA49EB53
-DbSession            INFO     Open     DbSession    
-Domain[ROOT_All]     INFO >   Access   DbDomain     READ      [ROOT_All] 
-Domain[ROOT_All]     INFO ->  Access   DbDatabase   READ      [ROOT_All] BB1BAA54-1D6C-5D4B-BADC-634CFA49EB53
-Domain[ROOT_All]     INFO                           xaoddata2.root
-RootDatabase.open    INFO xaoddata2.root File version:60806
-ApplicationMgr       INFO Application Manager Started successfully
 AlgResourcePool      INFO TopAlg list empty. Recovering the one of Application Manager
-AthenaPoolConve...   INFO massageEventInfo: unable to get OverrideRunNumberFromInput property from EventSelector 
-ClassIDSvc           INFO  getRegistryEntries: read 16 CLIDRegistry entries for module ALL
 AthenaEventLoopMgr   INFO   ===>>>  start of run 0    <<<===
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #0, run #0 0 events processed so far  <<<===
 cvec aux items: aFloat anInt anInt2 cEL dInt1 dInt100 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt 
@@ -123,7 +51,6 @@ Type of aux store: xAOD::AuxContainerBase
 cinfo aux items: aFloat anInt anInt2 cEL dInt1 dInt100 
 cinfo  anInt1 1000 aFloat: 0.1 anInt2: 2000 dInt1: 3000 cEL: cvec[1] dInt100: 1500
 1
-ClassIDSvc           INFO  getRegistryEntries: read 108 CLIDRegistry entries for module ALL
 ctrig aux items: aFloat anInt anInt2 dInt1 dInt100 
  anInt1 501 aFloat: 600 anInt2: 701 dInt1: 481 dInt100: 1201
  anInt1 502 aFloat: 600.1 anInt2: 702 dInt1: 482 dInt100: 1202
@@ -273,11 +200,6 @@ ctrig aux items: aFloat anInt anInt10 anInt2 dInt1 dInt100 dInt150
  anInt1 508 aFloat: 600.7 anInt2: 708 dInt1: 488 dInt100: 1208 dInt150: 1408 anInt10: 172400
 scopy_cvecWD 1001: 201(40100) 202(40200) 203(40300) 204(40400) 205(40500) 206(40600) 207(40700) 208(40800) 209(40900) 210(41000)
 scopy_hvec: 401.5 402.5 403.5 404.5 405.5 406.5 407.5 408.5 409.5 410.5 411.5 412.5 413.5 414.5 415.5 416.5 417.5 418.5 419.5 420.5
-DbSession            INFO     Open     DbSession    
-Domain[ROOT_All]     INFO >   Access   DbDomain     UPDATE    [ROOT_All] 
-Domain[ROOT_All]     INFO ->  Access   DbDatabase   CREATE    [ROOT_All] AD11F45A-F8A8-CB4F-BB08-B316A2BE53BB
-Domain[ROOT_All]     INFO                           xaoddata2x.root
-RootDatabase.open    INFO xaoddata2x.root File version:60806
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #0, run #0 1 events processed so far  <<<===
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #1, run #0 1 events processed so far  <<<===
 cvec aux items: aFloat anInt anInt2 cEL dInt1 dInt100 dVar1 dpInt1 dpvFloat pFloat pInt pvFloat pvInt 
@@ -3883,20 +3805,7 @@ ctrig aux items: aFloat anInt anInt10 anInt2 dInt1 dInt100 dInt150
 scopy_cvecWD 1020: 4001(800100) 4002(800200) 4003(800300) 4004(800400) 4005(800500) 4006(800600) 4007(800700) 4008(800800) 4009(800900) 4010(801000)
 scopy_hvec: 8001.5 8002.5 8003.5 8004.5 8005.5 8006.5 8007.5 8008.5 8009.5 8010.5 8011.5 8012.5 8013.5 8014.5 8015.5 8016.5 8017.5 8018.5 8019.5 8020.5
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #19, run #0 20 events processed so far  <<<===
-Stream1              INFO Records written: 21
-xaoddata2.root       INFO Database being retired...
-Domain[ROOT_All]     INFO ->  Deaccess DbDatabase   READ      [ROOT_All] BB1BAA54-1D6C-5D4B-BADC-634CFA49EB53
-xaoddata2x.root      INFO Database being retired...
-Domain[ROOT_All]     INFO ->  Deaccess DbDatabase   CREATE    [ROOT_All] AD11F45A-F8A8-CB4F-BB08-B316A2BE53BB
-Domain[ROOT_All]     INFO >   Deaccess DbDomain     UPDATE    [ROOT_All] 
-ApplicationMgr       INFO Application Manager Stopped successfully
 IncidentProcAlg1     INFO Finalize
 IncidentProcAlg2     INFO Finalize
-DecisionSvc          INFO Finalized successfully.
-Domain[ROOT_All]     INFO >   Deaccess DbDomain     READ      [ROOT_All] 
-AthDictLoaderSvc     INFO in finalize...
-ToolSvc              INFO Removing all tools created by ToolSvc
-ChronoStatSvc.f...   INFO  Service finalized successfully 
 ApplicationMgr       INFO Application Manager Finalized successfully
 ApplicationMgr       INFO Application Manager Terminated successfully
-Py:Athena            INFO leaving with code 0: "successful run"
diff --git a/Control/DataModelTest/DataModelRunTests/share/xAODTestReadFilter.ref b/Control/DataModelTest/DataModelRunTests/share/xAODTestReadFilter.ref
index 4e2cafc07ea9f4b4636ff204eaf3cc6293c94f77..1d6bf4d4407143be3123a6c2a83df0af1d6c021c 100644
--- a/Control/DataModelTest/DataModelRunTests/share/xAODTestReadFilter.ref
+++ b/Control/DataModelTest/DataModelRunTests/share/xAODTestReadFilter.ref
@@ -1,93 +1,13 @@
-Thu Nov  2 15:30:28 EDT 2017
-WARNING: TCMALLOCDIR not defined, will use libc malloc
-Py:Athena            INFO including file "AthenaCommon/Preparation.py"
-Py:Athena            INFO using release [?-21.0.0] [i686-slc5-gcc43-dbg] [?/?] -- built on [?]
-Py:Athena            INFO including file "AthenaCommon/Bootstrap.py"
-Py:Athena            INFO including file "AthenaCommon/Atlas.UnixStandardJob.py"
-Py:Athena            INFO executing ROOT6Setup
-Py:Athena            INFO including file "AthenaCommon/Execution.py"
-Py:Athena            INFO including file "DataModelRunTests/xAODTestReadFilter_jo.py"
-Py:ConfigurableDb    INFO Read module info for 467 configurables from 2 genConfDb files
-Py:ConfigurableDb    INFO No duplicates have been found: that's good !
-Py:Athena            INFO including file "EventAthenaPool/EventAthenaPoolItemList_joboptions.py"
-Py:Athena            INFO including file "AthenaCommon/runbatch.py"
-# setting LC_ALL to "C"
-ApplicationMgr       INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0
-ApplicationMgr    SUCCESS 
-====================================================================================================================================
-                                                   Welcome to ApplicationMgr (GaudiCoreSvc v27r1p99)
-                                          running on karma on Thu Nov  2 15:30:56 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 10025 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)
-CoreDumpSvc          INFO Handling signals: 11(Segmentation fault) 7(Bus error) 4(Illegal instruction) 8(Floating point exception) 
-AthenaEventLoopMgr   INFO Initializing AthenaEventLoopMgr - package version AthenaServices-00-00-00
-ClassIDSvc           INFO  getRegistryEntries: read 318 CLIDRegistry entries for module ALL
-MetaDataSvc          INFO Initializing MetaDataSvc - package version AthenaServices-00-00-00
-AthenaPoolCnvSvc     INFO Initializing AthenaPoolCnvSvc - package version AthenaPoolCnvSvc-00-00-00
-PoolSvc              INFO io_register[PoolSvc](xmlcatalog_file:PoolFileCatalog.xml) [ok]
-PoolSvc              INFO Set connectionsvc retry/timeout/IDLE timeout to  'ConnectionRetrialPeriod':300/ 'ConnectionRetrialTimeOut':3600/ 'ConnectionTimeOut':5 seconds with connection cleanup disabled
-PoolSvc              INFO Frontier compression level set to 5
-DBReplicaSvc         INFO Read replica configuration from /home/sss/atlas/dvtest/build/share/dbreplica.config
-DBReplicaSvc         INFO No specific match for domain found - use default fallback
-DBReplicaSvc         INFO Total of 1 servers found for host karma [atlas_dd ]
-PoolSvc              INFO Successfully setup replica sorting algorithm
-PoolSvc              INFO Setting up APR FileCatalog and Streams
-PoolSvc              INFO POOL WriteCatalog is xmlcatalog_file:PoolFileCatalog.xml
-DbSession            INFO     Open     DbSession    
-Domain[ROOT_All]     INFO >   Access   DbDomain     READ      [ROOT_All] 
-EventSelector        INFO reinitialization...
-EventSelector        INFO EventSelection with query 
-Domain[ROOT_All]     INFO ->  Access   DbDatabase   READ      [ROOT_All] D45552C7-3AA1-9A49-A420-3F8F30601500
-Domain[ROOT_All]     INFO                           xaoddata.root
-RootDatabase.open    INFO xaoddata.root File version:60806
-EventPersistenc...   INFO Added successfully Conversion service:AthenaPoolCnvSvc
-EventSelector        INFO Initializing EventSelector - package version EventSelectorAthenaPool-00-00-00
-EventSelector        INFO reinitialization...
-EventSelector        INFO EventSelection with query 
-AthenaPoolAddre...   INFO Initializing AthenaPoolAddressProviderSvc - package version EventSelectorAthenaPool-00-00-00
-ClassIDSvc           INFO  getRegistryEntries: read 1084 CLIDRegistry entries for module ALL
-DecisionSvc          INFO Inserting stream: Stream1 with no Algs
-OutputStreamSeq...   INFO Initializing OutputStreamSequencerSvc - package version AthenaServices-00-00-00
-ClassIDSvc           INFO  getRegistryEntries: read 386 CLIDRegistry entries for module ALL
-Stream1.Stream1...   INFO Initializing Stream1.Stream1Tool - package version OutputStreamAthenaPool-00-00-00
-Stream1.Stream1...   INFO streamProperty ProcessingTag = Stream1
-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: xaoddata_filt.root
-Stream1              INFO I/O reinitialization...
-HistogramPersis...WARNING Histograms saving not required.
 AthenaEventLoopMgr   INFO Setup EventSelector service EventSelector
 ApplicationMgr       INFO Application Manager Initialized successfully
-xaoddata.root        INFO Database being retired...
-Domain[ROOT_All]     INFO ->  Deaccess DbDatabase   READ      [ROOT_All] D45552C7-3AA1-9A49-A420-3F8F30601500
-DbSession            INFO     Open     DbSession    
-Domain[ROOT_All]     INFO >   Access   DbDomain     READ      [ROOT_All] 
-Domain[ROOT_All]     INFO ->  Access   DbDatabase   READ      [ROOT_All] D45552C7-3AA1-9A49-A420-3F8F30601500
-Domain[ROOT_All]     INFO                           xaoddata.root
-RootDatabase.open    INFO xaoddata.root File version:60806
-ApplicationMgr       INFO Application Manager Started successfully
 AlgResourcePool      INFO TopAlg list empty. Recovering the one of Application Manager
-AthenaPoolConve...   INFO massageEventInfo: unable to get OverrideRunNumberFromInput property from EventSelector 
-ClassIDSvc           INFO  getRegistryEntries: read 16 CLIDRegistry entries for module ALL
 AthenaEventLoopMgr   INFO   ===>>>  start of run 0    <<<===
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #0, run #0 0 events processed so far  <<<===
-ClassIDSvc           INFO  getRegistryEntries: read 54 CLIDRegistry entries for module ALL
-DbSession            INFO     Open     DbSession    
-Domain[ROOT_All]     INFO >   Access   DbDomain     UPDATE    [ROOT_All] 
-Domain[ROOT_All]     INFO ->  Access   DbDatabase   CREATE    [ROOT_All] 804CCEF9-A425-2D48-BF6D-3CBEFE68561B
-Domain[ROOT_All]     INFO                           xaoddata_filt.root
-RootDatabase.open    INFO xaoddata_filt.root File version:60806
 StorageSvc           INFO Building shape according to reflection information using shape ID for:
 StorageSvc           INFO xAOD::AuxContainerBase [C87C71B3-B03F-42FC-AF99-DF497F148397]
-ClassIDSvc           INFO  getRegistryEntries: read 22 CLIDRegistry entries for module ALL
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #0, run #0 1 events processed so far  <<<===
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #1, run #0 1 events processed so far  <<<===
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #1, run #0 2 events processed so far  <<<===
@@ -127,20 +47,7 @@ AthenaEventLoopMgr   INFO   ===>>>  start processing event #18, run #0 18 events
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #18, run #0 19 events processed so far  <<<===
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #19, run #0 19 events processed so far  <<<===
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #19, run #0 20 events processed so far  <<<===
-Stream1              INFO Records written: 21
-xaoddata.root        INFO Database being retired...
-Domain[ROOT_All]     INFO ->  Deaccess DbDatabase   READ      [ROOT_All] D45552C7-3AA1-9A49-A420-3F8F30601500
-xaoddata_filt.root   INFO Database being retired...
-Domain[ROOT_All]     INFO ->  Deaccess DbDatabase   CREATE    [ROOT_All] 804CCEF9-A425-2D48-BF6D-3CBEFE68561B
-Domain[ROOT_All]     INFO >   Deaccess DbDomain     UPDATE    [ROOT_All] 
-ApplicationMgr       INFO Application Manager Stopped successfully
 IncidentProcAlg1     INFO Finalize
 IncidentProcAlg2     INFO Finalize
-DecisionSvc          INFO Finalized successfully.
-Domain[ROOT_All]     INFO >   Deaccess DbDomain     READ      [ROOT_All] 
-AthDictLoaderSvc     INFO in finalize...
-ToolSvc              INFO Removing all tools created by ToolSvc
-ChronoStatSvc.f...   INFO  Service finalized successfully 
 ApplicationMgr       INFO Application Manager Finalized successfully
 ApplicationMgr       INFO Application Manager Terminated successfully
-Py:Athena            INFO leaving with code 0: "successful run"
diff --git a/Control/DataModelTest/DataModelRunTests/share/xAODTestTypelessRead.ref b/Control/DataModelTest/DataModelRunTests/share/xAODTestTypelessRead.ref
index 2444673f1fc9a9bebb36a39e681a403891ad6bd4..7a513d58f707b1a9561a4ef7cc7f2ab37093033d 100644
--- a/Control/DataModelTest/DataModelRunTests/share/xAODTestTypelessRead.ref
+++ b/Control/DataModelTest/DataModelRunTests/share/xAODTestTypelessRead.ref
@@ -1,84 +1,12 @@
-Thu Nov  2 15:29:18 EDT 2017
-WARNING: TCMALLOCDIR not defined, will use libc malloc
-Py:Athena            INFO including file "AthenaCommon/Preparation.py"
-Py:Athena            INFO using release [?-21.0.0] [i686-slc5-gcc43-dbg] [?/?] -- built on [?]
-Py:Athena            INFO including file "AthenaCommon/Bootstrap.py"
-Py:Athena            INFO including file "AthenaCommon/Atlas.UnixStandardJob.py"
-Py:Athena            INFO executing ROOT6Setup
-Py:Athena            INFO including file "AthenaCommon/Execution.py"
-Py:Athena            INFO including file "DataModelRunTests/xAODTestTypelessRead_jo.py"
-Py:ConfigurableDb    INFO Read module info for 467 configurables from 2 genConfDb files
-Py:ConfigurableDb    INFO No duplicates have been found: that's good !
-Py:Athena            INFO including file "EventAthenaPool/EventAthenaPoolItemList_joboptions.py"
-Py:Athena            INFO including file "AthenaCommon/runbatch.py"
-# setting LC_ALL to "C"
-ApplicationMgr       INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0
-ApplicationMgr    SUCCESS 
-====================================================================================================================================
-                                                   Welcome to ApplicationMgr (GaudiCoreSvc v27r1p99)
-                                          running on karma on Thu Nov  2 15:29:47 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 10025 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)
-CoreDumpSvc          INFO Handling signals: 11(Segmentation fault) 7(Bus error) 4(Illegal instruction) 8(Floating point exception) 
-AthenaEventLoopMgr   INFO Initializing AthenaEventLoopMgr - package version AthenaServices-00-00-00
-ClassIDSvc           INFO  getRegistryEntries: read 690 CLIDRegistry entries for module ALL
-DecisionSvc          INFO Inserting stream: Stream1 with no Algs
-MetaDataSvc          INFO Initializing MetaDataSvc - package version AthenaServices-00-00-00
-AthenaPoolCnvSvc     INFO Initializing AthenaPoolCnvSvc - package version AthenaPoolCnvSvc-00-00-00
-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 Read replica configuration from /home/sss/atlas/dvtest/build/share/dbreplica.config
-DBReplicaSvc         INFO No specific match for domain found - use default fallback
-DBReplicaSvc         INFO Total of 1 servers found for host karma [atlas_dd ]
-PoolSvc              INFO Successfully setup replica sorting algorithm
-PoolSvc              INFO Setting up APR FileCatalog and Streams
-PoolSvc              INFO POOL WriteCatalog is file:xAODTestTypelessRead_catalog.xml
-DbSession            INFO     Open     DbSession    
-Domain[ROOT_All]     INFO >   Access   DbDomain     READ      [ROOT_All] 
-EventSelector        INFO reinitialization...
-EventSelector        INFO EventSelection with query 
-Domain[ROOT_All]     INFO ->  Access   DbDatabase   READ      [ROOT_All] D45552C7-3AA1-9A49-A420-3F8F30601500
-Domain[ROOT_All]     INFO                           xaoddata.root
-RootDatabase.open    INFO xaoddata.root File version:60806
-EventPersistenc...   INFO Added successfully Conversion service:AthenaPoolCnvSvc
-EventSelector        INFO Initializing EventSelector - package version EventSelectorAthenaPool-00-00-00
-EventSelector        INFO reinitialization...
-EventSelector        INFO EventSelection with query 
-AthenaPoolAddre...   INFO Initializing AthenaPoolAddressProviderSvc - package version EventSelectorAthenaPool-00-00-00
-OutputStreamSeq...   INFO Initializing OutputStreamSequencerSvc - package version AthenaServices-00-00-00
-ClassIDSvc           INFO  getRegistryEntries: read 1098 CLIDRegistry entries for module ALL
-Stream1.Stream1...   INFO Initializing Stream1.Stream1Tool - package version OutputStreamAthenaPool-00-00-00
-Stream1.Stream1...   INFO streamProperty ProcessingTag = Stream1
-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: xaoddata3.root
-Stream1              INFO I/O reinitialization...
-HistogramPersis...WARNING Histograms saving not required.
 AthenaEventLoopMgr   INFO Setup EventSelector service EventSelector
 ApplicationMgr       INFO Application Manager Initialized successfully
-xaoddata.root        INFO Database being retired...
-Domain[ROOT_All]     INFO ->  Deaccess DbDatabase   READ      [ROOT_All] D45552C7-3AA1-9A49-A420-3F8F30601500
-DbSession            INFO     Open     DbSession    
-Domain[ROOT_All]     INFO >   Access   DbDomain     READ      [ROOT_All] 
-Domain[ROOT_All]     INFO ->  Access   DbDatabase   READ      [ROOT_All] D45552C7-3AA1-9A49-A420-3F8F30601500
-Domain[ROOT_All]     INFO                           xaoddata.root
-RootDatabase.open    INFO xaoddata.root File version:60806
-ApplicationMgr       INFO Application Manager Started successfully
 AlgResourcePool      INFO TopAlg list empty. Recovering the one of Application Manager
-AthenaPoolConve...   INFO massageEventInfo: unable to get OverrideRunNumberFromInput property from EventSelector 
-ClassIDSvc           INFO  getRegistryEntries: read 16 CLIDRegistry entries for module ALL
 AthenaEventLoopMgr   INFO   ===>>>  start of run 0    <<<===
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #0, run #0 0 events processed so far  <<<===
 1
-ClassIDSvc           INFO  getRegistryEntries: read 54 CLIDRegistry entries for module ALL
 cvec types: aFloat/float anInt/int anInt2/int cEL/ElementLink<DataVector<DMTest::C_v1,DataModel_detail::NoBase> > dInt1/int dVar1/int dpInt1/unsigned int dpvFloat/std::vector<float,std::allocator<float> > pFloat/float pInt/unsigned int pvFloat/std::vector<float,std::allocator<float> > pvInt/std::vector<int,std::allocator<int> > 
   aFloat: 200.000; anInt: 101; anInt2: 301; cEL: cvec[9]; dInt1: 401; dVar1: 451; dpInt1: 51; 
     dpvFloat: []; pFloat: 0.010; pInt: 501; 
@@ -122,7 +50,6 @@ cvec types: aFloat/float anInt/int anInt2/int cEL/ElementLink<DataVector<DMTest:
     pvInt: [-310 -309 -308 -307 -306 -305 -304 -303 -302 ]; 
 cinfo types: aFloat/float anInt/int anInt2/int cEL/ElementLink<DataVector<DMTest::C_v1,DataModel_detail::NoBase> > dInt1/int 
 aFloat: 0.100; anInt: 1000; anInt2: 2000; cEL: cvec[1]; dInt1: 3000; 
-ClassIDSvc           INFO  getRegistryEntries: read 32 CLIDRegistry entries for module ALL
 ctrig types: aFloat/float anInt/int anInt2/int dInt1/int 
   aFloat: 600.000; anInt: 501; anInt2: 701; dInt1: 481; 
   aFloat: 600.100; anInt: 502; anInt2: 702; dInt1: 482; 
@@ -246,11 +173,6 @@ hview
   aFloat: 403.500; 
   aFloat: 402.500; 
   aFloat: 401.500; 
-DbSession            INFO     Open     DbSession    
-Domain[ROOT_All]     INFO >   Access   DbDomain     UPDATE    [ROOT_All] 
-Domain[ROOT_All]     INFO ->  Access   DbDatabase   CREATE    [ROOT_All] A0916735-4864-C84D-B46B-2086E5E1530F
-Domain[ROOT_All]     INFO                           xaoddata3.root
-RootDatabase.open    INFO xaoddata3.root File version:60806
 StorageSvc           INFO Building shape according to reflection information using shape ID for:
 StorageSvc           INFO DataVector<DMTest::H_v2> [CD6C3074-425B-4C08-AF1C-43D7E8C84288]
 StorageSvc           INFO Building shape according to reflection information using shape ID for:
@@ -3388,20 +3310,7 @@ hview
   aFloat: 8002.500; 
   aFloat: 8001.500; 
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #19, run #0 20 events processed so far  <<<===
-Stream1              INFO Records written: 21
-xaoddata.root        INFO Database being retired...
-Domain[ROOT_All]     INFO ->  Deaccess DbDatabase   READ      [ROOT_All] D45552C7-3AA1-9A49-A420-3F8F30601500
-xaoddata3.root       INFO Database being retired...
-Domain[ROOT_All]     INFO ->  Deaccess DbDatabase   CREATE    [ROOT_All] A0916735-4864-C84D-B46B-2086E5E1530F
-Domain[ROOT_All]     INFO >   Deaccess DbDomain     UPDATE    [ROOT_All] 
-ApplicationMgr       INFO Application Manager Stopped successfully
 IncidentProcAlg1     INFO Finalize
 IncidentProcAlg2     INFO Finalize
-Domain[ROOT_All]     INFO >   Deaccess DbDomain     READ      [ROOT_All] 
-DecisionSvc          INFO Finalized successfully.
-AthDictLoaderSvc     INFO in finalize...
-ToolSvc              INFO Removing all tools created by ToolSvc
-ChronoStatSvc.f...   INFO  Service finalized successfully 
 ApplicationMgr       INFO Application Manager Finalized successfully
 ApplicationMgr       INFO Application Manager Terminated successfully
-Py:Athena            INFO leaving with code 0: "successful run"
diff --git a/Control/DataModelTest/DataModelRunTests/share/xAODTestWrite.ref b/Control/DataModelTest/DataModelRunTests/share/xAODTestWrite.ref
index 87f476c9099834b7ef36a3831a615fc56696b22e..acc4f8648ad98b26c54966e97e42330042217906 100644
--- a/Control/DataModelTest/DataModelRunTests/share/xAODTestWrite.ref
+++ b/Control/DataModelTest/DataModelRunTests/share/xAODTestWrite.ref
@@ -1,71 +1,11 @@
-Fri Oct 27 20:43:32 CEST 2017
-Preloading tcmalloc_minimal.so
-Py:Athena            INFO including file "AthenaCommon/Preparation.py"
-Py:Athena            INFO using release [AthenaWorkDir-22.0.0] [x86_64-slc6-gcc62-opt] [atlas-work3/9f528da37a] -- built on [2017-10-27T2018]
-Py:Athena            INFO including file "AthenaCommon/Bootstrap.py"
-Py:Athena            INFO including file "AthenaCommon/Atlas.UnixStandardJob.py"
-Py:Athena            INFO executing ROOT6Setup
-Py:Athena            INFO including file "AthenaCommon/Execution.py"
-Py:Athena            INFO including file "DataModelRunTests/xAODTestWrite_jo.py"
-Py:ConfigurableDb    INFO Read module info for 5436 configurables from 58 genConfDb files
-Py:ConfigurableDb    INFO No duplicates have been found: that's good !
-[?1034hPy:Athena            INFO including file "EventAthenaPool/EventAthenaPoolItemList_joboptions.py"
-Py:Athena            INFO including file "AthenaCommon/runbatch.py"
-ApplicationMgr       INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0
-ApplicationMgr    SUCCESS 
-====================================================================================================================================
-                                                   Welcome to ApplicationMgr (GaudiCoreSvc v29r0)
-                                          running on lxplus012.cern.ch on Fri Oct 27 20:43:50 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 9770 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)
-CoreDumpSvc          INFO Handling signals: 11(Segmentation fault) 7(Bus error) 4(Illegal instruction) 8(Floating point exception) 
-xAODMaker::Even...   INFO Initialising - Package version: xAODEventFormatCnv-00-00-00
-MetaDataSvc          INFO Initializing MetaDataSvc - package version AthenaServices-00-00-00
-AthenaPoolCnvSvc     INFO Initializing AthenaPoolCnvSvc - package version AthenaPoolCnvSvc-00-00-00
-PoolSvc              INFO Set connectionsvc retry/timeout/IDLE timeout to  'ConnectionRetrialPeriod':300/ 'ConnectionRetrialTimeOut':3600/ 'ConnectionTimeOut':5 seconds with connection cleanup disabled
-PoolSvc              INFO Frontier compression level set to 5
-DBReplicaSvc         INFO Frontier server at (serverurl=http://atlasfrontier-local.cern.ch:8000/atlr)(serverurl=http://atlasfrontier-ai.cern.ch:8000/atlr)(serverurl=http://lcgft-atlas.gridpp.rl.ac.uk:3128/frontierATLAS)(serverurl=http://ccfrontier.in2p3.fr:23128/ccin2p3-AtlasFrontier)(proxyurl=http://ca-proxy.cern.ch:3128)(proxyurl=http://ca-proxy-meyrin.cern.ch:3128)(proxyurl=http://ca-proxy-wigner.cern.ch:3128) will be considered for COOL data
-DBReplicaSvc         INFO Read replica configuration from /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2017-10-26T2259/Athena/22.0.0/InstallArea/x86_64-slc6-gcc62-opt/share/dbreplica.config
-DBReplicaSvc         INFO Total of 10 servers found for host lxplus012.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              INFO Setting up APR FileCatalog and Streams
-PoolSvc              INFO POOL WriteCatalog is file:xAODTestWrite_catalog.xml
-DbSession            INFO     Open     DbSession    
-Domain[ROOT_All]     INFO >   Access   DbDomain     READ      [ROOT_All] 
-AthenaEventLoopMgr   INFO Initializing AthenaEventLoopMgr - package version AthenaServices-00-00-00
-ClassIDSvc           INFO  getRegistryEntries: read 1092 CLIDRegistry entries for module ALL
-ClassIDSvc           INFO  getRegistryEntries: read 61 CLIDRegistry entries for module ALL
-DecisionSvc          INFO Inserting stream: Stream1 with no Algs
-OutputStreamSeq...   INFO Initializing OutputStreamSequencerSvc - package version AthenaServices-00-00-00
-ClassIDSvc           INFO  getRegistryEntries: read 386 CLIDRegistry entries for module ALL
-Stream1.Stream1...   INFO Initializing Stream1.Stream1Tool - package version OutputStreamAthenaPool-00-00-00
-Stream1.Stream1...   INFO streamProperty ProcessingTag = Stream1
-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: xaoddata.root
-Stream1              INFO I/O reinitialization...
-HistogramPersis...WARNING Histograms saving not required.
 EventSelector        INFO  Enter McEventSelector Initialization 
 AthenaEventLoopMgr   INFO Setup EventSelector service EventSelector
 ApplicationMgr       INFO Application Manager Initialized successfully
-ApplicationMgr       INFO Application Manager Started successfully
-EventPersistenc...   INFO Added successfully Conversion service:McCnvSvc
-ClassIDSvc           INFO  getRegistryEntries: read 108 CLIDRegistry entries for module ALL
 AthenaEventLoopMgr   INFO   ===>>>  start of run 0    <<<===
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #0, run #0 0 events processed so far  <<<===
-DbSession            INFO     Open     DbSession    
-Domain[ROOT_All]     INFO >   Access   DbDomain     UPDATE    [ROOT_All] 
-Domain[ROOT_All]     INFO ->  Access   DbDatabase   CREATE    [ROOT_All] 93E7DA84-0A72-4B49-A584-F3907D86A720
-Domain[ROOT_All]     INFO                           xaoddata.root
-RootDatabase.open    INFO xaoddata.root File version:60806
 StorageSvc           INFO Building shape according to reflection information using shape ID for:
 StorageSvc           INFO EventInfo_p4 [C634FDB6-CC4B-4BA2-B8F9-A84BE6A786C7]
 StorageSvc           INFO Building shape according to reflection information using shape ID for:
@@ -98,7 +38,6 @@ StorageSvc           INFO Building shape according to reflection information usi
 StorageSvc           INFO DataHeaderForm_p5 [3397D8A3-BBE6-463C-9F8E-4B3DFD8831FE]
 StorageSvc           INFO Building shape according to reflection information using shape ID for:
 StorageSvc           INFO DataHeader_p5 [D82968A1-CF91-4320-B2DD-E0F739CBC7E6]
-ClassIDSvc           INFO  getRegistryEntries: read 142 CLIDRegistry entries for module ALL
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #0, run #0 1 events processed so far  <<<===
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #1, run #0 1 events processed so far  <<<===
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #1, run #0 2 events processed so far  <<<===
@@ -142,20 +81,7 @@ StorageSvc           INFO Building shape according to reflection information usi
 StorageSvc           INFO EventStreamInfo_p3 [11DF1B8C-0DEE-4687-80D7-E74B520ACBB4]
 StorageSvc           INFO Building shape according to reflection information using shape ID for:
 StorageSvc           INFO xAOD::EventFormat_v1 [0EFE2D2C-9E78-441D-9A87-9EE2B908AC81]
-ClassIDSvc           INFO  getRegistryEntries: read 9 CLIDRegistry entries for module ALL
-Stream1              INFO Records written: 21
-Domain[ROOT_All]     INFO >   Deaccess DbDomain     READ      [ROOT_All] 
-xaoddata.root        INFO Database being retired...
-Domain[ROOT_All]     INFO ->  Deaccess DbDatabase   CREATE    [ROOT_All] 93E7DA84-0A72-4B49-A584-F3907D86A720
-Domain[ROOT_All]     INFO >   Deaccess DbDomain     UPDATE    [ROOT_All] 
-ApplicationMgr       INFO Application Manager Stopped successfully
 IncidentProcAlg1     INFO Finalize
 IncidentProcAlg2     INFO Finalize
-EventSelector        INFO finalize
-DecisionSvc          INFO Finalized successfully.
-AthDictLoaderSvc     INFO in finalize...
-ToolSvc              INFO Removing all tools created by ToolSvc
-ChronoStatSvc.f...   INFO  Service finalized successfully 
 ApplicationMgr       INFO Application Manager Finalized successfully
 ApplicationMgr       INFO Application Manager Terminated successfully
-Py:Athena            INFO leaving with code 0: "successful run"
diff --git a/Control/DataModelTest/DataModelTestDataCommon/src/CondWriterAlg.cxx b/Control/DataModelTest/DataModelTestDataCommon/src/CondWriterAlg.cxx
index e877c8cd6ffbd7dafda1ec32731df0b8165615f4..f99399aba7a2be22a9053c516527c11083b71fc6 100644
--- a/Control/DataModelTest/DataModelTestDataCommon/src/CondWriterAlg.cxx
+++ b/Control/DataModelTest/DataModelTestDataCommon/src/CondWriterAlg.cxx
@@ -29,7 +29,7 @@ namespace DMTest {
 CondWriterAlg::CondWriterAlg (const std::string &name, ISvcLocator *pSvcLocator)
   : AthAlgorithm (name, pSvcLocator),
     m_regSvc ("IOVRegistrationSvc", name),
-    m_streamer ("AthenaPoolOutputStreamTool/CondStream", this)
+    m_streamer ("AthenaOutputStreamTool/CondStream", this)
 {
   declareProperty ("Streamer",     m_streamer);
   declareProperty ("EventInfoKey", m_eventInfoKey = "McEventInfo");
diff --git a/Control/StoreGateTests/share/test_recordStlClids_jobOptions.py b/Control/StoreGateTests/share/test_recordStlClids_jobOptions.py
index b8d41b26210a5431adfab3080303de5faea97454..bbaa647fe6cdf248533dca34ac59944a09835e2d 100644
--- a/Control/StoreGateTests/share/test_recordStlClids_jobOptions.py
+++ b/Control/StoreGateTests/share/test_recordStlClids_jobOptions.py
@@ -45,7 +45,7 @@ topSequence += PyClidsTestWriter()
 import AthenaPoolCnvSvc.WriteAthenaPool
 topSequence += CfgMgr.AthenaOutputStream(
     "stream_stl",
-    WritingTool = "AthenaPoolOutputStreamTool",
+    WritingTool = "AthenaOutputStreamTool",
     OutputFile = 'out_stl_containers.pool'
     )
 topSequence.stream_stl.ItemList += [
diff --git a/Database/APR/PersistencySvc/PersistencySvc/IPersistencySvc.h b/Database/APR/PersistencySvc/PersistencySvc/IPersistencySvc.h
index cc07fddf757e8e421a19cc5df58624aeb9f80d4c..5dda2dba68e3abbc7888a6d93221c2d27989a657 100644
--- a/Database/APR/PersistencySvc/PersistencySvc/IPersistencySvc.h
+++ b/Database/APR/PersistencySvc/PersistencySvc/IPersistencySvc.h
@@ -71,18 +71,6 @@ namespace pool {
                                      const void* object,
                                      const RootType& type ) = 0;
     
-    /** Deletes an object from the persistent store
-     *
-     * @param  token        [IN]  reference to the token for the object
-     *
-     * @return bool   Indicates whether operation was successfull.
-     *
-     */
-    virtual bool destroyObject( const Token& token ) = 0;
-
-    /// Returns the container name for object
-    virtual std::string getContName( const Token& token ) = 0;
-
     /// Returns the underlying global session
     virtual ISession& session() = 0;
 
diff --git a/Database/APR/PersistencySvc/src/DatabaseHandler.cpp b/Database/APR/PersistencySvc/src/DatabaseHandler.cpp
index 4e2463f26eb8207fe0cc9e565ed0d09605bf9b3a..36c3b28ea9ef9f0ffa85bdb7cffb5ff66bfc8979 100644
--- a/Database/APR/PersistencySvc/src/DatabaseHandler.cpp
+++ b/Database/APR/PersistencySvc/src/DatabaseHandler.cpp
@@ -116,12 +116,6 @@ pool::PersistencySvc::DatabaseHandler::isTransactionActive() const
 }
 
 
-std::string
-pool::PersistencySvc::DatabaseHandler::getContName(const Token& token)
-{
-  return  m_storageSvc.getContName(m_fileDescriptor, token);
-}
-
 std::vector< std::string >
 pool::PersistencySvc::DatabaseHandler::containers()
 {
@@ -248,18 +242,6 @@ pool::PersistencySvc::DatabaseHandler::readObject( const Token& token, void* obj
 }
 
 
-bool
-pool::PersistencySvc::DatabaseHandler::destroyObject( const Token& token )
-{
-  bool result = false;
-  if ( ! m_transaction ) return result;
-  if ( m_storageSvc.destroy( m_transaction, m_fileDescriptor, token ).isSuccess() ) {
-    result = true;
-  }
-  return result;
-}
-
-
 bool
 pool::PersistencySvc::DatabaseHandler::attribute( const std::string& attributeName,
                                                   void* data,
diff --git a/Database/APR/PersistencySvc/src/DatabaseHandler.h b/Database/APR/PersistencySvc/src/DatabaseHandler.h
index e0b16c4feea69a14b7f252e75398f9960f8bbc6a..67134ae3c1d85dd2dd71f2c6cd74a5942d90a01d 100644
--- a/Database/APR/PersistencySvc/src/DatabaseHandler.h
+++ b/Database/APR/PersistencySvc/src/DatabaseHandler.h
@@ -61,9 +61,6 @@ namespace pool {
       /// Checks if a transaction is active
       bool isTransactionActive() const;
 
-      /// Returns the container name for object
-      std::string getContName(const Token& token);
-
       /// Gives the list of containers
       std::vector< std::string > containers();
 
@@ -97,9 +94,6 @@ namespace pool {
       /// Reads an object given a token
       void* readObject( const Token& token, void* object = 0 );
 
-      /// Deletes an object from the persistent store
-      bool destroyObject( const Token& token );
-
       /// Returns an attrtibute
       bool attribute( const std::string& attributeName,
                       void* data,
diff --git a/Database/APR/PersistencySvc/src/PersistencySvc.cpp b/Database/APR/PersistencySvc/src/PersistencySvc.cpp
index 38f5860a943c5b7359ca2e07e514525d4351697f..7ddb761b33c267d924b3d2b73768a9842186a73f 100644
--- a/Database/APR/PersistencySvc/src/PersistencySvc.cpp
+++ b/Database/APR/PersistencySvc/src/PersistencySvc.cpp
@@ -9,11 +9,11 @@
 #include "UserSession.h"
 #include "UserDatabase.h"
 #include "DatabaseHandler.h"
-#include "PersistentDataModel/Token.h"
 #include "PersistencySvc/DatabaseConnectionPolicy.h"
 #include "PersistencySvc/DatabaseSpecification.h"
 #include "PersistencySvc/ITransaction.h"
 
+#include "PersistentDataModel/Token.h"
 #include "PersistentDataModel/Placement.h"
 
 pool::PersistencySvc::PersistencySvc::PersistencySvc( pool::IFileCatalog& fileCatalog ):
@@ -72,65 +72,16 @@ pool::PersistencySvc::PersistencySvc::registerForWrite( const Placement& place,
                    m_session->registry(),
                    place.fileName(),
                    pool::DatabaseSpecification::PFN );
-  pool::IDatabase::OpenMode openMode = db.openMode();
-  switch ( openMode ) {
-  case pool::IDatabase::CLOSED:
+  if ( db.openMode() == pool::IDatabase::CLOSED ) {
     db.setTechnology( place.technology() );
     db.connectForWrite();
-    break;
-  case pool::IDatabase::READ:
-    db.revertMode( pool::IDatabase::UPDATE );
-    break;
-  default:
-    break;
-  };
+  }
   return db.databaseHandler().writeObject( place.containerName(),
                                            place.technology(),
                                            object,
                                            type );
 }
 
-bool
-pool::PersistencySvc::PersistencySvc::destroyObject( const Token& token )
-{
-  if ( ! m_session->transaction().isActive() ||
-       m_session->transaction().type() != pool::ITransaction::UPDATE ) return false;
-  UserDatabase db( m_session->technologyDispatcher(),
-                   m_session->defaultConnectionPolicy(),
-                   m_session->fileCatalog(),
-                   m_session->transaction(),
-                   m_session->registry(),
-                   token.dbID().toString(),
-                   pool::DatabaseSpecification::FID );
-  pool::DatabaseConnectionPolicy policy; // Keep the default behaviour.
-  pool::IDatabase::OpenMode openMode = db.openMode();
-  switch ( openMode ) {
-  case pool::IDatabase::CLOSED:
-    db.setTechnology( token.technology() );
-    db.connectForWrite( policy );
-    break;
-  case pool::IDatabase::READ:
-    db.revertMode( pool::IDatabase::UPDATE );
-    break;
-  default:
-    break;
-  };
-  return db.databaseHandler().destroyObject( token );
-}
-
-std::string
-pool::PersistencySvc::PersistencySvc::getContName( const Token& token )
-{
-    UserDatabase db( m_session->technologyDispatcher(),
-                     m_session->defaultConnectionPolicy(),
-                     m_session->fileCatalog(),
-                     m_session->transaction(),
-                     m_session->registry(),
-                     token.dbID().toString(),
-                     pool::DatabaseSpecification::FID );
-    return db.databaseHandler().getContName( token );
-}
-
 pool::ISession&
 pool::PersistencySvc::PersistencySvc::session()
 {
diff --git a/Database/APR/PersistencySvc/src/PersistencySvc.h b/Database/APR/PersistencySvc/src/PersistencySvc.h
index 91c7cfdecb21f3a3639068968071b48c578ac314..6cda72ec046da15d51d15dfbd9d869f738722e5d 100644
--- a/Database/APR/PersistencySvc/src/PersistencySvc.h
+++ b/Database/APR/PersistencySvc/src/PersistencySvc.h
@@ -64,18 +64,6 @@ namespace pool {
                                const void* object,
                                const RootType& type );
       
-      /** Deletes an object from the persistent store
-       *
-       * @param  token        [IN]  reference to the token for the object
-       *
-       * @return bool   Indicates whether operation was successfull.
-       *
-       */
-      bool destroyObject( const Token& token );
-      
-      /// Returns the container name for object
-      std::string getContName( const Token& token );
-
       /// Returns the underlying global session
       ISession& session();
 
diff --git a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/CMakeLists.txt b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/CMakeLists.txt
index f196c23be7a6008c206d69ebf9468be514d85a8e..1ed45357f75fc5278d9e6a09e3c17158435ae384 100644
--- a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/CMakeLists.txt
+++ b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/CMakeLists.txt
@@ -147,29 +147,10 @@ _add_test( AthenaPoolExample_ReadConcat
    EXTRA_PATTERNS "BYTES_READ"
    DEPENDS AthenaPoolExampleAlgorithms_AthenaPoolExample_Concat_ctest )
 
-# Read ByteStream and write to APR/POOL
-_add_test( AthenaPoolExample_RWBs
-   "athena.py AthenaPoolExampleAlgorithms/AthenaPoolExample_RWBsJobOptions.py"
-   EXTRA_PATTERNS "BSF:|Picked valid file:|RootCollection DEBUG File|found catalog guid|from the catalog"
-   DEPENDS AthenaPoolExampleAlgorithms_AthenaPoolExample_ReadConcat_ctest )
-_add_test( AthenaPoolExample_ReadBs
-   "athena.py AthenaPoolExampleAlgorithms/AthenaPoolExample_ReadBsJobOptions.py"
-   DEPENDS AthenaPoolExampleAlgorithms_AthenaPoolExample_RWBs_ctest )
-
-# Read compressed ByteStream and write to APR/POOL
-_add_test( AthenaPoolExample_RWcBs
-   "athena.py AthenaPoolExampleAlgorithms/AthenaPoolExample_RWcBsJobOptions.py"
-   DEPENDS AthenaPoolExampleAlgorithms_AthenaPoolExample_ReadBs_ctest
-   EXTRA_PATTERNS "Events to copy|Checking file|Created DataWriter|File:|Event index:|^Run:|Event ID:|^LumiBlock:|Wrote 3 events"
-   PRE_EXEC test/pre_check.sh )
-_add_test( AthenaPoolExample_ReadcBs
-   "athena.py AthenaPoolExampleAlgorithms/AthenaPoolExample_ReadBsJobOptions.py"
-   DEPENDS AthenaPoolExampleAlgorithms_AthenaPoolExample_RWcBs_ctest )
-
 # Testing 'Conditions' I/O
 _add_test( AthenaPoolExample_WCond
    "athena.py AthenaPoolExampleAlgorithms/AthenaPoolExample_WCondJobOptions.py"
-   DEPENDS AthenaPoolExampleAlgorithms_AthenaPoolExample_ReadcBs_ctest )
+   DEPENDS AthenaPoolExampleAlgorithms_AthenaPoolExample_ReadConcat_ctest )
 _add_test( AthenaPoolExample_RCond
    "athena.py AthenaPoolExampleAlgorithms/AthenaPoolExample_RCondJobOptions.py"
    DEPENDS AthenaPoolExampleAlgorithms_AthenaPoolExample_WCond_ctest )
@@ -179,20 +160,7 @@ _add_test( AthenaPoolExample_WMeta
    "athena.py AthenaPoolExampleAlgorithms/AthenaPoolExample_WMetaJobOptions.py"
    DEPENDS AthenaPoolExampleAlgorithms_AthenaPoolExample_RCond_ctest
    PRE_EXEC test/pre_check.sh )
-_add_test( AthenaPoolExample_AMeta
-   "athena.py AthenaPoolExampleAlgorithms/AthenaPoolExample_AMetaJobOptions.py"
-   DEPENDS AthenaPoolExampleAlgorithms_AthenaPoolExample_WMeta_ctest )
 _add_test( AthenaPoolExample_RMeta
    "athena.py AthenaPoolExampleAlgorithms/AthenaPoolExample_RMetaJobOptions.py"
-   DEPENDS AthenaPoolExampleAlgorithms_AthenaPoolExample_AMeta_ctest
+   DEPENDS AthenaPoolExampleAlgorithms_AthenaPoolExample_WMeta_ctest
    EXTRA_PATTERNS "Bytes:" )
-
-# Testing APR/POOL 'fast' merge
-_add_test( AthenaPoolExample_WriteFast
-   "athena.py  AthenaPoolExampleAlgorithms/AthenaPoolExample_WriteFastJobOptions.py"
-   EXTRA_PATTERNS "RootCollection DEBUG File|found catalog guid|from the catalog"
-   DEPENDS AthenaPoolExampleAlgorithms_AthenaPoolExample_RMeta_ctest )
-_add_test( AthenaPoolExample_AppendFast
-   "athena.py  AthenaPoolExampleAlgorithms/AthenaPoolExample_AppendFastJobOptions.py"
-   EXTRA_PATTERNS "RootCollection DEBUG File|found catalog guid|from the catalog|DbContainer|Reading Shape|Reading Assoc|Reading Param|Adding Assoc|Adding Shape|#Elements|->ClassID:|Pushing back ref|Building shape|DataHeader|No objects passing|EventInfo|INFO Token|Class:unsigned int|EventStreamInfo|Class:Token|INFO unsigned int"
-   DEPENDS AthenaPoolExampleAlgorithms_AthenaPoolExample_WriteFast_ctest )
diff --git a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_ACondJobOptions.py b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_ACondJobOptions.py
deleted file mode 100755
index 8598811a323baaccabbce29495c961c686e8ca06..0000000000000000000000000000000000000000
--- a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_ACondJobOptions.py
+++ /dev/null
@@ -1,83 +0,0 @@
-## @file AthenaPoolExample_WCondJobOptions.py
-## @brief Example job options file to illustrate how to write conditions data to Pool.
-## @author Peter van Gemmeren <gemmeren@anl.gov>
-## $Id: AthenaPoolExample_ACondJobOptions.py,v 1.9 2008-04-24 15:42:18 gemmeren Exp $
-###############################################################
-#
-# This Job option:
-# ----------------
-# 1. Reads the data from the SimplePoolFile1.root file
-#    had been written with the AthneaPoolExample_WriteJobOptions.py
-# 2. Writes another SimplePoolFile4.root ROOT file using WriteCond algorithm
-#    which contains conditions for the event sample (eg pedestals).
-# ------------------------------------------------------------
-# Expected output file (20 events):
-# -rw-r--r--    1 gemmeren zp          24213 Dec  8 18:59 SimplePoolFile4.root
-#
-#==============================================================
-
-## basic job configuration
-import AthenaCommon.AtlasUnixStandardJob
-
-## get a handle on the default top-level algorithm sequence
-from AthenaCommon.AlgSequence import AlgSequence
-topSequence = AlgSequence()
-
-## get a handle on the ServiceManager
-from AthenaCommon.AppMgr import ServiceMgr as svcMgr
-
-#--------------------------------------------------------------
-# Event related parameters
-#--------------------------------------------------------------
-from AthenaCommon.AppMgr import theApp
-theApp.EvtMax = 200000
-
-#--------------------------------------------------------------
-#---   Read portion  -----
-#--------------------------------------------------------------
-import AthenaPoolCnvSvc.ReadAthenaPool
-
-svcMgr.EventSelector.InputCollections = [ "SimplePoolFile1.root" ]; # ** mandatory parameter ** // The input file name
-
-#Explicitly specify the output file catalog
-svcMgr.PoolSvc.WriteCatalog = "file:Catalog1.xml"
-
-#Open file in "update" mode
-svcMgr.PoolSvc.FileOpen = "update";
-
-#--------------------------------------------------------------
-#---   Secondary Write portion  ----- Don't change it !!!
-#--------------------------------------------------------------
-# Load the OutputStream
-from OutputStreamAthenaPool.OutputStreamAthenaPool import AthenaPoolOutputConditionStream
-Stream1 = AthenaPoolOutputConditionStream( "Stream1", "SimplePoolFile4.root" )
-Stream1.ObjectList += [ "ExampleHitContainer#PedestalAppendData" ]
-
-#--------------------------------------------------------------
-# Private Application Configuration options
-#--------------------------------------------------------------
-# Load "user algorithm" top algorithms to be run, and the libraries that house them
-from AthenaPoolExampleAlgorithms.AthenaPoolExampleAlgorithmsConf import AthPoolEx__ReadData,AthPoolEx__WriteCond
-topSequence += AthPoolEx__ReadData("ReadData")
-topSequence += AthPoolEx__WriteCond( "WriteCond",
-                                     ConditionName = "PedestalAppendData",
-                                     Weight = 0.5,
-                                     Offset = 100.0 )
-
-#--------------------------------------------------------------
-# Set output level threshold (2=DEBUG, 3=INFO, 4=WARNING, 5=ERROR, 6=FATAL)
-#--------------------------------------------------------------
-svcMgr.MessageSvc.OutputLevel = 3
-
-svcMgr.EventSelector.OutputLevel = 2
-svcMgr.AthenaPoolAddressProviderSvc.OutputLevel = 2
-svcMgr.MetaDataSvc.OutputLevel = 2
-svcMgr.PoolSvc.OutputLevel = 2
-topSequence.ReadData.OutputLevel = 2
-topSequence.WriteCond.OutputLevel = 2
-Stream1.OutputLevel = 2
-
-#
-# End of job options file
-#
-###############################################################
diff --git a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_AMeta.ref b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_AMeta.ref
deleted file mode 100644
index b342d922dac5f140c047d07dee3f06adde46c140..0000000000000000000000000000000000000000
--- a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_AMeta.ref
+++ /dev/null
@@ -1,671 +0,0 @@
-Wed Dec 20 16:05:28 CST 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_AMetaJobOptions.py"
-Py:ConfigurableDb    INFO Read module info for 5439 configurables from 18 genConfDb files
-Py:ConfigurableDb    INFO No duplicates have been found: that's good !
-Athena               INFO including file "AthenaCommon/runbatch.py"
-[?1034hApplicationMgr       INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0
-ApplicationMgr    SUCCESS 
-====================================================================================================================================
-                                                   Welcome to ApplicationMgr (GaudiCoreSvc v30r0)
-                                          running on atlas2.hep.anl.gov on Wed Dec 20 16:05:38 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 2318 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
-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
-WriteCond            INFO 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 io_register[PoolSvc](xmlcatalog_file:Catalog2.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://lcgft-atlas.gridpp.rl.ac.uk:3128/frontierATLAS)(serverurl=http://frontier-atlas.lcg.triumf.ca:3128/ATLAS_frontier)(serverurl=http://ccfrontier.in2p3.fr:23128/ccin2p3-AtlasFrontier) will be considered for COOL data
-DBReplicaSvc         INFO Read replica configuration from /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2017-12-17T2303/Athena/22.0.0/InstallArea/x86_64-slc6-gcc62-opt/share/dbreplica.config
-DBReplicaSvc         INFO Total of 1 servers found for host atlas2.hep.anl.gov [ATLF ]
-PoolSvc              INFO Successfully setup replica sorting algorithm
-PoolSvc             DEBUG OutputLevel is 
-PoolSvc              INFO Setting up APR FileCatalog and Streams
-PoolSvc              INFO POOL WriteCatalog is xmlcatalog_file:Catalog2.xml
-DbSession            INFO     Open     DbSession    
-Domain[ROOT_All]     INFO >   Access   DbDomain     READ      [ROOT_All] 
-ClassIDSvc           INFO  getRegistryEntries: read 2282 CLIDRegistry entries for module ALL
-Stream1             DEBUG Property update for OutputLevel : new value = 2
-Stream1.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
-Stream1             DEBUG Found StoreGateSvc store.
-Stream1             DEBUG Found MetaDataStore store.
-OutputStreamSeq...   INFO Initializing OutputStreamSequencerSvc - package version AthenaServices-00-00-00
-Stream1.Stream1...  DEBUG Property update for OutputLevel : new value = 2
-ClassIDSvc           INFO  getRegistryEntries: read 402 CLIDRegistry entries for module ALL
-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: ROOTTREE:SimplePoolFile5.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
-HistogramPersis...WARNING Histograms saving not required.
-EventSelector        INFO  Enter McEventSelector Initialization 
-AthenaEventLoopMgr   INFO Setup EventSelector service EventSelector
-ApplicationMgr       INFO Application Manager Initialized successfully
-ApplicationMgr       INFO Application Manager Started successfully
-EventPersistenc...   INFO Added successfully Conversion service:McCnvSvc
-ClassIDSvc           INFO  getRegistryEntries: read 108 CLIDRegistry entries for module ALL
-AthenaEventLoopMgr   INFO   ===>>>  start of run 0    <<<===
-AthenaEventLoopMgr   INFO   ===>>>  start processing event #20, run #0 0 events processed so far  <<<===
-WriteData           DEBUG in execute()
-WriteData            INFO EventInfo event: 20  run: 0
-WriteData            INFO registered all data
-WriteCond            INFO Hit x = 2001.23 y = -2.345 z = -1773.33 detector = DummyHitDetector
-WriteCond            INFO Hit x = 2004.44 y = -8.0239 z = -1905.27 detector = DummyHitDetector
-WriteCond            INFO Hit x = 2007.65 y = -13.7028 z = -1929.77 detector = DummyHitDetector
-WriteCond            INFO Hit x = 2010.86 y = -19.3817 z = -1940.09 detector = DummyHitDetector
-WriteCond            INFO Hit x = 2014.07 y = -25.0606 z = -1945.77 detector = DummyHitDetector
-WriteCond            INFO Hit x = 2017.28 y = -30.7395 z = -1949.38 detector = DummyHitDetector
-WriteCond            INFO Hit x = 2020.49 y = -36.4184 z = -1951.86 detector = DummyHitDetector
-WriteCond            INFO Hit x = 2023.7 y = -42.0973 z = -1953.68 detector = DummyHitDetector
-WriteCond            INFO Hit x = 2026.91 y = -47.7762 z = -1955.07 detector = DummyHitDetector
-WriteCond            INFO Hit x = 2030.12 y = -53.4551 z = -1956.17 detector = DummyHitDetector
-WriteCond            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   UPDATE    [ROOT_All] ????
-Domain[ROOT_All]     INFO                           SimplePoolFile5.root
-SimplePoolFile5...  DEBUG --> Access   DbContainer  CREA/UPDA [ROOT_All] ##Shapes
-##Shapes            DEBUG Opening
-##Shapes            DEBUG    attributes# = 1
-##Shapes            DEBUG Opened container ##Shapes of type ROOT_Tree
-SimplePoolFile5...  DEBUG --->Reading Shape[0 , ????]: [1 Column(s)]
-SimplePoolFile5...  DEBUG ---->[0]:EventInfo_p4 Typ:EventInfo_p4 [21] Size:0 Offset:0 #Elements:1
-SimplePoolFile5...  DEBUG --->Reading Shape[1 , ????]: [1 Column(s)]
-SimplePoolFile5...  DEBUG ---->[0]:ExampleHitContainer_p1 Typ:ExampleHitContainer_p1 [21] Size:0 Offset:0 #Elements:1
-SimplePoolFile5...  DEBUG --->Reading Shape[2 , ????]: [1 Column(s)]
-SimplePoolFile5...  DEBUG ---->[0]:DataHeaderForm_p5 Typ:DataHeaderForm_p5 [21] Size:0 Offset:0 #Elements:1
-SimplePoolFile5...  DEBUG --->Reading Shape[3 , ????]: [1 Column(s)]
-SimplePoolFile5...  DEBUG ---->[0]:DataHeader_p5 Typ:DataHeader_p5 [21] Size:0 Offset:0 #Elements:1
-SimplePoolFile5...  DEBUG --->Reading Shape[4 , ????]: [1 Column(s)]
-SimplePoolFile5...  DEBUG ---->[0]:EventStreamInfo_p3 Typ:EventStreamInfo_p3 [21] Size:0 Offset:0 #Elements:1
-##Shapes            DEBUG No objects passing selection criteria... Container has 5 Entries in total.
-SimplePoolFile5...  DEBUG --> Access   DbContainer  CREA/UPDA [ROOT_All] ##Links
-##Links             DEBUG Opening
-##Links             DEBUG    attributes# = 1
-##Links             DEBUG Opened container ##Links of type ROOT_Tree
-SimplePoolFile5...  DEBUG --->Reading Assoc:????/##Params [200]  (2 , ffffffff)
-SimplePoolFile5...  DEBUG ---->ClassID:????
-SimplePoolFile5...  DEBUG --->Reading Assoc:????/CollectionTree(EventInfo_p4/McEventInfo) [202]  (3 , ffffffff)
-SimplePoolFile5...  DEBUG ---->ClassID:????
-SimplePoolFile5...  DEBUG --->Reading Assoc:????/CollectionTree(ExampleHitContainer_p1/MyHits) [202]  (4 , ffffffff)
-SimplePoolFile5...  DEBUG ---->ClassID:????
-SimplePoolFile5...  DEBUG --->Reading Assoc:????/POOLContainerForm(DataHeaderForm) [202]  (5 , ffffffff)
-SimplePoolFile5...  DEBUG ---->ClassID:????
-SimplePoolFile5...  DEBUG --->Reading Assoc:????/POOLContainer(DataHeader) [202]  (6 , ffffffff)
-SimplePoolFile5...  DEBUG ---->ClassID:????
-SimplePoolFile5...  DEBUG --->Reading Assoc:????/POOLContainer(basic/DataHeader) [202]  (7 , ffffffff)
-SimplePoolFile5...  DEBUG ---->ClassID:????
-SimplePoolFile5...  DEBUG --->Reading Assoc:????/MetaData(ExampleHitContainer_p1/PedestalWriteData) [202]  (8 , ffffffff)
-SimplePoolFile5...  DEBUG ---->ClassID:????
-SimplePoolFile5...  DEBUG --->Reading Assoc:????/MetaData(EventStreamInfo_p3/Stream1) [202]  (9 , ffffffff)
-SimplePoolFile5...  DEBUG ---->ClassID:????
-SimplePoolFile5...  DEBUG --->Reading Assoc:????/MetaDataHdrForm(DataHeaderForm) [202]  (a , ffffffff)
-SimplePoolFile5...  DEBUG ---->ClassID:????
-SimplePoolFile5...  DEBUG --->Reading Assoc:????/MetaDataHdr(DataHeader) [202]  (b , ffffffff)
-SimplePoolFile5...  DEBUG ---->ClassID:????
-##Links             DEBUG No objects passing selection criteria... Container has 10 Entries in total.
-SimplePoolFile5...  DEBUG --> Access   DbContainer  CREA/UPDA [ROOT_All] ##Params
-##Params            DEBUG Opening
-##Params            DEBUG    attributes# = 1
-##Params            DEBUG Opened container ##Params of type ROOT_Tree
-SimplePoolFile5...  DEBUG --->Reading Param:FID=[????]
-SimplePoolFile5...  DEBUG --->Reading Param:PFN=[SimplePoolFile5.root]
-SimplePoolFile5...  DEBUG --->Reading Param:POOL_VSN=[1.1]
-SimplePoolFile5...  DEBUG --->Reading Param:FORMAT_VSN=[1.1]
-##Params            DEBUG No objects passing selection criteria... Container has 4 Entries in total.
-AthenaPoolCnvSvc    DEBUG setAttribute CONTAINER_SPLITLEVEL to 99 for db: SimplePoolFile5.root and cont: TTree=POOLContainerForm(DataHeaderForm)
-ClassIDSvc           INFO  getRegistryEntries: read 45 CLIDRegistry entries for module ALL
-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"
-SimplePoolFile5...  DEBUG --> Access   DbContainer  CREA/UPDA [ROOT_Tree] CollectionTree(EventInfo_p4/McEventInfo)
-CollectionTree(...  DEBUG Opening
-CollectionTree(...  DEBUG    attributes# = 1
-CollectionTree(...  DEBUG Branch container 'EventInfo_p4_McEventInfo'
-CollectionTree(...  DEBUG Opened container CollectionTree(EventInfo_p4/McEventInfo) of type ROOT_Tree
-SimplePoolFile5...  DEBUG --> Access   DbContainer  CREA/UPDA [ROOT_Tree] CollectionTree(ExampleHitContainer_p1/MyHits)
-CollectionTree(...  DEBUG Opening
-CollectionTree(...  DEBUG    attributes# = 1
-CollectionTree(...  DEBUG Branch container 'ExampleHitContainer_p1_MyHits'
-CollectionTree(...  DEBUG Opened container CollectionTree(ExampleHitContainer_p1/MyHits) of type ROOT_Tree
-SimplePoolFile5...  DEBUG --> Access   DbContainer  CREA/UPDA [ROOT_Tree] POOLContainerForm(DataHeaderForm)
-POOLContainerFo...  DEBUG Opening
-POOLContainerFo...  DEBUG    attributes# = 1
-POOLContainerFo...  DEBUG Branch container 'DataHeaderForm'
-POOLContainerFo...  DEBUG Opened container POOLContainerForm(DataHeaderForm) of type ROOT_Tree
-SimplePoolFile5...  DEBUG --> Access   DbContainer  CREA/UPDA [ROOT_Tree] POOLContainer(DataHeader)
-POOLContainer(D...  DEBUG Opening
-POOLContainer(D...  DEBUG    attributes# = 1
-POOLContainer(D...  DEBUG Branch container 'DataHeader'
-POOLContainer(D...  DEBUG Opened container POOLContainer(DataHeader) of type ROOT_Tree
-ClassIDSvc           INFO  getRegistryEntries: read 23 CLIDRegistry entries for module ALL
-SimplePoolFile5...  DEBUG --> Access   DbContainer  CREA/UPDA [ROOT_Tree] POOLContainer(basic/DataHeader)
-POOLContainer(b...  DEBUG Opening
-POOLContainer(b...  DEBUG    attributes# = 1
-POOLContainer(b...  DEBUG Branch container 'basic_DataHeader'
-POOLContainer(b...  DEBUG Opened container POOLContainer(basic/DataHeader) of type ROOT_Tree
-AthenaPoolCnvSvc    DEBUG setAttribute BRANCH_BASKET_SIZE to 256000 for db: SimplePoolFile5.root and cont: POOLContainer(DataHeader)
-AthenaPoolCnvSvc    DEBUG setAttribute BRANCH_BASKET_SIZE to 1024000 for db: SimplePoolFile5.root and cont: POOLContainerForm(DataHeaderForm)
-AthenaEventLoopMgr   INFO   ===>>>  done processing event #20, run #0 1 events processed so far  <<<===
-AthenaEventLoopMgr   INFO   ===>>>  start processing event #21, run #0 1 events processed so far  <<<===
-WriteData           DEBUG in execute()
-WriteData            INFO EventInfo event: 21  run: 0
-WriteData            INFO registered all data
-WriteCond            INFO Hit x = 2101.23 y = -2.345 z = -1873.33 detector = DummyHitDetector
-WriteCond            INFO Hit x = 2104.44 y = -8.0239 z = -2005.27 detector = DummyHitDetector
-WriteCond            INFO Hit x = 2107.65 y = -13.7028 z = -2029.77 detector = DummyHitDetector
-WriteCond            INFO Hit x = 2110.86 y = -19.3817 z = -2040.09 detector = DummyHitDetector
-WriteCond            INFO Hit x = 2114.07 y = -25.0606 z = -2045.77 detector = DummyHitDetector
-WriteCond            INFO Hit x = 2117.28 y = -30.7395 z = -2049.38 detector = DummyHitDetector
-WriteCond            INFO Hit x = 2120.49 y = -36.4184 z = -2051.86 detector = DummyHitDetector
-WriteCond            INFO Hit x = 2123.7 y = -42.0973 z = -2053.68 detector = DummyHitDetector
-WriteCond            INFO Hit x = 2126.91 y = -47.7762 z = -2055.07 detector = DummyHitDetector
-WriteCond            INFO Hit x = 2130.12 y = -53.4551 z = -2056.17 detector = DummyHitDetector
-WriteCond            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"
-AthenaEventLoopMgr   INFO   ===>>>  done processing event #21, run #0 2 events processed so far  <<<===
-AthenaEventLoopMgr   INFO   ===>>>  start processing event #22, run #0 2 events processed so far  <<<===
-WriteData           DEBUG in execute()
-WriteData            INFO EventInfo event: 22  run: 0
-WriteData            INFO registered all data
-WriteCond            INFO Hit x = 2201.23 y = -2.345 z = -1973.33 detector = DummyHitDetector
-WriteCond            INFO Hit x = 2204.44 y = -8.0239 z = -2105.27 detector = DummyHitDetector
-WriteCond            INFO Hit x = 2207.65 y = -13.7028 z = -2129.77 detector = DummyHitDetector
-WriteCond            INFO Hit x = 2210.86 y = -19.3817 z = -2140.09 detector = DummyHitDetector
-WriteCond            INFO Hit x = 2214.07 y = -25.0606 z = -2145.77 detector = DummyHitDetector
-WriteCond            INFO Hit x = 2217.28 y = -30.7395 z = -2149.38 detector = DummyHitDetector
-WriteCond            INFO Hit x = 2220.49 y = -36.4184 z = -2151.86 detector = DummyHitDetector
-WriteCond            INFO Hit x = 2223.7 y = -42.0973 z = -2153.68 detector = DummyHitDetector
-WriteCond            INFO Hit x = 2226.91 y = -47.7762 z = -2155.07 detector = DummyHitDetector
-WriteCond            INFO Hit x = 2230.12 y = -53.4551 z = -2156.17 detector = DummyHitDetector
-WriteCond            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"
-AthenaEventLoopMgr   INFO   ===>>>  done processing event #22, run #0 3 events processed so far  <<<===
-AthenaEventLoopMgr   INFO   ===>>>  start processing event #23, run #0 3 events processed so far  <<<===
-WriteData           DEBUG in execute()
-WriteData            INFO EventInfo event: 23  run: 0
-WriteData            INFO registered all data
-WriteCond            INFO Hit x = 2301.23 y = -2.345 z = -2073.33 detector = DummyHitDetector
-WriteCond            INFO Hit x = 2304.44 y = -8.0239 z = -2205.27 detector = DummyHitDetector
-WriteCond            INFO Hit x = 2307.65 y = -13.7028 z = -2229.77 detector = DummyHitDetector
-WriteCond            INFO Hit x = 2310.86 y = -19.3817 z = -2240.09 detector = DummyHitDetector
-WriteCond            INFO Hit x = 2314.07 y = -25.0606 z = -2245.77 detector = DummyHitDetector
-WriteCond            INFO Hit x = 2317.28 y = -30.7395 z = -2249.38 detector = DummyHitDetector
-WriteCond            INFO Hit x = 2320.49 y = -36.4184 z = -2251.86 detector = DummyHitDetector
-WriteCond            INFO Hit x = 2323.7 y = -42.0973 z = -2253.68 detector = DummyHitDetector
-WriteCond            INFO Hit x = 2326.91 y = -47.7762 z = -2255.07 detector = DummyHitDetector
-WriteCond            INFO Hit x = 2330.12 y = -53.4551 z = -2256.17 detector = DummyHitDetector
-WriteCond            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"
-AthenaEventLoopMgr   INFO   ===>>>  done processing event #23, run #0 4 events processed so far  <<<===
-AthenaEventLoopMgr   INFO   ===>>>  start processing event #24, run #0 4 events processed so far  <<<===
-WriteData           DEBUG in execute()
-WriteData            INFO EventInfo event: 24  run: 0
-WriteData            INFO registered all data
-WriteCond            INFO Hit x = 2401.23 y = -2.345 z = -2173.33 detector = DummyHitDetector
-WriteCond            INFO Hit x = 2404.44 y = -8.0239 z = -2305.27 detector = DummyHitDetector
-WriteCond            INFO Hit x = 2407.65 y = -13.7028 z = -2329.77 detector = DummyHitDetector
-WriteCond            INFO Hit x = 2410.86 y = -19.3817 z = -2340.09 detector = DummyHitDetector
-WriteCond            INFO Hit x = 2414.07 y = -25.0606 z = -2345.77 detector = DummyHitDetector
-WriteCond            INFO Hit x = 2417.28 y = -30.7395 z = -2349.38 detector = DummyHitDetector
-WriteCond            INFO Hit x = 2420.49 y = -36.4184 z = -2351.86 detector = DummyHitDetector
-WriteCond            INFO Hit x = 2423.7 y = -42.0973 z = -2353.68 detector = DummyHitDetector
-WriteCond            INFO Hit x = 2426.91 y = -47.7762 z = -2355.07 detector = DummyHitDetector
-WriteCond            INFO Hit x = 2430.12 y = -53.4551 z = -2356.17 detector = DummyHitDetector
-WriteCond            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"
-AthenaEventLoopMgr   INFO   ===>>>  done processing event #24, run #0 5 events processed so far  <<<===
-AthenaEventLoopMgr   INFO   ===>>>  start processing event #25, run #0 5 events processed so far  <<<===
-WriteData           DEBUG in execute()
-WriteData            INFO EventInfo event: 25  run: 0
-WriteData            INFO registered all data
-WriteCond            INFO Hit x = 2501.23 y = -2.345 z = -2273.33 detector = DummyHitDetector
-WriteCond            INFO Hit x = 2504.44 y = -8.0239 z = -2405.27 detector = DummyHitDetector
-WriteCond            INFO Hit x = 2507.65 y = -13.7028 z = -2429.77 detector = DummyHitDetector
-WriteCond            INFO Hit x = 2510.86 y = -19.3817 z = -2440.09 detector = DummyHitDetector
-WriteCond            INFO Hit x = 2514.07 y = -25.0606 z = -2445.77 detector = DummyHitDetector
-WriteCond            INFO Hit x = 2517.28 y = -30.7395 z = -2449.38 detector = DummyHitDetector
-WriteCond            INFO Hit x = 2520.49 y = -36.4184 z = -2451.86 detector = DummyHitDetector
-WriteCond            INFO Hit x = 2523.7 y = -42.0973 z = -2453.68 detector = DummyHitDetector
-WriteCond            INFO Hit x = 2526.91 y = -47.7762 z = -2455.07 detector = DummyHitDetector
-WriteCond            INFO Hit x = 2530.12 y = -53.4551 z = -2456.17 detector = DummyHitDetector
-WriteCond            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"
-AthenaEventLoopMgr   INFO   ===>>>  done processing event #25, run #0 6 events processed so far  <<<===
-AthenaEventLoopMgr   INFO   ===>>>  start processing event #26, run #0 6 events processed so far  <<<===
-WriteData           DEBUG in execute()
-WriteData            INFO EventInfo event: 26  run: 0
-WriteData            INFO registered all data
-WriteCond            INFO Hit x = 2601.23 y = -2.345 z = -2373.33 detector = DummyHitDetector
-WriteCond            INFO Hit x = 2604.44 y = -8.0239 z = -2505.27 detector = DummyHitDetector
-WriteCond            INFO Hit x = 2607.65 y = -13.7028 z = -2529.77 detector = DummyHitDetector
-WriteCond            INFO Hit x = 2610.86 y = -19.3817 z = -2540.09 detector = DummyHitDetector
-WriteCond            INFO Hit x = 2614.07 y = -25.0606 z = -2545.77 detector = DummyHitDetector
-WriteCond            INFO Hit x = 2617.28 y = -30.7395 z = -2549.38 detector = DummyHitDetector
-WriteCond            INFO Hit x = 2620.49 y = -36.4184 z = -2551.86 detector = DummyHitDetector
-WriteCond            INFO Hit x = 2623.7 y = -42.0973 z = -2553.68 detector = DummyHitDetector
-WriteCond            INFO Hit x = 2626.91 y = -47.7762 z = -2555.07 detector = DummyHitDetector
-WriteCond            INFO Hit x = 2630.12 y = -53.4551 z = -2556.17 detector = DummyHitDetector
-WriteCond            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"
-AthenaEventLoopMgr   INFO   ===>>>  done processing event #26, run #0 7 events processed so far  <<<===
-AthenaEventLoopMgr   INFO   ===>>>  start processing event #27, run #0 7 events processed so far  <<<===
-WriteData           DEBUG in execute()
-WriteData            INFO EventInfo event: 27  run: 0
-WriteData            INFO registered all data
-WriteCond            INFO Hit x = 2701.23 y = -2.345 z = -2473.33 detector = DummyHitDetector
-WriteCond            INFO Hit x = 2704.44 y = -8.0239 z = -2605.27 detector = DummyHitDetector
-WriteCond            INFO Hit x = 2707.65 y = -13.7028 z = -2629.77 detector = DummyHitDetector
-WriteCond            INFO Hit x = 2710.86 y = -19.3817 z = -2640.09 detector = DummyHitDetector
-WriteCond            INFO Hit x = 2714.07 y = -25.0606 z = -2645.77 detector = DummyHitDetector
-WriteCond            INFO Hit x = 2717.28 y = -30.7395 z = -2649.38 detector = DummyHitDetector
-WriteCond            INFO Hit x = 2720.49 y = -36.4184 z = -2651.86 detector = DummyHitDetector
-WriteCond            INFO Hit x = 2723.7 y = -42.0973 z = -2653.68 detector = DummyHitDetector
-WriteCond            INFO Hit x = 2726.91 y = -47.7762 z = -2655.07 detector = DummyHitDetector
-WriteCond            INFO Hit x = 2730.12 y = -53.4551 z = -2656.17 detector = DummyHitDetector
-WriteCond            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"
-AthenaEventLoopMgr   INFO   ===>>>  done processing event #27, run #0 8 events processed so far  <<<===
-AthenaEventLoopMgr   INFO   ===>>>  start processing event #28, run #0 8 events processed so far  <<<===
-WriteData           DEBUG in execute()
-WriteData            INFO EventInfo event: 28  run: 0
-WriteData            INFO registered all data
-WriteCond            INFO Hit x = 2801.23 y = -2.345 z = -2573.33 detector = DummyHitDetector
-WriteCond            INFO Hit x = 2804.44 y = -8.0239 z = -2705.27 detector = DummyHitDetector
-WriteCond            INFO Hit x = 2807.65 y = -13.7028 z = -2729.77 detector = DummyHitDetector
-WriteCond            INFO Hit x = 2810.86 y = -19.3817 z = -2740.09 detector = DummyHitDetector
-WriteCond            INFO Hit x = 2814.07 y = -25.0606 z = -2745.77 detector = DummyHitDetector
-WriteCond            INFO Hit x = 2817.28 y = -30.7395 z = -2749.38 detector = DummyHitDetector
-WriteCond            INFO Hit x = 2820.49 y = -36.4184 z = -2751.86 detector = DummyHitDetector
-WriteCond            INFO Hit x = 2823.7 y = -42.0973 z = -2753.68 detector = DummyHitDetector
-WriteCond            INFO Hit x = 2826.91 y = -47.7762 z = -2755.07 detector = DummyHitDetector
-WriteCond            INFO Hit x = 2830.12 y = -53.4551 z = -2756.17 detector = DummyHitDetector
-WriteCond            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"
-AthenaEventLoopMgr   INFO   ===>>>  done processing event #28, run #0 9 events processed so far  <<<===
-AthenaEventLoopMgr   INFO   ===>>>  start processing event #29, run #0 9 events processed so far  <<<===
-WriteData           DEBUG in execute()
-WriteData            INFO EventInfo event: 29  run: 0
-WriteData            INFO registered all data
-WriteCond            INFO Hit x = 2901.23 y = -2.345 z = -2673.33 detector = DummyHitDetector
-WriteCond            INFO Hit x = 2904.44 y = -8.0239 z = -2805.27 detector = DummyHitDetector
-WriteCond            INFO Hit x = 2907.65 y = -13.7028 z = -2829.77 detector = DummyHitDetector
-WriteCond            INFO Hit x = 2910.86 y = -19.3817 z = -2840.09 detector = DummyHitDetector
-WriteCond            INFO Hit x = 2914.07 y = -25.0606 z = -2845.77 detector = DummyHitDetector
-WriteCond            INFO Hit x = 2917.28 y = -30.7395 z = -2849.38 detector = DummyHitDetector
-WriteCond            INFO Hit x = 2920.49 y = -36.4184 z = -2851.86 detector = DummyHitDetector
-WriteCond            INFO Hit x = 2923.7 y = -42.0973 z = -2853.68 detector = DummyHitDetector
-WriteCond            INFO Hit x = 2926.91 y = -47.7762 z = -2855.07 detector = DummyHitDetector
-WriteCond            INFO Hit x = 2930.12 y = -53.4551 z = -2856.17 detector = DummyHitDetector
-WriteCond            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"
-AthenaEventLoopMgr   INFO   ===>>>  done processing event #29, run #0 10 events processed so far  <<<===
-AthenaEventLoopMgr   INFO   ===>>>  start processing event #30, run #0 10 events processed so far  <<<===
-WriteData           DEBUG in execute()
-WriteData            INFO EventInfo event: 30  run: 0
-WriteData            INFO registered all data
-WriteCond            INFO Hit x = 3001.23 y = -2.345 z = -2773.33 detector = DummyHitDetector
-WriteCond            INFO Hit x = 3004.44 y = -8.0239 z = -2905.27 detector = DummyHitDetector
-WriteCond            INFO Hit x = 3007.65 y = -13.7028 z = -2929.77 detector = DummyHitDetector
-WriteCond            INFO Hit x = 3010.86 y = -19.3817 z = -2940.09 detector = DummyHitDetector
-WriteCond            INFO Hit x = 3014.07 y = -25.0606 z = -2945.77 detector = DummyHitDetector
-WriteCond            INFO Hit x = 3017.28 y = -30.7395 z = -2949.38 detector = DummyHitDetector
-WriteCond            INFO Hit x = 3020.49 y = -36.4184 z = -2951.86 detector = DummyHitDetector
-WriteCond            INFO Hit x = 3023.7 y = -42.0973 z = -2953.68 detector = DummyHitDetector
-WriteCond            INFO Hit x = 3026.91 y = -47.7762 z = -2955.07 detector = DummyHitDetector
-WriteCond            INFO Hit x = 3030.12 y = -53.4551 z = -2956.17 detector = DummyHitDetector
-WriteCond            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"
-AthenaEventLoopMgr   INFO   ===>>>  done processing event #30, run #0 11 events processed so far  <<<===
-AthenaEventLoopMgr   INFO   ===>>>  start processing event #31, run #0 11 events processed so far  <<<===
-WriteData           DEBUG in execute()
-WriteData            INFO EventInfo event: 31  run: 0
-WriteData            INFO registered all data
-WriteCond            INFO Hit x = 3101.23 y = -2.345 z = -2873.33 detector = DummyHitDetector
-WriteCond            INFO Hit x = 3104.44 y = -8.0239 z = -3005.27 detector = DummyHitDetector
-WriteCond            INFO Hit x = 3107.65 y = -13.7028 z = -3029.77 detector = DummyHitDetector
-WriteCond            INFO Hit x = 3110.86 y = -19.3817 z = -3040.09 detector = DummyHitDetector
-WriteCond            INFO Hit x = 3114.07 y = -25.0606 z = -3045.77 detector = DummyHitDetector
-WriteCond            INFO Hit x = 3117.28 y = -30.7395 z = -3049.38 detector = DummyHitDetector
-WriteCond            INFO Hit x = 3120.49 y = -36.4184 z = -3051.86 detector = DummyHitDetector
-WriteCond            INFO Hit x = 3123.7 y = -42.0973 z = -3053.68 detector = DummyHitDetector
-WriteCond            INFO Hit x = 3126.91 y = -47.7762 z = -3055.07 detector = DummyHitDetector
-WriteCond            INFO Hit x = 3130.12 y = -53.4551 z = -3056.17 detector = DummyHitDetector
-WriteCond            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"
-AthenaEventLoopMgr   INFO   ===>>>  done processing event #31, run #0 12 events processed so far  <<<===
-AthenaEventLoopMgr   INFO   ===>>>  start processing event #32, run #0 12 events processed so far  <<<===
-WriteData           DEBUG in execute()
-WriteData            INFO EventInfo event: 32  run: 0
-WriteData            INFO registered all data
-WriteCond            INFO Hit x = 3201.23 y = -2.345 z = -2973.33 detector = DummyHitDetector
-WriteCond            INFO Hit x = 3204.44 y = -8.0239 z = -3105.27 detector = DummyHitDetector
-WriteCond            INFO Hit x = 3207.65 y = -13.7028 z = -3129.77 detector = DummyHitDetector
-WriteCond            INFO Hit x = 3210.86 y = -19.3817 z = -3140.09 detector = DummyHitDetector
-WriteCond            INFO Hit x = 3214.07 y = -25.0606 z = -3145.77 detector = DummyHitDetector
-WriteCond            INFO Hit x = 3217.28 y = -30.7395 z = -3149.38 detector = DummyHitDetector
-WriteCond            INFO Hit x = 3220.49 y = -36.4184 z = -3151.86 detector = DummyHitDetector
-WriteCond            INFO Hit x = 3223.7 y = -42.0973 z = -3153.68 detector = DummyHitDetector
-WriteCond            INFO Hit x = 3226.91 y = -47.7762 z = -3155.07 detector = DummyHitDetector
-WriteCond            INFO Hit x = 3230.12 y = -53.4551 z = -3156.17 detector = DummyHitDetector
-WriteCond            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"
-AthenaEventLoopMgr   INFO   ===>>>  done processing event #32, run #0 13 events processed so far  <<<===
-AthenaEventLoopMgr   INFO   ===>>>  start processing event #33, run #0 13 events processed so far  <<<===
-WriteData           DEBUG in execute()
-WriteData            INFO EventInfo event: 33  run: 0
-WriteData            INFO registered all data
-WriteCond            INFO Hit x = 3301.23 y = -2.345 z = -3073.33 detector = DummyHitDetector
-WriteCond            INFO Hit x = 3304.44 y = -8.0239 z = -3205.27 detector = DummyHitDetector
-WriteCond            INFO Hit x = 3307.65 y = -13.7028 z = -3229.77 detector = DummyHitDetector
-WriteCond            INFO Hit x = 3310.86 y = -19.3817 z = -3240.09 detector = DummyHitDetector
-WriteCond            INFO Hit x = 3314.07 y = -25.0606 z = -3245.77 detector = DummyHitDetector
-WriteCond            INFO Hit x = 3317.28 y = -30.7395 z = -3249.38 detector = DummyHitDetector
-WriteCond            INFO Hit x = 3320.49 y = -36.4184 z = -3251.86 detector = DummyHitDetector
-WriteCond            INFO Hit x = 3323.7 y = -42.0973 z = -3253.68 detector = DummyHitDetector
-WriteCond            INFO Hit x = 3326.91 y = -47.7762 z = -3255.07 detector = DummyHitDetector
-WriteCond            INFO Hit x = 3330.12 y = -53.4551 z = -3256.17 detector = DummyHitDetector
-WriteCond            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"
-AthenaEventLoopMgr   INFO   ===>>>  done processing event #33, run #0 14 events processed so far  <<<===
-AthenaEventLoopMgr   INFO   ===>>>  start processing event #34, run #0 14 events processed so far  <<<===
-WriteData           DEBUG in execute()
-WriteData            INFO EventInfo event: 34  run: 0
-WriteData            INFO registered all data
-WriteCond            INFO Hit x = 3401.23 y = -2.345 z = -3173.33 detector = DummyHitDetector
-WriteCond            INFO Hit x = 3404.44 y = -8.0239 z = -3305.27 detector = DummyHitDetector
-WriteCond            INFO Hit x = 3407.65 y = -13.7028 z = -3329.77 detector = DummyHitDetector
-WriteCond            INFO Hit x = 3410.86 y = -19.3817 z = -3340.09 detector = DummyHitDetector
-WriteCond            INFO Hit x = 3414.07 y = -25.0606 z = -3345.77 detector = DummyHitDetector
-WriteCond            INFO Hit x = 3417.28 y = -30.7395 z = -3349.38 detector = DummyHitDetector
-WriteCond            INFO Hit x = 3420.49 y = -36.4184 z = -3351.86 detector = DummyHitDetector
-WriteCond            INFO Hit x = 3423.7 y = -42.0973 z = -3353.68 detector = DummyHitDetector
-WriteCond            INFO Hit x = 3426.91 y = -47.7762 z = -3355.07 detector = DummyHitDetector
-WriteCond            INFO Hit x = 3430.12 y = -53.4551 z = -3356.17 detector = DummyHitDetector
-WriteCond            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"
-AthenaEventLoopMgr   INFO   ===>>>  done processing event #34, run #0 15 events processed so far  <<<===
-AthenaEventLoopMgr   INFO   ===>>>  start processing event #35, run #0 15 events processed so far  <<<===
-WriteData           DEBUG in execute()
-WriteData            INFO EventInfo event: 35  run: 0
-WriteData            INFO registered all data
-WriteCond            INFO Hit x = 3501.23 y = -2.345 z = -3273.33 detector = DummyHitDetector
-WriteCond            INFO Hit x = 3504.44 y = -8.0239 z = -3405.27 detector = DummyHitDetector
-WriteCond            INFO Hit x = 3507.65 y = -13.7028 z = -3429.77 detector = DummyHitDetector
-WriteCond            INFO Hit x = 3510.86 y = -19.3817 z = -3440.09 detector = DummyHitDetector
-WriteCond            INFO Hit x = 3514.07 y = -25.0606 z = -3445.77 detector = DummyHitDetector
-WriteCond            INFO Hit x = 3517.28 y = -30.7395 z = -3449.38 detector = DummyHitDetector
-WriteCond            INFO Hit x = 3520.49 y = -36.4184 z = -3451.86 detector = DummyHitDetector
-WriteCond            INFO Hit x = 3523.7 y = -42.0973 z = -3453.68 detector = DummyHitDetector
-WriteCond            INFO Hit x = 3526.91 y = -47.7762 z = -3455.07 detector = DummyHitDetector
-WriteCond            INFO Hit x = 3530.12 y = -53.4551 z = -3456.17 detector = DummyHitDetector
-WriteCond            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"
-AthenaEventLoopMgr   INFO   ===>>>  done processing event #35, run #0 16 events processed so far  <<<===
-AthenaEventLoopMgr   INFO   ===>>>  start processing event #36, run #0 16 events processed so far  <<<===
-WriteData           DEBUG in execute()
-WriteData            INFO EventInfo event: 36  run: 0
-WriteData            INFO registered all data
-WriteCond            INFO Hit x = 3601.23 y = -2.345 z = -3373.33 detector = DummyHitDetector
-WriteCond            INFO Hit x = 3604.44 y = -8.0239 z = -3505.27 detector = DummyHitDetector
-WriteCond            INFO Hit x = 3607.65 y = -13.7028 z = -3529.77 detector = DummyHitDetector
-WriteCond            INFO Hit x = 3610.86 y = -19.3817 z = -3540.09 detector = DummyHitDetector
-WriteCond            INFO Hit x = 3614.07 y = -25.0606 z = -3545.77 detector = DummyHitDetector
-WriteCond            INFO Hit x = 3617.28 y = -30.7395 z = -3549.38 detector = DummyHitDetector
-WriteCond            INFO Hit x = 3620.49 y = -36.4184 z = -3551.86 detector = DummyHitDetector
-WriteCond            INFO Hit x = 3623.7 y = -42.0973 z = -3553.68 detector = DummyHitDetector
-WriteCond            INFO Hit x = 3626.91 y = -47.7762 z = -3555.07 detector = DummyHitDetector
-WriteCond            INFO Hit x = 3630.12 y = -53.4551 z = -3556.17 detector = DummyHitDetector
-WriteCond            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"
-AthenaEventLoopMgr   INFO   ===>>>  done processing event #36, run #0 17 events processed so far  <<<===
-AthenaEventLoopMgr   INFO   ===>>>  start processing event #37, run #0 17 events processed so far  <<<===
-WriteData           DEBUG in execute()
-WriteData            INFO EventInfo event: 37  run: 0
-WriteData            INFO registered all data
-WriteCond            INFO Hit x = 3701.23 y = -2.345 z = -3473.33 detector = DummyHitDetector
-WriteCond            INFO Hit x = 3704.44 y = -8.0239 z = -3605.27 detector = DummyHitDetector
-WriteCond            INFO Hit x = 3707.65 y = -13.7028 z = -3629.77 detector = DummyHitDetector
-WriteCond            INFO Hit x = 3710.86 y = -19.3817 z = -3640.09 detector = DummyHitDetector
-WriteCond            INFO Hit x = 3714.07 y = -25.0606 z = -3645.77 detector = DummyHitDetector
-WriteCond            INFO Hit x = 3717.28 y = -30.7395 z = -3649.38 detector = DummyHitDetector
-WriteCond            INFO Hit x = 3720.49 y = -36.4184 z = -3651.86 detector = DummyHitDetector
-WriteCond            INFO Hit x = 3723.7 y = -42.0973 z = -3653.68 detector = DummyHitDetector
-WriteCond            INFO Hit x = 3726.91 y = -47.7762 z = -3655.07 detector = DummyHitDetector
-WriteCond            INFO Hit x = 3730.12 y = -53.4551 z = -3656.17 detector = DummyHitDetector
-WriteCond            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"
-AthenaEventLoopMgr   INFO   ===>>>  done processing event #37, run #0 18 events processed so far  <<<===
-AthenaEventLoopMgr   INFO   ===>>>  start processing event #38, run #0 18 events processed so far  <<<===
-WriteData           DEBUG in execute()
-WriteData            INFO EventInfo event: 38  run: 0
-WriteData            INFO registered all data
-WriteCond            INFO Hit x = 3801.23 y = -2.345 z = -3573.33 detector = DummyHitDetector
-WriteCond            INFO Hit x = 3804.44 y = -8.0239 z = -3705.27 detector = DummyHitDetector
-WriteCond            INFO Hit x = 3807.65 y = -13.7028 z = -3729.77 detector = DummyHitDetector
-WriteCond            INFO Hit x = 3810.86 y = -19.3817 z = -3740.09 detector = DummyHitDetector
-WriteCond            INFO Hit x = 3814.07 y = -25.0606 z = -3745.77 detector = DummyHitDetector
-WriteCond            INFO Hit x = 3817.28 y = -30.7395 z = -3749.38 detector = DummyHitDetector
-WriteCond            INFO Hit x = 3820.49 y = -36.4184 z = -3751.86 detector = DummyHitDetector
-WriteCond            INFO Hit x = 3823.7 y = -42.0973 z = -3753.68 detector = DummyHitDetector
-WriteCond            INFO Hit x = 3826.91 y = -47.7762 z = -3755.07 detector = DummyHitDetector
-WriteCond            INFO Hit x = 3830.12 y = -53.4551 z = -3756.17 detector = DummyHitDetector
-WriteCond            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"
-AthenaEventLoopMgr   INFO   ===>>>  done processing event #38, run #0 19 events processed so far  <<<===
-AthenaEventLoopMgr   INFO   ===>>>  start processing event #39, run #0 19 events processed so far  <<<===
-WriteData           DEBUG in execute()
-WriteData            INFO EventInfo event: 39  run: 0
-WriteData            INFO registered all data
-WriteCond            INFO Hit x = 3901.23 y = -2.345 z = -3673.33 detector = DummyHitDetector
-WriteCond            INFO Hit x = 3904.44 y = -8.0239 z = -3805.27 detector = DummyHitDetector
-WriteCond            INFO Hit x = 3907.65 y = -13.7028 z = -3829.77 detector = DummyHitDetector
-WriteCond            INFO Hit x = 3910.86 y = -19.3817 z = -3840.09 detector = DummyHitDetector
-WriteCond            INFO Hit x = 3914.07 y = -25.0606 z = -3845.77 detector = DummyHitDetector
-WriteCond            INFO Hit x = 3917.28 y = -30.7395 z = -3849.38 detector = DummyHitDetector
-WriteCond            INFO Hit x = 3920.49 y = -36.4184 z = -3851.86 detector = DummyHitDetector
-WriteCond            INFO Hit x = 3923.7 y = -42.0973 z = -3853.68 detector = DummyHitDetector
-WriteCond            INFO Hit x = 3926.91 y = -47.7762 z = -3855.07 detector = DummyHitDetector
-WriteCond            INFO Hit x = 3930.12 y = -53.4551 z = -3856.17 detector = DummyHitDetector
-WriteCond            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"
-AthenaEventLoopMgr   INFO   ===>>>  done processing event #39, run #0 20 events processed so far  <<<===
-WriteCond            INFO in finalize()
-WriteCond            INFO Pedestal x = 593136 y = -5580.01 z = -575208 string = <..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o>
-Stream1             DEBUG handle() incident type: MetaDataStop
-Stream1             DEBUG addItemObjects(9102,"PedestalWriteData") called
-Stream1             DEBUG            Key:PedestalWriteData
-Stream1             DEBUG  Added object 9102,"PedestalWriteData"
-Stream1             DEBUG addItemObjects(167728019,"Stream1") called
-Stream1             DEBUG            Key:Stream1
-Stream1             DEBUG  Added object 167728019,"Stream1"
-Stream1             DEBUG addItemObjects(1316383046,"*") called
-Stream1             DEBUG            Key:*
-SimplePoolFile5...  DEBUG --> Access   DbContainer  CREA/UPDA [ROOT_Tree] MetaData(ExampleHitContainer_p1/PedestalWriteData)
-MetaData(Exampl...  DEBUG Opening
-MetaData(Exampl...  DEBUG    attributes# = 1
-MetaData(Exampl...  DEBUG Branch container 'ExampleHitContainer_p1_PedestalWriteData'
-MetaData(Exampl...  DEBUG Opened container MetaData(ExampleHitContainer_p1/PedestalWriteData) of type ROOT_Tree
-SimplePoolFile5...  DEBUG --> Access   DbContainer  CREA/UPDA [ROOT_Tree] MetaData(EventStreamInfo_p3/Stream1)
-MetaData(EventS...  DEBUG Opening
-MetaData(EventS...  DEBUG    attributes# = 1
-MetaData(EventS...  DEBUG Branch container 'EventStreamInfo_p3_Stream1'
-MetaData(EventS...  DEBUG Opened container MetaData(EventStreamInfo_p3/Stream1) of type ROOT_Tree
-SimplePoolFile5...  DEBUG --> Access   DbContainer  CREA/UPDA [ROOT_Tree] MetaDataHdrForm(DataHeaderForm)
-MetaDataHdrForm...  DEBUG Opening
-MetaDataHdrForm...  DEBUG    attributes# = 1
-MetaDataHdrForm...  DEBUG Branch container 'DataHeaderForm'
-MetaDataHdrForm...  DEBUG Opened container MetaDataHdrForm(DataHeaderForm) of type ROOT_Tree
-SimplePoolFile5...  DEBUG --> Access   DbContainer  CREA/UPDA [ROOT_Tree] MetaDataHdr(DataHeader)
-MetaDataHdr(Dat...  DEBUG Opening
-MetaDataHdr(Dat...  DEBUG    attributes# = 1
-MetaDataHdr(Dat...  DEBUG Branch container 'DataHeader'
-MetaDataHdr(Dat...  DEBUG Opened container MetaDataHdr(DataHeader) of type ROOT_Tree
-Stream1              INFO Records written: 21
-Stream1             DEBUG Leaving handle
-Domain[ROOT_All]     INFO >   Deaccess DbDomain     READ      [ROOT_All] 
-Domain[ROOT_All]     INFO ->  Deaccess DbDatabase   UPDATE    [ROOT_All] ????
-Domain[ROOT_All]     INFO >   Deaccess DbDomain     UPDATE    [ROOT_All] 
-ApplicationMgr       INFO Application Manager Stopped successfully
-IncidentProcAlg1     INFO Finalize
-WriteData            INFO in finalize()
-IncidentProcAlg2     INFO Finalize
-Stream1             DEBUG finalize: Optimize output
-Stream1             DEBUG finalize: end optimize output
-EventSelector        INFO finalize
-DecisionSvc          INFO Finalized successfully.
-AthenaPoolCnvSvc    DEBUG releasing all workers
-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 ****************************************************************************************************
-commitOutput         INFO Time User   : Tot=    0 [us] Ave/Min/Max=    0(+-    0)/    0/    0 [us] #= 21
-fRep_ALL             INFO Time User   : Tot=    0 [us] Ave/Min/Max=    0(+-    0)/    0/    0 [us] #= 83
-cRepR_ALL            INFO Time User   : Tot=   10 [ms] Ave/Min/Max=0.0806(+-0.894)/    0/   10 [ms] #=124
-cRep_ALL             INFO Time User   : Tot=   50 [ms] Ave/Min/Max=0.602(+- 2.84)/    0/   20 [ms] #= 83
-ChronoStatSvc        INFO Time User   : Tot= 0.91  [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"
diff --git a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_AMetaJobOptions.py b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_AMetaJobOptions.py
deleted file mode 100755
index e5dead0f43bbc3957561e45da8c07a48d62015c0..0000000000000000000000000000000000000000
--- a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_AMetaJobOptions.py
+++ /dev/null
@@ -1,77 +0,0 @@
-## @file AthenaPoolExample_WriteJobOptions.py
-## @brief Example job options file to illustrate how to write event data to Pool.
-## @author Peter van Gemmeren <gemmeren@anl.gov>
-## $Id: AthenaPoolExample_AMetaJobOptions.py,v 1.2 2008-11-20 15:29:01 gemmeren Exp $
-###############################################################
-#
-# This Job option:
-# ----------------
-# 1. Writes a SimplePoolFile5.root file with ExampleHit
-#    using WriteData algorithm
-# ------------------------------------------------------------
-# Expected output file (20 events):
-# -rw-r--r--    1 gemmeren zp          36266 Dec  8 19:08 SimplePoolFile5.root
-#
-#==============================================================
-import AthenaCommon.AtlasUnixGeneratorJob
-
-## get a handle on the default top-level algorithm sequence
-from AthenaCommon.AlgSequence import AlgSequence
-topSequence = AlgSequence()
-
-## get a handle on the ServiceManager
-from AthenaCommon.AppMgr import ServiceMgr as svcMgr
-
-#--------------------------------------------------------------
-# Event related parameters
-#--------------------------------------------------------------
-from AthenaCommon.AppMgr import theApp
-theApp.EvtMax = 20
-
-#--------------------------------------------------------------
-# Load POOL support
-#--------------------------------------------------------------
-import AthenaPoolCnvSvc.WriteAthenaPool
-
-#Set first event number to 20 (to continue previous production)
-svcMgr.EventSelector.FirstEvent = 20;
-
-#Explicitly specify the output file catalog
-svcMgr.PoolSvc.WriteCatalog = "xmlcatalog_file:Catalog2.xml"
-#Open file in "update" mode
-svcMgr.PoolSvc.FileOpen = "update";
-
-svcMgr.AthenaPoolCnvSvc.CommitInterval = 10;
-
-from AthenaPoolCnvSvc.WriteAthenaPool import AthenaPoolOutputStream
-Stream1 = AthenaPoolOutputStream( "Stream1", "ROOTTREE:SimplePoolFile5.root", noTag=True )
-Stream1.ItemList += [ "ExampleHitContainer#MyHits" ]
-Stream1.MetadataItemList += [ "ExampleHitContainer#PedestalWriteData" ]
-Stream1.ProvideDef = True
-
-#--------------------------------------------------------------
-# Private Application Configuration options
-#--------------------------------------------------------------
-# Load "user algorithm" top algorithms to be run, and the libraries that house them
-from AthenaPoolExampleAlgorithms.AthenaPoolExampleAlgorithmsConf import AthPoolEx__WriteData,AthPoolEx__WriteCond
-topSequence += AthPoolEx__WriteData( "WriteData" )
-from StoreGate.StoreGateConf import StoreGateSvc
-topSequence += AthPoolEx__WriteCond( "WriteCond", DetStore = StoreGateSvc( "MetaDataStore" ),
-                                     ConditionName = "PedestalWriteData"
-                                     )
-
-#--------------------------------------------------------------
-# Set output level threshold (2=DEBUG, 3=INFO, 4=WARNING, 5=ERROR, 6=FATAL)
-#--------------------------------------------------------------
-svcMgr.MessageSvc.OutputLevel = 3
-svcMgr.PoolSvc.OutputLevel = 2 
-svcMgr.AthenaPoolCnvSvc.OutputLevel = 2
-topSequence.WriteData.OutputLevel = 2
-Stream1.OutputLevel = 2
-Stream1.WritingTool.OutputLevel = 3
-Stream1.HelperTools[0].OutputLevel = 3
-
-#
-# End of job options file
-#
-###############################################################
diff --git a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_Append.ref b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_Append.ref
index 43c1f3687bdf5d8c07e8430bc6cd96454e399b95..d200cf4e57f449e0e5871cc98c5979262c687916 100644
--- a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_Append.ref
+++ b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_Append.ref
@@ -1,79 +1,38 @@
-Mon Oct 30 16:28:17 CET 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_AppendJobOptions.py"
-Py:ConfigurableDb    INFO Read module info for 5436 configurables from 58 genConfDb files
-Py:ConfigurableDb    INFO No duplicates have been found: that's good !
 Athena               INFO including file "AthenaCommon/runbatch.py"
-[?1034hApplicationMgr       INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0
-ApplicationMgr    SUCCESS 
-====================================================================================================================================
-                                                   Welcome to ApplicationMgr (GaudiCoreSvc v29r0)
-                                          running on lxplus012.cern.ch on Mon Oct 30 16:28:24 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 2398 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
-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()
-Stream1.Stream1...  DEBUG Property update for OutputLevel : new value = 2
-ClassIDSvc           INFO  getRegistryEntries: read 1763 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 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-local.cern.ch:8000/atlr)(serverurl=http://atlasfrontier-ai.cern.ch:8000/atlr)(serverurl=http://lcgft-atlas.gridpp.rl.ac.uk:3128/frontierATLAS)(serverurl=http://ccfrontier.in2p3.fr:23128/ccin2p3-AtlasFrontier)(proxyurl=http://ca-proxy.cern.ch:3128)(proxyurl=http://ca-proxy-meyrin.cern.ch:3128)(proxyurl=http://ca-proxy-wigner.cern.ch:3128) will be considered for COOL data
-DBReplicaSvc         INFO Read replica configuration from /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2017-10-29T2259/Athena/22.0.0/InstallArea/x86_64-slc6-gcc62-opt/share/dbreplica.config
-DBReplicaSvc         INFO Total of 10 servers found for host lxplus012.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 
 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] 
 Stream1             DEBUG Found StoreGateSvc store.
 Stream1             DEBUG Found MetaDataStore store.
-OutputStreamSeq...   INFO Initializing OutputStreamSequencerSvc - package version AthenaServices-00-00-00
-ClassIDSvc           INFO  getRegistryEntries: read 1332 CLIDRegistry entries for module ALL
-Stream1.Stream1...   INFO Initializing Stream1.Stream1Tool - package version OutputStreamAthenaPool-00-00-00
-Stream1.Stream1...   INFO streamProperty ProcessingTag = Stream1
-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: SimplePoolFile2.root
-Stream1              INFO I/O reinitialization...
+Stream1              INFO ../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
-RegStream1.RegS...  DEBUG Property update for OutputLevel : new value = 2
-RegStream1          DEBUG Property update for OutputLevel : new value = 2
+Stream1             DEBUG Adding private ToolHandle tool Stream1.Stream1Tool (AthenaOutputStreamTool)
 RegStream1          DEBUG In initialize 
 RegStream1          DEBUG Found IDecisionSvc.
 DecisionSvc          INFO Inserting stream: RegStream1 with no Algs
@@ -86,17 +45,13 @@ RegStream1          DEBUG Added MetaDataStop listener
 RegStream1          DEBUG  Not class requested by Tool, skipping (40774349,"RunEventTag") 
 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
 HistogramPersis...WARNING Histograms saving not required.
 EventSelector        INFO  Enter McEventSelector Initialization 
 AthenaEventLoopMgr   INFO Setup EventSelector service EventSelector
 ApplicationMgr       INFO Application Manager Initialized successfully
 ApplicationMgr       INFO Application Manager Started successfully
 EventPersistenc...   INFO Added successfully Conversion service:McCnvSvc
-ClassIDSvc           INFO  getRegistryEntries: read 108 CLIDRegistry entries for module ALL
 AthenaEventLoopMgr   INFO   ===>>>  start of run 2    <<<===
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #20, run #2 0 events processed so far  <<<===
 WriteData           DEBUG in execute()
@@ -104,13 +59,10 @@ WriteData            INFO EventInfo event: 20  run: 2
 WriteData            INFO registered all data
 WriteTag             INFO EventInfo event: 20  run: 2
 WriteTag             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   UPDATE    [ROOT_All] ????
 Domain[ROOT_All]     INFO                           SimplePoolFile2.root
 SimplePoolFile2...  DEBUG --> Access   DbContainer  CREA/UPDA [ROOT_All] ##Shapes
 ##Shapes            DEBUG Opening
@@ -149,15 +101,13 @@ SimplePoolFile2...  DEBUG --->Reading Assoc:????/POOLCollectionTree(EventNumber)
 SimplePoolFile2...  DEBUG ---->ClassID:????
 SimplePoolFile2...  DEBUG --->Reading Assoc:????/POOLCollectionTree(MagicNumber) [202]  (9 , ffffffff)
 SimplePoolFile2...  DEBUG ---->ClassID:????
-SimplePoolFile2...  DEBUG --->Reading Assoc:????/POOLContainer(basic/DataHeader) [202]  (a , ffffffff)
+SimplePoolFile2...  DEBUG --->Reading Assoc:????/MetaData(EventStreamInfo_p3/Stream2) [202]  (a , ffffffff)
 SimplePoolFile2...  DEBUG ---->ClassID:????
-SimplePoolFile2...  DEBUG --->Reading Assoc:????/MetaData(EventStreamInfo_p3/Stream2) [202]  (b , ffffffff)
+SimplePoolFile2...  DEBUG --->Reading Assoc:????/MetaDataHdrForm(DataHeaderForm) [202]  (b , ffffffff)
 SimplePoolFile2...  DEBUG ---->ClassID:????
-SimplePoolFile2...  DEBUG --->Reading Assoc:????/MetaDataHdrForm(DataHeaderForm) [202]  (c , ffffffff)
+SimplePoolFile2...  DEBUG --->Reading Assoc:????/MetaDataHdr(DataHeader) [202]  (c , ffffffff)
 SimplePoolFile2...  DEBUG ---->ClassID:????
-SimplePoolFile2...  DEBUG --->Reading Assoc:????/MetaDataHdr(DataHeader) [202]  (d , ffffffff)
-SimplePoolFile2...  DEBUG ---->ClassID:????
-##Links             DEBUG No objects passing selection criteria... Container has 12 Entries in total.
+##Links             DEBUG No objects passing selection criteria... Container has 11 Entries in total.
 SimplePoolFile2...  DEBUG --> Access   DbContainer  CREA/UPDA [ROOT_All] ##Params
 ##Params            DEBUG Opening
 ##Params            DEBUG    attributes# = 1
@@ -168,7 +118,6 @@ SimplePoolFile2...  DEBUG --->Reading Param:POOL_VSN=[1.1]
 SimplePoolFile2...  DEBUG --->Reading Param:FORMAT_VSN=[1.1]
 ##Params            DEBUG No objects passing selection criteria... Container has 4 Entries in total.
 AthenaPoolCnvSvc    DEBUG setAttribute CONTAINER_SPLITLEVEL to 99 for db: SimplePoolFile2.root and cont: TTree=POOLContainerForm(DataHeaderForm)
-ClassIDSvc           INFO  getRegistryEntries: read 38 CLIDRegistry entries for module ALL
 Stream1             DEBUG addItemObjects(2101,"*") called
 Stream1             DEBUG            Key:*
 Stream1             DEBUG  Added object 2101,"McEventInfo"
@@ -209,12 +158,6 @@ POOLCollectionT...  DEBUG Opening
 POOLCollectionT...  DEBUG    attributes# = 1
 POOLCollectionT...  DEBUG Branch container 'MagicNumber'
 POOLCollectionT...  DEBUG Opened container POOLCollectionTree(MagicNumber) of type ROOT_Tree
-ClassIDSvc           INFO  getRegistryEntries: read 13 CLIDRegistry entries for module ALL
-SimplePoolFile2...  DEBUG --> Access   DbContainer  CREA/UPDA [ROOT_Tree] POOLContainer(basic/DataHeader)
-POOLContainer(b...  DEBUG Opening
-POOLContainer(b...  DEBUG    attributes# = 1
-POOLContainer(b...  DEBUG Branch container 'basic_DataHeader'
-POOLContainer(b...  DEBUG Opened container POOLContainer(basic/DataHeader) of type ROOT_Tree
 AthenaPoolCnvSvc    DEBUG setAttribute BRANCH_BASKET_SIZE to 256000 for db: SimplePoolFile2.root and cont: POOLContainer(DataHeader)
 AthenaPoolCnvSvc    DEBUG setAttribute BRANCH_BASKET_SIZE to 1024000 for db: SimplePoolFile2.root and cont: POOLContainerForm(DataHeaderForm)
 RegStream1          DEBUG RegistrationStream execute
@@ -598,7 +541,7 @@ MetaData(EventS...  DEBUG Opening
 MetaData(EventS...  DEBUG    attributes# = 1
 MetaData(EventS...  DEBUG Branch container 'EventStreamInfo_p3_Stream1'
 MetaData(EventS...  DEBUG Opened container MetaData(EventStreamInfo_p3/Stream1) of type ROOT_Tree
-SimplePoolFile2...  DEBUG --->Adding Assoc :????/MetaData(EventStreamInfo_p3/Stream1) [202]  (e , ffffffff)
+SimplePoolFile2...  DEBUG --->Adding Assoc :????/MetaData(EventStreamInfo_p3/Stream1) [202]  (d , ffffffff)
 SimplePoolFile2...  DEBUG ---->ClassID:????
 SimplePoolFile2...  DEBUG --> Access   DbContainer  CREA/UPDA [ROOT_Tree] MetaDataHdrForm(DataHeaderForm)
 MetaDataHdrForm...  DEBUG Opening
@@ -615,17 +558,13 @@ Stream1             DEBUG Leaving handle
 RegStream1          DEBUG handle() incident type: MetaDataStop
 RegStream1.TagTool   INFO Collection Events output: 20
 Domain[ROOT_All]     INFO >   Deaccess DbDomain     READ      [ROOT_All] 
-Domain[ROOT_All]     INFO ->  Deaccess DbDatabase   UPDATE    [ROOT_All] ????
 Domain[ROOT_All]     INFO >   Deaccess DbDomain     UPDATE    [ROOT_All] 
 ApplicationMgr       INFO Application Manager Stopped successfully
-IncidentProcAlg1     INFO Finalize
 WriteData            INFO in finalize()
 WriteTag             INFO in finalize()
 Stream1             DEBUG finalize: Optimize output
 Stream1             DEBUG finalize: end optimize output
 RegStream1          DEBUG In finalize
-WriteData           DEBUG Calling destructor
-IncidentProcAlg2     INFO Finalize
 EventSelector        INFO finalize
 AthenaPoolCnvSvc    DEBUG releasing all workers
 DecisionSvc          INFO Finalized successfully.
@@ -634,11 +573,6 @@ ToolSvc              INFO Removing all tools created by ToolSvc
 *****Chrono*****     INFO ****************************************************************************************************
 *****Chrono*****     INFO  The Final CPU consumption ( Chrono ) Table (ordered)
 *****Chrono*****     INFO ****************************************************************************************************
-commitOutput         INFO Time User   : Tot=    0 [us] Ave/Min/Max=    0(+-    0)/    0/    0 [us] #= 21
-fRep_ALL             INFO Time User   : Tot=    0 [us] Ave/Min/Max=    0(+-    0)/    0/    0 [us] #= 62
-cRepR_ALL            INFO Time User   : Tot=   30 [ms] Ave/Min/Max=0.164(+- 1.64)/    0/   20 [ms] #=183
-cRep_ALL             INFO Time User   : Tot=   60 [ms] Ave/Min/Max=0.968(+- 4.29)/    0/   30 [ms] #= 62
-ChronoStatSvc        INFO Time User   : Tot= 0.86  [s]                                             #=  1
 *****Chrono*****     INFO ****************************************************************************************************
 ChronoStatSvc.f...   INFO  Service finalized successfully 
 ApplicationMgr       INFO Application Manager Finalized successfully
diff --git a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_AppendFast.ref b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_AppendFast.ref
deleted file mode 100644
index 2222cd69c2afefafd332f5ad54c5e3c6ac5a062c..0000000000000000000000000000000000000000
--- a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_AppendFast.ref
+++ /dev/null
@@ -1,658 +0,0 @@
-Mon Oct 30 17:09:26 CET 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_AppendFastJobOptions.py"
-Py:ConfigurableDb    INFO Read module info for 5436 configurables from 58 genConfDb files
-Py:ConfigurableDb    INFO No duplicates have been found: that's good !
-Athena               INFO including file "AthenaCommon/runbatch.py"
-[?1034hApplicationMgr       INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0
-ApplicationMgr    SUCCESS 
-====================================================================================================================================
-                                                   Welcome to ApplicationMgr (GaudiCoreSvc v29r0)
-                                          running on lxplus012.cern.ch on Mon Oct 30 17:09:34 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 2398 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
-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()
-Stream2.Stream2...  DEBUG Property update for OutputLevel : new value = 2
-ClassIDSvc           INFO  getRegistryEntries: read 1763 CLIDRegistry entries for module ALL
-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
-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 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-local.cern.ch:8000/atlr)(serverurl=http://atlasfrontier-ai.cern.ch:8000/atlr)(serverurl=http://lcgft-atlas.gridpp.rl.ac.uk:3128/frontierATLAS)(serverurl=http://ccfrontier.in2p3.fr:23128/ccin2p3-AtlasFrontier)(proxyurl=http://ca-proxy.cern.ch:3128)(proxyurl=http://ca-proxy-meyrin.cern.ch:3128)(proxyurl=http://ca-proxy-wigner.cern.ch:3128) will be considered for COOL data
-DBReplicaSvc         INFO Read replica configuration from /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2017-10-29T2259/Athena/22.0.0/InstallArea/x86_64-slc6-gcc62-opt/share/dbreplica.config
-DBReplicaSvc         INFO Total of 10 servers found for host lxplus012.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 
-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] 
-Stream2             DEBUG Found StoreGateSvc store.
-Stream2             DEBUG Found MetaDataStore store.
-OutputStreamSeq...   INFO Initializing OutputStreamSequencerSvc - package version AthenaServices-00-00-00
-ClassIDSvc           INFO  getRegistryEntries: read 1332 CLIDRegistry entries for module ALL
-Stream2.Stream2...   INFO Initializing Stream2.Stream2Tool - package version OutputStreamAthenaPool-00-00-00
-Stream2.Stream2...   INFO streamProperty ProcessingTag = Stream2
-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: SimplePoolFileB.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
-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          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
-HistogramPersis...WARNING Histograms saving not required.
-EventSelector        INFO  Enter McEventSelector Initialization 
-AthenaEventLoopMgr   INFO Setup EventSelector service EventSelector
-ApplicationMgr       INFO Application Manager Initialized successfully
-ApplicationMgr       INFO Application Manager Started successfully
-EventPersistenc...   INFO Added successfully Conversion service:McCnvSvc
-ClassIDSvc           INFO  getRegistryEntries: read 108 CLIDRegistry entries for module ALL
-AthenaEventLoopMgr   INFO   ===>>>  start of run 2    <<<===
-AthenaEventLoopMgr   INFO   ===>>>  start processing event #20, run #2 0 events processed so far  <<<===
-WriteData           DEBUG in execute()
-WriteData            INFO EventInfo event: 20  run: 2
-WriteData            INFO registered all data
-WriteTag             INFO EventInfo event: 20  run: 2
-WriteTag             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                           SimplePoolFileB.root
-SimplePoolFileB...  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.
-SimplePoolFileB...  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.
-SimplePoolFileB...  DEBUG --> Access   DbContainer  CREATE    [ROOT_All] ##Params
-##Params            DEBUG Opening
-##Params            DEBUG    attributes# = 1
-##Params            DEBUG Opened container ##Params of type ROOT_Tree
-SimplePoolFileB...  DEBUG --->Adding Assoc :????/##Params [200]  (2 , ffffffff)
-SimplePoolFileB...  DEBUG ---->ClassID:????
-##Params            DEBUG No objects passing selection criteria... Container has 0 Entries in total.
-AthenaPoolCnvSvc    DEBUG setAttribute CONTAINER_SPLITLEVEL to 99 for db: SimplePoolFileB.root and cont: TTree=POOLContainerForm(DataHeaderForm)
-Stream2             DEBUG addItemObjects(2101,"*") called
-Stream2             DEBUG            Key:*
-Stream2             DEBUG  Added object 2101,"McEventInfo"
-Stream2             DEBUG  Collected objects:
-Stream2             DEBUG  Object/count: EventInfo_McEventInfo, 1
-StorageSvc           INFO Building shape according to reflection information using shape ID for:
-StorageSvc           INFO EventInfo_p4 [????]
-SimplePoolFileB...  DEBUG --> Access   DbContainer  CREA/UPDA [ROOT_Tree] CollectionTree(EventInfo_p4/McEventInfo)
-CollectionTree(...  DEBUG Opening
-CollectionTree(...  DEBUG    attributes# = 1
-CollectionTree(...  DEBUG Branch container 'EventInfo_p4_McEventInfo'
-CollectionTree(...  DEBUG Opened container CollectionTree(EventInfo_p4/McEventInfo) of type ROOT_Tree
-SimplePoolFileB...  DEBUG --->Adding Assoc :????/CollectionTree(EventInfo_p4/McEventInfo) [202]  (3 , ffffffff)
-SimplePoolFileB...  DEBUG ---->ClassID:????
-SimplePoolFileB...  DEBUG --->Adding Shape[0 , ????]:  [1 Column(s)] 
-SimplePoolFileB...  DEBUG ---->Class:EventInfo_p4
-SimplePoolFileB...  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 DataHeaderForm_p5 [????]
-SimplePoolFileB...  DEBUG --> Access   DbContainer  CREA/UPDA [ROOT_Tree] POOLContainerForm(DataHeaderForm)
-POOLContainerFo...  DEBUG Opening
-POOLContainerFo...  DEBUG    attributes# = 1
-POOLContainerFo...  DEBUG Branch container 'DataHeaderForm'
-POOLContainerFo...  DEBUG Opened container POOLContainerForm(DataHeaderForm) of type ROOT_Tree
-SimplePoolFileB...  DEBUG --->Adding Assoc :????/POOLContainerForm(DataHeaderForm) [202]  (4 , ffffffff)
-SimplePoolFileB...  DEBUG ---->ClassID:????
-SimplePoolFileB...  DEBUG --->Adding Shape[1 , ????]:  [1 Column(s)] 
-SimplePoolFileB...  DEBUG ---->Class:DataHeaderForm_p5
-SimplePoolFileB...  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 [????]
-SimplePoolFileB...  DEBUG --> Access   DbContainer  CREA/UPDA [ROOT_Tree] POOLContainer(DataHeader)
-POOLContainer(D...  DEBUG Opening
-POOLContainer(D...  DEBUG    attributes# = 1
-POOLContainer(D...  DEBUG Branch container 'DataHeader'
-POOLContainer(D...  DEBUG Opened container POOLContainer(DataHeader) of type ROOT_Tree
-SimplePoolFileB...  DEBUG --->Adding Assoc :????/POOLContainer(DataHeader) [202]  (5 , ffffffff)
-SimplePoolFileB...  DEBUG ---->ClassID:????
-SimplePoolFileB...  DEBUG --->Adding Shape[2 , ????]:  [1 Column(s)] 
-SimplePoolFileB...  DEBUG ---->Class:DataHeader_p5
-SimplePoolFileB...  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 [????]
-SimplePoolFileB...  DEBUG --> Access   DbContainer  CREA/UPDA [ROOT_Tree] POOLCollectionTree(Token)
-POOLCollectionT...  DEBUG Opening
-POOLCollectionT...  DEBUG    attributes# = 1
-POOLCollectionT...  DEBUG Branch container 'Token'
-POOLCollectionT...  DEBUG Opened container POOLCollectionTree(Token) of type ROOT_Tree
-SimplePoolFileB...  DEBUG --->Adding Assoc :????/POOLCollectionTree(Token) [202]  (6 , ffffffff)
-SimplePoolFileB...  DEBUG ---->ClassID:????
-SimplePoolFileB...  DEBUG --->Adding Shape[3 , ????]:  [1 Column(s)] 
-SimplePoolFileB...  DEBUG ---->Class:Token
-SimplePoolFileB...  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 [????]
-SimplePoolFileB...  DEBUG --> Access   DbContainer  CREA/UPDA [ROOT_Tree] POOLCollectionTree(RunNumber)
-POOLCollectionT...  DEBUG Opening
-POOLCollectionT...  DEBUG    attributes# = 1
-POOLCollectionT...  DEBUG Branch container 'RunNumber'
-POOLCollectionT...  DEBUG Opened container POOLCollectionTree(RunNumber) of type ROOT_Tree
-SimplePoolFileB...  DEBUG --->Adding Assoc :????/POOLCollectionTree(RunNumber) [202]  (7 , ffffffff)
-SimplePoolFileB...  DEBUG ---->ClassID:????
-SimplePoolFileB...  DEBUG --->Adding Shape[4 , ????]:  [1 Column(s)] 
-SimplePoolFileB...  DEBUG ---->Class:unsigned int
-SimplePoolFileB...  DEBUG ---->[0]:unsigned int Typ:unsigned int [3] Size:0 Offset:0 #Elements:1
-SimplePoolFileB...  DEBUG --> Access   DbContainer  CREA/UPDA [ROOT_Tree] POOLCollectionTree(EventNumber)
-POOLCollectionT...  DEBUG Opening
-POOLCollectionT...  DEBUG    attributes# = 1
-POOLCollectionT...  DEBUG Branch container 'EventNumber'
-POOLCollectionT...  DEBUG Opened container POOLCollectionTree(EventNumber) of type ROOT_Tree
-SimplePoolFileB...  DEBUG --->Adding Assoc :????/POOLCollectionTree(EventNumber) [202]  (8 , ffffffff)
-SimplePoolFileB...  DEBUG ---->ClassID:????
-SimplePoolFileB...  DEBUG --> Access   DbContainer  CREA/UPDA [ROOT_Tree] POOLCollectionTree(MagicNumber)
-POOLCollectionT...  DEBUG Opening
-POOLCollectionT...  DEBUG    attributes# = 1
-POOLCollectionT...  DEBUG Branch container 'MagicNumber'
-POOLCollectionT...  DEBUG Opened container POOLCollectionTree(MagicNumber) of type ROOT_Tree
-SimplePoolFileB...  DEBUG --->Adding Assoc :????/POOLCollectionTree(MagicNumber) [202]  (9 , ffffffff)
-SimplePoolFileB...  DEBUG ---->ClassID:????
-ClassIDSvc           INFO  getRegistryEntries: read 46 CLIDRegistry entries for module ALL
-SimplePoolFileB...  DEBUG --> Access   DbContainer  CREA/UPDA [ROOT_Tree] POOLContainer(basic/DataHeader)
-POOLContainer(b...  DEBUG Opening
-POOLContainer(b...  DEBUG    attributes# = 1
-POOLContainer(b...  DEBUG Branch container 'basic_DataHeader'
-POOLContainer(b...  DEBUG Opened container POOLContainer(basic/DataHeader) of type ROOT_Tree
-SimplePoolFileB...  DEBUG --->Adding Assoc :????/POOLContainer(basic/DataHeader) [202]  (a , ffffffff)
-SimplePoolFileB...  DEBUG ---->ClassID:????
-AthenaPoolCnvSvc    DEBUG setAttribute BRANCH_BASKET_SIZE to 256000 for db: SimplePoolFileB.root and cont: POOLContainer(DataHeader)
-AthenaPoolCnvSvc    DEBUG setAttribute BRANCH_BASKET_SIZE to 1024000 for db: SimplePoolFileB.root and cont: POOLContainerForm(DataHeaderForm)
-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
-AthenaEventLoopMgr   INFO   ===>>>  done processing event #20, run #2 1 events processed so far  <<<===
-AthenaEventLoopMgr   INFO   ===>>>  start processing event #21, run #2 1 events processed so far  <<<===
-WriteData           DEBUG in execute()
-WriteData            INFO EventInfo event: 21  run: 2
-WriteData            INFO registered all data
-WriteTag             INFO EventInfo event: 21  run: 2
-WriteTag             INFO registered all data
-Stream2             DEBUG addItemObjects(2101,"*") called
-Stream2             DEBUG            Key:*
-Stream2             DEBUG  Added object 2101,"McEventInfo"
-Stream2             DEBUG  Collected objects:
-Stream2             DEBUG  Object/count: EventInfo_McEventInfo, 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") 
-AthenaEventLoopMgr   INFO   ===>>>  done processing event #21, run #2 2 events processed so far  <<<===
-AthenaEventLoopMgr   INFO   ===>>>  start processing event #22, run #2 2 events processed so far  <<<===
-WriteData           DEBUG in execute()
-WriteData            INFO EventInfo event: 22  run: 2
-WriteData            INFO registered all data
-WriteTag             INFO EventInfo event: 22  run: 2
-WriteTag             INFO registered all data
-Stream2             DEBUG addItemObjects(2101,"*") called
-Stream2             DEBUG            Key:*
-Stream2             DEBUG  Added object 2101,"McEventInfo"
-Stream2             DEBUG  Collected objects:
-Stream2             DEBUG  Object/count: EventInfo_McEventInfo, 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") 
-AthenaEventLoopMgr   INFO   ===>>>  done processing event #22, run #2 3 events processed so far  <<<===
-AthenaEventLoopMgr   INFO   ===>>>  start processing event #23, run #2 3 events processed so far  <<<===
-WriteData           DEBUG in execute()
-WriteData            INFO EventInfo event: 23  run: 2
-WriteData            INFO registered all data
-WriteTag             INFO EventInfo event: 23  run: 2
-WriteTag             INFO registered all data
-Stream2             DEBUG addItemObjects(2101,"*") called
-Stream2             DEBUG            Key:*
-Stream2             DEBUG  Added object 2101,"McEventInfo"
-Stream2             DEBUG  Collected objects:
-Stream2             DEBUG  Object/count: EventInfo_McEventInfo, 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") 
-AthenaEventLoopMgr   INFO   ===>>>  done processing event #23, run #2 4 events processed so far  <<<===
-AthenaEventLoopMgr   INFO   ===>>>  start processing event #24, run #2 4 events processed so far  <<<===
-WriteData           DEBUG in execute()
-WriteData            INFO EventInfo event: 24  run: 2
-WriteData            INFO registered all data
-WriteTag             INFO EventInfo event: 24  run: 2
-WriteTag             INFO registered all data
-Stream2             DEBUG addItemObjects(2101,"*") called
-Stream2             DEBUG            Key:*
-Stream2             DEBUG  Added object 2101,"McEventInfo"
-Stream2             DEBUG  Collected objects:
-Stream2             DEBUG  Object/count: EventInfo_McEventInfo, 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") 
-AthenaEventLoopMgr   INFO   ===>>>  done processing event #24, run #2 5 events processed so far  <<<===
-AthenaEventLoopMgr   INFO   ===>>>  start processing event #25, run #2 5 events processed so far  <<<===
-WriteData           DEBUG in execute()
-WriteData            INFO EventInfo event: 25  run: 2
-WriteData            INFO registered all data
-WriteTag             INFO EventInfo event: 25  run: 2
-WriteTag             INFO registered all data
-Stream2             DEBUG addItemObjects(2101,"*") called
-Stream2             DEBUG            Key:*
-Stream2             DEBUG  Added object 2101,"McEventInfo"
-Stream2             DEBUG  Collected objects:
-Stream2             DEBUG  Object/count: EventInfo_McEventInfo, 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") 
-AthenaEventLoopMgr   INFO   ===>>>  done processing event #25, run #2 6 events processed so far  <<<===
-AthenaEventLoopMgr   INFO   ===>>>  start processing event #26, run #2 6 events processed so far  <<<===
-WriteData           DEBUG in execute()
-WriteData            INFO EventInfo event: 26  run: 2
-WriteData            INFO registered all data
-WriteTag             INFO EventInfo event: 26  run: 2
-WriteTag             INFO registered all data
-Stream2             DEBUG addItemObjects(2101,"*") called
-Stream2             DEBUG            Key:*
-Stream2             DEBUG  Added object 2101,"McEventInfo"
-Stream2             DEBUG  Collected objects:
-Stream2             DEBUG  Object/count: EventInfo_McEventInfo, 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") 
-AthenaEventLoopMgr   INFO   ===>>>  done processing event #26, run #2 7 events processed so far  <<<===
-AthenaEventLoopMgr   INFO   ===>>>  start processing event #27, run #2 7 events processed so far  <<<===
-WriteData           DEBUG in execute()
-WriteData            INFO EventInfo event: 27  run: 2
-WriteData            INFO registered all data
-WriteTag             INFO EventInfo event: 27  run: 2
-WriteTag             INFO registered all data
-Stream2             DEBUG addItemObjects(2101,"*") called
-Stream2             DEBUG            Key:*
-Stream2             DEBUG  Added object 2101,"McEventInfo"
-Stream2             DEBUG  Collected objects:
-Stream2             DEBUG  Object/count: EventInfo_McEventInfo, 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") 
-AthenaEventLoopMgr   INFO   ===>>>  done processing event #27, run #2 8 events processed so far  <<<===
-AthenaEventLoopMgr   INFO   ===>>>  start processing event #28, run #2 8 events processed so far  <<<===
-WriteData           DEBUG in execute()
-WriteData            INFO EventInfo event: 28  run: 2
-WriteData            INFO registered all data
-WriteTag             INFO EventInfo event: 28  run: 2
-WriteTag             INFO registered all data
-Stream2             DEBUG addItemObjects(2101,"*") called
-Stream2             DEBUG            Key:*
-Stream2             DEBUG  Added object 2101,"McEventInfo"
-Stream2             DEBUG  Collected objects:
-Stream2             DEBUG  Object/count: EventInfo_McEventInfo, 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") 
-AthenaEventLoopMgr   INFO   ===>>>  done processing event #28, run #2 9 events processed so far  <<<===
-AthenaEventLoopMgr   INFO   ===>>>  start processing event #29, run #2 9 events processed so far  <<<===
-WriteData           DEBUG in execute()
-WriteData            INFO EventInfo event: 29  run: 2
-WriteData            INFO registered all data
-WriteTag             INFO EventInfo event: 29  run: 2
-WriteTag             INFO registered all data
-Stream2             DEBUG addItemObjects(2101,"*") called
-Stream2             DEBUG            Key:*
-Stream2             DEBUG  Added object 2101,"McEventInfo"
-Stream2             DEBUG  Collected objects:
-Stream2             DEBUG  Object/count: EventInfo_McEventInfo, 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") 
-AthenaEventLoopMgr   INFO   ===>>>  done processing event #29, run #2 10 events processed so far  <<<===
-AthenaEventLoopMgr   INFO   ===>>>  start processing event #30, run #2 10 events processed so far  <<<===
-WriteData           DEBUG in execute()
-WriteData            INFO EventInfo event: 30  run: 2
-WriteData            INFO registered all data
-WriteTag             INFO EventInfo event: 30  run: 2
-WriteTag             INFO registered all data
-Stream2             DEBUG addItemObjects(2101,"*") called
-Stream2             DEBUG            Key:*
-Stream2             DEBUG  Added object 2101,"McEventInfo"
-Stream2             DEBUG  Collected objects:
-Stream2             DEBUG  Object/count: EventInfo_McEventInfo, 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") 
-AthenaEventLoopMgr   INFO   ===>>>  done processing event #30, run #2 11 events processed so far  <<<===
-AthenaEventLoopMgr   INFO   ===>>>  start processing event #31, run #2 11 events processed so far  <<<===
-WriteData           DEBUG in execute()
-WriteData            INFO EventInfo event: 31  run: 2
-WriteData            INFO registered all data
-WriteTag             INFO EventInfo event: 31  run: 2
-WriteTag             INFO registered all data
-Stream2             DEBUG addItemObjects(2101,"*") called
-Stream2             DEBUG            Key:*
-Stream2             DEBUG  Added object 2101,"McEventInfo"
-Stream2             DEBUG  Collected objects:
-Stream2             DEBUG  Object/count: EventInfo_McEventInfo, 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") 
-AthenaEventLoopMgr   INFO   ===>>>  done processing event #31, run #2 12 events processed so far  <<<===
-AthenaEventLoopMgr   INFO   ===>>>  start processing event #32, run #2 12 events processed so far  <<<===
-WriteData           DEBUG in execute()
-WriteData            INFO EventInfo event: 32  run: 2
-WriteData            INFO registered all data
-WriteTag             INFO EventInfo event: 32  run: 2
-WriteTag             INFO registered all data
-Stream2             DEBUG addItemObjects(2101,"*") called
-Stream2             DEBUG            Key:*
-Stream2             DEBUG  Added object 2101,"McEventInfo"
-Stream2             DEBUG  Collected objects:
-Stream2             DEBUG  Object/count: EventInfo_McEventInfo, 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") 
-AthenaEventLoopMgr   INFO   ===>>>  done processing event #32, run #2 13 events processed so far  <<<===
-AthenaEventLoopMgr   INFO   ===>>>  start processing event #33, run #2 13 events processed so far  <<<===
-WriteData           DEBUG in execute()
-WriteData            INFO EventInfo event: 33  run: 2
-WriteData            INFO registered all data
-WriteTag             INFO EventInfo event: 33  run: 2
-WriteTag             INFO registered all data
-Stream2             DEBUG addItemObjects(2101,"*") called
-Stream2             DEBUG            Key:*
-Stream2             DEBUG  Added object 2101,"McEventInfo"
-Stream2             DEBUG  Collected objects:
-Stream2             DEBUG  Object/count: EventInfo_McEventInfo, 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") 
-AthenaEventLoopMgr   INFO   ===>>>  done processing event #33, run #2 14 events processed so far  <<<===
-AthenaEventLoopMgr   INFO   ===>>>  start processing event #34, run #2 14 events processed so far  <<<===
-WriteData           DEBUG in execute()
-WriteData            INFO EventInfo event: 34  run: 2
-WriteData            INFO registered all data
-WriteTag             INFO EventInfo event: 34  run: 2
-WriteTag             INFO registered all data
-Stream2             DEBUG addItemObjects(2101,"*") called
-Stream2             DEBUG            Key:*
-Stream2             DEBUG  Added object 2101,"McEventInfo"
-Stream2             DEBUG  Collected objects:
-Stream2             DEBUG  Object/count: EventInfo_McEventInfo, 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") 
-AthenaEventLoopMgr   INFO   ===>>>  done processing event #34, run #2 15 events processed so far  <<<===
-AthenaEventLoopMgr   INFO   ===>>>  start processing event #35, run #2 15 events processed so far  <<<===
-WriteData           DEBUG in execute()
-WriteData            INFO EventInfo event: 35  run: 2
-WriteData            INFO registered all data
-WriteTag             INFO EventInfo event: 35  run: 2
-WriteTag             INFO registered all data
-Stream2             DEBUG addItemObjects(2101,"*") called
-Stream2             DEBUG            Key:*
-Stream2             DEBUG  Added object 2101,"McEventInfo"
-Stream2             DEBUG  Collected objects:
-Stream2             DEBUG  Object/count: EventInfo_McEventInfo, 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") 
-AthenaEventLoopMgr   INFO   ===>>>  done processing event #35, run #2 16 events processed so far  <<<===
-AthenaEventLoopMgr   INFO   ===>>>  start processing event #36, run #2 16 events processed so far  <<<===
-WriteData           DEBUG in execute()
-WriteData            INFO EventInfo event: 36  run: 2
-WriteData            INFO registered all data
-WriteTag             INFO EventInfo event: 36  run: 2
-WriteTag             INFO registered all data
-Stream2             DEBUG addItemObjects(2101,"*") called
-Stream2             DEBUG            Key:*
-Stream2             DEBUG  Added object 2101,"McEventInfo"
-Stream2             DEBUG  Collected objects:
-Stream2             DEBUG  Object/count: EventInfo_McEventInfo, 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") 
-AthenaEventLoopMgr   INFO   ===>>>  done processing event #36, run #2 17 events processed so far  <<<===
-AthenaEventLoopMgr   INFO   ===>>>  start processing event #37, run #2 17 events processed so far  <<<===
-WriteData           DEBUG in execute()
-WriteData            INFO EventInfo event: 37  run: 2
-WriteData            INFO registered all data
-WriteTag             INFO EventInfo event: 37  run: 2
-WriteTag             INFO registered all data
-Stream2             DEBUG addItemObjects(2101,"*") called
-Stream2             DEBUG            Key:*
-Stream2             DEBUG  Added object 2101,"McEventInfo"
-Stream2             DEBUG  Collected objects:
-Stream2             DEBUG  Object/count: EventInfo_McEventInfo, 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") 
-AthenaEventLoopMgr   INFO   ===>>>  done processing event #37, run #2 18 events processed so far  <<<===
-AthenaEventLoopMgr   INFO   ===>>>  start processing event #38, run #2 18 events processed so far  <<<===
-WriteData           DEBUG in execute()
-WriteData            INFO EventInfo event: 38  run: 2
-WriteData            INFO registered all data
-WriteTag             INFO EventInfo event: 38  run: 2
-WriteTag             INFO registered all data
-Stream2             DEBUG addItemObjects(2101,"*") called
-Stream2             DEBUG            Key:*
-Stream2             DEBUG  Added object 2101,"McEventInfo"
-Stream2             DEBUG  Collected objects:
-Stream2             DEBUG  Object/count: EventInfo_McEventInfo, 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") 
-AthenaEventLoopMgr   INFO   ===>>>  done processing event #38, run #2 19 events processed so far  <<<===
-AthenaEventLoopMgr   INFO   ===>>>  start processing event #39, run #2 19 events processed so far  <<<===
-WriteData           DEBUG in execute()
-WriteData            INFO EventInfo event: 39  run: 2
-WriteData            INFO registered all data
-WriteTag             INFO EventInfo event: 39  run: 2
-WriteTag             INFO registered all data
-Stream2             DEBUG addItemObjects(2101,"*") called
-Stream2             DEBUG            Key:*
-Stream2             DEBUG  Added object 2101,"McEventInfo"
-Stream2             DEBUG  Collected objects:
-Stream2             DEBUG  Object/count: EventInfo_McEventInfo, 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") 
-AthenaEventLoopMgr   INFO   ===>>>  done processing event #39, run #2 20 events processed so far  <<<===
-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:*
-StorageSvc           INFO Building shape according to reflection information using shape ID for:
-StorageSvc           INFO EventStreamInfo_p3 [????]
-SimplePoolFileB...  DEBUG --> Access   DbContainer  CREA/UPDA [ROOT_Tree] MetaData(EventStreamInfo_p3/Stream2)
-MetaData(EventS...  DEBUG Opening
-MetaData(EventS...  DEBUG    attributes# = 1
-MetaData(EventS...  DEBUG Branch container 'EventStreamInfo_p3_Stream2'
-MetaData(EventS...  DEBUG Opened container MetaData(EventStreamInfo_p3/Stream2) of type ROOT_Tree
-SimplePoolFileB...  DEBUG --->Adding Assoc :????/MetaData(EventStreamInfo_p3/Stream2) [202]  (b , ffffffff)
-SimplePoolFileB...  DEBUG ---->ClassID:????
-SimplePoolFileB...  DEBUG --->Adding Shape[5 , ????]:  [1 Column(s)] 
-SimplePoolFileB...  DEBUG ---->Class:EventStreamInfo_p3
-SimplePoolFileB...  DEBUG ---->[0]:EventStreamInfo_p3 Typ:EventStreamInfo_p3 [21] Size:0 Offset:0 #Elements:1
-SimplePoolFileB...  DEBUG --> Access   DbContainer  CREA/UPDA [ROOT_Tree] MetaDataHdrForm(DataHeaderForm)
-MetaDataHdrForm...  DEBUG Opening
-MetaDataHdrForm...  DEBUG    attributes# = 1
-MetaDataHdrForm...  DEBUG Branch container 'DataHeaderForm'
-MetaDataHdrForm...  DEBUG Opened container MetaDataHdrForm(DataHeaderForm) of type ROOT_Tree
-SimplePoolFileB...  DEBUG --->Adding Assoc :????/MetaDataHdrForm(DataHeaderForm) [202]  (c , ffffffff)
-SimplePoolFileB...  DEBUG ---->ClassID:????
-SimplePoolFileB...  DEBUG --> Access   DbContainer  CREA/UPDA [ROOT_Tree] MetaDataHdr(DataHeader)
-MetaDataHdr(Dat...  DEBUG Opening
-MetaDataHdr(Dat...  DEBUG    attributes# = 1
-MetaDataHdr(Dat...  DEBUG Branch container 'DataHeader'
-MetaDataHdr(Dat...  DEBUG Opened container MetaDataHdr(DataHeader) of type ROOT_Tree
-SimplePoolFileB...  DEBUG --->Adding Assoc :????/MetaDataHdr(DataHeader) [202]  (d , ffffffff)
-SimplePoolFileB...  DEBUG ---->ClassID:????
-ClassIDSvc           INFO  getRegistryEntries: read 5 CLIDRegistry entries for module ALL
-Stream2              INFO Records written: 21
-Stream2             DEBUG Leaving handle
-RegStream2          DEBUG handle() incident type: MetaDataStop
-RegStream2.TagTool   INFO Collection Events output: 20
-Domain[ROOT_All]     INFO >   Deaccess DbDomain     READ      [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
-IncidentProcAlg1     INFO Finalize
-WriteData            INFO in finalize()
-WriteTag             INFO in finalize()
-Stream2             DEBUG finalize: Optimize output
-Stream2             DEBUG finalize: end optimize output
-RegStream2          DEBUG In finalize
-WriteData           DEBUG Calling destructor
-IncidentProcAlg2     INFO Finalize
-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 ****************************************************************************************************
-commitOutput         INFO Time User   : Tot=    0 [us] Ave/Min/Max=    0(+-    0)/    0/    0 [us] #= 21
-fRep_ALL             INFO Time User   : Tot=    0 [us] Ave/Min/Max=    0(+-    0)/    0/    0 [us] #= 62
-cRepR_ALL            INFO Time User   : Tot=   30 [ms] Ave/Min/Max=0.164(+- 1.64)/    0/   20 [ms] #=183
-cRep_ALL             INFO Time User   : Tot=   80 [ms] Ave/Min/Max= 1.29(+- 6.84)/    0/   50 [ms] #= 62
-ChronoStatSvc        INFO Time User   : Tot= 0.82  [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"
diff --git a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_AppendFastJobOptions.py b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_AppendFastJobOptions.py
deleted file mode 100644
index 37124c3cb5a616023141a4889bf66d0884d31d20..0000000000000000000000000000000000000000
--- a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_AppendFastJobOptions.py
+++ /dev/null
@@ -1,117 +0,0 @@
-## @file AthenaPoolExample_AppendJobOptions.py
-## @brief Example job options file to illustrate how to append event data to an existing Pool file.
-## @author Peter van Gemmeren <gemmeren@anl.gov>
-## $Id: AthenaPoolExample_AppendJobOptions.py,v 1.16 2008-09-29 15:25:22 gemmeren Exp $
-###############################################################
-#
-# This Job option:
-# ----------------
-# 1. Updates (appends to) SimplePoolFileB.root file with EventInfo and EventStreamInfo MetaData.
-# 2. Appends event TAGs to SimplePoolCollection2.root.
-# ------------------------------------------------------------
-# Expected output file (20 + 20 events):
-# -rw-r--r--  1 gemmeren zp 11408 Aug  5 17:23 SimplePoolCollection2.root
-# -rw-r--r--  1 gemmeren zp 31305 Aug  5 17:23 SimplePoolFileB.root
-# ------------------------------------------------------------
-# File:SimplePoolFileB.root
-# Size:       30.571 kb
-# Nbr Events: 40
-# 
-# ================================================================================
-#      Mem Size       Disk Size        Size/Evt      MissZip/Mem  items  (X) Container Name (X=Tree|Branch)
-# ================================================================================
-#       17.616 kb        2.791 kb        0.070 kb        0.000       40  (T) DataHeader
-# --------------------------------------------------------------------------------
-#        6.089 kb        0.601 kb        0.015 kb        0.182       40  (B) EventInfo_p3_McEventInfo
-#        3.454 kb        0.854 kb        0.021 kb        0.465        2  (T) MetaDataHdrDataHeaderForm
-#       18.440 kb        1.188 kb        0.030 kb        0.383        1  (B) EventStreamInfo_p2_Stream2
-#       18.440 kb        1.188 kb        0.030 kb        0.383        1  (B) EventStreamInfo_p2_Stream2
-#       14.169 kb        1.290 kb        0.032 kb        0.113       40  (T) POOLContainer_DataHeaderForm
-#       11.495 kb        1.808 kb        0.045 kb        0.349        2  (T) MetaDataHdrDataHeader
-# ================================================================================
-#       89.704 kb        9.719 kb        0.243 kb        0.000       40  TOTAL (POOL containers)
-# ================================================================================
-#
-#==============================================================
-
-## basic (generator) job configuration
-import AthenaCommon.AtlasUnixGeneratorJob
-
-## get a handle on the default top-level algorithm sequence
-from AthenaCommon.AlgSequence import AlgSequence
-topSequence = AlgSequence()
-
-## get a handle on the ServiceManager
-from AthenaCommon.AppMgr import ServiceMgr as svcMgr
-
-#--------------------------------------------------------------
-# Event related parameters
-#--------------------------------------------------------------
-from AthenaCommon.AppMgr import theApp
-theApp.EvtMax = 20
-
-#--------------------------------------------------------------
-# Load POOL support
-#--------------------------------------------------------------
-import AthenaPoolCnvSvc.WriteAthenaPool
-
-svcMgr.EventSelector.RunNumber = 2
-#Set first event number to 20 (to continue previous production)
-svcMgr.EventSelector.FirstEvent = 20;
-
-#Explicitly specify the output file catalog
-svcMgr.PoolSvc.WriteCatalog = "xmlcatalog_file:Catalog1.xml"
-
-#Open file in "update" mode
-svcMgr.PoolSvc.FileOpen = "update";
-
-svcMgr.AthenaPoolCnvSvc.CommitInterval = 10;
-
-#--------------------------------------------------------------
-# Private Application Configuration options
-#--------------------------------------------------------------
-# Load "user algorithm" top algorithms to be run, and the libraries that house them
-from AthenaPoolExampleAlgorithms.AthenaPoolExampleAlgorithmsConf import AthPoolEx__WriteData
-topSequence += AthPoolEx__WriteData("WriteData")
-
-from AthenaPoolExampleAlgorithms.AthenaPoolExampleAlgorithmsConf import AthPoolEx__WriteTag
-WriteTag = AthPoolEx__WriteTag( "WriteTag" )
-WriteTag.Magic = 1
-topSequence += WriteTag
-
-from AthenaPoolCnvSvc.WriteAthenaPool import AthenaPoolOutputStream
-Stream2 = AthenaPoolOutputStream ( "Stream2" , "SimplePoolFileB.root" , True, noTag=True )
-Stream2.WritingTool.AttributeListKey = "RunEventTag"
-
-#--------------------------------------------------------------
-# Event Collection Registration
-#--------------------------------------------------------------
-from RegistrationServices.RegistrationServicesConf import RegistrationStreamTagTool
-TagTool = RegistrationStreamTagTool("TagTool")
-
-from RegistrationServices.RegistrationServicesConf import RegistrationStream
-RegStream2 = RegistrationStream( "RegStream2" , CollectionType="ExplicitROOT" , Tool=TagTool )
-RegStream2.WriteInputDataHeader = False
-RegStream2.OutputCollection = "SimplePoolCollection2.root"
-RegStream2.CollectionOpenMode = "UPDATE"
-RegStream2.ItemList += [ "DataHeader#Stream2" ]
-RegStream2.ItemList += [ "TagAthenaAttributeList#RunEventTag" ]
-topSequence += RegStream2
-
-#--------------------------------------------------------------
-# Set output level threshold (2=DEBUG, 3=INFO, 4=WARNING, 5=ERROR, 6=FATAL)
-#--------------------------------------------------------------
-svcMgr.MessageSvc.OutputLevel = 3
-svcMgr.PoolSvc.OutputLevel = 2
-svcMgr.AthenaPoolCnvSvc.OutputLevel = 2
-topSequence.WriteData.OutputLevel = 2
-Stream2.OutputLevel = 2
-Stream2.WritingTool.OutputLevel = 3
-Stream2.HelperTools[0].OutputLevel = 3
-RegStream2.OutputLevel = 2
-RegStream2.Tool.OutputLevel = 3
-
-#
-# End of job options file
-#
-###############################################################
diff --git a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_Concat.ref b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_Concat.ref
index 770a9a8967fe29f1ddf0ffc159739307adbc6ed5..e31b97dffd16817c1933c5c8f4a211b3730758b1 100644
--- a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_Concat.ref
+++ b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_Concat.ref
@@ -1,85 +1,39 @@
-Mon Oct 30 16:30:06 CET 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_ConcatJobOptions.py"
-Py:ConfigurableDb    INFO Read module info for 5436 configurables from 58 genConfDb files
-Py:ConfigurableDb    INFO No duplicates have been found: that's good !
 Athena               INFO including file "AthenaCommon/runbatch.py"
-[?1034hApplicationMgr       INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0
-ApplicationMgr    SUCCESS 
-====================================================================================================================================
-                                                   Welcome to ApplicationMgr (GaudiCoreSvc v29r0)
-                                          running on lxplus012.cern.ch on Mon Oct 30 16:30:14 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 2398 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
-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
-Stream1.Stream1...  DEBUG Property update for OutputLevel : new value = 2
-ClassIDSvc           INFO  getRegistryEntries: read 1757 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 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-local.cern.ch:8000/atlr)(serverurl=http://atlasfrontier-ai.cern.ch:8000/atlr)(serverurl=http://lcgft-atlas.gridpp.rl.ac.uk:3128/frontierATLAS)(serverurl=http://ccfrontier.in2p3.fr:23128/ccin2p3-AtlasFrontier)(proxyurl=http://ca-proxy.cern.ch:3128)(proxyurl=http://ca-proxy-meyrin.cern.ch:3128)(proxyurl=http://ca-proxy-wigner.cern.ch:3128) will be considered for COOL data
-DBReplicaSvc         INFO Read replica configuration from /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2017-10-29T2259/Athena/22.0.0/InstallArea/x86_64-slc6-gcc62-opt/share/dbreplica.config
-DBReplicaSvc         INFO Total of 10 servers found for host lxplus012.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 
 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] 
 Stream1             DEBUG Found StoreGateSvc store.
 Stream1             DEBUG Found MetaDataStore store.
-OutputStreamSeq...   INFO Initializing OutputStreamSequencerSvc - package version AthenaServices-00-00-00
-ClassIDSvc           INFO  getRegistryEntries: read 898 CLIDRegistry entries for module ALL
-Stream1.Stream1...   INFO Initializing Stream1.Stream1Tool - package version OutputStreamAthenaPool-00-00-00
-Stream1.Stream1...   INFO streamProperty ProcessingTag = Stream1
-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              INFO ../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
-MakeInputDataHe...   INFO Initializing MakeInputDataHeader - package version OutputStreamAthenaPool-00-00-00
+Stream1             DEBUG Adding private ToolHandle tool Stream1.Stream1Tool (AthenaOutputStreamTool)
 MakeInputDataHe...   INFO Name of Stream to be made Input: Stream1
-ReWriteData         DEBUG Property update for OutputLevel : new value = 2
 ReWriteData          INFO in initialize()
-ReWriteData         DEBUG input handles: 0
-ReWriteData         DEBUG output handles: 0
-ReWriteData         DEBUG Data Deps for ReWriteData
-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
@@ -87,38 +41,28 @@ Stream2             DEBUG End initialize
 Stream2             DEBUG In initialize
 Stream2             DEBUG Found StoreGateSvc store.
 Stream2             DEBUG Found MetaDataStore store.
-Stream2.Stream2...   INFO Initializing Stream2.Stream2Tool - package version OutputStreamAthenaPool-00-00-00
-Stream2.Stream2...   INFO streamProperty ProcessingTag = Stream2
-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: SimplePoolFile3.root
-Stream2              INFO I/O reinitialization...
+Stream2              INFO ../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
+Stream2             DEBUG Adding private ToolHandle tool Stream2.Stream2Tool (AthenaOutputStreamTool)
 HistogramPersis...WARNING Histograms saving not required.
 EventSelector        INFO  Enter McEventSelector Initialization 
 AthenaEventLoopMgr   INFO Setup EventSelector service EventSelector
 ApplicationMgr       INFO Application Manager Initialized successfully
 ApplicationMgr       INFO Application Manager Started successfully
 EventPersistenc...   INFO Added successfully Conversion service:McCnvSvc
-ClassIDSvc           INFO  getRegistryEntries: read 108 CLIDRegistry entries for module ALL
 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
-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...  DEBUG --> Access   DbContainer  CREATE    [ROOT_All] ##Shapes
 ##Shapes            DEBUG Opening
@@ -195,14 +139,6 @@ SimplePoolFile1...  DEBUG ---->ClassID:????
 SimplePoolFile1...  DEBUG --->Adding Shape[3 , ????]:  [1 Column(s)] 
 SimplePoolFile1...  DEBUG ---->Class:DataHeader_p5
 SimplePoolFile1...  DEBUG ---->[0]:DataHeader_p5 Typ:DataHeader_p5 [21] Size:0 Offset:0 #Elements:1
-ClassIDSvc           INFO  getRegistryEntries: read 81 CLIDRegistry entries for module ALL
-SimplePoolFile1...  DEBUG --> Access   DbContainer  CREA/UPDA [ROOT_Tree] POOLContainer(basic/DataHeader)
-POOLContainer(b...  DEBUG Opening
-POOLContainer(b...  DEBUG    attributes# = 1
-POOLContainer(b...  DEBUG Branch container 'basic_DataHeader'
-POOLContainer(b...  DEBUG Opened container POOLContainer(basic/DataHeader) of type ROOT_Tree
-SimplePoolFile1...  DEBUG --->Adding Assoc :????/POOLContainer(basic/DataHeader) [202]  (7 , ffffffff)
-SimplePoolFile1...  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)
 ReWriteData         DEBUG in execute()
@@ -231,7 +167,6 @@ ReWriteData          INFO Element = 0x???? : 17.2845
 ReWriteData          INFO Element = 0x???? : 10.8645
 ReWriteData          INFO Track pt = 74.8928 eta = 3.1676 phi = 2.6161 detector = Track made in: DummyHitDetector
 ReWriteData          INFO registered all data
-Domain[ROOT_All]     INFO ->  Access   DbDatabase   CREATE    [ROOT_All] ????
 Domain[ROOT_All]     INFO                           SimplePoolFile3.root
 SimplePoolFile3...  DEBUG --> Access   DbContainer  CREATE    [ROOT_All] ##Shapes
 ##Shapes            DEBUG Opening
@@ -302,13 +237,6 @@ SimplePoolFile3...  DEBUG ---->ClassID:????
 SimplePoolFile3...  DEBUG --->Adding Shape[3 , ????]:  [1 Column(s)] 
 SimplePoolFile3...  DEBUG ---->Class:DataHeader_p5
 SimplePoolFile3...  DEBUG ---->[0]:DataHeader_p5 Typ:DataHeader_p5 [21] Size:0 Offset:0 #Elements:1
-SimplePoolFile3...  DEBUG --> Access   DbContainer  CREA/UPDA [ROOT_Tree] POOLContainer(basic/DataHeader)
-POOLContainer(b...  DEBUG Opening
-POOLContainer(b...  DEBUG    attributes# = 1
-POOLContainer(b...  DEBUG Branch container 'basic_DataHeader'
-POOLContainer(b...  DEBUG Opened container POOLContainer(basic/DataHeader) of type ROOT_Tree
-SimplePoolFile3...  DEBUG --->Adding Assoc :????/POOLContainer(basic/DataHeader) [202]  (7 , ffffffff)
-SimplePoolFile3...  DEBUG ---->ClassID:????
 AthenaPoolCnvSvc    DEBUG setAttribute BRANCH_BASKET_SIZE to 256000 for db: SimplePoolFile3.root and cont: POOLContainer(DataHeader)
 AthenaPoolCnvSvc    DEBUG setAttribute BRANCH_BASKET_SIZE to 1024000 for db: SimplePoolFile3.root and cont: POOLContainerForm(DataHeaderForm)
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #0, run #1 1 events processed so far  <<<===
@@ -1257,7 +1185,7 @@ MetaData(EventS...  DEBUG Opening
 MetaData(EventS...  DEBUG    attributes# = 1
 MetaData(EventS...  DEBUG Branch container 'EventStreamInfo_p3_Stream1'
 MetaData(EventS...  DEBUG Opened container MetaData(EventStreamInfo_p3/Stream1) of type ROOT_Tree
-SimplePoolFile1...  DEBUG --->Adding Assoc :????/MetaData(EventStreamInfo_p3/Stream1) [202]  (8 , ffffffff)
+SimplePoolFile1...  DEBUG --->Adding Assoc :????/MetaData(EventStreamInfo_p3/Stream1) [202]  (7 , ffffffff)
 SimplePoolFile1...  DEBUG ---->ClassID:????
 SimplePoolFile1...  DEBUG --->Adding Shape[4 , ????]:  [1 Column(s)] 
 SimplePoolFile1...  DEBUG ---->Class:EventStreamInfo_p3
@@ -1267,16 +1195,15 @@ MetaDataHdrForm...  DEBUG Opening
 MetaDataHdrForm...  DEBUG    attributes# = 1
 MetaDataHdrForm...  DEBUG Branch container 'DataHeaderForm'
 MetaDataHdrForm...  DEBUG Opened container MetaDataHdrForm(DataHeaderForm) of type ROOT_Tree
-SimplePoolFile1...  DEBUG --->Adding Assoc :????/MetaDataHdrForm(DataHeaderForm) [202]  (9 , ffffffff)
+SimplePoolFile1...  DEBUG --->Adding Assoc :????/MetaDataHdrForm(DataHeaderForm) [202]  (8 , ffffffff)
 SimplePoolFile1...  DEBUG ---->ClassID:????
 SimplePoolFile1...  DEBUG --> Access   DbContainer  CREA/UPDA [ROOT_Tree] MetaDataHdr(DataHeader)
 MetaDataHdr(Dat...  DEBUG Opening
 MetaDataHdr(Dat...  DEBUG    attributes# = 1
 MetaDataHdr(Dat...  DEBUG Branch container 'DataHeader'
 MetaDataHdr(Dat...  DEBUG Opened container MetaDataHdr(DataHeader) of type ROOT_Tree
-SimplePoolFile1...  DEBUG --->Adding Assoc :????/MetaDataHdr(DataHeader) [202]  (a , ffffffff)
+SimplePoolFile1...  DEBUG --->Adding Assoc :????/MetaDataHdr(DataHeader) [202]  (9 , ffffffff)
 SimplePoolFile1...  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
@@ -1290,7 +1217,7 @@ MetaData(EventS...  DEBUG Opening
 MetaData(EventS...  DEBUG    attributes# = 1
 MetaData(EventS...  DEBUG Branch container 'EventStreamInfo_p3_Stream2'
 MetaData(EventS...  DEBUG Opened container MetaData(EventStreamInfo_p3/Stream2) of type ROOT_Tree
-SimplePoolFile3...  DEBUG --->Adding Assoc :????/MetaData(EventStreamInfo_p3/Stream2) [202]  (8 , ffffffff)
+SimplePoolFile3...  DEBUG --->Adding Assoc :????/MetaData(EventStreamInfo_p3/Stream2) [202]  (7 , ffffffff)
 SimplePoolFile3...  DEBUG ---->ClassID:????
 SimplePoolFile3...  DEBUG --->Adding Shape[4 , ????]:  [1 Column(s)] 
 SimplePoolFile3...  DEBUG ---->Class:EventStreamInfo_p3
@@ -1300,32 +1227,26 @@ MetaDataHdrForm...  DEBUG Opening
 MetaDataHdrForm...  DEBUG    attributes# = 1
 MetaDataHdrForm...  DEBUG Branch container 'DataHeaderForm'
 MetaDataHdrForm...  DEBUG Opened container MetaDataHdrForm(DataHeaderForm) of type ROOT_Tree
-SimplePoolFile3...  DEBUG --->Adding Assoc :????/MetaDataHdrForm(DataHeaderForm) [202]  (9 , ffffffff)
+SimplePoolFile3...  DEBUG --->Adding Assoc :????/MetaDataHdrForm(DataHeaderForm) [202]  (8 , ffffffff)
 SimplePoolFile3...  DEBUG ---->ClassID:????
 SimplePoolFile3...  DEBUG --> Access   DbContainer  CREA/UPDA [ROOT_Tree] MetaDataHdr(DataHeader)
 MetaDataHdr(Dat...  DEBUG Opening
 MetaDataHdr(Dat...  DEBUG    attributes# = 1
 MetaDataHdr(Dat...  DEBUG Branch container 'DataHeader'
 MetaDataHdr(Dat...  DEBUG Opened container MetaDataHdr(DataHeader) of type ROOT_Tree
-SimplePoolFile3...  DEBUG --->Adding Assoc :????/MetaDataHdr(DataHeader) [202]  (a , ffffffff)
+SimplePoolFile3...  DEBUG --->Adding Assoc :????/MetaDataHdr(DataHeader) [202]  (9 , ffffffff)
 SimplePoolFile3...  DEBUG ---->ClassID:????
 Stream2              INFO Records written: 21
 Stream2             DEBUG Leaving handle
 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 DbDomain     UPDATE    [ROOT_All] 
 ApplicationMgr       INFO Application Manager Stopped successfully
-IncidentProcAlg1     INFO Finalize
 WriteData            INFO in finalize()
 Stream1             DEBUG finalize: Optimize output
 Stream1             DEBUG finalize: end optimize output
 ReWriteData          INFO in finalize()
 Stream2             DEBUG finalize: Optimize output
 Stream2             DEBUG finalize: end optimize output
-WriteData           DEBUG Calling destructor
-ReWriteData         DEBUG Calling destructor
-IncidentProcAlg2     INFO Finalize
 EventSelector        INFO finalize
 AthenaPoolCnvSvc    DEBUG releasing all workers
 DecisionSvc          INFO Finalized successfully.
@@ -1334,11 +1255,6 @@ 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] #=164
-commitOutput         INFO Time User   : Tot=   10 [ms] Ave/Min/Max=0.238(+- 1.52)/    0/   10 [ms] #= 42
-cRepR_ALL            INFO Time User   : Tot=   50 [ms] Ave/Min/Max=0.203(+- 1.41)/    0/   10 [ms] #=246
-cRep_ALL             INFO Time User   : Tot=  120 [ms] Ave/Min/Max=0.732(+- 4.36)/    0/   40 [ms] #=164
-ChronoStatSvc        INFO Time User   : Tot= 0.85  [s]                                             #=  1
 *****Chrono*****     INFO ****************************************************************************************************
 ChronoStatSvc.f...   INFO  Service finalized successfully 
 ApplicationMgr       INFO Application Manager Finalized successfully
diff --git a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_Copy.ref b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_Copy.ref
index 5e60940b6994ee794c77510804af3285ed780ad0..6abf83094d712f5f4ee8551e6bb1a385bdac7e7f 100644
--- a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_Copy.ref
+++ b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_Copy.ref
@@ -1,60 +1,30 @@
-Wed Dec  6 21:35:03 CET 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_CopyJobOptions.py"
-Py:ConfigurableDb    INFO Read module info for 5437 configurables from 60 genConfDb files
-Py:ConfigurableDb    INFO No duplicates have been found: that's good !
 Athena               INFO including file "AthenaCommon/runbatch.py"
-[?1034hApplicationMgr       INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0
-ApplicationMgr    SUCCESS 
-====================================================================================================================================
-                                                   Welcome to ApplicationMgr (GaudiCoreSvc v29r0)
-                                          running on lxplus020.cern.ch on Wed Dec  6 21:35:11 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 2398 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
-Stream1             DEBUG Property update for OutputLevel : new value = 2
-Stream1.Stream1...  DEBUG Property update for OutputLevel : new value = 2
-ClassIDSvc           INFO  getRegistryEntries: read 690 CLIDRegistry entries for module ALL
 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 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-local.cern.ch:8000/atlr)(serverurl=http://atlasfrontier-ai.cern.ch:8000/atlr)(serverurl=http://lcgft-atlas.gridpp.rl.ac.uk:3128/frontierATLAS)(serverurl=http://ccfrontier.in2p3.fr:23128/ccin2p3-AtlasFrontier)(proxyurl=http://ca-proxy.cern.ch:3128)(proxyurl=http://ca-proxy-meyrin.cern.ch:3128)(proxyurl=http://ca-proxy-wigner.cern.ch:3128) will be considered for COOL data
-DBReplicaSvc         INFO Read replica configuration from /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2017-12-05T2302/Athena/22.0.0/InstallArea/x86_64-slc6-gcc62-opt/share/dbreplica.config
-DBReplicaSvc         INFO Total of 10 servers found for host lxplus020.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 
 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] 
-EventSelector       DEBUG Property update for OutputLevel : new value = 2
-EventSelector        INFO Initializing EventSelector - package version EventSelectorAthenaPool-00-00-00
 EventSelector        INFO reinitialization...
 EventSelector        INFO EventSelection with query 
 EventSelector       DEBUG Try item: "SimplePoolFile1.root" from the collection list.
-Domain[ROOT_All]     INFO ->  Access   DbDatabase   READ      [ROOT_All] ????
 Domain[ROOT_All]     INFO                           SimplePoolFile1.root
 SimplePoolFile1...  DEBUG --> Access   DbContainer  READ      [ROOT_All] ##Shapes
 ##Shapes            DEBUG Opening
@@ -97,15 +67,13 @@ SimplePoolFile1...  DEBUG --->Reading Assoc:????/POOLCollectionTree(EventNumber)
 SimplePoolFile1...  DEBUG ---->ClassID:????
 SimplePoolFile1...  DEBUG --->Reading Assoc:????/POOLCollectionTree(MagicNumber) [202]  (a , ffffffff)
 SimplePoolFile1...  DEBUG ---->ClassID:????
-SimplePoolFile1...  DEBUG --->Reading Assoc:????/POOLContainer(basic/DataHeader) [202]  (b , ffffffff)
+SimplePoolFile1...  DEBUG --->Reading Assoc:????/MetaData(EventStreamInfo_p3/Stream1) [202]  (b , ffffffff)
 SimplePoolFile1...  DEBUG ---->ClassID:????
-SimplePoolFile1...  DEBUG --->Reading Assoc:????/MetaData(EventStreamInfo_p3/Stream1) [202]  (c , ffffffff)
+SimplePoolFile1...  DEBUG --->Reading Assoc:????/MetaDataHdrForm(DataHeaderForm) [202]  (c , ffffffff)
 SimplePoolFile1...  DEBUG ---->ClassID:????
-SimplePoolFile1...  DEBUG --->Reading Assoc:????/MetaDataHdrForm(DataHeaderForm) [202]  (d , ffffffff)
+SimplePoolFile1...  DEBUG --->Reading Assoc:????/MetaDataHdr(DataHeader) [202]  (d , ffffffff)
 SimplePoolFile1...  DEBUG ---->ClassID:????
-SimplePoolFile1...  DEBUG --->Reading Assoc:????/MetaDataHdr(DataHeader) [202]  (e , ffffffff)
-SimplePoolFile1...  DEBUG ---->ClassID:????
-##Links             DEBUG No objects passing selection criteria... Container has 13 Entries in total.
+##Links             DEBUG No objects passing selection criteria... Container has 12 Entries in total.
 SimplePoolFile1...  DEBUG --> Access   DbContainer  READ      [ROOT_All] ##Params
 ##Params            DEBUG Opening
 ##Params            DEBUG    attributes# = 1
@@ -126,28 +94,16 @@ MetaDataHdrForm...  DEBUG Opening
 MetaDataHdrForm...  DEBUG    attributes# = 1
 MetaDataHdrForm...  DEBUG Branch container 'DataHeaderForm'
 MetaDataHdrForm...  DEBUG Opened container MetaDataHdrForm(DataHeaderForm) of type ROOT_Tree
-AthenaPoolAddre...  DEBUG Property update for OutputLevel : new value = 2
-AthenaPoolAddre...   INFO Initializing AthenaPoolAddressProviderSvc - package version EventSelectorAthenaPool-00-00-00
 Stream1             DEBUG Found StoreGateSvc store.
 Stream1             DEBUG Found MetaDataStore store.
-OutputStreamSeq...   INFO Initializing OutputStreamSequencerSvc - package version AthenaServices-00-00-00
-Stream1.Stream1...  DEBUG Property update for OutputLevel : new value = 2
-ClassIDSvc           INFO  getRegistryEntries: read 1723 CLIDRegistry entries for module ALL
-Stream1.Stream1...   INFO Initializing Stream1.Stream1Tool - package version OutputStreamAthenaPool-00-00-00
-Stream1.Stream1...   INFO streamProperty ProcessingTag = Stream1
 AthenaPoolAddre...  DEBUG Cannot find DataHeader in DetectorStore.
-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: SimplePoolReplica1.root
-Stream1              INFO I/O reinitialization...
+Stream1              INFO ../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
+Stream1             DEBUG Adding private ToolHandle tool Stream1.Stream1Tool (AthenaOutputStreamTool)
 HistogramPersis...WARNING Histograms saving not required.
 AthenaEventLoopMgr   INFO Setup EventSelector service EventSelector
 ApplicationMgr       INFO Application Manager Initialized successfully
@@ -171,23 +127,17 @@ POOLContainerFo...  DEBUG Opened container POOLContainerForm(DataHeaderForm) of
 AthenaPoolAddre...  DEBUG The current Event contains: 3 objects
 AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo
 AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 9102, name = MyHits
-AlgResourcePool      INFO TopAlg list empty. Recovering the one of Application Manager
 SimplePoolFile1...  DEBUG --> Access   DbContainer  READ      [ROOT_Tree] CollectionTree(EventInfo_p4/McEventInfo)
 CollectionTree(...  DEBUG Opening
 CollectionTree(...  DEBUG    attributes# = 1
 CollectionTree(...  DEBUG Branch container 'EventInfo_p4_McEventInfo'
 CollectionTree(...  DEBUG Opened container CollectionTree(EventInfo_p4/McEventInfo) of type ROOT_Tree
-AthenaPoolConve...   INFO massageEventInfo: unable to get OverrideRunNumberFromInput property from EventSelector 
-ClassIDSvc           INFO  getRegistryEntries: read 11 CLIDRegistry entries for module ALL
 AthenaEventLoopMgr   INFO   ===>>>  start of run 1    <<<===
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #0, run #1 0 events processed so far  <<<===
-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                           SimplePoolReplica1.root
 SimplePoolRepli...  DEBUG --> Access   DbContainer  CREATE    [ROOT_All] ##Shapes
 ##Shapes            DEBUG Opening
@@ -218,7 +168,6 @@ CollectionTree(...  DEBUG    attributes# = 1
 CollectionTree(...  DEBUG Branch container 'ExampleHitContainer_p1_MyHits'
 CollectionTree(...  DEBUG Opened container CollectionTree(ExampleHitContainer_p1/MyHits) of type ROOT_Tree
 Stream1             DEBUG  Added object 9102,"MyHits"
-ClassIDSvc           INFO  getRegistryEntries: read 10 CLIDRegistry entries for module ALL
 Stream1             DEBUG  Collected objects:
 Stream1             DEBUG  Object/count: EventInfo_McEventInfo, 1
 Stream1             DEBUG  Object/count: ExampleHitContainer_MyHits, 1
@@ -262,13 +211,6 @@ SimplePoolRepli...  DEBUG ---->ClassID:????
 SimplePoolRepli...  DEBUG --->Adding Shape[3 , ????]:  [1 Column(s)] 
 SimplePoolRepli...  DEBUG ---->Class:DataHeader_p5
 SimplePoolRepli...  DEBUG ---->[0]:DataHeader_p5 Typ:DataHeader_p5 [21] Size:0 Offset:0 #Elements:1
-SimplePoolRepli...  DEBUG --> Access   DbContainer  CREA/UPDA [ROOT_Tree] POOLContainer(basic/DataHeader)
-POOLContainer(b...  DEBUG Opening
-POOLContainer(b...  DEBUG    attributes# = 1
-POOLContainer(b...  DEBUG Branch container 'basic_DataHeader'
-POOLContainer(b...  DEBUG Opened container POOLContainer(basic/DataHeader) of type ROOT_Tree
-SimplePoolRepli...  DEBUG --->Adding Assoc :????/POOLContainer(basic/DataHeader) [202]  (7 , ffffffff)
-SimplePoolRepli...  DEBUG ---->ClassID:????
 AthenaPoolCnvSvc    DEBUG setAttribute BRANCH_BASKET_SIZE to 256000 for db: SimplePoolReplica1.root and cont: POOLContainer(DataHeader)
 AthenaPoolCnvSvc    DEBUG setAttribute BRANCH_BASKET_SIZE to 1024000 for db: SimplePoolReplica1.root and cont: POOLContainerForm(DataHeaderForm)
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #0, run #1 1 events processed so far  <<<===
@@ -633,7 +575,6 @@ Stream1             DEBUG  Collected objects:
 Stream1             DEBUG  Object/count: EventInfo_McEventInfo, 20
 Stream1             DEBUG  Object/count: ExampleHitContainer_MyHits, 20
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #19, run #1 20 events processed so far  <<<===
-Domain[ROOT_All]     INFO ->  Deaccess DbDatabase   READ      [ROOT_All] ????
 Domain[ROOT_All]     INFO >   Deaccess DbDomain     READ      [ROOT_All] 
 AthenaEventLoopMgr   INFO No more events in event selection 
 Stream1             DEBUG handle() incident type: MetaDataStop
@@ -649,7 +590,7 @@ MetaData(EventS...  DEBUG Opening
 MetaData(EventS...  DEBUG    attributes# = 1
 MetaData(EventS...  DEBUG Branch container 'EventStreamInfo_p3_Stream1'
 MetaData(EventS...  DEBUG Opened container MetaData(EventStreamInfo_p3/Stream1) of type ROOT_Tree
-SimplePoolRepli...  DEBUG --->Adding Assoc :????/MetaData(EventStreamInfo_p3/Stream1) [202]  (8 , ffffffff)
+SimplePoolRepli...  DEBUG --->Adding Assoc :????/MetaData(EventStreamInfo_p3/Stream1) [202]  (7 , ffffffff)
 SimplePoolRepli...  DEBUG ---->ClassID:????
 SimplePoolRepli...  DEBUG --->Adding Shape[4 , ????]:  [1 Column(s)] 
 SimplePoolRepli...  DEBUG ---->Class:EventStreamInfo_p3
@@ -659,24 +600,21 @@ MetaDataHdrForm...  DEBUG Opening
 MetaDataHdrForm...  DEBUG    attributes# = 1
 MetaDataHdrForm...  DEBUG Branch container 'DataHeaderForm'
 MetaDataHdrForm...  DEBUG Opened container MetaDataHdrForm(DataHeaderForm) of type ROOT_Tree
-SimplePoolRepli...  DEBUG --->Adding Assoc :????/MetaDataHdrForm(DataHeaderForm) [202]  (9 , ffffffff)
+SimplePoolRepli...  DEBUG --->Adding Assoc :????/MetaDataHdrForm(DataHeaderForm) [202]  (8 , ffffffff)
 SimplePoolRepli...  DEBUG ---->ClassID:????
 SimplePoolRepli...  DEBUG --> Access   DbContainer  CREA/UPDA [ROOT_Tree] MetaDataHdr(DataHeader)
 MetaDataHdr(Dat...  DEBUG Opening
 MetaDataHdr(Dat...  DEBUG    attributes# = 1
 MetaDataHdr(Dat...  DEBUG Branch container 'DataHeader'
 MetaDataHdr(Dat...  DEBUG Opened container MetaDataHdr(DataHeader) of type ROOT_Tree
-SimplePoolRepli...  DEBUG --->Adding Assoc :????/MetaDataHdr(DataHeader) [202]  (a , ffffffff)
+SimplePoolRepli...  DEBUG --->Adding Assoc :????/MetaDataHdr(DataHeader) [202]  (9 , ffffffff)
 SimplePoolRepli...  DEBUG ---->ClassID:????
 Stream1              INFO Records written: 21
 Stream1             DEBUG Leaving handle
-Domain[ROOT_All]     INFO ->  Deaccess DbDatabase   CREATE    [ROOT_All] ????
 Domain[ROOT_All]     INFO >   Deaccess DbDomain     UPDATE    [ROOT_All] 
 ApplicationMgr       INFO Application Manager Stopped successfully
-IncidentProcAlg1     INFO Finalize
 Stream1             DEBUG finalize: Optimize output
 Stream1             DEBUG finalize: end optimize output
-IncidentProcAlg2     INFO Finalize
 AthenaPoolCnvSvc    DEBUG releasing all workers
 DecisionSvc          INFO Finalized successfully.
 AthDictLoaderSvc     INFO in finalize...
@@ -684,13 +622,6 @@ ToolSvc              INFO Removing all tools created by ToolSvc
 *****Chrono*****     INFO ****************************************************************************************************
 *****Chrono*****     INFO  The Final CPU consumption ( Chrono ) Table (ordered)
 *****Chrono*****     INFO ****************************************************************************************************
-commitOutput         INFO Time User   : Tot=    0 [us] Ave/Min/Max=    0(+-    0)/    0/    0 [us] #= 21
-fRep_ALL             INFO Time User   : Tot=    0 [us] Ave/Min/Max=    0(+-    0)/    0/    0 [us] #= 82
-cRepR_ALL            INFO Time User   : Tot=   10 [ms] Ave/Min/Max=0.0813(+-0.898)/    0/   10 [ms] #=123
-cObjR_ALL            INFO Time User   : Tot=    0 [us] Ave/Min/Max=    0(+-    0)/    0/    0 [us] #= 65
-cRep_ALL             INFO Time User   : Tot=   20 [ms] Ave/Min/Max=0.244(+- 1.54)/    0/   10 [ms] #= 82
-cObj_ALL             INFO Time User   : Tot=   50 [ms] Ave/Min/Max=0.806(+- 3.72)/    0/   20 [ms] #= 62
-ChronoStatSvc        INFO Time User   : Tot= 0.99  [s]                                             #=  1
 *****Chrono*****     INFO ****************************************************************************************************
 ChronoStatSvc.f...   INFO  Service finalized successfully 
 ApplicationMgr       INFO Application Manager Finalized successfully
diff --git a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_Filter.ref b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_Filter.ref
index 0af49e99dd0ad19f0de3c559e4712a27aed03800..e66bb8b935b7f56014e21915fb6518621242c4dc 100644
--- a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_Filter.ref
+++ b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_Filter.ref
@@ -1,51 +1,23 @@
-Mon Jan 22 13:12:54 CST 2018
-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_FilterJobOptions.py"
-Py:ConfigurableDb    INFO Read module info for 5435 configurables from 52 genConfDb files
-Py:ConfigurableDb    INFO No duplicates have been found: that's good !
 Athena               INFO including file "AthenaCommon/runbatch.py"
-[?1034hApplicationMgr       INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0
-ApplicationMgr    SUCCESS 
-====================================================================================================================================
-                                                   Welcome to ApplicationMgr (GaudiCoreSvc v30r1)
-                                          running on atlas1.hep.anl.gov on Mon Jan 22 13:13:05 2018
-====================================================================================================================================
-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 2319 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
-ReadData            DEBUG Property update for OutputLevel : new value = 2
 ReadData             INFO in initialize()
-MetaDataSvc         DEBUG Property update for OutputLevel : new value = 2
-MetaDataSvc          INFO Initializing MetaDataSvc - package version AthenaServices-00-00-00
-AthenaPoolCnvSvc     INFO Initializing AthenaPoolCnvSvc - package version AthenaPoolCnvSvc-00-00-00
-PoolSvc             DEBUG Property update for OutputLevel : new value = 2
 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://lcgft-atlas.gridpp.rl.ac.uk:3128/frontierATLAS)(serverurl=http://frontier-atlas.lcg.triumf.ca:3128/ATLAS_frontier)(serverurl=http://ccfrontier.in2p3.fr:23128/ccin2p3-AtlasFrontier) will be considered for COOL data
-DBReplicaSvc         INFO Read replica configuration from /users/gemmeren/workarea/build/x86_64-slc6-gcc62-opt/share/dbreplica.config
-DBReplicaSvc         INFO Total of 1 servers found for host atlas1.hep.anl.gov [ATLF ]
 PoolSvc              INFO Successfully setup replica sorting algorithm
 PoolSvc             DEBUG OutputLevel is 
 PoolSvc              INFO Setting up APR FileCatalog and Streams
 PoolSvc             DEBUG POOL ReadCatalog is file:Catalog.xml
 PoolSvc              INFO POOL WriteCatalog is file:Catalog1.xml
-DbSession            INFO     Open     DbSession    
-Domain[ROOT_All]     INFO >   Access   DbDomain     READ      [ROOT_All] 
-EventSelector       DEBUG Property update for OutputLevel : new value = 2
-EventSelector        INFO Initializing EventSelector - package version EventSelectorAthenaPool-00-00-00
-EventSelector.Q...  DEBUG Property update for OutputLevel : new value = 2
 EventSelector.Q...   INFO in initialize()
 EventSelector        INFO reinitialization...
 EventSelector        INFO EventSelection with query EventNumber > 5
@@ -53,7 +25,6 @@ EventSelector       DEBUG Try item: "SimplePoolCollection3.root" from the collec
 EventSelector        INFO Using standard collection ref 
 MetaDataSvc         DEBUG handle() FirstInputFile for FID:????
 MetaDataSvc         DEBUG initInputMetaDataStore: file name FID:????
-Domain[ROOT_All]     INFO ->  Access   DbDatabase   READ      [ROOT_All] ????
 Domain[ROOT_All]     INFO                           SimplePoolFile3.root
 SimplePoolFile3...  DEBUG --> Access   DbContainer  READ      [ROOT_All] ##Shapes
 ##Shapes            DEBUG Opening
@@ -96,15 +67,13 @@ SimplePoolFile3...  DEBUG --->Reading Assoc:????/POOLCollectionTree(EventNumber)
 SimplePoolFile3...  DEBUG ---->ClassID:????
 SimplePoolFile3...  DEBUG --->Reading Assoc:????/POOLCollectionTree(MagicNumber) [202]  (a , ffffffff)
 SimplePoolFile3...  DEBUG ---->ClassID:????
-SimplePoolFile3...  DEBUG --->Reading Assoc:????/POOLContainer(basic/DataHeader) [202]  (b , ffffffff)
+SimplePoolFile3...  DEBUG --->Reading Assoc:????/MetaData(EventStreamInfo_p3/Stream1) [202]  (b , ffffffff)
 SimplePoolFile3...  DEBUG ---->ClassID:????
-SimplePoolFile3...  DEBUG --->Reading Assoc:????/MetaData(EventStreamInfo_p3/Stream1) [202]  (c , ffffffff)
+SimplePoolFile3...  DEBUG --->Reading Assoc:????/MetaDataHdrForm(DataHeaderForm) [202]  (c , ffffffff)
 SimplePoolFile3...  DEBUG ---->ClassID:????
-SimplePoolFile3...  DEBUG --->Reading Assoc:????/MetaDataHdrForm(DataHeaderForm) [202]  (d , ffffffff)
+SimplePoolFile3...  DEBUG --->Reading Assoc:????/MetaDataHdr(DataHeader) [202]  (d , ffffffff)
 SimplePoolFile3...  DEBUG ---->ClassID:????
-SimplePoolFile3...  DEBUG --->Reading Assoc:????/MetaDataHdr(DataHeader) [202]  (e , ffffffff)
-SimplePoolFile3...  DEBUG ---->ClassID:????
-##Links             DEBUG No objects passing selection criteria... Container has 13 Entries in total.
+##Links             DEBUG No objects passing selection criteria... Container has 12 Entries in total.
 SimplePoolFile3...  DEBUG --> Access   DbContainer  READ      [ROOT_All] ##Params
 ##Params            DEBUG Opening
 ##Params            DEBUG    attributes# = 1
@@ -126,13 +95,6 @@ MetaDataHdrForm...  DEBUG    attributes# = 1
 MetaDataHdrForm...  DEBUG Branch container 'DataHeaderForm'
 MetaDataHdrForm...  DEBUG Opened container MetaDataHdrForm(DataHeaderForm) of type ROOT_Tree
 MetaDataSvc         DEBUG Loaded input meta data store proxies
-AthenaPoolAddre...  DEBUG Property update for OutputLevel : new value = 2
-ReadData            DEBUG input handles: 0
-ReadData            DEBUG output handles: 0
-ReadData            DEBUG Data Deps for ReadData
-Stream1             DEBUG Property update for OutputLevel : new value = 2
-Stream1.Stream1...  DEBUG Property update for OutputLevel : new value = 2
-ClassIDSvc           INFO  getRegistryEntries: read 3114 CLIDRegistry entries for module ALL
 Stream1             DEBUG In initialize 
 Stream1             DEBUG Found IDecisionSvc.
 DecisionSvc          INFO Inserting stream: Stream1 with no Algs
@@ -140,43 +102,28 @@ Stream1             DEBUG End initialize
 Stream1             DEBUG In initialize
 Stream1             DEBUG Found StoreGateSvc store.
 Stream1             DEBUG Found MetaDataStore store.
-OutputStreamSeq...   INFO Initializing OutputStreamSequencerSvc - package version AthenaServices-00-00-00
-Stream1.Stream1...  DEBUG Property update for OutputLevel : new value = 2
-ClassIDSvc           INFO  getRegistryEntries: read 386 CLIDRegistry entries for module ALL
-Stream1.Stream1...   INFO Initializing Stream1.Stream1Tool - package version OutputStreamAthenaPool-00-00-00
 AthenaPoolAddre...  DEBUG Cannot find DataHeader in DetectorStore.
-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: SimplePoolFile5.root
-Stream1              INFO I/O reinitialization...
+Stream1              INFO ../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
+Stream1             DEBUG Adding private ToolHandle tool Stream1.Stream1Tool (AthenaOutputStreamTool)
 WriteTag             INFO in initialize()
-RegStream1          DEBUG Property update for OutputLevel : new value = 2
-RegStream1.RegS...  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,"RunEventTag") 
 RegStream1          DEBUG  Not class requested by Tool, skipping (222376821,"*") 
 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
 HistogramPersis...WARNING Histograms saving not required.
 AthenaEventLoopMgr   INFO Setup EventSelector service EventSelector
 ApplicationMgr       INFO Application Manager Initialized successfully
@@ -229,14 +176,11 @@ POOLContainerFo...  DEBUG Opened container POOLContainerForm(DataHeaderForm) of
 AthenaPoolAddre...  DEBUG The current Event contains: 3 objects
 AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo
 AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 9103, name = MyTracks
-AlgResourcePool      INFO TopAlg list empty. Recovering the one of Application Manager
 SimplePoolFile3...  DEBUG --> Access   DbContainer  READ      [ROOT_Tree] CollectionTree(EventInfo_p4/McEventInfo)
 CollectionTree(...  DEBUG Opening
 CollectionTree(...  DEBUG    attributes# = 1
 CollectionTree(...  DEBUG Branch container 'EventInfo_p4_McEventInfo'
 CollectionTree(...  DEBUG Opened container CollectionTree(EventInfo_p4/McEventInfo) of type ROOT_Tree
-AthenaPoolConve...   INFO massageEventInfo: unable to get OverrideRunNumberFromInput property from EventSelector 
-ClassIDSvc           INFO  getRegistryEntries: read 11 CLIDRegistry entries for module ALL
 AthenaEventLoopMgr   INFO   ===>>>  start of run 1    <<<===
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #10, run #1 0 events processed so far  <<<===
 ReadData            DEBUG in execute()
@@ -262,9 +206,6 @@ CollectionTree(...  DEBUG Opened container CollectionTree(ExampleTrackContainer_
 ReadData             INFO Track pt = 1018.38 eta = -11.0052 phi = 149.134 detector = Track made in: DummyHitDetector
 ReadData          WARNING Could not follow ExampleTrackContainer/MyTracks ElementLinks to ExampleHitContainer/MyHits
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-DbSession            INFO     Open     DbSession    
-Domain[ROOT_All]     INFO >   Access   DbDomain     UPDATE    [ROOT_All] 
-Domain[ROOT_All]     INFO ->  Access   DbDatabase   CREATE    [ROOT_All] ????
 Domain[ROOT_All]     INFO                           SimplePoolFile5.root
 SimplePoolFile5...  DEBUG --> Access   DbContainer  CREATE    [ROOT_All] ##Shapes
 ##Shapes            DEBUG Opening
@@ -283,7 +224,6 @@ SimplePoolFile5...  DEBUG --> Access   DbContainer  CREATE    [ROOT_All] ##Param
 SimplePoolFile5...  DEBUG --->Adding Assoc :????/##Params [200]  (2 , ffffffff)
 SimplePoolFile5...  DEBUG ---->ClassID:????
 ##Params            DEBUG No objects passing selection criteria... Container has 0 Entries in total.
-ClassIDSvc           INFO  getRegistryEntries: read 10 CLIDRegistry entries for module ALL
 Stream1             DEBUG addItemObjects(2101,"*") called
 Stream1             DEBUG            Key:*
 Stream1             DEBUG  Added object 2101,"McEventInfo"
@@ -333,13 +273,6 @@ SimplePoolFile5...  DEBUG ---->ClassID:????
 SimplePoolFile5...  DEBUG --->Adding Shape[3 , ????]:  [1 Column(s)] 
 SimplePoolFile5...  DEBUG ---->Class:DataHeader_p5
 SimplePoolFile5...  DEBUG ---->[0]:DataHeader_p5 Typ:DataHeader_p5 [21] Size:0 Offset:0 #Elements:1
-SimplePoolFile5...  DEBUG --> Access   DbContainer  CREA/UPDA [ROOT_Tree] POOLContainer(basic/DataHeader)
-POOLContainer(b...  DEBUG Opening
-POOLContainer(b...  DEBUG    attributes# = 1
-POOLContainer(b...  DEBUG Branch container 'basic_DataHeader'
-POOLContainer(b...  DEBUG Opened container POOLContainer(basic/DataHeader) of type ROOT_Tree
-SimplePoolFile5...  DEBUG --->Adding Assoc :????/POOLContainer(basic/DataHeader) [202]  (7 , ffffffff)
-SimplePoolFile5...  DEBUG ---->ClassID:????
 WriteTag             INFO EventInfo event: 10  run: 1
 WriteTag             INFO registered all data
 RegStream1          DEBUG RegistrationStream execute
@@ -763,7 +696,6 @@ RegStream1          DEBUG  Not class requested by Tool, skipping (222376821,"*")
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #19, run #1 10 events processed so far  <<<===
 MetaDataSvc         DEBUG handle() EndInputFile for FID:????
 MetaDataSvc         DEBUG handle() EndTagFile for SimplePoolCollection3.root
-Domain[ROOT_All]     INFO ->  Deaccess DbDatabase   READ      [ROOT_All] ????
 Domain[ROOT_All]     INFO >   Deaccess DbDomain     READ      [ROOT_All] 
 MetaDataSvc         DEBUG handle() LastInputFile for end
 AthenaEventLoopMgr   INFO No more events in event selection 
@@ -782,7 +714,7 @@ MetaData(EventS...  DEBUG Opening
 MetaData(EventS...  DEBUG    attributes# = 1
 MetaData(EventS...  DEBUG Branch container 'EventStreamInfo_p3_Stream1'
 MetaData(EventS...  DEBUG Opened container MetaData(EventStreamInfo_p3/Stream1) of type ROOT_Tree
-SimplePoolFile5...  DEBUG --->Adding Assoc :????/MetaData(EventStreamInfo_p3/Stream1) [202]  (8 , ffffffff)
+SimplePoolFile5...  DEBUG --->Adding Assoc :????/MetaData(EventStreamInfo_p3/Stream1) [202]  (7 , ffffffff)
 SimplePoolFile5...  DEBUG ---->ClassID:????
 SimplePoolFile5...  DEBUG --->Adding Shape[4 , ????]:  [1 Column(s)] 
 SimplePoolFile5...  DEBUG ---->Class:EventStreamInfo_p3
@@ -792,29 +724,26 @@ MetaDataHdrForm...  DEBUG Opening
 MetaDataHdrForm...  DEBUG    attributes# = 1
 MetaDataHdrForm...  DEBUG Branch container 'DataHeaderForm'
 MetaDataHdrForm...  DEBUG Opened container MetaDataHdrForm(DataHeaderForm) of type ROOT_Tree
-SimplePoolFile5...  DEBUG --->Adding Assoc :????/MetaDataHdrForm(DataHeaderForm) [202]  (9 , ffffffff)
+SimplePoolFile5...  DEBUG --->Adding Assoc :????/MetaDataHdrForm(DataHeaderForm) [202]  (8 , ffffffff)
 SimplePoolFile5...  DEBUG ---->ClassID:????
 SimplePoolFile5...  DEBUG --> Access   DbContainer  CREA/UPDA [ROOT_Tree] MetaDataHdr(DataHeader)
 MetaDataHdr(Dat...  DEBUG Opening
 MetaDataHdr(Dat...  DEBUG    attributes# = 1
 MetaDataHdr(Dat...  DEBUG Branch container 'DataHeader'
 MetaDataHdr(Dat...  DEBUG Opened container MetaDataHdr(DataHeader) of type ROOT_Tree
-SimplePoolFile5...  DEBUG --->Adding Assoc :????/MetaDataHdr(DataHeader) [202]  (a , ffffffff)
+SimplePoolFile5...  DEBUG --->Adding Assoc :????/MetaDataHdr(DataHeader) [202]  (9 , ffffffff)
 SimplePoolFile5...  DEBUG ---->ClassID:????
 Stream1              INFO Records written: 11
 Stream1             DEBUG Leaving handle
 RegStream1          DEBUG handle() incident type: MetaDataStop
 RegStream1.TagTool   INFO Collection Events output: 10
-Domain[ROOT_All]     INFO ->  Deaccess DbDatabase   CREATE    [ROOT_All] ????
 Domain[ROOT_All]     INFO >   Deaccess DbDomain     UPDATE    [ROOT_All] 
 ApplicationMgr       INFO Application Manager Stopped successfully
-IncidentProcAlg1     INFO Finalize
 ReadData             INFO in finalize()
 Stream1             DEBUG finalize: Optimize output
 Stream1             DEBUG finalize: end optimize output
 WriteTag             INFO in finalize()
 RegStream1          DEBUG In finalize
-IncidentProcAlg2     INFO Finalize
 DecisionSvc          INFO Finalized successfully.
 AthDictLoaderSvc     INFO in finalize...
 ToolSvc              INFO Removing all tools created by ToolSvc
@@ -822,13 +751,6 @@ EventSelector.Q...   INFO in finalize()
 *****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] #= 42
-commitOutput         INFO Time User   : Tot=   10 [ms] Ave/Min/Max=0.909(+- 2.87)/    0/   10 [ms] #= 11
-cRep_ALL             INFO Time User   : Tot=   10 [ms] Ave/Min/Max=0.238(+- 1.52)/    0/   10 [ms] #= 42
-cRepR_ALL            INFO Time User   : Tot=   10 [ms] Ave/Min/Max=0.159(+- 1.25)/    0/   10 [ms] #= 63
-cObjR_ALL            INFO Time User   : Tot=   20 [ms] Ave/Min/Max=0.571(+- 3.33)/    0/   20 [ms] #= 35
-cObj_ALL             INFO Time User   : Tot=   60 [ms] Ave/Min/Max= 1.82(+- 6.25)/    0/   30 [ms] #= 33
-ChronoStatSvc        INFO Time User   : Tot= 1.13  [s]                                             #=  1
 *****Chrono*****     INFO ****************************************************************************************************
 ChronoStatSvc.f...   INFO  Service finalized successfully 
 ApplicationMgr       INFO Application Manager Finalized successfully
diff --git a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_RCond.ref b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_RCond.ref
index fbf88a0f652c966a5c6ef343a871e95451e06988..86f804ba787f18520ca7a2a84c2b40279b0bbb99 100644
--- a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_RCond.ref
+++ b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_RCond.ref
@@ -1,60 +1,28 @@
-Wed Dec 20 16:04:58 CST 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_RCondJobOptions.py"
-Py:ConfigurableDb    INFO Read module info for 5435 configurables from 51 genConfDb files
-Py:ConfigurableDb    INFO No duplicates have been found: that's good !
 Athena               INFO including file "AthenaCommon/runbatch.py"
-[?1034hApplicationMgr       INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0
-ApplicationMgr    SUCCESS 
-====================================================================================================================================
-                                                   Welcome to ApplicationMgr (GaudiCoreSvc v30r0)
-                                          running on atlas2.hep.anl.gov on Wed Dec 20 16:05:08 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 2318 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
-ReadCond            DEBUG Property update for OutputLevel : new value = 2
 ReadCond             INFO in initialize()
-ReadCond            DEBUG input handles: 0
-ReadCond            DEBUG output handles: 0
-ReadCond            DEBUG Data Deps for ReadCond
-ReadData            DEBUG Property update for OutputLevel : new value = 2
 ReadData             INFO in initialize()
-MetaDataSvc         DEBUG Property update for OutputLevel : new value = 2
-MetaDataSvc          INFO Initializing MetaDataSvc - package version AthenaServices-00-00-00
-AthenaPoolCnvSvc     INFO Initializing AthenaPoolCnvSvc - package version AthenaPoolCnvSvc-00-00-00
-PoolSvc             DEBUG Property update for OutputLevel : new value = 2
 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://lcgft-atlas.gridpp.rl.ac.uk:3128/frontierATLAS)(serverurl=http://frontier-atlas.lcg.triumf.ca:3128/ATLAS_frontier)(serverurl=http://ccfrontier.in2p3.fr:23128/ccin2p3-AtlasFrontier) will be considered for COOL data
-DBReplicaSvc         INFO Read replica configuration from /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2017-12-17T2303/Athena/22.0.0/InstallArea/x86_64-slc6-gcc62-opt/share/dbreplica.config
-DBReplicaSvc         INFO Total of 1 servers found for host atlas2.hep.anl.gov [ATLF ]
 PoolSvc              INFO Successfully setup replica sorting algorithm
 PoolSvc             DEBUG OutputLevel is 
 PoolSvc              INFO Setting up APR FileCatalog and Streams
 PoolSvc             DEBUG POOL ReadCatalog is file:Catalog0.xml
 PoolSvc             DEBUG POOL ReadCatalog is file:Catalog1.xml
 PoolSvc              INFO POOL WriteCatalog is file:Catalog2.xml
-DbSession            INFO     Open     DbSession    
-Domain[ROOT_All]     INFO >   Access   DbDomain     READ      [ROOT_All] 
-EventSelector       DEBUG Property update for OutputLevel : new value = 2
-EventSelector        INFO Initializing EventSelector - package version EventSelectorAthenaPool-00-00-00
 EventSelector        INFO reinitialization...
 EventSelector        INFO EventSelection with query 
 EventSelector       DEBUG Try item: "SimplePoolFile1.root" from the collection list.
-Domain[ROOT_All]     INFO ->  Access   DbDatabase   READ      [ROOT_All] ????
 Domain[ROOT_All]     INFO                           SimplePoolFile1.root
 SimplePoolFile1...  DEBUG --> Access   DbContainer  READ      [ROOT_All] ##Shapes
 ##Shapes            DEBUG Opening
@@ -85,15 +53,13 @@ SimplePoolFile1...  DEBUG --->Reading Assoc:????/POOLContainerForm(DataHeaderFor
 SimplePoolFile1...  DEBUG ---->ClassID:????
 SimplePoolFile1...  DEBUG --->Reading Assoc:????/POOLContainer(DataHeader) [202]  (6 , ffffffff)
 SimplePoolFile1...  DEBUG ---->ClassID:????
-SimplePoolFile1...  DEBUG --->Reading Assoc:????/POOLContainer(basic/DataHeader) [202]  (7 , ffffffff)
+SimplePoolFile1...  DEBUG --->Reading Assoc:????/MetaData(EventStreamInfo_p3/Stream1) [202]  (7 , ffffffff)
 SimplePoolFile1...  DEBUG ---->ClassID:????
-SimplePoolFile1...  DEBUG --->Reading Assoc:????/MetaData(EventStreamInfo_p3/Stream1) [202]  (8 , ffffffff)
+SimplePoolFile1...  DEBUG --->Reading Assoc:????/MetaDataHdrForm(DataHeaderForm) [202]  (8 , ffffffff)
 SimplePoolFile1...  DEBUG ---->ClassID:????
-SimplePoolFile1...  DEBUG --->Reading Assoc:????/MetaDataHdrForm(DataHeaderForm) [202]  (9 , ffffffff)
+SimplePoolFile1...  DEBUG --->Reading Assoc:????/MetaDataHdr(DataHeader) [202]  (9 , ffffffff)
 SimplePoolFile1...  DEBUG ---->ClassID:????
-SimplePoolFile1...  DEBUG --->Reading Assoc:????/MetaDataHdr(DataHeader) [202]  (a , ffffffff)
-SimplePoolFile1...  DEBUG ---->ClassID:????
-##Links             DEBUG No objects passing selection criteria... Container has 9 Entries in total.
+##Links             DEBUG No objects passing selection criteria... Container has 8 Entries in total.
 SimplePoolFile1...  DEBUG --> Access   DbContainer  READ      [ROOT_All] ##Params
 ##Params            DEBUG Opening
 ##Params            DEBUG    attributes# = 1
@@ -122,12 +88,7 @@ MetaDataHdrForm...  DEBUG    attributes# = 1
 MetaDataHdrForm...  DEBUG Branch container 'DataHeaderForm'
 MetaDataHdrForm...  DEBUG Opened container MetaDataHdrForm(DataHeaderForm) of type ROOT_Tree
 MetaDataSvc         DEBUG Loaded input meta data store proxies
-AthenaPoolAddre...  DEBUG Property update for OutputLevel : new value = 2
-AthenaPoolAddre...   INFO Initializing AthenaPoolAddressProviderSvc - package version EventSelectorAthenaPool-00-00-00
-CondProxyProvider   DEBUG Property update for OutputLevel : new value = 2
-CondProxyProvider    INFO Initializing CondProxyProvider - package version EventSelectorAthenaPool-00-00-00
 CondProxyProvider   DEBUG Try item: "SimplePoolFile4.root" from the collection list.
-Domain[ROOT_All]     INFO ->  Access   DbDatabase   READ      [ROOT_All] ????
 Domain[ROOT_All]     INFO                           SimplePoolFile4.root
 SimplePoolFile4...  DEBUG --> Access   DbContainer  READ      [ROOT_All] ##Shapes
 ##Shapes            DEBUG Opening
@@ -162,15 +123,10 @@ SimplePoolFile4...  DEBUG --->Reading Param:PFN=[SimplePoolFile4.root]
 SimplePoolFile4...  DEBUG --->Reading Param:POOL_VSN=[1.1]
 SimplePoolFile4...  DEBUG --->Reading Param:FORMAT_VSN=[1.1]
 ##Params            DEBUG No objects passing selection criteria... Container has 4 Entries in total.
-ReadData            DEBUG input handles: 0
-ReadData            DEBUG output handles: 0
-ReadData            DEBUG Data Deps for ReadData
 HistogramPersis...WARNING Histograms saving not required.
 AthenaEventLoopMgr   INFO Setup EventSelector service EventSelector
 ApplicationMgr       INFO Application Manager Initialized successfully
-Domain[ROOT_All]     INFO ->  Deaccess DbDatabase   READ      [ROOT_All] ????
 EventSelector       DEBUG Try item: "SimplePoolFile1.root" from the collection list.
-Domain[ROOT_All]     INFO ->  Access   DbDatabase   READ      [ROOT_All] ????
 Domain[ROOT_All]     INFO                           SimplePoolFile1.root
 SimplePoolFile1...  DEBUG --> Access   DbContainer  READ      [ROOT_All] ##Shapes
 ##Shapes            DEBUG Opening
@@ -201,15 +157,13 @@ SimplePoolFile1...  DEBUG --->Reading Assoc:????/POOLContainerForm(DataHeaderFor
 SimplePoolFile1...  DEBUG ---->ClassID:????
 SimplePoolFile1...  DEBUG --->Reading Assoc:????/POOLContainer(DataHeader) [202]  (6 , ffffffff)
 SimplePoolFile1...  DEBUG ---->ClassID:????
-SimplePoolFile1...  DEBUG --->Reading Assoc:????/POOLContainer(basic/DataHeader) [202]  (7 , ffffffff)
-SimplePoolFile1...  DEBUG ---->ClassID:????
-SimplePoolFile1...  DEBUG --->Reading Assoc:????/MetaData(EventStreamInfo_p3/Stream1) [202]  (8 , ffffffff)
+SimplePoolFile1...  DEBUG --->Reading Assoc:????/MetaData(EventStreamInfo_p3/Stream1) [202]  (7 , ffffffff)
 SimplePoolFile1...  DEBUG ---->ClassID:????
-SimplePoolFile1...  DEBUG --->Reading Assoc:????/MetaDataHdrForm(DataHeaderForm) [202]  (9 , ffffffff)
+SimplePoolFile1...  DEBUG --->Reading Assoc:????/MetaDataHdrForm(DataHeaderForm) [202]  (8 , ffffffff)
 SimplePoolFile1...  DEBUG ---->ClassID:????
-SimplePoolFile1...  DEBUG --->Reading Assoc:????/MetaDataHdr(DataHeader) [202]  (a , ffffffff)
+SimplePoolFile1...  DEBUG --->Reading Assoc:????/MetaDataHdr(DataHeader) [202]  (9 , ffffffff)
 SimplePoolFile1...  DEBUG ---->ClassID:????
-##Links             DEBUG No objects passing selection criteria... Container has 9 Entries in total.
+##Links             DEBUG No objects passing selection criteria... Container has 8 Entries in total.
 SimplePoolFile1...  DEBUG --> Access   DbContainer  READ      [ROOT_All] ##Params
 ##Params            DEBUG Opening
 ##Params            DEBUG    attributes# = 1
@@ -237,7 +191,6 @@ MetaDataSvc         DEBUG Loaded input meta data store proxies
 MetaDataSvc         DEBUG  calling beginInputFile for ToolSvc.IOVDbMetaDataTool
 EventSelector       DEBUG Get AttributeList from the collection
 EventSelector       DEBUG AttributeList size 0
-ClassIDSvc           INFO  getRegistryEntries: read 2671 CLIDRegistry entries for module ALL
 EventSelector       DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000000].
 EventSelector       DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000000].
 EventSelector       DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000000]
@@ -249,14 +202,11 @@ POOLContainerFo...  DEBUG Opened container POOLContainerForm(DataHeaderForm) of
 AthenaPoolAddre...  DEBUG The current Event contains: 3 objects
 AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo
 AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 9102, name = MyHits
-AlgResourcePool      INFO TopAlg list empty. Recovering the one of Application Manager
 SimplePoolFile1...  DEBUG --> Access   DbContainer  READ      [ROOT_Tree] CollectionTree(EventInfo_p4/McEventInfo)
 CollectionTree(...  DEBUG Opening
 CollectionTree(...  DEBUG    attributes# = 1
 CollectionTree(...  DEBUG Branch container 'EventInfo_p4_McEventInfo'
 CollectionTree(...  DEBUG Opened container CollectionTree(EventInfo_p4/McEventInfo) of type ROOT_Tree
-AthenaPoolConve...   INFO massageEventInfo: unable to get OverrideRunNumberFromInput property from EventSelector 
-ClassIDSvc           INFO  getRegistryEntries: read 11 CLIDRegistry entries for module ALL
 AthenaEventLoopMgr   INFO   ===>>>  start of run 1    <<<===
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #0, run #1 0 events processed so far  <<<===
 ReadCond            DEBUG in execute()
@@ -292,7 +242,6 @@ ReadData             INFO CLID = 9102, key = MyHits
 ReadData             INFO CLID = 222376821, key = StreamX
 ReadData             INFO EventType: Event type: sim/data -  is sim , testbeam/atlas -  is atlas , calib/physics -  is physics 
 ReadData             INFO TagInfo: 
-ClassIDSvc           INFO  getRegistryEntries: read 10 CLIDRegistry entries for module ALL
 ReadData             INFO EventInfo event: 0 run: 1
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
@@ -939,28 +888,21 @@ ReadData             INFO Hit x = 1923.7 y = 57.9027 z = -1853.68 detector = Dum
 ReadData             INFO Hit x = 1926.91 y = 52.2238 z = -1855.07 detector = DummyHitDetector
 ReadData             INFO Hit x = 1930.12 y = 46.5449 z = -1856.17 detector = DummyHitDetector
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #19, run #1 20 events processed so far  <<<===
-Domain[ROOT_All]     INFO ->  Deaccess DbDatabase   READ      [ROOT_All] ????
 MetaDataSvc         DEBUG handle() EndInputFile for FID:????
 MetaDataSvc         DEBUG handle() EndTagFile for SimplePoolFile1.root
 MetaDataSvc         DEBUG handle() LastInputFile for end
 AthenaEventLoopMgr   INFO No more events in event selection 
 MetaDataSvc         DEBUG  calling metaDataStop for ToolSvc.IOVDbMetaDataTool
 MetaDataSvc         DEBUG Releasing MetaDataTools
-Domain[ROOT_All]     INFO ->  Deaccess DbDatabase   READ      [ROOT_All] ????
 ApplicationMgr       INFO Application Manager Stopped successfully
-IncidentProcAlg1     INFO Finalize
 ReadCond             INFO in finalize()
 ReadData             INFO in finalize()
-IncidentProcAlg2     INFO Finalize
 Domain[ROOT_All]     INFO >   Deaccess DbDomain     READ      [ROOT_All] 
 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 ****************************************************************************************************
-cObjR_ALL            INFO Time User   : Tot=   10 [ms] Ave/Min/Max=0.137(+- 1.16)/    0/   10 [ms] #= 73
-cObj_ALL             INFO Time User   : Tot=   40 [ms] Ave/Min/Max=0.597(+- 2.93)/    0/   20 [ms] #= 67
-ChronoStatSvc        INFO Time User   : Tot= 0.92  [s]                                             #=  1
 *****Chrono*****     INFO ****************************************************************************************************
 ChronoStatSvc.f...   INFO  Service finalized successfully 
 ApplicationMgr       INFO Application Manager Finalized successfully
diff --git a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_RFilter.ref b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_RFilter.ref
index 1fe2e420f419a57d8e13144688598eb675132fd8..c227db742c50eaa394eac4407356668e1bab69d6 100644
--- a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_RFilter.ref
+++ b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_RFilter.ref
@@ -1,60 +1,28 @@
-Wed Dec 20 16:02:15 CST 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_RFilterJobOptions.py"
-Py:ConfigurableDb    INFO Read module info for 5439 configurables from 18 genConfDb files
-Py:ConfigurableDb    INFO No duplicates have been found: that's good !
 Athena               INFO including file "AthenaCommon/runbatch.py"
-[?1034hApplicationMgr       INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0
-ApplicationMgr    SUCCESS 
-====================================================================================================================================
-                                                   Welcome to ApplicationMgr (GaudiCoreSvc v30r0)
-                                          running on atlas2.hep.anl.gov on Wed Dec 20 16:02:26 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 2318 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
-ReadData            DEBUG Property update for OutputLevel : new value = 2
 ReadData             INFO in initialize()
-MetaDataSvc         DEBUG Property update for OutputLevel : new value = 2
-MetaDataSvc          INFO Initializing MetaDataSvc - package version AthenaServices-00-00-00
-AthenaPoolCnvSvc     INFO Initializing AthenaPoolCnvSvc - package version AthenaPoolCnvSvc-00-00-00
-PoolSvc             DEBUG Property update for OutputLevel : new value = 2
 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://lcgft-atlas.gridpp.rl.ac.uk:3128/frontierATLAS)(serverurl=http://frontier-atlas.lcg.triumf.ca:3128/ATLAS_frontier)(serverurl=http://ccfrontier.in2p3.fr:23128/ccin2p3-AtlasFrontier) will be considered for COOL data
-DBReplicaSvc         INFO Read replica configuration from /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2017-12-17T2303/Athena/22.0.0/InstallArea/x86_64-slc6-gcc62-opt/share/dbreplica.config
-DBReplicaSvc         INFO Total of 1 servers found for host atlas2.hep.anl.gov [ATLF ]
 PoolSvc              INFO Successfully setup replica sorting algorithm
 PoolSvc             DEBUG OutputLevel is 
 PoolSvc              INFO Setting up APR FileCatalog and Streams
 PoolSvc             DEBUG POOL ReadCatalog is file:Catalog.xml
 PoolSvc             DEBUG POOL ReadCatalog is file:Catalog1.xml
 PoolSvc              INFO POOL WriteCatalog is file:Catalog2.xml
-DbSession            INFO     Open     DbSession    
-Domain[ROOT_All]     INFO >   Access   DbDomain     READ      [ROOT_All] 
-EventSelector       DEBUG Property update for OutputLevel : new value = 2
-EventSelector        INFO Initializing EventSelector - package version EventSelectorAthenaPool-00-00-00
 EventSelector        INFO reinitialization...
 EventSelector        INFO EventSelection with query EventNumber > 9
 EventSelector       DEBUG Try item: "SimplePoolCollection5.root" from the collection list.
 EventSelector        INFO Using standard collection ref 
-AthenaPoolAddre...  DEBUG Property update for OutputLevel : new value = 2
-AthenaPoolAddre...   INFO Initializing AthenaPoolAddressProviderSvc - package version EventSelectorAthenaPool-00-00-00
-ReadData            DEBUG input handles: 0
-ReadData            DEBUG output handles: 0
-ReadData            DEBUG Data Deps for ReadData
 HistogramPersis...WARNING Histograms saving not required.
 AthenaEventLoopMgr   INFO Setup EventSelector service EventSelector
 ApplicationMgr       INFO Application Manager Initialized successfully
@@ -62,13 +30,11 @@ EventSelector       DEBUG Try item: "SimplePoolCollection5.root" from the collec
 ApplicationMgr       INFO Application Manager Started successfully
 EventSelector       DEBUG Get AttributeList from the collection
 EventSelector       DEBUG AttributeList size 2
-ClassIDSvc           INFO  getRegistryEntries: read 2617 CLIDRegistry entries for module ALL
 EventSelector       DEBUG record AthenaAttribute, name = Stream1_derived_ref = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000000].
 EventSelector       DEBUG record AthenaAttribute, name = Stream1_ref = [DB=????][CNT=][CLID=????][TECH=00000202][OID=00000006-0000000A].
 EventSelector       DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000000].
 EventSelector       DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000000]
 EventPersistenc...   INFO Added successfully Conversion service:AthenaPoolCnvSvc
-Domain[ROOT_All]     INFO ->  Access   DbDatabase   READ      [ROOT_All] ????
 Domain[ROOT_All]     INFO                           SimplePoolFile5.root
 SimplePoolFile5...  DEBUG --> Access   DbContainer  READ      [ROOT_All] ##Shapes
 ##Shapes            DEBUG Opening
@@ -99,15 +65,13 @@ SimplePoolFile5...  DEBUG --->Reading Assoc:????/POOLContainerForm(DataHeaderFor
 SimplePoolFile5...  DEBUG ---->ClassID:????
 SimplePoolFile5...  DEBUG --->Reading Assoc:????/POOLContainer(DataHeader) [202]  (6 , ffffffff)
 SimplePoolFile5...  DEBUG ---->ClassID:????
-SimplePoolFile5...  DEBUG --->Reading Assoc:????/POOLContainer(basic/DataHeader) [202]  (7 , ffffffff)
+SimplePoolFile5...  DEBUG --->Reading Assoc:????/MetaData(EventStreamInfo_p3/Stream1) [202]  (7 , ffffffff)
 SimplePoolFile5...  DEBUG ---->ClassID:????
-SimplePoolFile5...  DEBUG --->Reading Assoc:????/MetaData(EventStreamInfo_p3/Stream1) [202]  (8 , ffffffff)
+SimplePoolFile5...  DEBUG --->Reading Assoc:????/MetaDataHdrForm(DataHeaderForm) [202]  (8 , ffffffff)
 SimplePoolFile5...  DEBUG ---->ClassID:????
-SimplePoolFile5...  DEBUG --->Reading Assoc:????/MetaDataHdrForm(DataHeaderForm) [202]  (9 , ffffffff)
+SimplePoolFile5...  DEBUG --->Reading Assoc:????/MetaDataHdr(DataHeader) [202]  (9 , ffffffff)
 SimplePoolFile5...  DEBUG ---->ClassID:????
-SimplePoolFile5...  DEBUG --->Reading Assoc:????/MetaDataHdr(DataHeader) [202]  (a , ffffffff)
-SimplePoolFile5...  DEBUG ---->ClassID:????
-##Links             DEBUG No objects passing selection criteria... Container has 9 Entries in total.
+##Links             DEBUG No objects passing selection criteria... Container has 8 Entries in total.
 SimplePoolFile5...  DEBUG --> Access   DbContainer  READ      [ROOT_All] ##Params
 ##Params            DEBUG Opening
 ##Params            DEBUG    attributes# = 1
@@ -130,15 +94,11 @@ POOLContainerFo...  DEBUG Opened container POOLContainerForm(DataHeaderForm) of
 AthenaPoolAddre...  DEBUG The current Event contains: 3 objects
 AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo
 AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 9103, name = MyTracks
-AlgResourcePool      INFO TopAlg list empty. Recovering the one of Application Manager
-ClassIDSvc           INFO  getRegistryEntries: read 63 CLIDRegistry entries for module ALL
 SimplePoolFile5...  DEBUG --> Access   DbContainer  READ      [ROOT_Tree] CollectionTree(EventInfo_p4/McEventInfo)
 CollectionTree(...  DEBUG Opening
 CollectionTree(...  DEBUG    attributes# = 1
 CollectionTree(...  DEBUG Branch container 'EventInfo_p4_McEventInfo'
 CollectionTree(...  DEBUG Opened container CollectionTree(EventInfo_p4/McEventInfo) of type ROOT_Tree
-AthenaPoolConve...   INFO massageEventInfo: unable to get OverrideRunNumberFromInput property from EventSelector 
-ClassIDSvc           INFO  getRegistryEntries: read 11 CLIDRegistry entries for module ALL
 AthenaEventLoopMgr   INFO   ===>>>  start of run 1    <<<===
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #10, run #1 0 events processed so far  <<<===
 ReadData            DEBUG in execute()
@@ -153,7 +113,6 @@ CollectionTree(...  DEBUG Opened container CollectionTree(ExampleTrackContainer_
 ReadData             INFO Track pt = 1018.38 eta = -11.0052 phi = 149.134 detector = Track made in: DummyHitDetector
 ReadData          WARNING Could not follow ExampleTrackContainer/MyTracks ElementLinks to ExampleHitContainer/MyHits
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-ClassIDSvc           INFO  getRegistryEntries: read 10 CLIDRegistry entries for module ALL
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #10, run #1 1 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
 EventSelector       DEBUG AttributeList size 2
@@ -317,23 +276,17 @@ ReadData             INFO Track pt = 1917.11 eta = -10.4993 phi = 281 detector =
 ReadData          WARNING Could not follow ExampleTrackContainer/MyTracks ElementLinks to ExampleHitContainer/MyHits
 ReadData             INFO Could not find ExampleHitContainer/MyHits
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #19, run #1 10 events processed so far  <<<===
-Domain[ROOT_All]     INFO ->  Deaccess DbDatabase   READ      [ROOT_All] ????
 Domain[ROOT_All]     INFO >   Deaccess DbDomain     READ      [ROOT_All] 
 AthenaEventLoopMgr   INFO No more events in event selection 
 MetaDataSvc         DEBUG  calling metaDataStop for ToolSvc.IOVDbMetaDataTool
 MetaDataSvc         DEBUG Releasing MetaDataTools
 ApplicationMgr       INFO Application Manager Stopped successfully
-IncidentProcAlg1     INFO Finalize
 ReadData             INFO in finalize()
-IncidentProcAlg2     INFO Finalize
 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 ****************************************************************************************************
-cObjR_ALL            INFO Time User   : Tot=  130 [ms] Ave/Min/Max= 4.19(+- 19.5)/    0/  110 [ms] #= 31
-cObj_ALL             INFO Time User   : Tot=  170 [ms] Ave/Min/Max= 5.67(+- 21.9)/    0/  120 [ms] #= 30
-ChronoStatSvc        INFO Time User   : Tot= 0.93  [s]                                             #=  1
 *****Chrono*****     INFO ****************************************************************************************************
 ChronoStatSvc.f...   INFO  Service finalized successfully 
 ApplicationMgr       INFO Application Manager Finalized successfully
diff --git a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_RMeta.ref b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_RMeta.ref
index bb9941c8f36efcdec56b7472c61cd613d3c3988f..84f30b1f9aed02e634b79e09d0269ee38811fcaa 100644
--- a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_RMeta.ref
+++ b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_RMeta.ref
@@ -1,4 +1,4 @@
-Tue Jan  9 14:23:29 CST 2018
+Wed Jan 31 16:43:10 CST 2018
 Preloading tcmalloc_minimal.so
 Athena               INFO including file "AthenaCommon/Preparation.py"
 Athena               INFO including file "AthenaCommon/Bootstrap.py"
@@ -6,14 +6,14 @@ 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_RMetaJobOptions.py"
-Py:ConfigurableDb    INFO Read module info for 5433 configurables from 15 genConfDb files
+Py:ConfigurableDb    INFO Read module info for 5451 configurables from 54 genConfDb files
 Py:ConfigurableDb    INFO No duplicates have been found: that's good !
 Athena               INFO including file "AthenaCommon/runbatch.py"
-[?1034hApplicationMgr       INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0
+ApplicationMgr       INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0
 ApplicationMgr    SUCCESS 
 ====================================================================================================================================
                                                    Welcome to ApplicationMgr (GaudiCoreSvc v30r1)
-                                          running on atlas2.hep.anl.gov on Tue Jan  9 14:23:39 2018
+                                          running on hepd-0003 on Wed Jan 31 16:43:16 2018
 ====================================================================================================================================
 ApplicationMgr       INFO Successfully loaded modules : AthenaServices
 ApplicationMgr       INFO Application Manager Configured successfully
@@ -21,7 +21,7 @@ ApplicationMgr       INFO Updating Gaudi::PluginService::SetDebug(level) to leve
 StatusCodeSvc        INFO initialize
 AthDictLoaderSvc     INFO in initialize...
 AthDictLoaderSvc     INFO acquired Dso-registry
-ClassIDSvc           INFO  getRegistryEntries: read 2318 CLIDRegistry entries for module ALL
+ClassIDSvc           INFO  getRegistryEntries: read 2320 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
@@ -36,8 +36,8 @@ PoolSvc              INFO io_register[PoolSvc](xmlcatalog_file:PoolFileCatalog.x
 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://lcgft-atlas.gridpp.rl.ac.uk:3128/frontierATLAS)(serverurl=http://frontier-atlas.lcg.triumf.ca:3128/ATLAS_frontier)(serverurl=http://ccfrontier.in2p3.fr:23128/ccin2p3-AtlasFrontier) will be considered for COOL data
-DBReplicaSvc         INFO Read replica configuration from /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2018-01-05T2303/Athena/22.0.0/InstallArea/x86_64-slc6-gcc62-opt/share/dbreplica.config
-DBReplicaSvc         INFO Total of 1 servers found for host atlas2.hep.anl.gov [ATLF ]
+DBReplicaSvc         INFO Read replica configuration from /home/gemmeren/workarea/build/x86_64-centos7-gcc62-opt/share/dbreplica.config
+DBReplicaSvc         INFO Total of 1 servers found for host hepd-0003.lcrc.anl.gov [ATLF ]
 PoolSvc              INFO Successfully setup replica sorting algorithm
 PoolSvc             DEBUG OutputLevel is 
 PoolSvc              INFO Setting up APR FileCatalog and Streams
@@ -82,17 +82,15 @@ SimplePoolFile5...  DEBUG --->Reading Assoc:????/POOLContainerForm(DataHeaderFor
 SimplePoolFile5...  DEBUG ---->ClassID:????
 SimplePoolFile5...  DEBUG --->Reading Assoc:????/POOLContainer(DataHeader) [202]  (6 , ffffffff)
 SimplePoolFile5...  DEBUG ---->ClassID:????
-SimplePoolFile5...  DEBUG --->Reading Assoc:????/POOLContainer(basic/DataHeader) [202]  (7 , ffffffff)
-SimplePoolFile5...  DEBUG ---->ClassID:????
-SimplePoolFile5...  DEBUG --->Reading Assoc:????/MetaData(ExampleHitContainer_p1/PedestalWriteData) [202]  (8 , ffffffff)
+SimplePoolFile5...  DEBUG --->Reading Assoc:????/MetaData(ExampleHitContainer_p1/PedestalWriteData) [202]  (7 , ffffffff)
 SimplePoolFile5...  DEBUG ---->ClassID:????
-SimplePoolFile5...  DEBUG --->Reading Assoc:????/MetaData(EventStreamInfo_p3/Stream1) [202]  (9 , ffffffff)
+SimplePoolFile5...  DEBUG --->Reading Assoc:????/MetaData(EventStreamInfo_p3/Stream1) [202]  (8 , ffffffff)
 SimplePoolFile5...  DEBUG ---->ClassID:????
-SimplePoolFile5...  DEBUG --->Reading Assoc:????/MetaDataHdrForm(DataHeaderForm) [202]  (a , ffffffff)
+SimplePoolFile5...  DEBUG --->Reading Assoc:????/MetaDataHdrForm(DataHeaderForm) [202]  (9 , ffffffff)
 SimplePoolFile5...  DEBUG ---->ClassID:????
-SimplePoolFile5...  DEBUG --->Reading Assoc:????/MetaDataHdr(DataHeader) [202]  (b , ffffffff)
+SimplePoolFile5...  DEBUG --->Reading Assoc:????/MetaDataHdr(DataHeader) [202]  (a , ffffffff)
 SimplePoolFile5...  DEBUG ---->ClassID:????
-##Links             DEBUG No objects passing selection criteria... Container has 10 Entries in total.
+##Links             DEBUG No objects passing selection criteria... Container has 9 Entries in total.
 SimplePoolFile5...  DEBUG --> Access   DbContainer  READ      [ROOT_All] ##Params
 ##Params            DEBUG Opening
 ##Params            DEBUG    attributes# = 1
@@ -122,7 +120,6 @@ MetaDataHdrForm...  DEBUG Branch container 'DataHeaderForm'
 MetaDataHdrForm...  DEBUG Opened container MetaDataHdrForm(DataHeaderForm) of type ROOT_Tree
 MetaDataSvc         DEBUG Loaded input meta data store proxies
 AthenaPoolAddre...  DEBUG Property update for OutputLevel : new value = 2
-AthenaPoolAddre...   INFO Initializing AthenaPoolAddressProviderSvc - package version EventSelectorAthenaPool-00-00-00
 ReadData            DEBUG input handles: 0
 ReadData            DEBUG output handles: 0
 ReadData            DEBUG Data Deps for ReadData
@@ -165,17 +162,15 @@ SimplePoolFile5...  DEBUG --->Reading Assoc:????/POOLContainerForm(DataHeaderFor
 SimplePoolFile5...  DEBUG ---->ClassID:????
 SimplePoolFile5...  DEBUG --->Reading Assoc:????/POOLContainer(DataHeader) [202]  (6 , ffffffff)
 SimplePoolFile5...  DEBUG ---->ClassID:????
-SimplePoolFile5...  DEBUG --->Reading Assoc:????/POOLContainer(basic/DataHeader) [202]  (7 , ffffffff)
+SimplePoolFile5...  DEBUG --->Reading Assoc:????/MetaData(ExampleHitContainer_p1/PedestalWriteData) [202]  (7 , ffffffff)
 SimplePoolFile5...  DEBUG ---->ClassID:????
-SimplePoolFile5...  DEBUG --->Reading Assoc:????/MetaData(ExampleHitContainer_p1/PedestalWriteData) [202]  (8 , ffffffff)
+SimplePoolFile5...  DEBUG --->Reading Assoc:????/MetaData(EventStreamInfo_p3/Stream1) [202]  (8 , ffffffff)
 SimplePoolFile5...  DEBUG ---->ClassID:????
-SimplePoolFile5...  DEBUG --->Reading Assoc:????/MetaData(EventStreamInfo_p3/Stream1) [202]  (9 , ffffffff)
+SimplePoolFile5...  DEBUG --->Reading Assoc:????/MetaDataHdrForm(DataHeaderForm) [202]  (9 , ffffffff)
 SimplePoolFile5...  DEBUG ---->ClassID:????
-SimplePoolFile5...  DEBUG --->Reading Assoc:????/MetaDataHdrForm(DataHeaderForm) [202]  (a , ffffffff)
+SimplePoolFile5...  DEBUG --->Reading Assoc:????/MetaDataHdr(DataHeader) [202]  (a , ffffffff)
 SimplePoolFile5...  DEBUG ---->ClassID:????
-SimplePoolFile5...  DEBUG --->Reading Assoc:????/MetaDataHdr(DataHeader) [202]  (b , ffffffff)
-SimplePoolFile5...  DEBUG ---->ClassID:????
-##Links             DEBUG No objects passing selection criteria... Container has 10 Entries in total.
+##Links             DEBUG No objects passing selection criteria... Container has 9 Entries in total.
 SimplePoolFile5...  DEBUG --> Access   DbContainer  READ      [ROOT_All] ##Params
 ##Params            DEBUG Opening
 ##Params            DEBUG    attributes# = 1
@@ -207,8 +202,8 @@ MetaData(Exampl...  DEBUG Opening
 MetaData(Exampl...  DEBUG    attributes# = 1
 MetaData(Exampl...  DEBUG Branch container 'ExampleHitContainer_p1_PedestalWriteData'
 MetaData(Exampl...  DEBUG Opened container MetaData(ExampleHitContainer_p1/PedestalWriteData) of type ROOT_Tree
-ClassIDSvc           INFO  getRegistryEntries: read 2686 CLIDRegistry entries for module ALL
-ToolSvc.AthPool...   INFO Pedestal x = 393136 y = -5580.01 z = -375208 string = <..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o>
+ClassIDSvc           INFO  getRegistryEntries: read 2681 CLIDRegistry entries for module ALL
+ToolSvc.AthPool...   INFO Pedestal x = 193136 y = -5580.01 z = -175208 string = <..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o>
 EventSelector       DEBUG Get AttributeList from the collection
 EventSelector       DEBUG AttributeList size 0
 EventSelector       DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000000].
@@ -245,13 +240,6 @@ ReadData             INFO CLID = 9102, key = MyHits
 ReadData             INFO CLID = 222376821, key = StreamX
 ReadData             INFO EventType: Event type: sim/data -  is sim , testbeam/atlas -  is atlas , calib/physics -  is physics 
 ReadData             INFO TagInfo: 
-ReadData             INFO EventStreamInfo: Number of events = 20
-ReadData             INFO EventStreamInfo: ItemList:
-ReadData             INFO CLID = 2101, key = McEventInfo
-ReadData             INFO CLID = 9102, key = MyHits
-ReadData             INFO CLID = 222376821, key = StreamX
-ReadData             INFO EventType: Event type: sim/data -  is sim , testbeam/atlas -  is atlas , calib/physics -  is physics 
-ReadData             INFO TagInfo: 
 ReadData             INFO EventInfo event: 0 run: 0
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
@@ -288,13 +276,6 @@ ReadData             INFO CLID = 9102, key = MyHits
 ReadData             INFO CLID = 222376821, key = StreamX
 ReadData             INFO EventType: Event type: sim/data -  is sim , testbeam/atlas -  is atlas , calib/physics -  is physics 
 ReadData             INFO TagInfo: 
-ReadData             INFO EventStreamInfo: Number of events = 20
-ReadData             INFO EventStreamInfo: ItemList:
-ReadData             INFO CLID = 2101, key = McEventInfo
-ReadData             INFO CLID = 9102, key = MyHits
-ReadData             INFO CLID = 222376821, key = StreamX
-ReadData             INFO EventType: Event type: sim/data -  is sim , testbeam/atlas -  is atlas , calib/physics -  is physics 
-ReadData             INFO TagInfo: 
 ReadData             INFO EventInfo event: 1 run: 0
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
@@ -326,13 +307,6 @@ ReadData             INFO CLID = 9102, key = MyHits
 ReadData             INFO CLID = 222376821, key = StreamX
 ReadData             INFO EventType: Event type: sim/data -  is sim , testbeam/atlas -  is atlas , calib/physics -  is physics 
 ReadData             INFO TagInfo: 
-ReadData             INFO EventStreamInfo: Number of events = 20
-ReadData             INFO EventStreamInfo: ItemList:
-ReadData             INFO CLID = 2101, key = McEventInfo
-ReadData             INFO CLID = 9102, key = MyHits
-ReadData             INFO CLID = 222376821, key = StreamX
-ReadData             INFO EventType: Event type: sim/data -  is sim , testbeam/atlas -  is atlas , calib/physics -  is physics 
-ReadData             INFO TagInfo: 
 ReadData             INFO EventInfo event: 2 run: 0
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
@@ -364,13 +338,6 @@ ReadData             INFO CLID = 9102, key = MyHits
 ReadData             INFO CLID = 222376821, key = StreamX
 ReadData             INFO EventType: Event type: sim/data -  is sim , testbeam/atlas -  is atlas , calib/physics -  is physics 
 ReadData             INFO TagInfo: 
-ReadData             INFO EventStreamInfo: Number of events = 20
-ReadData             INFO EventStreamInfo: ItemList:
-ReadData             INFO CLID = 2101, key = McEventInfo
-ReadData             INFO CLID = 9102, key = MyHits
-ReadData             INFO CLID = 222376821, key = StreamX
-ReadData             INFO EventType: Event type: sim/data -  is sim , testbeam/atlas -  is atlas , calib/physics -  is physics 
-ReadData             INFO TagInfo: 
 ReadData             INFO EventInfo event: 3 run: 0
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
@@ -402,13 +369,6 @@ ReadData             INFO CLID = 9102, key = MyHits
 ReadData             INFO CLID = 222376821, key = StreamX
 ReadData             INFO EventType: Event type: sim/data -  is sim , testbeam/atlas -  is atlas , calib/physics -  is physics 
 ReadData             INFO TagInfo: 
-ReadData             INFO EventStreamInfo: Number of events = 20
-ReadData             INFO EventStreamInfo: ItemList:
-ReadData             INFO CLID = 2101, key = McEventInfo
-ReadData             INFO CLID = 9102, key = MyHits
-ReadData             INFO CLID = 222376821, key = StreamX
-ReadData             INFO EventType: Event type: sim/data -  is sim , testbeam/atlas -  is atlas , calib/physics -  is physics 
-ReadData             INFO TagInfo: 
 ReadData             INFO EventInfo event: 4 run: 0
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
@@ -440,13 +400,6 @@ ReadData             INFO CLID = 9102, key = MyHits
 ReadData             INFO CLID = 222376821, key = StreamX
 ReadData             INFO EventType: Event type: sim/data -  is sim , testbeam/atlas -  is atlas , calib/physics -  is physics 
 ReadData             INFO TagInfo: 
-ReadData             INFO EventStreamInfo: Number of events = 20
-ReadData             INFO EventStreamInfo: ItemList:
-ReadData             INFO CLID = 2101, key = McEventInfo
-ReadData             INFO CLID = 9102, key = MyHits
-ReadData             INFO CLID = 222376821, key = StreamX
-ReadData             INFO EventType: Event type: sim/data -  is sim , testbeam/atlas -  is atlas , calib/physics -  is physics 
-ReadData             INFO TagInfo: 
 ReadData             INFO EventInfo event: 5 run: 0
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
@@ -478,13 +431,6 @@ ReadData             INFO CLID = 9102, key = MyHits
 ReadData             INFO CLID = 222376821, key = StreamX
 ReadData             INFO EventType: Event type: sim/data -  is sim , testbeam/atlas -  is atlas , calib/physics -  is physics 
 ReadData             INFO TagInfo: 
-ReadData             INFO EventStreamInfo: Number of events = 20
-ReadData             INFO EventStreamInfo: ItemList:
-ReadData             INFO CLID = 2101, key = McEventInfo
-ReadData             INFO CLID = 9102, key = MyHits
-ReadData             INFO CLID = 222376821, key = StreamX
-ReadData             INFO EventType: Event type: sim/data -  is sim , testbeam/atlas -  is atlas , calib/physics -  is physics 
-ReadData             INFO TagInfo: 
 ReadData             INFO EventInfo event: 6 run: 0
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
@@ -516,13 +462,6 @@ ReadData             INFO CLID = 9102, key = MyHits
 ReadData             INFO CLID = 222376821, key = StreamX
 ReadData             INFO EventType: Event type: sim/data -  is sim , testbeam/atlas -  is atlas , calib/physics -  is physics 
 ReadData             INFO TagInfo: 
-ReadData             INFO EventStreamInfo: Number of events = 20
-ReadData             INFO EventStreamInfo: ItemList:
-ReadData             INFO CLID = 2101, key = McEventInfo
-ReadData             INFO CLID = 9102, key = MyHits
-ReadData             INFO CLID = 222376821, key = StreamX
-ReadData             INFO EventType: Event type: sim/data -  is sim , testbeam/atlas -  is atlas , calib/physics -  is physics 
-ReadData             INFO TagInfo: 
 ReadData             INFO EventInfo event: 7 run: 0
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
@@ -554,13 +493,6 @@ ReadData             INFO CLID = 9102, key = MyHits
 ReadData             INFO CLID = 222376821, key = StreamX
 ReadData             INFO EventType: Event type: sim/data -  is sim , testbeam/atlas -  is atlas , calib/physics -  is physics 
 ReadData             INFO TagInfo: 
-ReadData             INFO EventStreamInfo: Number of events = 20
-ReadData             INFO EventStreamInfo: ItemList:
-ReadData             INFO CLID = 2101, key = McEventInfo
-ReadData             INFO CLID = 9102, key = MyHits
-ReadData             INFO CLID = 222376821, key = StreamX
-ReadData             INFO EventType: Event type: sim/data -  is sim , testbeam/atlas -  is atlas , calib/physics -  is physics 
-ReadData             INFO TagInfo: 
 ReadData             INFO EventInfo event: 8 run: 0
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
@@ -592,13 +524,6 @@ ReadData             INFO CLID = 9102, key = MyHits
 ReadData             INFO CLID = 222376821, key = StreamX
 ReadData             INFO EventType: Event type: sim/data -  is sim , testbeam/atlas -  is atlas , calib/physics -  is physics 
 ReadData             INFO TagInfo: 
-ReadData             INFO EventStreamInfo: Number of events = 20
-ReadData             INFO EventStreamInfo: ItemList:
-ReadData             INFO CLID = 2101, key = McEventInfo
-ReadData             INFO CLID = 9102, key = MyHits
-ReadData             INFO CLID = 222376821, key = StreamX
-ReadData             INFO EventType: Event type: sim/data -  is sim , testbeam/atlas -  is atlas , calib/physics -  is physics 
-ReadData             INFO TagInfo: 
 ReadData             INFO EventInfo event: 9 run: 0
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
@@ -630,13 +555,6 @@ ReadData             INFO CLID = 9102, key = MyHits
 ReadData             INFO CLID = 222376821, key = StreamX
 ReadData             INFO EventType: Event type: sim/data -  is sim , testbeam/atlas -  is atlas , calib/physics -  is physics 
 ReadData             INFO TagInfo: 
-ReadData             INFO EventStreamInfo: Number of events = 20
-ReadData             INFO EventStreamInfo: ItemList:
-ReadData             INFO CLID = 2101, key = McEventInfo
-ReadData             INFO CLID = 9102, key = MyHits
-ReadData             INFO CLID = 222376821, key = StreamX
-ReadData             INFO EventType: Event type: sim/data -  is sim , testbeam/atlas -  is atlas , calib/physics -  is physics 
-ReadData             INFO TagInfo: 
 ReadData             INFO EventInfo event: 10 run: 0
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
@@ -668,13 +586,6 @@ ReadData             INFO CLID = 9102, key = MyHits
 ReadData             INFO CLID = 222376821, key = StreamX
 ReadData             INFO EventType: Event type: sim/data -  is sim , testbeam/atlas -  is atlas , calib/physics -  is physics 
 ReadData             INFO TagInfo: 
-ReadData             INFO EventStreamInfo: Number of events = 20
-ReadData             INFO EventStreamInfo: ItemList:
-ReadData             INFO CLID = 2101, key = McEventInfo
-ReadData             INFO CLID = 9102, key = MyHits
-ReadData             INFO CLID = 222376821, key = StreamX
-ReadData             INFO EventType: Event type: sim/data -  is sim , testbeam/atlas -  is atlas , calib/physics -  is physics 
-ReadData             INFO TagInfo: 
 ReadData             INFO EventInfo event: 11 run: 0
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
@@ -706,13 +617,6 @@ ReadData             INFO CLID = 9102, key = MyHits
 ReadData             INFO CLID = 222376821, key = StreamX
 ReadData             INFO EventType: Event type: sim/data -  is sim , testbeam/atlas -  is atlas , calib/physics -  is physics 
 ReadData             INFO TagInfo: 
-ReadData             INFO EventStreamInfo: Number of events = 20
-ReadData             INFO EventStreamInfo: ItemList:
-ReadData             INFO CLID = 2101, key = McEventInfo
-ReadData             INFO CLID = 9102, key = MyHits
-ReadData             INFO CLID = 222376821, key = StreamX
-ReadData             INFO EventType: Event type: sim/data -  is sim , testbeam/atlas -  is atlas , calib/physics -  is physics 
-ReadData             INFO TagInfo: 
 ReadData             INFO EventInfo event: 12 run: 0
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
@@ -744,13 +648,6 @@ ReadData             INFO CLID = 9102, key = MyHits
 ReadData             INFO CLID = 222376821, key = StreamX
 ReadData             INFO EventType: Event type: sim/data -  is sim , testbeam/atlas -  is atlas , calib/physics -  is physics 
 ReadData             INFO TagInfo: 
-ReadData             INFO EventStreamInfo: Number of events = 20
-ReadData             INFO EventStreamInfo: ItemList:
-ReadData             INFO CLID = 2101, key = McEventInfo
-ReadData             INFO CLID = 9102, key = MyHits
-ReadData             INFO CLID = 222376821, key = StreamX
-ReadData             INFO EventType: Event type: sim/data -  is sim , testbeam/atlas -  is atlas , calib/physics -  is physics 
-ReadData             INFO TagInfo: 
 ReadData             INFO EventInfo event: 13 run: 0
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
@@ -782,13 +679,6 @@ ReadData             INFO CLID = 9102, key = MyHits
 ReadData             INFO CLID = 222376821, key = StreamX
 ReadData             INFO EventType: Event type: sim/data -  is sim , testbeam/atlas -  is atlas , calib/physics -  is physics 
 ReadData             INFO TagInfo: 
-ReadData             INFO EventStreamInfo: Number of events = 20
-ReadData             INFO EventStreamInfo: ItemList:
-ReadData             INFO CLID = 2101, key = McEventInfo
-ReadData             INFO CLID = 9102, key = MyHits
-ReadData             INFO CLID = 222376821, key = StreamX
-ReadData             INFO EventType: Event type: sim/data -  is sim , testbeam/atlas -  is atlas , calib/physics -  is physics 
-ReadData             INFO TagInfo: 
 ReadData             INFO EventInfo event: 14 run: 0
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
@@ -820,13 +710,6 @@ ReadData             INFO CLID = 9102, key = MyHits
 ReadData             INFO CLID = 222376821, key = StreamX
 ReadData             INFO EventType: Event type: sim/data -  is sim , testbeam/atlas -  is atlas , calib/physics -  is physics 
 ReadData             INFO TagInfo: 
-ReadData             INFO EventStreamInfo: Number of events = 20
-ReadData             INFO EventStreamInfo: ItemList:
-ReadData             INFO CLID = 2101, key = McEventInfo
-ReadData             INFO CLID = 9102, key = MyHits
-ReadData             INFO CLID = 222376821, key = StreamX
-ReadData             INFO EventType: Event type: sim/data -  is sim , testbeam/atlas -  is atlas , calib/physics -  is physics 
-ReadData             INFO TagInfo: 
 ReadData             INFO EventInfo event: 15 run: 0
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
@@ -858,13 +741,6 @@ ReadData             INFO CLID = 9102, key = MyHits
 ReadData             INFO CLID = 222376821, key = StreamX
 ReadData             INFO EventType: Event type: sim/data -  is sim , testbeam/atlas -  is atlas , calib/physics -  is physics 
 ReadData             INFO TagInfo: 
-ReadData             INFO EventStreamInfo: Number of events = 20
-ReadData             INFO EventStreamInfo: ItemList:
-ReadData             INFO CLID = 2101, key = McEventInfo
-ReadData             INFO CLID = 9102, key = MyHits
-ReadData             INFO CLID = 222376821, key = StreamX
-ReadData             INFO EventType: Event type: sim/data -  is sim , testbeam/atlas -  is atlas , calib/physics -  is physics 
-ReadData             INFO TagInfo: 
 ReadData             INFO EventInfo event: 16 run: 0
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
@@ -896,13 +772,6 @@ ReadData             INFO CLID = 9102, key = MyHits
 ReadData             INFO CLID = 222376821, key = StreamX
 ReadData             INFO EventType: Event type: sim/data -  is sim , testbeam/atlas -  is atlas , calib/physics -  is physics 
 ReadData             INFO TagInfo: 
-ReadData             INFO EventStreamInfo: Number of events = 20
-ReadData             INFO EventStreamInfo: ItemList:
-ReadData             INFO CLID = 2101, key = McEventInfo
-ReadData             INFO CLID = 9102, key = MyHits
-ReadData             INFO CLID = 222376821, key = StreamX
-ReadData             INFO EventType: Event type: sim/data -  is sim , testbeam/atlas -  is atlas , calib/physics -  is physics 
-ReadData             INFO TagInfo: 
 ReadData             INFO EventInfo event: 17 run: 0
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
@@ -934,13 +803,6 @@ ReadData             INFO CLID = 9102, key = MyHits
 ReadData             INFO CLID = 222376821, key = StreamX
 ReadData             INFO EventType: Event type: sim/data -  is sim , testbeam/atlas -  is atlas , calib/physics -  is physics 
 ReadData             INFO TagInfo: 
-ReadData             INFO EventStreamInfo: Number of events = 20
-ReadData             INFO EventStreamInfo: ItemList:
-ReadData             INFO CLID = 2101, key = McEventInfo
-ReadData             INFO CLID = 9102, key = MyHits
-ReadData             INFO CLID = 222376821, key = StreamX
-ReadData             INFO EventType: Event type: sim/data -  is sim , testbeam/atlas -  is atlas , calib/physics -  is physics 
-ReadData             INFO TagInfo: 
 ReadData             INFO EventInfo event: 18 run: 0
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
@@ -972,13 +834,6 @@ ReadData             INFO CLID = 9102, key = MyHits
 ReadData             INFO CLID = 222376821, key = StreamX
 ReadData             INFO EventType: Event type: sim/data -  is sim , testbeam/atlas -  is atlas , calib/physics -  is physics 
 ReadData             INFO TagInfo: 
-ReadData             INFO EventStreamInfo: Number of events = 20
-ReadData             INFO EventStreamInfo: ItemList:
-ReadData             INFO CLID = 2101, key = McEventInfo
-ReadData             INFO CLID = 9102, key = MyHits
-ReadData             INFO CLID = 222376821, key = StreamX
-ReadData             INFO EventType: Event type: sim/data -  is sim , testbeam/atlas -  is atlas , calib/physics -  is physics 
-ReadData             INFO TagInfo: 
 ReadData             INFO EventInfo event: 19 run: 0
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
@@ -993,766 +848,6 @@ ReadData             INFO Hit x = 1923.7 y = -42.0973 z = -1853.68 detector = Du
 ReadData             INFO Hit x = 1926.91 y = -47.7762 z = -1855.07 detector = DummyHitDetector
 ReadData             INFO Hit x = 1930.12 y = -53.4551 z = -1856.17 detector = DummyHitDetector
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #19, run #0 20 events processed so far  <<<===
-EventSelector       DEBUG Get AttributeList from the collection
-EventSelector       DEBUG AttributeList size 0
-EventSelector       DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000014].
-EventSelector       DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000014].
-EventSelector       DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000014]
-AthenaPoolAddre...  DEBUG The current Event contains: 3 objects
-AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo
-AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 9102, name = MyHits
-AthenaEventLoopMgr   INFO   ===>>>  start processing event #20, run #0 20 events processed so far  <<<===
-ReadData            DEBUG in execute()
-ReadData             INFO EventStreamInfo: Number of events = 20
-ReadData             INFO EventStreamInfo: ItemList:
-ReadData             INFO CLID = 2101, key = McEventInfo
-ReadData             INFO CLID = 9102, key = MyHits
-ReadData             INFO CLID = 222376821, key = StreamX
-ReadData             INFO EventType: Event type: sim/data -  is sim , testbeam/atlas -  is atlas , calib/physics -  is physics 
-ReadData             INFO TagInfo: 
-ReadData             INFO EventStreamInfo: Number of events = 20
-ReadData             INFO EventStreamInfo: ItemList:
-ReadData             INFO CLID = 2101, key = McEventInfo
-ReadData             INFO CLID = 9102, key = MyHits
-ReadData             INFO CLID = 222376821, key = StreamX
-ReadData             INFO EventType: Event type: sim/data -  is sim , testbeam/atlas -  is atlas , calib/physics -  is physics 
-ReadData             INFO TagInfo: 
-ReadData             INFO EventInfo event: 20 run: 0
-ReadData             INFO Get Smart data ptr 1
-ReadData             INFO Could not find ExampleTrackContainer/MyTracks
-ReadData             INFO Hit x = 2001.23 y = -2.345 z = -1773.33 detector = DummyHitDetector
-ReadData             INFO Hit x = 2004.44 y = -8.0239 z = -1905.27 detector = DummyHitDetector
-ReadData             INFO Hit x = 2007.65 y = -13.7028 z = -1929.77 detector = DummyHitDetector
-ReadData             INFO Hit x = 2010.86 y = -19.3817 z = -1940.09 detector = DummyHitDetector
-ReadData             INFO Hit x = 2014.07 y = -25.0606 z = -1945.77 detector = DummyHitDetector
-ReadData             INFO Hit x = 2017.28 y = -30.7395 z = -1949.38 detector = DummyHitDetector
-ReadData             INFO Hit x = 2020.49 y = -36.4184 z = -1951.86 detector = DummyHitDetector
-ReadData             INFO Hit x = 2023.7 y = -42.0973 z = -1953.68 detector = DummyHitDetector
-ReadData             INFO Hit x = 2026.91 y = -47.7762 z = -1955.07 detector = DummyHitDetector
-ReadData             INFO Hit x = 2030.12 y = -53.4551 z = -1956.17 detector = DummyHitDetector
-AthenaEventLoopMgr   INFO   ===>>>  done processing event #20, run #0 21 events processed so far  <<<===
-EventSelector       DEBUG Get AttributeList from the collection
-EventSelector       DEBUG AttributeList size 0
-EventSelector       DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000015].
-EventSelector       DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000015].
-EventSelector       DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000015]
-AthenaPoolAddre...  DEBUG The current Event contains: 3 objects
-AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo
-AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 9102, name = MyHits
-AthenaEventLoopMgr   INFO   ===>>>  start processing event #21, run #0 21 events processed so far  <<<===
-ReadData            DEBUG in execute()
-ReadData             INFO EventStreamInfo: Number of events = 20
-ReadData             INFO EventStreamInfo: ItemList:
-ReadData             INFO CLID = 2101, key = McEventInfo
-ReadData             INFO CLID = 9102, key = MyHits
-ReadData             INFO CLID = 222376821, key = StreamX
-ReadData             INFO EventType: Event type: sim/data -  is sim , testbeam/atlas -  is atlas , calib/physics -  is physics 
-ReadData             INFO TagInfo: 
-ReadData             INFO EventStreamInfo: Number of events = 20
-ReadData             INFO EventStreamInfo: ItemList:
-ReadData             INFO CLID = 2101, key = McEventInfo
-ReadData             INFO CLID = 9102, key = MyHits
-ReadData             INFO CLID = 222376821, key = StreamX
-ReadData             INFO EventType: Event type: sim/data -  is sim , testbeam/atlas -  is atlas , calib/physics -  is physics 
-ReadData             INFO TagInfo: 
-ReadData             INFO EventInfo event: 21 run: 0
-ReadData             INFO Get Smart data ptr 1
-ReadData             INFO Could not find ExampleTrackContainer/MyTracks
-ReadData             INFO Hit x = 2101.23 y = -2.345 z = -1873.33 detector = DummyHitDetector
-ReadData             INFO Hit x = 2104.44 y = -8.0239 z = -2005.27 detector = DummyHitDetector
-ReadData             INFO Hit x = 2107.65 y = -13.7028 z = -2029.77 detector = DummyHitDetector
-ReadData             INFO Hit x = 2110.86 y = -19.3817 z = -2040.09 detector = DummyHitDetector
-ReadData             INFO Hit x = 2114.07 y = -25.0606 z = -2045.77 detector = DummyHitDetector
-ReadData             INFO Hit x = 2117.28 y = -30.7395 z = -2049.38 detector = DummyHitDetector
-ReadData             INFO Hit x = 2120.49 y = -36.4184 z = -2051.86 detector = DummyHitDetector
-ReadData             INFO Hit x = 2123.7 y = -42.0973 z = -2053.68 detector = DummyHitDetector
-ReadData             INFO Hit x = 2126.91 y = -47.7762 z = -2055.07 detector = DummyHitDetector
-ReadData             INFO Hit x = 2130.12 y = -53.4551 z = -2056.17 detector = DummyHitDetector
-AthenaEventLoopMgr   INFO   ===>>>  done processing event #21, run #0 22 events processed so far  <<<===
-EventSelector       DEBUG Get AttributeList from the collection
-EventSelector       DEBUG AttributeList size 0
-EventSelector       DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000016].
-EventSelector       DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000016].
-EventSelector       DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000016]
-AthenaPoolAddre...  DEBUG The current Event contains: 3 objects
-AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo
-AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 9102, name = MyHits
-AthenaEventLoopMgr   INFO   ===>>>  start processing event #22, run #0 22 events processed so far  <<<===
-ReadData            DEBUG in execute()
-ReadData             INFO EventStreamInfo: Number of events = 20
-ReadData             INFO EventStreamInfo: ItemList:
-ReadData             INFO CLID = 2101, key = McEventInfo
-ReadData             INFO CLID = 9102, key = MyHits
-ReadData             INFO CLID = 222376821, key = StreamX
-ReadData             INFO EventType: Event type: sim/data -  is sim , testbeam/atlas -  is atlas , calib/physics -  is physics 
-ReadData             INFO TagInfo: 
-ReadData             INFO EventStreamInfo: Number of events = 20
-ReadData             INFO EventStreamInfo: ItemList:
-ReadData             INFO CLID = 2101, key = McEventInfo
-ReadData             INFO CLID = 9102, key = MyHits
-ReadData             INFO CLID = 222376821, key = StreamX
-ReadData             INFO EventType: Event type: sim/data -  is sim , testbeam/atlas -  is atlas , calib/physics -  is physics 
-ReadData             INFO TagInfo: 
-ReadData             INFO EventInfo event: 22 run: 0
-ReadData             INFO Get Smart data ptr 1
-ReadData             INFO Could not find ExampleTrackContainer/MyTracks
-ReadData             INFO Hit x = 2201.23 y = -2.345 z = -1973.33 detector = DummyHitDetector
-ReadData             INFO Hit x = 2204.44 y = -8.0239 z = -2105.27 detector = DummyHitDetector
-ReadData             INFO Hit x = 2207.65 y = -13.7028 z = -2129.77 detector = DummyHitDetector
-ReadData             INFO Hit x = 2210.86 y = -19.3817 z = -2140.09 detector = DummyHitDetector
-ReadData             INFO Hit x = 2214.07 y = -25.0606 z = -2145.77 detector = DummyHitDetector
-ReadData             INFO Hit x = 2217.28 y = -30.7395 z = -2149.38 detector = DummyHitDetector
-ReadData             INFO Hit x = 2220.49 y = -36.4184 z = -2151.86 detector = DummyHitDetector
-ReadData             INFO Hit x = 2223.7 y = -42.0973 z = -2153.68 detector = DummyHitDetector
-ReadData             INFO Hit x = 2226.91 y = -47.7762 z = -2155.07 detector = DummyHitDetector
-ReadData             INFO Hit x = 2230.12 y = -53.4551 z = -2156.17 detector = DummyHitDetector
-AthenaEventLoopMgr   INFO   ===>>>  done processing event #22, run #0 23 events processed so far  <<<===
-EventSelector       DEBUG Get AttributeList from the collection
-EventSelector       DEBUG AttributeList size 0
-EventSelector       DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000017].
-EventSelector       DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000017].
-EventSelector       DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000017]
-AthenaPoolAddre...  DEBUG The current Event contains: 3 objects
-AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo
-AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 9102, name = MyHits
-AthenaEventLoopMgr   INFO   ===>>>  start processing event #23, run #0 23 events processed so far  <<<===
-ReadData            DEBUG in execute()
-ReadData             INFO EventStreamInfo: Number of events = 20
-ReadData             INFO EventStreamInfo: ItemList:
-ReadData             INFO CLID = 2101, key = McEventInfo
-ReadData             INFO CLID = 9102, key = MyHits
-ReadData             INFO CLID = 222376821, key = StreamX
-ReadData             INFO EventType: Event type: sim/data -  is sim , testbeam/atlas -  is atlas , calib/physics -  is physics 
-ReadData             INFO TagInfo: 
-ReadData             INFO EventStreamInfo: Number of events = 20
-ReadData             INFO EventStreamInfo: ItemList:
-ReadData             INFO CLID = 2101, key = McEventInfo
-ReadData             INFO CLID = 9102, key = MyHits
-ReadData             INFO CLID = 222376821, key = StreamX
-ReadData             INFO EventType: Event type: sim/data -  is sim , testbeam/atlas -  is atlas , calib/physics -  is physics 
-ReadData             INFO TagInfo: 
-ReadData             INFO EventInfo event: 23 run: 0
-ReadData             INFO Get Smart data ptr 1
-ReadData             INFO Could not find ExampleTrackContainer/MyTracks
-ReadData             INFO Hit x = 2301.23 y = -2.345 z = -2073.33 detector = DummyHitDetector
-ReadData             INFO Hit x = 2304.44 y = -8.0239 z = -2205.27 detector = DummyHitDetector
-ReadData             INFO Hit x = 2307.65 y = -13.7028 z = -2229.77 detector = DummyHitDetector
-ReadData             INFO Hit x = 2310.86 y = -19.3817 z = -2240.09 detector = DummyHitDetector
-ReadData             INFO Hit x = 2314.07 y = -25.0606 z = -2245.77 detector = DummyHitDetector
-ReadData             INFO Hit x = 2317.28 y = -30.7395 z = -2249.38 detector = DummyHitDetector
-ReadData             INFO Hit x = 2320.49 y = -36.4184 z = -2251.86 detector = DummyHitDetector
-ReadData             INFO Hit x = 2323.7 y = -42.0973 z = -2253.68 detector = DummyHitDetector
-ReadData             INFO Hit x = 2326.91 y = -47.7762 z = -2255.07 detector = DummyHitDetector
-ReadData             INFO Hit x = 2330.12 y = -53.4551 z = -2256.17 detector = DummyHitDetector
-AthenaEventLoopMgr   INFO   ===>>>  done processing event #23, run #0 24 events processed so far  <<<===
-EventSelector       DEBUG Get AttributeList from the collection
-EventSelector       DEBUG AttributeList size 0
-EventSelector       DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000018].
-EventSelector       DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000018].
-EventSelector       DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000018]
-AthenaPoolAddre...  DEBUG The current Event contains: 3 objects
-AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo
-AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 9102, name = MyHits
-AthenaEventLoopMgr   INFO   ===>>>  start processing event #24, run #0 24 events processed so far  <<<===
-ReadData            DEBUG in execute()
-ReadData             INFO EventStreamInfo: Number of events = 20
-ReadData             INFO EventStreamInfo: ItemList:
-ReadData             INFO CLID = 2101, key = McEventInfo
-ReadData             INFO CLID = 9102, key = MyHits
-ReadData             INFO CLID = 222376821, key = StreamX
-ReadData             INFO EventType: Event type: sim/data -  is sim , testbeam/atlas -  is atlas , calib/physics -  is physics 
-ReadData             INFO TagInfo: 
-ReadData             INFO EventStreamInfo: Number of events = 20
-ReadData             INFO EventStreamInfo: ItemList:
-ReadData             INFO CLID = 2101, key = McEventInfo
-ReadData             INFO CLID = 9102, key = MyHits
-ReadData             INFO CLID = 222376821, key = StreamX
-ReadData             INFO EventType: Event type: sim/data -  is sim , testbeam/atlas -  is atlas , calib/physics -  is physics 
-ReadData             INFO TagInfo: 
-ReadData             INFO EventInfo event: 24 run: 0
-ReadData             INFO Get Smart data ptr 1
-ReadData             INFO Could not find ExampleTrackContainer/MyTracks
-ReadData             INFO Hit x = 2401.23 y = -2.345 z = -2173.33 detector = DummyHitDetector
-ReadData             INFO Hit x = 2404.44 y = -8.0239 z = -2305.27 detector = DummyHitDetector
-ReadData             INFO Hit x = 2407.65 y = -13.7028 z = -2329.77 detector = DummyHitDetector
-ReadData             INFO Hit x = 2410.86 y = -19.3817 z = -2340.09 detector = DummyHitDetector
-ReadData             INFO Hit x = 2414.07 y = -25.0606 z = -2345.77 detector = DummyHitDetector
-ReadData             INFO Hit x = 2417.28 y = -30.7395 z = -2349.38 detector = DummyHitDetector
-ReadData             INFO Hit x = 2420.49 y = -36.4184 z = -2351.86 detector = DummyHitDetector
-ReadData             INFO Hit x = 2423.7 y = -42.0973 z = -2353.68 detector = DummyHitDetector
-ReadData             INFO Hit x = 2426.91 y = -47.7762 z = -2355.07 detector = DummyHitDetector
-ReadData             INFO Hit x = 2430.12 y = -53.4551 z = -2356.17 detector = DummyHitDetector
-AthenaEventLoopMgr   INFO   ===>>>  done processing event #24, run #0 25 events processed so far  <<<===
-EventSelector       DEBUG Get AttributeList from the collection
-EventSelector       DEBUG AttributeList size 0
-EventSelector       DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000019].
-EventSelector       DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000019].
-EventSelector       DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000019]
-AthenaPoolAddre...  DEBUG The current Event contains: 3 objects
-AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo
-AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 9102, name = MyHits
-AthenaEventLoopMgr   INFO   ===>>>  start processing event #25, run #0 25 events processed so far  <<<===
-ReadData            DEBUG in execute()
-ReadData             INFO EventStreamInfo: Number of events = 20
-ReadData             INFO EventStreamInfo: ItemList:
-ReadData             INFO CLID = 2101, key = McEventInfo
-ReadData             INFO CLID = 9102, key = MyHits
-ReadData             INFO CLID = 222376821, key = StreamX
-ReadData             INFO EventType: Event type: sim/data -  is sim , testbeam/atlas -  is atlas , calib/physics -  is physics 
-ReadData             INFO TagInfo: 
-ReadData             INFO EventStreamInfo: Number of events = 20
-ReadData             INFO EventStreamInfo: ItemList:
-ReadData             INFO CLID = 2101, key = McEventInfo
-ReadData             INFO CLID = 9102, key = MyHits
-ReadData             INFO CLID = 222376821, key = StreamX
-ReadData             INFO EventType: Event type: sim/data -  is sim , testbeam/atlas -  is atlas , calib/physics -  is physics 
-ReadData             INFO TagInfo: 
-ReadData             INFO EventInfo event: 25 run: 0
-ReadData             INFO Get Smart data ptr 1
-ReadData             INFO Could not find ExampleTrackContainer/MyTracks
-ReadData             INFO Hit x = 2501.23 y = -2.345 z = -2273.33 detector = DummyHitDetector
-ReadData             INFO Hit x = 2504.44 y = -8.0239 z = -2405.27 detector = DummyHitDetector
-ReadData             INFO Hit x = 2507.65 y = -13.7028 z = -2429.77 detector = DummyHitDetector
-ReadData             INFO Hit x = 2510.86 y = -19.3817 z = -2440.09 detector = DummyHitDetector
-ReadData             INFO Hit x = 2514.07 y = -25.0606 z = -2445.77 detector = DummyHitDetector
-ReadData             INFO Hit x = 2517.28 y = -30.7395 z = -2449.38 detector = DummyHitDetector
-ReadData             INFO Hit x = 2520.49 y = -36.4184 z = -2451.86 detector = DummyHitDetector
-ReadData             INFO Hit x = 2523.7 y = -42.0973 z = -2453.68 detector = DummyHitDetector
-ReadData             INFO Hit x = 2526.91 y = -47.7762 z = -2455.07 detector = DummyHitDetector
-ReadData             INFO Hit x = 2530.12 y = -53.4551 z = -2456.17 detector = DummyHitDetector
-AthenaEventLoopMgr   INFO   ===>>>  done processing event #25, run #0 26 events processed so far  <<<===
-EventSelector       DEBUG Get AttributeList from the collection
-EventSelector       DEBUG AttributeList size 0
-EventSelector       DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000001A].
-EventSelector       DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000001A].
-EventSelector       DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000001A]
-AthenaPoolAddre...  DEBUG The current Event contains: 3 objects
-AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo
-AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 9102, name = MyHits
-AthenaEventLoopMgr   INFO   ===>>>  start processing event #26, run #0 26 events processed so far  <<<===
-ReadData            DEBUG in execute()
-ReadData             INFO EventStreamInfo: Number of events = 20
-ReadData             INFO EventStreamInfo: ItemList:
-ReadData             INFO CLID = 2101, key = McEventInfo
-ReadData             INFO CLID = 9102, key = MyHits
-ReadData             INFO CLID = 222376821, key = StreamX
-ReadData             INFO EventType: Event type: sim/data -  is sim , testbeam/atlas -  is atlas , calib/physics -  is physics 
-ReadData             INFO TagInfo: 
-ReadData             INFO EventStreamInfo: Number of events = 20
-ReadData             INFO EventStreamInfo: ItemList:
-ReadData             INFO CLID = 2101, key = McEventInfo
-ReadData             INFO CLID = 9102, key = MyHits
-ReadData             INFO CLID = 222376821, key = StreamX
-ReadData             INFO EventType: Event type: sim/data -  is sim , testbeam/atlas -  is atlas , calib/physics -  is physics 
-ReadData             INFO TagInfo: 
-ReadData             INFO EventInfo event: 26 run: 0
-ReadData             INFO Get Smart data ptr 1
-ReadData             INFO Could not find ExampleTrackContainer/MyTracks
-ReadData             INFO Hit x = 2601.23 y = -2.345 z = -2373.33 detector = DummyHitDetector
-ReadData             INFO Hit x = 2604.44 y = -8.0239 z = -2505.27 detector = DummyHitDetector
-ReadData             INFO Hit x = 2607.65 y = -13.7028 z = -2529.77 detector = DummyHitDetector
-ReadData             INFO Hit x = 2610.86 y = -19.3817 z = -2540.09 detector = DummyHitDetector
-ReadData             INFO Hit x = 2614.07 y = -25.0606 z = -2545.77 detector = DummyHitDetector
-ReadData             INFO Hit x = 2617.28 y = -30.7395 z = -2549.38 detector = DummyHitDetector
-ReadData             INFO Hit x = 2620.49 y = -36.4184 z = -2551.86 detector = DummyHitDetector
-ReadData             INFO Hit x = 2623.7 y = -42.0973 z = -2553.68 detector = DummyHitDetector
-ReadData             INFO Hit x = 2626.91 y = -47.7762 z = -2555.07 detector = DummyHitDetector
-ReadData             INFO Hit x = 2630.12 y = -53.4551 z = -2556.17 detector = DummyHitDetector
-AthenaEventLoopMgr   INFO   ===>>>  done processing event #26, run #0 27 events processed so far  <<<===
-EventSelector       DEBUG Get AttributeList from the collection
-EventSelector       DEBUG AttributeList size 0
-EventSelector       DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000001B].
-EventSelector       DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000001B].
-EventSelector       DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000001B]
-AthenaPoolAddre...  DEBUG The current Event contains: 3 objects
-AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo
-AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 9102, name = MyHits
-AthenaEventLoopMgr   INFO   ===>>>  start processing event #27, run #0 27 events processed so far  <<<===
-ReadData            DEBUG in execute()
-ReadData             INFO EventStreamInfo: Number of events = 20
-ReadData             INFO EventStreamInfo: ItemList:
-ReadData             INFO CLID = 2101, key = McEventInfo
-ReadData             INFO CLID = 9102, key = MyHits
-ReadData             INFO CLID = 222376821, key = StreamX
-ReadData             INFO EventType: Event type: sim/data -  is sim , testbeam/atlas -  is atlas , calib/physics -  is physics 
-ReadData             INFO TagInfo: 
-ReadData             INFO EventStreamInfo: Number of events = 20
-ReadData             INFO EventStreamInfo: ItemList:
-ReadData             INFO CLID = 2101, key = McEventInfo
-ReadData             INFO CLID = 9102, key = MyHits
-ReadData             INFO CLID = 222376821, key = StreamX
-ReadData             INFO EventType: Event type: sim/data -  is sim , testbeam/atlas -  is atlas , calib/physics -  is physics 
-ReadData             INFO TagInfo: 
-ReadData             INFO EventInfo event: 27 run: 0
-ReadData             INFO Get Smart data ptr 1
-ReadData             INFO Could not find ExampleTrackContainer/MyTracks
-ReadData             INFO Hit x = 2701.23 y = -2.345 z = -2473.33 detector = DummyHitDetector
-ReadData             INFO Hit x = 2704.44 y = -8.0239 z = -2605.27 detector = DummyHitDetector
-ReadData             INFO Hit x = 2707.65 y = -13.7028 z = -2629.77 detector = DummyHitDetector
-ReadData             INFO Hit x = 2710.86 y = -19.3817 z = -2640.09 detector = DummyHitDetector
-ReadData             INFO Hit x = 2714.07 y = -25.0606 z = -2645.77 detector = DummyHitDetector
-ReadData             INFO Hit x = 2717.28 y = -30.7395 z = -2649.38 detector = DummyHitDetector
-ReadData             INFO Hit x = 2720.49 y = -36.4184 z = -2651.86 detector = DummyHitDetector
-ReadData             INFO Hit x = 2723.7 y = -42.0973 z = -2653.68 detector = DummyHitDetector
-ReadData             INFO Hit x = 2726.91 y = -47.7762 z = -2655.07 detector = DummyHitDetector
-ReadData             INFO Hit x = 2730.12 y = -53.4551 z = -2656.17 detector = DummyHitDetector
-AthenaEventLoopMgr   INFO   ===>>>  done processing event #27, run #0 28 events processed so far  <<<===
-EventSelector       DEBUG Get AttributeList from the collection
-EventSelector       DEBUG AttributeList size 0
-EventSelector       DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000001C].
-EventSelector       DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000001C].
-EventSelector       DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000001C]
-AthenaPoolAddre...  DEBUG The current Event contains: 3 objects
-AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo
-AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 9102, name = MyHits
-AthenaEventLoopMgr   INFO   ===>>>  start processing event #28, run #0 28 events processed so far  <<<===
-ReadData            DEBUG in execute()
-ReadData             INFO EventStreamInfo: Number of events = 20
-ReadData             INFO EventStreamInfo: ItemList:
-ReadData             INFO CLID = 2101, key = McEventInfo
-ReadData             INFO CLID = 9102, key = MyHits
-ReadData             INFO CLID = 222376821, key = StreamX
-ReadData             INFO EventType: Event type: sim/data -  is sim , testbeam/atlas -  is atlas , calib/physics -  is physics 
-ReadData             INFO TagInfo: 
-ReadData             INFO EventStreamInfo: Number of events = 20
-ReadData             INFO EventStreamInfo: ItemList:
-ReadData             INFO CLID = 2101, key = McEventInfo
-ReadData             INFO CLID = 9102, key = MyHits
-ReadData             INFO CLID = 222376821, key = StreamX
-ReadData             INFO EventType: Event type: sim/data -  is sim , testbeam/atlas -  is atlas , calib/physics -  is physics 
-ReadData             INFO TagInfo: 
-ReadData             INFO EventInfo event: 28 run: 0
-ReadData             INFO Get Smart data ptr 1
-ReadData             INFO Could not find ExampleTrackContainer/MyTracks
-ReadData             INFO Hit x = 2801.23 y = -2.345 z = -2573.33 detector = DummyHitDetector
-ReadData             INFO Hit x = 2804.44 y = -8.0239 z = -2705.27 detector = DummyHitDetector
-ReadData             INFO Hit x = 2807.65 y = -13.7028 z = -2729.77 detector = DummyHitDetector
-ReadData             INFO Hit x = 2810.86 y = -19.3817 z = -2740.09 detector = DummyHitDetector
-ReadData             INFO Hit x = 2814.07 y = -25.0606 z = -2745.77 detector = DummyHitDetector
-ReadData             INFO Hit x = 2817.28 y = -30.7395 z = -2749.38 detector = DummyHitDetector
-ReadData             INFO Hit x = 2820.49 y = -36.4184 z = -2751.86 detector = DummyHitDetector
-ReadData             INFO Hit x = 2823.7 y = -42.0973 z = -2753.68 detector = DummyHitDetector
-ReadData             INFO Hit x = 2826.91 y = -47.7762 z = -2755.07 detector = DummyHitDetector
-ReadData             INFO Hit x = 2830.12 y = -53.4551 z = -2756.17 detector = DummyHitDetector
-AthenaEventLoopMgr   INFO   ===>>>  done processing event #28, run #0 29 events processed so far  <<<===
-EventSelector       DEBUG Get AttributeList from the collection
-EventSelector       DEBUG AttributeList size 0
-EventSelector       DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000001D].
-EventSelector       DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000001D].
-EventSelector       DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000001D]
-AthenaPoolAddre...  DEBUG The current Event contains: 3 objects
-AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo
-AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 9102, name = MyHits
-AthenaEventLoopMgr   INFO   ===>>>  start processing event #29, run #0 29 events processed so far  <<<===
-ReadData            DEBUG in execute()
-ReadData             INFO EventStreamInfo: Number of events = 20
-ReadData             INFO EventStreamInfo: ItemList:
-ReadData             INFO CLID = 2101, key = McEventInfo
-ReadData             INFO CLID = 9102, key = MyHits
-ReadData             INFO CLID = 222376821, key = StreamX
-ReadData             INFO EventType: Event type: sim/data -  is sim , testbeam/atlas -  is atlas , calib/physics -  is physics 
-ReadData             INFO TagInfo: 
-ReadData             INFO EventStreamInfo: Number of events = 20
-ReadData             INFO EventStreamInfo: ItemList:
-ReadData             INFO CLID = 2101, key = McEventInfo
-ReadData             INFO CLID = 9102, key = MyHits
-ReadData             INFO CLID = 222376821, key = StreamX
-ReadData             INFO EventType: Event type: sim/data -  is sim , testbeam/atlas -  is atlas , calib/physics -  is physics 
-ReadData             INFO TagInfo: 
-ReadData             INFO EventInfo event: 29 run: 0
-ReadData             INFO Get Smart data ptr 1
-ReadData             INFO Could not find ExampleTrackContainer/MyTracks
-ReadData             INFO Hit x = 2901.23 y = -2.345 z = -2673.33 detector = DummyHitDetector
-ReadData             INFO Hit x = 2904.44 y = -8.0239 z = -2805.27 detector = DummyHitDetector
-ReadData             INFO Hit x = 2907.65 y = -13.7028 z = -2829.77 detector = DummyHitDetector
-ReadData             INFO Hit x = 2910.86 y = -19.3817 z = -2840.09 detector = DummyHitDetector
-ReadData             INFO Hit x = 2914.07 y = -25.0606 z = -2845.77 detector = DummyHitDetector
-ReadData             INFO Hit x = 2917.28 y = -30.7395 z = -2849.38 detector = DummyHitDetector
-ReadData             INFO Hit x = 2920.49 y = -36.4184 z = -2851.86 detector = DummyHitDetector
-ReadData             INFO Hit x = 2923.7 y = -42.0973 z = -2853.68 detector = DummyHitDetector
-ReadData             INFO Hit x = 2926.91 y = -47.7762 z = -2855.07 detector = DummyHitDetector
-ReadData             INFO Hit x = 2930.12 y = -53.4551 z = -2856.17 detector = DummyHitDetector
-AthenaEventLoopMgr   INFO   ===>>>  done processing event #29, run #0 30 events processed so far  <<<===
-EventSelector       DEBUG Get AttributeList from the collection
-EventSelector       DEBUG AttributeList size 0
-EventSelector       DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000001E].
-EventSelector       DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000001E].
-EventSelector       DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000001E]
-AthenaPoolAddre...  DEBUG The current Event contains: 3 objects
-AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo
-AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 9102, name = MyHits
-AthenaEventLoopMgr   INFO   ===>>>  start processing event #30, run #0 30 events processed so far  <<<===
-ReadData            DEBUG in execute()
-ReadData             INFO EventStreamInfo: Number of events = 20
-ReadData             INFO EventStreamInfo: ItemList:
-ReadData             INFO CLID = 2101, key = McEventInfo
-ReadData             INFO CLID = 9102, key = MyHits
-ReadData             INFO CLID = 222376821, key = StreamX
-ReadData             INFO EventType: Event type: sim/data -  is sim , testbeam/atlas -  is atlas , calib/physics -  is physics 
-ReadData             INFO TagInfo: 
-ReadData             INFO EventStreamInfo: Number of events = 20
-ReadData             INFO EventStreamInfo: ItemList:
-ReadData             INFO CLID = 2101, key = McEventInfo
-ReadData             INFO CLID = 9102, key = MyHits
-ReadData             INFO CLID = 222376821, key = StreamX
-ReadData             INFO EventType: Event type: sim/data -  is sim , testbeam/atlas -  is atlas , calib/physics -  is physics 
-ReadData             INFO TagInfo: 
-ReadData             INFO EventInfo event: 30 run: 0
-ReadData             INFO Get Smart data ptr 1
-ReadData             INFO Could not find ExampleTrackContainer/MyTracks
-ReadData             INFO Hit x = 3001.23 y = -2.345 z = -2773.33 detector = DummyHitDetector
-ReadData             INFO Hit x = 3004.44 y = -8.0239 z = -2905.27 detector = DummyHitDetector
-ReadData             INFO Hit x = 3007.65 y = -13.7028 z = -2929.77 detector = DummyHitDetector
-ReadData             INFO Hit x = 3010.86 y = -19.3817 z = -2940.09 detector = DummyHitDetector
-ReadData             INFO Hit x = 3014.07 y = -25.0606 z = -2945.77 detector = DummyHitDetector
-ReadData             INFO Hit x = 3017.28 y = -30.7395 z = -2949.38 detector = DummyHitDetector
-ReadData             INFO Hit x = 3020.49 y = -36.4184 z = -2951.86 detector = DummyHitDetector
-ReadData             INFO Hit x = 3023.7 y = -42.0973 z = -2953.68 detector = DummyHitDetector
-ReadData             INFO Hit x = 3026.91 y = -47.7762 z = -2955.07 detector = DummyHitDetector
-ReadData             INFO Hit x = 3030.12 y = -53.4551 z = -2956.17 detector = DummyHitDetector
-AthenaEventLoopMgr   INFO   ===>>>  done processing event #30, run #0 31 events processed so far  <<<===
-EventSelector       DEBUG Get AttributeList from the collection
-EventSelector       DEBUG AttributeList size 0
-EventSelector       DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000001F].
-EventSelector       DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000001F].
-EventSelector       DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000001F]
-AthenaPoolAddre...  DEBUG The current Event contains: 3 objects
-AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo
-AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 9102, name = MyHits
-AthenaEventLoopMgr   INFO   ===>>>  start processing event #31, run #0 31 events processed so far  <<<===
-ReadData            DEBUG in execute()
-ReadData             INFO EventStreamInfo: Number of events = 20
-ReadData             INFO EventStreamInfo: ItemList:
-ReadData             INFO CLID = 2101, key = McEventInfo
-ReadData             INFO CLID = 9102, key = MyHits
-ReadData             INFO CLID = 222376821, key = StreamX
-ReadData             INFO EventType: Event type: sim/data -  is sim , testbeam/atlas -  is atlas , calib/physics -  is physics 
-ReadData             INFO TagInfo: 
-ReadData             INFO EventStreamInfo: Number of events = 20
-ReadData             INFO EventStreamInfo: ItemList:
-ReadData             INFO CLID = 2101, key = McEventInfo
-ReadData             INFO CLID = 9102, key = MyHits
-ReadData             INFO CLID = 222376821, key = StreamX
-ReadData             INFO EventType: Event type: sim/data -  is sim , testbeam/atlas -  is atlas , calib/physics -  is physics 
-ReadData             INFO TagInfo: 
-ReadData             INFO EventInfo event: 31 run: 0
-ReadData             INFO Get Smart data ptr 1
-ReadData             INFO Could not find ExampleTrackContainer/MyTracks
-ReadData             INFO Hit x = 3101.23 y = -2.345 z = -2873.33 detector = DummyHitDetector
-ReadData             INFO Hit x = 3104.44 y = -8.0239 z = -3005.27 detector = DummyHitDetector
-ReadData             INFO Hit x = 3107.65 y = -13.7028 z = -3029.77 detector = DummyHitDetector
-ReadData             INFO Hit x = 3110.86 y = -19.3817 z = -3040.09 detector = DummyHitDetector
-ReadData             INFO Hit x = 3114.07 y = -25.0606 z = -3045.77 detector = DummyHitDetector
-ReadData             INFO Hit x = 3117.28 y = -30.7395 z = -3049.38 detector = DummyHitDetector
-ReadData             INFO Hit x = 3120.49 y = -36.4184 z = -3051.86 detector = DummyHitDetector
-ReadData             INFO Hit x = 3123.7 y = -42.0973 z = -3053.68 detector = DummyHitDetector
-ReadData             INFO Hit x = 3126.91 y = -47.7762 z = -3055.07 detector = DummyHitDetector
-ReadData             INFO Hit x = 3130.12 y = -53.4551 z = -3056.17 detector = DummyHitDetector
-AthenaEventLoopMgr   INFO   ===>>>  done processing event #31, run #0 32 events processed so far  <<<===
-EventSelector       DEBUG Get AttributeList from the collection
-EventSelector       DEBUG AttributeList size 0
-EventSelector       DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000020].
-EventSelector       DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000020].
-EventSelector       DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000020]
-AthenaPoolAddre...  DEBUG The current Event contains: 3 objects
-AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo
-AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 9102, name = MyHits
-AthenaEventLoopMgr   INFO   ===>>>  start processing event #32, run #0 32 events processed so far  <<<===
-ReadData            DEBUG in execute()
-ReadData             INFO EventStreamInfo: Number of events = 20
-ReadData             INFO EventStreamInfo: ItemList:
-ReadData             INFO CLID = 2101, key = McEventInfo
-ReadData             INFO CLID = 9102, key = MyHits
-ReadData             INFO CLID = 222376821, key = StreamX
-ReadData             INFO EventType: Event type: sim/data -  is sim , testbeam/atlas -  is atlas , calib/physics -  is physics 
-ReadData             INFO TagInfo: 
-ReadData             INFO EventStreamInfo: Number of events = 20
-ReadData             INFO EventStreamInfo: ItemList:
-ReadData             INFO CLID = 2101, key = McEventInfo
-ReadData             INFO CLID = 9102, key = MyHits
-ReadData             INFO CLID = 222376821, key = StreamX
-ReadData             INFO EventType: Event type: sim/data -  is sim , testbeam/atlas -  is atlas , calib/physics -  is physics 
-ReadData             INFO TagInfo: 
-ReadData             INFO EventInfo event: 32 run: 0
-ReadData             INFO Get Smart data ptr 1
-ReadData             INFO Could not find ExampleTrackContainer/MyTracks
-ReadData             INFO Hit x = 3201.23 y = -2.345 z = -2973.33 detector = DummyHitDetector
-ReadData             INFO Hit x = 3204.44 y = -8.0239 z = -3105.27 detector = DummyHitDetector
-ReadData             INFO Hit x = 3207.65 y = -13.7028 z = -3129.77 detector = DummyHitDetector
-ReadData             INFO Hit x = 3210.86 y = -19.3817 z = -3140.09 detector = DummyHitDetector
-ReadData             INFO Hit x = 3214.07 y = -25.0606 z = -3145.77 detector = DummyHitDetector
-ReadData             INFO Hit x = 3217.28 y = -30.7395 z = -3149.38 detector = DummyHitDetector
-ReadData             INFO Hit x = 3220.49 y = -36.4184 z = -3151.86 detector = DummyHitDetector
-ReadData             INFO Hit x = 3223.7 y = -42.0973 z = -3153.68 detector = DummyHitDetector
-ReadData             INFO Hit x = 3226.91 y = -47.7762 z = -3155.07 detector = DummyHitDetector
-ReadData             INFO Hit x = 3230.12 y = -53.4551 z = -3156.17 detector = DummyHitDetector
-AthenaEventLoopMgr   INFO   ===>>>  done processing event #32, run #0 33 events processed so far  <<<===
-EventSelector       DEBUG Get AttributeList from the collection
-EventSelector       DEBUG AttributeList size 0
-EventSelector       DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000021].
-EventSelector       DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000021].
-EventSelector       DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000021]
-AthenaPoolAddre...  DEBUG The current Event contains: 3 objects
-AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo
-AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 9102, name = MyHits
-AthenaEventLoopMgr   INFO   ===>>>  start processing event #33, run #0 33 events processed so far  <<<===
-ReadData            DEBUG in execute()
-ReadData             INFO EventStreamInfo: Number of events = 20
-ReadData             INFO EventStreamInfo: ItemList:
-ReadData             INFO CLID = 2101, key = McEventInfo
-ReadData             INFO CLID = 9102, key = MyHits
-ReadData             INFO CLID = 222376821, key = StreamX
-ReadData             INFO EventType: Event type: sim/data -  is sim , testbeam/atlas -  is atlas , calib/physics -  is physics 
-ReadData             INFO TagInfo: 
-ReadData             INFO EventStreamInfo: Number of events = 20
-ReadData             INFO EventStreamInfo: ItemList:
-ReadData             INFO CLID = 2101, key = McEventInfo
-ReadData             INFO CLID = 9102, key = MyHits
-ReadData             INFO CLID = 222376821, key = StreamX
-ReadData             INFO EventType: Event type: sim/data -  is sim , testbeam/atlas -  is atlas , calib/physics -  is physics 
-ReadData             INFO TagInfo: 
-ReadData             INFO EventInfo event: 33 run: 0
-ReadData             INFO Get Smart data ptr 1
-ReadData             INFO Could not find ExampleTrackContainer/MyTracks
-ReadData             INFO Hit x = 3301.23 y = -2.345 z = -3073.33 detector = DummyHitDetector
-ReadData             INFO Hit x = 3304.44 y = -8.0239 z = -3205.27 detector = DummyHitDetector
-ReadData             INFO Hit x = 3307.65 y = -13.7028 z = -3229.77 detector = DummyHitDetector
-ReadData             INFO Hit x = 3310.86 y = -19.3817 z = -3240.09 detector = DummyHitDetector
-ReadData             INFO Hit x = 3314.07 y = -25.0606 z = -3245.77 detector = DummyHitDetector
-ReadData             INFO Hit x = 3317.28 y = -30.7395 z = -3249.38 detector = DummyHitDetector
-ReadData             INFO Hit x = 3320.49 y = -36.4184 z = -3251.86 detector = DummyHitDetector
-ReadData             INFO Hit x = 3323.7 y = -42.0973 z = -3253.68 detector = DummyHitDetector
-ReadData             INFO Hit x = 3326.91 y = -47.7762 z = -3255.07 detector = DummyHitDetector
-ReadData             INFO Hit x = 3330.12 y = -53.4551 z = -3256.17 detector = DummyHitDetector
-AthenaEventLoopMgr   INFO   ===>>>  done processing event #33, run #0 34 events processed so far  <<<===
-EventSelector       DEBUG Get AttributeList from the collection
-EventSelector       DEBUG AttributeList size 0
-EventSelector       DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000022].
-EventSelector       DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000022].
-EventSelector       DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000022]
-AthenaPoolAddre...  DEBUG The current Event contains: 3 objects
-AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo
-AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 9102, name = MyHits
-AthenaEventLoopMgr   INFO   ===>>>  start processing event #34, run #0 34 events processed so far  <<<===
-ReadData            DEBUG in execute()
-ReadData             INFO EventStreamInfo: Number of events = 20
-ReadData             INFO EventStreamInfo: ItemList:
-ReadData             INFO CLID = 2101, key = McEventInfo
-ReadData             INFO CLID = 9102, key = MyHits
-ReadData             INFO CLID = 222376821, key = StreamX
-ReadData             INFO EventType: Event type: sim/data -  is sim , testbeam/atlas -  is atlas , calib/physics -  is physics 
-ReadData             INFO TagInfo: 
-ReadData             INFO EventStreamInfo: Number of events = 20
-ReadData             INFO EventStreamInfo: ItemList:
-ReadData             INFO CLID = 2101, key = McEventInfo
-ReadData             INFO CLID = 9102, key = MyHits
-ReadData             INFO CLID = 222376821, key = StreamX
-ReadData             INFO EventType: Event type: sim/data -  is sim , testbeam/atlas -  is atlas , calib/physics -  is physics 
-ReadData             INFO TagInfo: 
-ReadData             INFO EventInfo event: 34 run: 0
-ReadData             INFO Get Smart data ptr 1
-ReadData             INFO Could not find ExampleTrackContainer/MyTracks
-ReadData             INFO Hit x = 3401.23 y = -2.345 z = -3173.33 detector = DummyHitDetector
-ReadData             INFO Hit x = 3404.44 y = -8.0239 z = -3305.27 detector = DummyHitDetector
-ReadData             INFO Hit x = 3407.65 y = -13.7028 z = -3329.77 detector = DummyHitDetector
-ReadData             INFO Hit x = 3410.86 y = -19.3817 z = -3340.09 detector = DummyHitDetector
-ReadData             INFO Hit x = 3414.07 y = -25.0606 z = -3345.77 detector = DummyHitDetector
-ReadData             INFO Hit x = 3417.28 y = -30.7395 z = -3349.38 detector = DummyHitDetector
-ReadData             INFO Hit x = 3420.49 y = -36.4184 z = -3351.86 detector = DummyHitDetector
-ReadData             INFO Hit x = 3423.7 y = -42.0973 z = -3353.68 detector = DummyHitDetector
-ReadData             INFO Hit x = 3426.91 y = -47.7762 z = -3355.07 detector = DummyHitDetector
-ReadData             INFO Hit x = 3430.12 y = -53.4551 z = -3356.17 detector = DummyHitDetector
-AthenaEventLoopMgr   INFO   ===>>>  done processing event #34, run #0 35 events processed so far  <<<===
-EventSelector       DEBUG Get AttributeList from the collection
-EventSelector       DEBUG AttributeList size 0
-EventSelector       DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000023].
-EventSelector       DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000023].
-EventSelector       DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000023]
-AthenaPoolAddre...  DEBUG The current Event contains: 3 objects
-AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo
-AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 9102, name = MyHits
-AthenaEventLoopMgr   INFO   ===>>>  start processing event #35, run #0 35 events processed so far  <<<===
-ReadData            DEBUG in execute()
-ReadData             INFO EventStreamInfo: Number of events = 20
-ReadData             INFO EventStreamInfo: ItemList:
-ReadData             INFO CLID = 2101, key = McEventInfo
-ReadData             INFO CLID = 9102, key = MyHits
-ReadData             INFO CLID = 222376821, key = StreamX
-ReadData             INFO EventType: Event type: sim/data -  is sim , testbeam/atlas -  is atlas , calib/physics -  is physics 
-ReadData             INFO TagInfo: 
-ReadData             INFO EventStreamInfo: Number of events = 20
-ReadData             INFO EventStreamInfo: ItemList:
-ReadData             INFO CLID = 2101, key = McEventInfo
-ReadData             INFO CLID = 9102, key = MyHits
-ReadData             INFO CLID = 222376821, key = StreamX
-ReadData             INFO EventType: Event type: sim/data -  is sim , testbeam/atlas -  is atlas , calib/physics -  is physics 
-ReadData             INFO TagInfo: 
-ReadData             INFO EventInfo event: 35 run: 0
-ReadData             INFO Get Smart data ptr 1
-ReadData             INFO Could not find ExampleTrackContainer/MyTracks
-ReadData             INFO Hit x = 3501.23 y = -2.345 z = -3273.33 detector = DummyHitDetector
-ReadData             INFO Hit x = 3504.44 y = -8.0239 z = -3405.27 detector = DummyHitDetector
-ReadData             INFO Hit x = 3507.65 y = -13.7028 z = -3429.77 detector = DummyHitDetector
-ReadData             INFO Hit x = 3510.86 y = -19.3817 z = -3440.09 detector = DummyHitDetector
-ReadData             INFO Hit x = 3514.07 y = -25.0606 z = -3445.77 detector = DummyHitDetector
-ReadData             INFO Hit x = 3517.28 y = -30.7395 z = -3449.38 detector = DummyHitDetector
-ReadData             INFO Hit x = 3520.49 y = -36.4184 z = -3451.86 detector = DummyHitDetector
-ReadData             INFO Hit x = 3523.7 y = -42.0973 z = -3453.68 detector = DummyHitDetector
-ReadData             INFO Hit x = 3526.91 y = -47.7762 z = -3455.07 detector = DummyHitDetector
-ReadData             INFO Hit x = 3530.12 y = -53.4551 z = -3456.17 detector = DummyHitDetector
-AthenaEventLoopMgr   INFO   ===>>>  done processing event #35, run #0 36 events processed so far  <<<===
-EventSelector       DEBUG Get AttributeList from the collection
-EventSelector       DEBUG AttributeList size 0
-EventSelector       DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000024].
-EventSelector       DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000024].
-EventSelector       DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000024]
-AthenaPoolAddre...  DEBUG The current Event contains: 3 objects
-AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo
-AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 9102, name = MyHits
-AthenaEventLoopMgr   INFO   ===>>>  start processing event #36, run #0 36 events processed so far  <<<===
-ReadData            DEBUG in execute()
-ReadData             INFO EventStreamInfo: Number of events = 20
-ReadData             INFO EventStreamInfo: ItemList:
-ReadData             INFO CLID = 2101, key = McEventInfo
-ReadData             INFO CLID = 9102, key = MyHits
-ReadData             INFO CLID = 222376821, key = StreamX
-ReadData             INFO EventType: Event type: sim/data -  is sim , testbeam/atlas -  is atlas , calib/physics -  is physics 
-ReadData             INFO TagInfo: 
-ReadData             INFO EventStreamInfo: Number of events = 20
-ReadData             INFO EventStreamInfo: ItemList:
-ReadData             INFO CLID = 2101, key = McEventInfo
-ReadData             INFO CLID = 9102, key = MyHits
-ReadData             INFO CLID = 222376821, key = StreamX
-ReadData             INFO EventType: Event type: sim/data -  is sim , testbeam/atlas -  is atlas , calib/physics -  is physics 
-ReadData             INFO TagInfo: 
-ReadData             INFO EventInfo event: 36 run: 0
-ReadData             INFO Get Smart data ptr 1
-ReadData             INFO Could not find ExampleTrackContainer/MyTracks
-ReadData             INFO Hit x = 3601.23 y = -2.345 z = -3373.33 detector = DummyHitDetector
-ReadData             INFO Hit x = 3604.44 y = -8.0239 z = -3505.27 detector = DummyHitDetector
-ReadData             INFO Hit x = 3607.65 y = -13.7028 z = -3529.77 detector = DummyHitDetector
-ReadData             INFO Hit x = 3610.86 y = -19.3817 z = -3540.09 detector = DummyHitDetector
-ReadData             INFO Hit x = 3614.07 y = -25.0606 z = -3545.77 detector = DummyHitDetector
-ReadData             INFO Hit x = 3617.28 y = -30.7395 z = -3549.38 detector = DummyHitDetector
-ReadData             INFO Hit x = 3620.49 y = -36.4184 z = -3551.86 detector = DummyHitDetector
-ReadData             INFO Hit x = 3623.7 y = -42.0973 z = -3553.68 detector = DummyHitDetector
-ReadData             INFO Hit x = 3626.91 y = -47.7762 z = -3555.07 detector = DummyHitDetector
-ReadData             INFO Hit x = 3630.12 y = -53.4551 z = -3556.17 detector = DummyHitDetector
-AthenaEventLoopMgr   INFO   ===>>>  done processing event #36, run #0 37 events processed so far  <<<===
-EventSelector       DEBUG Get AttributeList from the collection
-EventSelector       DEBUG AttributeList size 0
-EventSelector       DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000025].
-EventSelector       DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000025].
-EventSelector       DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000025]
-AthenaPoolAddre...  DEBUG The current Event contains: 3 objects
-AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo
-AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 9102, name = MyHits
-AthenaEventLoopMgr   INFO   ===>>>  start processing event #37, run #0 37 events processed so far  <<<===
-ReadData            DEBUG in execute()
-ReadData             INFO EventStreamInfo: Number of events = 20
-ReadData             INFO EventStreamInfo: ItemList:
-ReadData             INFO CLID = 2101, key = McEventInfo
-ReadData             INFO CLID = 9102, key = MyHits
-ReadData             INFO CLID = 222376821, key = StreamX
-ReadData             INFO EventType: Event type: sim/data -  is sim , testbeam/atlas -  is atlas , calib/physics -  is physics 
-ReadData             INFO TagInfo: 
-ReadData             INFO EventStreamInfo: Number of events = 20
-ReadData             INFO EventStreamInfo: ItemList:
-ReadData             INFO CLID = 2101, key = McEventInfo
-ReadData             INFO CLID = 9102, key = MyHits
-ReadData             INFO CLID = 222376821, key = StreamX
-ReadData             INFO EventType: Event type: sim/data -  is sim , testbeam/atlas -  is atlas , calib/physics -  is physics 
-ReadData             INFO TagInfo: 
-ReadData             INFO EventInfo event: 37 run: 0
-ReadData             INFO Get Smart data ptr 1
-ReadData             INFO Could not find ExampleTrackContainer/MyTracks
-ReadData             INFO Hit x = 3701.23 y = -2.345 z = -3473.33 detector = DummyHitDetector
-ReadData             INFO Hit x = 3704.44 y = -8.0239 z = -3605.27 detector = DummyHitDetector
-ReadData             INFO Hit x = 3707.65 y = -13.7028 z = -3629.77 detector = DummyHitDetector
-ReadData             INFO Hit x = 3710.86 y = -19.3817 z = -3640.09 detector = DummyHitDetector
-ReadData             INFO Hit x = 3714.07 y = -25.0606 z = -3645.77 detector = DummyHitDetector
-ReadData             INFO Hit x = 3717.28 y = -30.7395 z = -3649.38 detector = DummyHitDetector
-ReadData             INFO Hit x = 3720.49 y = -36.4184 z = -3651.86 detector = DummyHitDetector
-ReadData             INFO Hit x = 3723.7 y = -42.0973 z = -3653.68 detector = DummyHitDetector
-ReadData             INFO Hit x = 3726.91 y = -47.7762 z = -3655.07 detector = DummyHitDetector
-ReadData             INFO Hit x = 3730.12 y = -53.4551 z = -3656.17 detector = DummyHitDetector
-AthenaEventLoopMgr   INFO   ===>>>  done processing event #37, run #0 38 events processed so far  <<<===
-EventSelector       DEBUG Get AttributeList from the collection
-EventSelector       DEBUG AttributeList size 0
-EventSelector       DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000026].
-EventSelector       DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000026].
-EventSelector       DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000026]
-AthenaPoolAddre...  DEBUG The current Event contains: 3 objects
-AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo
-AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 9102, name = MyHits
-AthenaEventLoopMgr   INFO   ===>>>  start processing event #38, run #0 38 events processed so far  <<<===
-ReadData            DEBUG in execute()
-ReadData             INFO EventStreamInfo: Number of events = 20
-ReadData             INFO EventStreamInfo: ItemList:
-ReadData             INFO CLID = 2101, key = McEventInfo
-ReadData             INFO CLID = 9102, key = MyHits
-ReadData             INFO CLID = 222376821, key = StreamX
-ReadData             INFO EventType: Event type: sim/data -  is sim , testbeam/atlas -  is atlas , calib/physics -  is physics 
-ReadData             INFO TagInfo: 
-ReadData             INFO EventStreamInfo: Number of events = 20
-ReadData             INFO EventStreamInfo: ItemList:
-ReadData             INFO CLID = 2101, key = McEventInfo
-ReadData             INFO CLID = 9102, key = MyHits
-ReadData             INFO CLID = 222376821, key = StreamX
-ReadData             INFO EventType: Event type: sim/data -  is sim , testbeam/atlas -  is atlas , calib/physics -  is physics 
-ReadData             INFO TagInfo: 
-ReadData             INFO EventInfo event: 38 run: 0
-ReadData             INFO Get Smart data ptr 1
-ReadData             INFO Could not find ExampleTrackContainer/MyTracks
-ReadData             INFO Hit x = 3801.23 y = -2.345 z = -3573.33 detector = DummyHitDetector
-ReadData             INFO Hit x = 3804.44 y = -8.0239 z = -3705.27 detector = DummyHitDetector
-ReadData             INFO Hit x = 3807.65 y = -13.7028 z = -3729.77 detector = DummyHitDetector
-ReadData             INFO Hit x = 3810.86 y = -19.3817 z = -3740.09 detector = DummyHitDetector
-ReadData             INFO Hit x = 3814.07 y = -25.0606 z = -3745.77 detector = DummyHitDetector
-ReadData             INFO Hit x = 3817.28 y = -30.7395 z = -3749.38 detector = DummyHitDetector
-ReadData             INFO Hit x = 3820.49 y = -36.4184 z = -3751.86 detector = DummyHitDetector
-ReadData             INFO Hit x = 3823.7 y = -42.0973 z = -3753.68 detector = DummyHitDetector
-ReadData             INFO Hit x = 3826.91 y = -47.7762 z = -3755.07 detector = DummyHitDetector
-ReadData             INFO Hit x = 3830.12 y = -53.4551 z = -3756.17 detector = DummyHitDetector
-AthenaEventLoopMgr   INFO   ===>>>  done processing event #38, run #0 39 events processed so far  <<<===
-EventSelector       DEBUG Get AttributeList from the collection
-EventSelector       DEBUG AttributeList size 0
-EventSelector       DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000027].
-EventSelector       DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000027].
-EventSelector       DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000027]
-AthenaPoolAddre...  DEBUG The current Event contains: 3 objects
-AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo
-AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 9102, name = MyHits
-AthenaEventLoopMgr   INFO   ===>>>  start processing event #39, run #0 39 events processed so far  <<<===
-ReadData            DEBUG in execute()
-ReadData             INFO EventStreamInfo: Number of events = 20
-ReadData             INFO EventStreamInfo: ItemList:
-ReadData             INFO CLID = 2101, key = McEventInfo
-ReadData             INFO CLID = 9102, key = MyHits
-ReadData             INFO CLID = 222376821, key = StreamX
-ReadData             INFO EventType: Event type: sim/data -  is sim , testbeam/atlas -  is atlas , calib/physics -  is physics 
-ReadData             INFO TagInfo: 
-ReadData             INFO EventStreamInfo: Number of events = 20
-ReadData             INFO EventStreamInfo: ItemList:
-ReadData             INFO CLID = 2101, key = McEventInfo
-ReadData             INFO CLID = 9102, key = MyHits
-ReadData             INFO CLID = 222376821, key = StreamX
-ReadData             INFO EventType: Event type: sim/data -  is sim , testbeam/atlas -  is atlas , calib/physics -  is physics 
-ReadData             INFO TagInfo: 
-ReadData             INFO EventInfo event: 39 run: 0
-ReadData             INFO Get Smart data ptr 1
-ReadData             INFO Could not find ExampleTrackContainer/MyTracks
-ReadData             INFO Hit x = 3901.23 y = -2.345 z = -3673.33 detector = DummyHitDetector
-ReadData             INFO Hit x = 3904.44 y = -8.0239 z = -3805.27 detector = DummyHitDetector
-ReadData             INFO Hit x = 3907.65 y = -13.7028 z = -3829.77 detector = DummyHitDetector
-ReadData             INFO Hit x = 3910.86 y = -19.3817 z = -3840.09 detector = DummyHitDetector
-ReadData             INFO Hit x = 3914.07 y = -25.0606 z = -3845.77 detector = DummyHitDetector
-ReadData             INFO Hit x = 3917.28 y = -30.7395 z = -3849.38 detector = DummyHitDetector
-ReadData             INFO Hit x = 3920.49 y = -36.4184 z = -3851.86 detector = DummyHitDetector
-ReadData             INFO Hit x = 3923.7 y = -42.0973 z = -3853.68 detector = DummyHitDetector
-ReadData             INFO Hit x = 3926.91 y = -47.7762 z = -3855.07 detector = DummyHitDetector
-ReadData             INFO Hit x = 3930.12 y = -53.4551 z = -3856.17 detector = DummyHitDetector
-AthenaEventLoopMgr   INFO   ===>>>  done processing event #39, run #0 40 events processed so far  <<<===
 Domain[ROOT_All]     INFO ->  Deaccess DbDatabase   READ      [ROOT_All] ????
 Domain[ROOT_All]     INFO >   Deaccess DbDomain     READ      [ROOT_All] 
 MetaDataSvc         DEBUG handle() EndInputFile for FID:????
@@ -1772,9 +867,9 @@ ToolSvc.AthPool...   INFO in finalize()
 *****Chrono*****     INFO ****************************************************************************************************
 *****Chrono*****     INFO  The Final CPU consumption ( Chrono ) Table (ordered)
 *****Chrono*****     INFO ****************************************************************************************************
-cObjR_ALL            INFO Time User   : Tot=   20 [ms] Ave/Min/Max=0.152(+- 1.22)/    0/   10 [ms] #=132
-cObj_ALL             INFO Time User   : Tot=   50 [ms] Ave/Min/Max=0.391(+- 2.31)/    0/   20 [ms] #=128
-ChronoStatSvc        INFO Time User   : Tot= 0.97  [s]                                             #=  1
+cObjR_ALL            INFO Time User   : Tot=    0 [us] Ave/Min/Max=    0(+-    0)/    0/    0 [us] #= 67
+cObj_ALL             INFO Time User   : Tot=   10 [ms] Ave/Min/Max=0.156(+- 1.24)/    0/   10 [ms] #= 64
+ChronoStatSvc        INFO Time User   : Tot= 0.54  [s]                                             #=  1
 *****Chrono*****     INFO ****************************************************************************************************
 ChronoStatSvc.f...   INFO  Service finalized successfully 
 ApplicationMgr       INFO Application Manager Finalized successfully
diff --git a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_RWBs.ref b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_RWBs.ref
deleted file mode 100644
index 2b604111658bc0e24193241983cbf264b143ce94..0000000000000000000000000000000000000000
--- a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_RWBs.ref
+++ /dev/null
@@ -1,390 +0,0 @@
-Wed Dec 20 16:03:19 CST 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_RWBsJobOptions.py"
-Athena               INFO including file "ByteStreamCnvSvc/BSEventStorageEventSelector_jobOptions.py"
-Py:ConfigurableDb    INFO Read module info for 5439 configurables from 18 genConfDb files
-Py:ConfigurableDb    INFO No duplicates have been found: that's good !
-Athena               INFO including file "AthenaCommon/runbatch.py"
-[?1034hApplicationMgr       INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0
-ApplicationMgr    SUCCESS 
-====================================================================================================================================
-                                                   Welcome to ApplicationMgr (GaudiCoreSvc v30r0)
-                                          running on atlas2.hep.anl.gov on Wed Dec 20 16:03:29 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 2318 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
-ReadBs              DEBUG Property update for OutputLevel : new value = 2
-ReadBs               INFO in initialize()
-ByteStreamAddre...   INFO Initializing ByteStreamAddressProviderSvc - package version ByteStreamCnvSvcBase-00-00-00
-ROBDataProviderSvc   INFO Initializing ROBDataProviderSvc - package version ByteStreamCnvSvcBase-00-00-00
-ROBDataProviderSvc   INFO  ---> Filter out empty ROB fragments                               =  'filterEmptyROB':False
-ROBDataProviderSvc   INFO  ---> Filter out specific ROBs by Status Code: # ROBs = 0
-ROBDataProviderSvc   INFO  ---> Filter out Sub Detector ROBs by Status Code: # Sub Detectors = 0
-ByteStreamAddre...   INFO initialized 
-ByteStreamAddre...   INFO -- Module IDs for: 
-ByteStreamAddre...   INFO    CTP                                  = 0x1
-ByteStreamAddre...   INFO    muCTPi                               = 0x1
-ByteStreamAddre...   INFO    Calorimeter Cluster Processor RoI    = 0xa8, 0xa9, 0xaa, 0xab
-ByteStreamAddre...   INFO    Calorimeter Jet/Energy Processor RoI = 0xac, 0xad
-ByteStreamAddre...   INFO    Topo Processor RoI = 0x81, 0x91
-ByteStreamAddre...   INFO -- Will fill Store with id =  0
-MetaDataSvc         DEBUG Property update for OutputLevel : new value = 2
-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 io_register[PoolSvc](xmlcatalog_file:PoolFileCatalog.xml) [ok]
-PoolSvc              INFO Set connectionsvc retry/timeout/IDLE timeout to  'ConnectionRetrialPeriod':300/ 'ConnectionRetrialTimeOut':3600/ 'ConnectionTimeOut':5 seconds with connection cleanup disabled
-PoolSvc              INFO Frontier compression level set to 5
-DBReplicaSvc         INFO Frontier server at (serverurl=http://atlasfrontier-ai.cern.ch:8000/atlr)(serverurl=http://lcgft-atlas.gridpp.rl.ac.uk:3128/frontierATLAS)(serverurl=http://frontier-atlas.lcg.triumf.ca:3128/ATLAS_frontier)(serverurl=http://ccfrontier.in2p3.fr:23128/ccin2p3-AtlasFrontier) will be considered for COOL data
-DBReplicaSvc         INFO Read replica configuration from /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2017-12-17T2303/Athena/22.0.0/InstallArea/x86_64-slc6-gcc62-opt/share/dbreplica.config
-DBReplicaSvc         INFO Total of 1 servers found for host atlas2.hep.anl.gov [ATLF ]
-PoolSvc              INFO Successfully setup replica sorting algorithm
-PoolSvc             DEBUG OutputLevel is 
-PoolSvc              INFO Setting up APR FileCatalog and Streams
-PoolSvc              INFO POOL WriteCatalog is xmlcatalog_file:PoolFileCatalog.xml
-DbSession            INFO     Open     DbSession    
-Domain[ROOT_All]     INFO >   Access   DbDomain     READ      [ROOT_All] 
-ToolSvc.ByteStr...   INFO Initializing ToolSvc.ByteStreamMetadataTool - package version ByteStreamCnvSvc-00-00-00
-ReadBs              DEBUG input handles: 0
-ReadBs              DEBUG output handles: 0
-ReadBs              DEBUG Data Deps for ReadBs
-ReadData            DEBUG Property update for OutputLevel : new value = 2
-ReadData             INFO in initialize()
-ReadData            DEBUG input handles: 0
-ReadData            DEBUG output handles: 0
-ReadData            DEBUG Data Deps for ReadData
-Stream1             DEBUG Property update for OutputLevel : new value = 2
-Stream1.Stream1...  DEBUG Property update for OutputLevel : new value = 2
-ClassIDSvc           INFO  getRegistryEntries: read 3923 CLIDRegistry entries for module ALL
-Stream1             DEBUG In initialize 
-Stream1             DEBUG Found IDecisionSvc.
-DecisionSvc          INFO Inserting stream: Stream1 with no Algs
-Stream1             DEBUG End initialize 
-Stream1             DEBUG In initialize
-Stream1             DEBUG Found StoreGateSvc store.
-Stream1             DEBUG Found MetaDataStore store.
-OutputStreamSeq...   INFO Initializing OutputStreamSequencerSvc - package version AthenaServices-00-00-00
-Stream1.Stream1...  DEBUG Property update for OutputLevel : new value = 2
-ClassIDSvc           INFO  getRegistryEntries: read 402 CLIDRegistry entries for module ALL
-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: SimplePoolFromRaw.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
-WriteTag             INFO in initialize()
-RegStream1          DEBUG Property update for OutputLevel : new value = 2
-RegStream1.RegS...  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,"RunEventTag") 
-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
-HistogramPersis...WARNING Histograms saving not required.
-EventSelector        INFO Initializing EventSelector - package version ByteStreamCnvSvc-00-00-00
-EventSelector     WARNING InputCollections not properly set, checking EventStorageInputSvc properties
-EventSelector        INFO Retrieved StoreGateSvc name of  '':StoreGateSvc
-EventSelector        INFO Retrieved InputCollections from InputSvc
-ByteStreamInputSvc   INFO Initializing ByteStreamInputSvc - package version ByteStreamCnvSvc-00-00-00
-ByteStreamInputSvcWARNING ProcessBadEvent property has been moved to EventSelector, please use svgMgr.EventSelector.ProcessBadEvent instead
-EventSelector        INFO reinitialization...
-AthenaEventLoopMgr   INFO Setup EventSelector service EventSelector
-ApplicationMgr       INFO Application Manager Initialized successfully
-MetaDataSvc         DEBUG handle() FirstInputFile for BSF:/afs/cern.ch/atlas/offline/test/daq.m4_combined.0020720.extract.L1TT-b00000010._0001.data
-MetaDataSvc         DEBUG initInputMetaDataStore: file name BSF:/afs/cern.ch/atlas/offline/test/daq.m4_combined.0020720.extract.L1TT-b00000010._0001.data
-MetaDataSvc         DEBUG MetaDataSvc called for non ROOT file.
-MetaDataSvc         DEBUG Loaded input meta data store proxies
-ByteStreamInputSvc   INFO Picked valid file: /afs/cern.ch/atlas/offline/test/daq.m4_combined.0020720.extract.L1TT-b00000010._0001.data
-MetaDataSvc         DEBUG handle() BeginInputFile for BSF:/afs/cern.ch/atlas/offline/test/daq.m4_combined.0020720.extract.L1TT-b00000010._0001.data
-MetaDataSvc         DEBUG  calling beginInputFile for ToolSvc.IOVDbMetaDataTool
-MetaDataSvc         DEBUG  calling beginInputFile for ToolSvc.ByteStreamMetadataTool
-ApplicationMgr       INFO Application Manager Started successfully
-EventSelector     WARNING  bc_time nanosecond number larger than 1e9, it is 1188507005, reset it to 1 sec
-EventPersistenc...   INFO Added successfully Conversion service:ByteStreamCnvSvc
-EventInfoByteSt...   INFO UserType : RawEvent
-EventInfoByteSt...   INFO IsSimulation : 0
-EventInfoByteSt...   INFO IsTestbeam : 0
-EventInfoByteSt...   INFO IsCalibration : 0
-EventInfoByteSt...   INFO  EventContext not valid 
-AthenaEventLoopMgr   INFO   ===>>>  start of run 20720    <<<===
-AthenaEventLoopMgr   INFO   ===>>>  start processing event #14350, run #20720 0 events processed so far  <<<===
-ReadBs              DEBUG in execute()
-ReadBs               INFO ByteStreamMetadata, run# = 20720, #events = 3
-ReadBs               INFO ByteStreamMetadataContainer, size =  1
-ReadData            DEBUG in execute()
-ReadData          WARNING Could not find EventStreamInfo
-ReadData             INFO EventInfo event: 14350 run: 20720
-ReadData             INFO Get Smart data ptr 1
-ReadData             INFO Could not find ExampleTrackContainer/MyTracks
-ReadData             INFO Could not find ExampleHitContainer/MyHits
-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                           SimplePoolFromRaw.root
-SimplePoolFromR...  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.
-SimplePoolFromR...  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.
-SimplePoolFromR...  DEBUG --> Access   DbContainer  CREATE    [ROOT_All] ##Params
-##Params            DEBUG Opening
-##Params            DEBUG    attributes# = 1
-##Params            DEBUG Opened container ##Params of type ROOT_Tree
-SimplePoolFromR...  DEBUG --->Adding Assoc :????/##Params [200]  (2 , ffffffff)
-SimplePoolFromR...  DEBUG ---->ClassID:????
-##Params            DEBUG No objects passing selection criteria... Container has 0 Entries in total.
-AthenaPoolCnvSvc    DEBUG setAttribute CONTAINER_SPLITLEVEL to 99 for db: SimplePoolFromRaw.root and cont: TTree=POOLContainerForm(DataHeaderForm)
-Stream1             DEBUG addItemObjects(2101,"*") called
-Stream1             DEBUG            Key:*
-Stream1             DEBUG  Added object 2101,"ByteStreamEventInfo"
-Stream1             DEBUG  Collected objects:
-Stream1             DEBUG  Object/count: EventInfo_ByteStreamEventInfo, 1
-StorageSvc           INFO Building shape according to reflection information using shape ID for:
-StorageSvc           INFO EventInfo_p4 [????]
-SimplePoolFromR...  DEBUG --> Access   DbContainer  CREA/UPDA [ROOT_Tree] CollectionTree(EventInfo_p4/ByteStreamEventInfo)
-CollectionTree(...  DEBUG Opening
-CollectionTree(...  DEBUG    attributes# = 1
-CollectionTree(...  DEBUG Branch container 'EventInfo_p4_ByteStreamEventInfo'
-CollectionTree(...  DEBUG Opened container CollectionTree(EventInfo_p4/ByteStreamEventInfo) of type ROOT_Tree
-SimplePoolFromR...  DEBUG --->Adding Assoc :????/CollectionTree(EventInfo_p4/ByteStreamEventInfo) [202]  (3 , ffffffff)
-SimplePoolFromR...  DEBUG ---->ClassID:????
-SimplePoolFromR...  DEBUG --->Adding Shape[0 , ????]:  [1 Column(s)] 
-SimplePoolFromR...  DEBUG ---->Class:EventInfo_p4
-SimplePoolFromR...  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 DataHeaderForm_p5 [????]
-SimplePoolFromR...  DEBUG --> Access   DbContainer  CREA/UPDA [ROOT_Tree] POOLContainerForm(DataHeaderForm)
-POOLContainerFo...  DEBUG Opening
-POOLContainerFo...  DEBUG    attributes# = 1
-POOLContainerFo...  DEBUG Branch container 'DataHeaderForm'
-POOLContainerFo...  DEBUG Opened container POOLContainerForm(DataHeaderForm) of type ROOT_Tree
-SimplePoolFromR...  DEBUG --->Adding Assoc :????/POOLContainerForm(DataHeaderForm) [202]  (4 , ffffffff)
-SimplePoolFromR...  DEBUG ---->ClassID:????
-SimplePoolFromR...  DEBUG --->Adding Shape[1 , ????]:  [1 Column(s)] 
-SimplePoolFromR...  DEBUG ---->Class:DataHeaderForm_p5
-SimplePoolFromR...  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 [????]
-SimplePoolFromR...  DEBUG --> Access   DbContainer  CREA/UPDA [ROOT_Tree] POOLContainer(DataHeader)
-POOLContainer(D...  DEBUG Opening
-POOLContainer(D...  DEBUG    attributes# = 1
-POOLContainer(D...  DEBUG Branch container 'DataHeader'
-POOLContainer(D...  DEBUG Opened container POOLContainer(DataHeader) of type ROOT_Tree
-SimplePoolFromR...  DEBUG --->Adding Assoc :????/POOLContainer(DataHeader) [202]  (5 , ffffffff)
-SimplePoolFromR...  DEBUG ---->ClassID:????
-SimplePoolFromR...  DEBUG --->Adding Shape[2 , ????]:  [1 Column(s)] 
-SimplePoolFromR...  DEBUG ---->Class:DataHeader_p5
-SimplePoolFromR...  DEBUG ---->[0]:DataHeader_p5 Typ:DataHeader_p5 [21] Size:0 Offset:0 #Elements:1
-ClassIDSvc           INFO  getRegistryEntries: read 43 CLIDRegistry entries for module ALL
-SimplePoolFromR...  DEBUG --> Access   DbContainer  CREA/UPDA [ROOT_Tree] POOLContainer(basic/DataHeader)
-POOLContainer(b...  DEBUG Opening
-POOLContainer(b...  DEBUG    attributes# = 1
-POOLContainer(b...  DEBUG Branch container 'basic_DataHeader'
-POOLContainer(b...  DEBUG Opened container POOLContainer(basic/DataHeader) of type ROOT_Tree
-SimplePoolFromR...  DEBUG --->Adding Assoc :????/POOLContainer(basic/DataHeader) [202]  (6 , ffffffff)
-SimplePoolFromR...  DEBUG ---->ClassID:????
-AthenaPoolCnvSvc    DEBUG setAttribute BRANCH_BASKET_SIZE to 256000 for db: SimplePoolFromRaw.root and cont: POOLContainer(DataHeader)
-AthenaPoolCnvSvc    DEBUG setAttribute BRANCH_BASKET_SIZE to 1024000 for db: SimplePoolFromRaw.root and cont: POOLContainerForm(DataHeaderForm)
-WriteTag             INFO EventInfo event: 14350  run: 20720
-WriteTag             INFO registered all data
-RegStream1          DEBUG RegistrationStream execute
-RegStream1          DEBUG getRefs: Not DataHeader, skipping (40774349,"RunEventTag") 
-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=00000005-00000000] for Stream1
-RegStream1          DEBUG Found ref for input header [DB=????][CNT=][CLID=!!!!][TECH=00001000][OID=00000000-000000C8]
-RegStream1          DEBUG Adding ref for StreamRAW
-RegStream1          DEBUG Setting tagKey to RunEventTag
-RegStream1          DEBUG  Not class requested by Tool, skipping (222376821,"Stream1") 
-PoolSvc              INFO Writing ExplicitROOT Collection - do not pass session pointer
-RegStream1.TagTool   INFO No Primary Key defined
-AthenaEventLoopMgr   INFO   ===>>>  done processing event #14350, run #20720 1 events processed so far  <<<===
-EventSelector     WARNING  bc_time nanosecond number larger than 1e9, it is 1188507008, reset it to 1 sec
-AthenaEventLoopMgr   INFO   ===>>>  start processing event #14356, run #20720 1 events processed so far  <<<===
-ReadBs              DEBUG in execute()
-ReadBs               INFO ByteStreamMetadata, run# = 20720, #events = 3
-ReadBs               INFO ByteStreamMetadataContainer, size =  1
-ReadData            DEBUG in execute()
-ReadData          WARNING Could not find EventStreamInfo
-ReadData             INFO EventInfo event: 14356 run: 20720
-ReadData             INFO Get Smart data ptr 1
-ReadData             INFO Could not find ExampleTrackContainer/MyTracks
-ReadData             INFO Could not find ExampleHitContainer/MyHits
-Stream1             DEBUG addItemObjects(2101,"*") called
-Stream1             DEBUG            Key:*
-Stream1             DEBUG  Added object 2101,"ByteStreamEventInfo"
-Stream1             DEBUG  Collected objects:
-Stream1             DEBUG  Object/count: EventInfo_ByteStreamEventInfo, 2
-WriteTag             INFO EventInfo event: 14356  run: 20720
-WriteTag             INFO registered all data
-RegStream1          DEBUG RegistrationStream execute
-RegStream1          DEBUG getRefs: Not DataHeader, skipping (40774349,"RunEventTag") 
-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=00000005-00000001] for Stream1
-RegStream1          DEBUG Found ref for input header [DB=????][CNT=][CLID=!!!!][TECH=00001000][OID=00000000-0091678C]
-RegStream1          DEBUG Adding ref for StreamRAW
-RegStream1          DEBUG Setting tagKey to RunEventTag
-RegStream1          DEBUG  Not class requested by Tool, skipping (222376821,"Stream1") 
-AthenaEventLoopMgr   INFO   ===>>>  done processing event #14356, run #20720 2 events processed so far  <<<===
-EventSelector     WARNING  bc_time nanosecond number larger than 1e9, it is 1188507009, reset it to 1 sec
-AthenaEventLoopMgr   INFO   ===>>>  start processing event #14382, run #20720 2 events processed so far  <<<===
-ReadBs              DEBUG in execute()
-ReadBs               INFO ByteStreamMetadata, run# = 20720, #events = 3
-ReadBs               INFO ByteStreamMetadataContainer, size =  1
-ReadData            DEBUG in execute()
-ReadData          WARNING Could not find EventStreamInfo
-ReadData             INFO EventInfo event: 14382 run: 20720
-ReadData             INFO Get Smart data ptr 1
-ReadData             INFO Could not find ExampleTrackContainer/MyTracks
-ReadData             INFO Could not find ExampleHitContainer/MyHits
-Stream1             DEBUG addItemObjects(2101,"*") called
-Stream1             DEBUG            Key:*
-Stream1             DEBUG  Added object 2101,"ByteStreamEventInfo"
-Stream1             DEBUG  Collected objects:
-Stream1             DEBUG  Object/count: EventInfo_ByteStreamEventInfo, 3
-WriteTag             INFO EventInfo event: 14382  run: 20720
-WriteTag             INFO registered all data
-RegStream1          DEBUG RegistrationStream execute
-RegStream1          DEBUG getRefs: Not DataHeader, skipping (40774349,"RunEventTag") 
-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=00000005-00000002] for Stream1
-RegStream1          DEBUG Found ref for input header [DB=????][CNT=][CLID=!!!!][TECH=00001000][OID=00000000-0122CE08]
-RegStream1          DEBUG Adding ref for StreamRAW
-RegStream1          DEBUG Setting tagKey to RunEventTag
-RegStream1          DEBUG  Not class requested by Tool, skipping (222376821,"Stream1") 
-AthenaEventLoopMgr   INFO   ===>>>  done processing event #14382, run #20720 3 events processed so far  <<<===
-MetaDataSvc         DEBUG handle() EndInputFile for BSF:/afs/cern.ch/atlas/offline/test/daq.m4_combined.0020720.extract.L1TT-b00000010._0001.data
-EventSelector        INFO End of input file list reached
-AthenaEventLoopMgr   INFO No more events in event selection 
-MetaDataSvc         DEBUG handle() LastInputFile for stop
-MetaDataSvc         DEBUG  calling metaDataStop for ToolSvc.IOVDbMetaDataTool
-MetaDataSvc         DEBUG  calling metaDataStop for ToolSvc.ByteStreamMetadataTool
-MetaDataSvc         DEBUG Releasing MetaDataTools
-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(1076128893,"*") called
-Stream1             DEBUG            Key:*
-Stream1             DEBUG  Added object 1076128893,"ByteStreamMetadata"
-Stream1             DEBUG addItemObjects(1316383046,"*") called
-Stream1             DEBUG            Key:*
-StorageSvc           INFO Building shape according to reflection information using shape ID for:
-StorageSvc           INFO EventStreamInfo_p3 [????]
-SimplePoolFromR...  DEBUG --> Access   DbContainer  CREA/UPDA [ROOT_Tree] MetaData(EventStreamInfo_p3/Stream1)
-MetaData(EventS...  DEBUG Opening
-MetaData(EventS...  DEBUG    attributes# = 1
-MetaData(EventS...  DEBUG Branch container 'EventStreamInfo_p3_Stream1'
-MetaData(EventS...  DEBUG Opened container MetaData(EventStreamInfo_p3/Stream1) of type ROOT_Tree
-SimplePoolFromR...  DEBUG --->Adding Assoc :????/MetaData(EventStreamInfo_p3/Stream1) [202]  (7 , ffffffff)
-SimplePoolFromR...  DEBUG ---->ClassID:????
-SimplePoolFromR...  DEBUG --->Adding Shape[3 , ????]:  [1 Column(s)] 
-SimplePoolFromR...  DEBUG ---->Class:EventStreamInfo_p3
-SimplePoolFromR...  DEBUG ---->[0]:EventStreamInfo_p3 Typ:EventStreamInfo_p3 [21] Size:0 Offset:0 #Elements:1
-StorageSvc           INFO Building shape according to reflection information using shape ID for:
-StorageSvc           INFO ByteStreamMetadataContainer_p1 [????]
-SimplePoolFromR...  DEBUG --> Access   DbContainer  CREA/UPDA [ROOT_Tree] MetaData(ByteStreamMetadataContainer_p1/ByteStreamMetadata)
-MetaData(ByteSt...  DEBUG Opening
-MetaData(ByteSt...  DEBUG    attributes# = 1
-MetaData(ByteSt...  DEBUG Branch container 'ByteStreamMetadataContainer_p1_ByteStreamMetadata'
-MetaData(ByteSt...  DEBUG Opened container MetaData(ByteStreamMetadataContainer_p1/ByteStreamMetadata) of type ROOT_Tree
-SimplePoolFromR...  DEBUG --->Adding Assoc :????/MetaData(ByteStreamMetadataContainer_p1/ByteStreamMetadata) [202]  (8 , ffffffff)
-SimplePoolFromR...  DEBUG ---->ClassID:????
-SimplePoolFromR...  DEBUG --->Adding Shape[4 , ????]:  [1 Column(s)] 
-SimplePoolFromR...  DEBUG ---->Class:ByteStreamMetadataContainer_p1
-SimplePoolFromR...  DEBUG ---->[0]:ByteStreamMetadataContainer_p1 Typ:ByteStreamMetadataContainer_p1 [21] Size:0 Offset:0 #Elements:1
-SimplePoolFromR...  DEBUG --> Access   DbContainer  CREA/UPDA [ROOT_Tree] MetaDataHdrForm(DataHeaderForm)
-MetaDataHdrForm...  DEBUG Opening
-MetaDataHdrForm...  DEBUG    attributes# = 1
-MetaDataHdrForm...  DEBUG Branch container 'DataHeaderForm'
-MetaDataHdrForm...  DEBUG Opened container MetaDataHdrForm(DataHeaderForm) of type ROOT_Tree
-SimplePoolFromR...  DEBUG --->Adding Assoc :????/MetaDataHdrForm(DataHeaderForm) [202]  (9 , ffffffff)
-SimplePoolFromR...  DEBUG ---->ClassID:????
-SimplePoolFromR...  DEBUG --> Access   DbContainer  CREA/UPDA [ROOT_Tree] MetaDataHdr(DataHeader)
-MetaDataHdr(Dat...  DEBUG Opening
-MetaDataHdr(Dat...  DEBUG    attributes# = 1
-MetaDataHdr(Dat...  DEBUG Branch container 'DataHeader'
-MetaDataHdr(Dat...  DEBUG Opened container MetaDataHdr(DataHeader) of type ROOT_Tree
-SimplePoolFromR...  DEBUG --->Adding Assoc :????/MetaDataHdr(DataHeader) [202]  (a , ffffffff)
-SimplePoolFromR...  DEBUG ---->ClassID:????
-ClassIDSvc           INFO  getRegistryEntries: read 15 CLIDRegistry entries for module ALL
-Stream1              INFO Records written: 4
-Stream1             DEBUG Leaving handle
-RegStream1          DEBUG handle() incident type: MetaDataStop
-RegStream1.TagTool   INFO Collection Events output: 3
-Domain[ROOT_All]     INFO >   Deaccess DbDomain     READ      [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
-IncidentProcAlg1     INFO Finalize
-ReadBs               INFO in finalize()
-ReadData             INFO in finalize()
-Stream1             DEBUG finalize: Optimize output
-Stream1             DEBUG finalize: end optimize output
-WriteTag             INFO in finalize()
-RegStream1          DEBUG In finalize
-IncidentProcAlg2     INFO Finalize
-EventInfoByteSt...   INFO finalize 
-DecisionSvc          INFO Finalized successfully.
-AthenaPoolCnvSvc    DEBUG releasing all workers
-AthDictLoaderSvc     INFO in finalize...
-ToolSvc              INFO Removing all tools created by ToolSvc
-ToolSvc.ByteStr...   INFO in finalize()
-*****Chrono*****     INFO ****************************************************************************************************
-*****Chrono*****     INFO  The Final CPU consumption ( Chrono ) Table (ordered)
-*****Chrono*****     INFO ****************************************************************************************************
-commitOutput         INFO Time User   : Tot=    0 [us] Ave/Min/Max=    0(+-    0)/    0/    0 [us] #=  4
-fRep_ALL             INFO Time User   : Tot=    0 [us] Ave/Min/Max=    0(+-    0)/    0/    0 [us] #= 12
-cRepR_ALL            INFO Time User   : Tot=   40 [ms] Ave/Min/Max= 2.11(+- 5.21)/    0/   20 [ms] #= 19
-cRep_ALL             INFO Time User   : Tot=  110 [ms] Ave/Min/Max= 9.17(+- 14.4)/    0/   50 [ms] #= 12
-ChronoStatSvc        INFO Time User   : Tot= 1.09  [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"
diff --git a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_RWBsJobOptions.py b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_RWBsJobOptions.py
deleted file mode 100755
index cafab6cd900311a5980bb52214d6f521041677f9..0000000000000000000000000000000000000000
--- a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_RWBsJobOptions.py
+++ /dev/null
@@ -1,105 +0,0 @@
-## @file AthenaPoolExample_RWBsJobOptions.py
-## @brief Example job options file to illustrate how to write event data to Pool.
-## @author Peter van Gemmeren <gemmeren@anl.gov>
-## $Id: $
-###############################################################
-#
-# This Job option:
-# ----------------
-# 1. Read ByteStream test data file
-# 2. Writes a SimplePoolFromRaw.root file without any 'real' data
-# ------------------------------------------------------------
-# Expected output file (3 events):
-# -rw-r--r--  1 gemmeren zp  19470 Nov 25 18:47 SimplePoolFromRaw.root
-# ------------------------------------------------------------
-# File:SimplePoolFromRaw.root
-# Size:       19.014 kb
-# Nbr Events: 3
-# 
-# ================================================================================
-#      Mem Size       Disk Size        Size/Evt      MissZip/Mem  items  (X) Container Name (X=Tree|Branch)
-# ================================================================================
-#        5.722 kb        0.875 kb        0.292 kb        0.000        3  (T) DataHeader
-# --------------------------------------------------------------------------------
-#        2.180 kb        0.270 kb        0.090 kb        0.523        3  (B) EventInfo_p3_ByteStreamEventInfo
-#        3.021 kb        0.436 kb        0.145 kb        0.532        1  (T) MetaDataHdrDataHeaderForm
-#        4.051 kb        0.576 kb        0.192 kb        0.397        3  (T) POOLContainer_DataHeaderForm
-#        8.606 kb        0.767 kb        0.256 kb        0.395        1  (T) MetaDataHdrDataHeader
-#       18.452 kb        1.199 kb        0.400 kb        0.383        1  (B) EventStreamInfo_p2_Stream1
-# ================================================================================
-#       42.031 kb        4.122 kb        1.374 kb        0.000        3  TOTAL (POOL containers)
-# ================================================================================
-#
-#==============================================================
-
-## basic job configuration
-import AthenaCommon.AtlasUnixStandardJob
-
-include( "ByteStreamCnvSvc/BSEventStorageEventSelector_jobOptions.py" )
-
-## get a handle on the ServiceManager
-from AthenaCommon.AppMgr import ServiceMgr as svcMgr
-
-## get a handle on the default top-level algorithm sequence
-from AthenaCommon.AlgSequence import AlgSequence
-topSequence = AlgSequence()
-
-import os
-fname = "/afs/cern.ch/atlas/offline/test/daq.m4_combined.0020720.extract.L1TT-b00000010._0001.data"
-if not os.path.exists (fname) and os.environ.has_key('ATLAS_REFERENCE_DATA'):
-    fname = os.environ['ATLAS_REFERENCE_DATA'] + "/bstest/daq.m4_combined.0020720.extract.L1TT-b00000010._0001.data"
-svcMgr.ByteStreamInputSvc.FullFileName = [ fname ]
-#svcMgr.ByteStreamInputSvc.FullFileName = [ "test_defl.data" ]
-
-svcMgr.ByteStreamInputSvc.ValidateEvent = True
-svcMgr.ByteStreamInputSvc.ProcessBadEvent = True
-
-import AthenaPoolCnvSvc.WriteAthenaPool
-
-#--------------------------------------------------------------
-# Private Application Configuration options
-#--------------------------------------------------------------
-# Load "user algorithm" top algorithms to be run, and the libraries that house them
-from AthenaPoolExampleAlgorithms.AthenaPoolExampleAlgorithmsConf import AthPoolEx__ReadBs
-topSequence += AthPoolEx__ReadBs("ReadBs")
-
-from AthenaPoolExampleAlgorithms.AthenaPoolExampleAlgorithmsConf import AthPoolEx__ReadData
-topSequence += AthPoolEx__ReadData("ReadData")
-
-from AthenaPoolCnvSvc.WriteAthenaPool import AthenaPoolOutputStream
-Stream1 = AthenaPoolOutputStream( "Stream1" , "SimplePoolFromRaw.root" , True, noTag=True )
-Stream1.MetadataItemList += [ "ByteStreamMetadataContainer#*" ]
-
-from AthenaPoolExampleAlgorithms.AthenaPoolExampleAlgorithmsConf import AthPoolEx__WriteTag
-topSequence += AthPoolEx__WriteTag( "WriteTag" )
-
-from RegistrationServices.RegistrationServicesConf import RegistrationStreamTagTool
-TagTool = RegistrationStreamTagTool("TagTool")
-
-from RegistrationServices.RegistrationServicesConf import RegistrationStream
-RegStream1 = RegistrationStream( "RegStream1" , CollectionType="ExplicitROOT" , Tool=TagTool )
-RegStream1.WriteInputDataHeader = False
-RegStream1.OutputCollection = "SimpleRawCollection.root"
-RegStream1.ItemList += [ "DataHeader#Stream1" ]
-RegStream1.ItemList += [ "TagAthenaAttributeList#RunEventTag" ]
-topSequence += RegStream1
-
-#--------------------------------------------------------------
-# Set output level threshold (2=DEBUG, 3=INFO, 4=WARNING, 5=ERROR, 6=FATAL)
-#--------------------------------------------------------------
-svcMgr.MessageSvc.OutputLevel = 3
-svcMgr.PoolSvc.OutputLevel = 2 
-svcMgr.AthenaPoolCnvSvc.OutputLevel = 2
-svcMgr.MetaDataSvc.OutputLevel = 2 
-topSequence.ReadBs.OutputLevel = 2
-topSequence.ReadData.OutputLevel = 2
-Stream1.OutputLevel = 2
-Stream1.WritingTool.OutputLevel = 3
-Stream1.HelperTools[0].OutputLevel = 3
-RegStream1.OutputLevel = 2
-RegStream1.Tool.OutputLevel = 3
-
-#
-# End of job options file
-#
-###############################################################
diff --git a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_RWcBs.ref b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_RWcBs.ref
deleted file mode 100644
index 96681fd2527cfea9ba151342b841d684c341a6c2..0000000000000000000000000000000000000000
--- a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_RWcBs.ref
+++ /dev/null
@@ -1,390 +0,0 @@
-Wed Dec 20 16:03:53 CST 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_RWcBsJobOptions.py"
-Athena               INFO including file "ByteStreamCnvSvc/BSEventStorageEventSelector_jobOptions.py"
-Py:ConfigurableDb    INFO Read module info for 5439 configurables from 18 genConfDb files
-Py:ConfigurableDb    INFO No duplicates have been found: that's good !
-Athena               INFO including file "AthenaCommon/runbatch.py"
-[?1034hApplicationMgr       INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0
-ApplicationMgr    SUCCESS 
-====================================================================================================================================
-                                                   Welcome to ApplicationMgr (GaudiCoreSvc v30r0)
-                                          running on atlas2.hep.anl.gov on Wed Dec 20 16:04:04 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 2318 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
-ReadBs              DEBUG Property update for OutputLevel : new value = 2
-ReadBs               INFO in initialize()
-ByteStreamAddre...   INFO Initializing ByteStreamAddressProviderSvc - package version ByteStreamCnvSvcBase-00-00-00
-ROBDataProviderSvc   INFO Initializing ROBDataProviderSvc - package version ByteStreamCnvSvcBase-00-00-00
-ROBDataProviderSvc   INFO  ---> Filter out empty ROB fragments                               =  'filterEmptyROB':False
-ROBDataProviderSvc   INFO  ---> Filter out specific ROBs by Status Code: # ROBs = 0
-ROBDataProviderSvc   INFO  ---> Filter out Sub Detector ROBs by Status Code: # Sub Detectors = 0
-ByteStreamAddre...   INFO initialized 
-ByteStreamAddre...   INFO -- Module IDs for: 
-ByteStreamAddre...   INFO    CTP                                  = 0x1
-ByteStreamAddre...   INFO    muCTPi                               = 0x1
-ByteStreamAddre...   INFO    Calorimeter Cluster Processor RoI    = 0xa8, 0xa9, 0xaa, 0xab
-ByteStreamAddre...   INFO    Calorimeter Jet/Energy Processor RoI = 0xac, 0xad
-ByteStreamAddre...   INFO    Topo Processor RoI = 0x81, 0x91
-ByteStreamAddre...   INFO -- Will fill Store with id =  0
-MetaDataSvc         DEBUG Property update for OutputLevel : new value = 2
-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 io_register[PoolSvc](xmlcatalog_file:PoolFileCatalog.xml) [ok]
-PoolSvc              INFO Set connectionsvc retry/timeout/IDLE timeout to  'ConnectionRetrialPeriod':300/ 'ConnectionRetrialTimeOut':3600/ 'ConnectionTimeOut':5 seconds with connection cleanup disabled
-PoolSvc              INFO Frontier compression level set to 5
-DBReplicaSvc         INFO Frontier server at (serverurl=http://atlasfrontier-ai.cern.ch:8000/atlr)(serverurl=http://lcgft-atlas.gridpp.rl.ac.uk:3128/frontierATLAS)(serverurl=http://frontier-atlas.lcg.triumf.ca:3128/ATLAS_frontier)(serverurl=http://ccfrontier.in2p3.fr:23128/ccin2p3-AtlasFrontier) will be considered for COOL data
-DBReplicaSvc         INFO Read replica configuration from /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2017-12-17T2303/Athena/22.0.0/InstallArea/x86_64-slc6-gcc62-opt/share/dbreplica.config
-DBReplicaSvc         INFO Total of 1 servers found for host atlas2.hep.anl.gov [ATLF ]
-PoolSvc              INFO Successfully setup replica sorting algorithm
-PoolSvc             DEBUG OutputLevel is 
-PoolSvc              INFO Setting up APR FileCatalog and Streams
-PoolSvc              INFO POOL WriteCatalog is xmlcatalog_file:PoolFileCatalog.xml
-DbSession            INFO     Open     DbSession    
-Domain[ROOT_All]     INFO >   Access   DbDomain     READ      [ROOT_All] 
-ToolSvc.ByteStr...   INFO Initializing ToolSvc.ByteStreamMetadataTool - package version ByteStreamCnvSvc-00-00-00
-ReadBs              DEBUG input handles: 0
-ReadBs              DEBUG output handles: 0
-ReadBs              DEBUG Data Deps for ReadBs
-ReadData            DEBUG Property update for OutputLevel : new value = 2
-ReadData             INFO in initialize()
-ReadData            DEBUG input handles: 0
-ReadData            DEBUG output handles: 0
-ReadData            DEBUG Data Deps for ReadData
-Stream1             DEBUG Property update for OutputLevel : new value = 2
-Stream1.Stream1...  DEBUG Property update for OutputLevel : new value = 2
-ClassIDSvc           INFO  getRegistryEntries: read 3923 CLIDRegistry entries for module ALL
-Stream1             DEBUG In initialize 
-Stream1             DEBUG Found IDecisionSvc.
-DecisionSvc          INFO Inserting stream: Stream1 with no Algs
-Stream1             DEBUG End initialize 
-Stream1             DEBUG In initialize
-Stream1             DEBUG Found StoreGateSvc store.
-Stream1             DEBUG Found MetaDataStore store.
-OutputStreamSeq...   INFO Initializing OutputStreamSequencerSvc - package version AthenaServices-00-00-00
-Stream1.Stream1...  DEBUG Property update for OutputLevel : new value = 2
-ClassIDSvc           INFO  getRegistryEntries: read 402 CLIDRegistry entries for module ALL
-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: SimplePoolFromRaw.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
-WriteTag             INFO in initialize()
-RegStream1          DEBUG Property update for OutputLevel : new value = 2
-RegStream1.RegS...  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,"RunEventTag") 
-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
-HistogramPersis...WARNING Histograms saving not required.
-EventSelector        INFO Initializing EventSelector - package version ByteStreamCnvSvc-00-00-00
-EventSelector     WARNING InputCollections not properly set, checking EventStorageInputSvc properties
-EventSelector        INFO Retrieved StoreGateSvc name of  '':StoreGateSvc
-EventSelector        INFO Retrieved InputCollections from InputSvc
-ByteStreamInputSvc   INFO Initializing ByteStreamInputSvc - package version ByteStreamCnvSvc-00-00-00
-ByteStreamInputSvcWARNING ProcessBadEvent property has been moved to EventSelector, please use svgMgr.EventSelector.ProcessBadEvent instead
-EventSelector        INFO reinitialization...
-AthenaEventLoopMgr   INFO Setup EventSelector service EventSelector
-ApplicationMgr       INFO Application Manager Initialized successfully
-MetaDataSvc         DEBUG handle() FirstInputFile for BSF:test_defl.data
-MetaDataSvc         DEBUG initInputMetaDataStore: file name BSF:test_defl.data
-MetaDataSvc         DEBUG MetaDataSvc called for non ROOT file.
-MetaDataSvc         DEBUG Loaded input meta data store proxies
-ByteStreamInputSvc   INFO Picked valid file: test_defl.data
-MetaDataSvc         DEBUG handle() BeginInputFile for BSF:test_defl.data
-MetaDataSvc         DEBUG  calling beginInputFile for ToolSvc.IOVDbMetaDataTool
-MetaDataSvc         DEBUG  calling beginInputFile for ToolSvc.ByteStreamMetadataTool
-ApplicationMgr       INFO Application Manager Started successfully
-EventSelector     WARNING  bc_time nanosecond number larger than 1e9, it is 1188507005, reset it to 1 sec
-EventPersistenc...   INFO Added successfully Conversion service:ByteStreamCnvSvc
-EventInfoByteSt...   INFO UserType : RawEvent
-EventInfoByteSt...   INFO IsSimulation : 0
-EventInfoByteSt...   INFO IsTestbeam : 0
-EventInfoByteSt...   INFO IsCalibration : 0
-EventInfoByteSt...   INFO  EventContext not valid 
-AthenaEventLoopMgr   INFO   ===>>>  start of run 20720    <<<===
-AthenaEventLoopMgr   INFO   ===>>>  start processing event #14350, run #20720 0 events processed so far  <<<===
-ReadBs              DEBUG in execute()
-ReadBs               INFO ByteStreamMetadata, run# = 20720, #events = 3
-ReadBs               INFO ByteStreamMetadataContainer, size =  1
-ReadData            DEBUG in execute()
-ReadData          WARNING Could not find EventStreamInfo
-ReadData             INFO EventInfo event: 14350 run: 20720
-ReadData             INFO Get Smart data ptr 1
-ReadData             INFO Could not find ExampleTrackContainer/MyTracks
-ReadData             INFO Could not find ExampleHitContainer/MyHits
-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                           SimplePoolFromRaw.root
-SimplePoolFromR...  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.
-SimplePoolFromR...  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.
-SimplePoolFromR...  DEBUG --> Access   DbContainer  CREATE    [ROOT_All] ##Params
-##Params            DEBUG Opening
-##Params            DEBUG    attributes# = 1
-##Params            DEBUG Opened container ##Params of type ROOT_Tree
-SimplePoolFromR...  DEBUG --->Adding Assoc :????/##Params [200]  (2 , ffffffff)
-SimplePoolFromR...  DEBUG ---->ClassID:????
-##Params            DEBUG No objects passing selection criteria... Container has 0 Entries in total.
-AthenaPoolCnvSvc    DEBUG setAttribute CONTAINER_SPLITLEVEL to 99 for db: SimplePoolFromRaw.root and cont: TTree=POOLContainerForm(DataHeaderForm)
-Stream1             DEBUG addItemObjects(2101,"*") called
-Stream1             DEBUG            Key:*
-Stream1             DEBUG  Added object 2101,"ByteStreamEventInfo"
-Stream1             DEBUG  Collected objects:
-Stream1             DEBUG  Object/count: EventInfo_ByteStreamEventInfo, 1
-StorageSvc           INFO Building shape according to reflection information using shape ID for:
-StorageSvc           INFO EventInfo_p4 [????]
-SimplePoolFromR...  DEBUG --> Access   DbContainer  CREA/UPDA [ROOT_Tree] CollectionTree(EventInfo_p4/ByteStreamEventInfo)
-CollectionTree(...  DEBUG Opening
-CollectionTree(...  DEBUG    attributes# = 1
-CollectionTree(...  DEBUG Branch container 'EventInfo_p4_ByteStreamEventInfo'
-CollectionTree(...  DEBUG Opened container CollectionTree(EventInfo_p4/ByteStreamEventInfo) of type ROOT_Tree
-SimplePoolFromR...  DEBUG --->Adding Assoc :????/CollectionTree(EventInfo_p4/ByteStreamEventInfo) [202]  (3 , ffffffff)
-SimplePoolFromR...  DEBUG ---->ClassID:????
-SimplePoolFromR...  DEBUG --->Adding Shape[0 , ????]:  [1 Column(s)] 
-SimplePoolFromR...  DEBUG ---->Class:EventInfo_p4
-SimplePoolFromR...  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 DataHeaderForm_p5 [????]
-SimplePoolFromR...  DEBUG --> Access   DbContainer  CREA/UPDA [ROOT_Tree] POOLContainerForm(DataHeaderForm)
-POOLContainerFo...  DEBUG Opening
-POOLContainerFo...  DEBUG    attributes# = 1
-POOLContainerFo...  DEBUG Branch container 'DataHeaderForm'
-POOLContainerFo...  DEBUG Opened container POOLContainerForm(DataHeaderForm) of type ROOT_Tree
-SimplePoolFromR...  DEBUG --->Adding Assoc :????/POOLContainerForm(DataHeaderForm) [202]  (4 , ffffffff)
-SimplePoolFromR...  DEBUG ---->ClassID:????
-SimplePoolFromR...  DEBUG --->Adding Shape[1 , ????]:  [1 Column(s)] 
-SimplePoolFromR...  DEBUG ---->Class:DataHeaderForm_p5
-SimplePoolFromR...  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 [????]
-SimplePoolFromR...  DEBUG --> Access   DbContainer  CREA/UPDA [ROOT_Tree] POOLContainer(DataHeader)
-POOLContainer(D...  DEBUG Opening
-POOLContainer(D...  DEBUG    attributes# = 1
-POOLContainer(D...  DEBUG Branch container 'DataHeader'
-POOLContainer(D...  DEBUG Opened container POOLContainer(DataHeader) of type ROOT_Tree
-SimplePoolFromR...  DEBUG --->Adding Assoc :????/POOLContainer(DataHeader) [202]  (5 , ffffffff)
-SimplePoolFromR...  DEBUG ---->ClassID:????
-SimplePoolFromR...  DEBUG --->Adding Shape[2 , ????]:  [1 Column(s)] 
-SimplePoolFromR...  DEBUG ---->Class:DataHeader_p5
-SimplePoolFromR...  DEBUG ---->[0]:DataHeader_p5 Typ:DataHeader_p5 [21] Size:0 Offset:0 #Elements:1
-ClassIDSvc           INFO  getRegistryEntries: read 43 CLIDRegistry entries for module ALL
-SimplePoolFromR...  DEBUG --> Access   DbContainer  CREA/UPDA [ROOT_Tree] POOLContainer(basic/DataHeader)
-POOLContainer(b...  DEBUG Opening
-POOLContainer(b...  DEBUG    attributes# = 1
-POOLContainer(b...  DEBUG Branch container 'basic_DataHeader'
-POOLContainer(b...  DEBUG Opened container POOLContainer(basic/DataHeader) of type ROOT_Tree
-SimplePoolFromR...  DEBUG --->Adding Assoc :????/POOLContainer(basic/DataHeader) [202]  (6 , ffffffff)
-SimplePoolFromR...  DEBUG ---->ClassID:????
-AthenaPoolCnvSvc    DEBUG setAttribute BRANCH_BASKET_SIZE to 256000 for db: SimplePoolFromRaw.root and cont: POOLContainer(DataHeader)
-AthenaPoolCnvSvc    DEBUG setAttribute BRANCH_BASKET_SIZE to 1024000 for db: SimplePoolFromRaw.root and cont: POOLContainerForm(DataHeaderForm)
-WriteTag             INFO EventInfo event: 14350  run: 20720
-WriteTag             INFO registered all data
-RegStream1          DEBUG RegistrationStream execute
-RegStream1          DEBUG getRefs: Not DataHeader, skipping (40774349,"RunEventTag") 
-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=00000005-00000000] for Stream1
-RegStream1          DEBUG Found ref for input header [DB=????][CNT=][CLID=!!!!][TECH=00001000][OID=00000000-000000F0]
-RegStream1          DEBUG Adding ref for StreamRAW
-RegStream1          DEBUG Setting tagKey to RunEventTag
-RegStream1          DEBUG  Not class requested by Tool, skipping (222376821,"Stream1") 
-PoolSvc              INFO Writing ExplicitROOT Collection - do not pass session pointer
-RegStream1.TagTool   INFO No Primary Key defined
-AthenaEventLoopMgr   INFO   ===>>>  done processing event #14350, run #20720 1 events processed so far  <<<===
-EventSelector     WARNING  bc_time nanosecond number larger than 1e9, it is 1188507008, reset it to 1 sec
-AthenaEventLoopMgr   INFO   ===>>>  start processing event #14356, run #20720 1 events processed so far  <<<===
-ReadBs              DEBUG in execute()
-ReadBs               INFO ByteStreamMetadata, run# = 20720, #events = 3
-ReadBs               INFO ByteStreamMetadataContainer, size =  1
-ReadData            DEBUG in execute()
-ReadData          WARNING Could not find EventStreamInfo
-ReadData             INFO EventInfo event: 14356 run: 20720
-ReadData             INFO Get Smart data ptr 1
-ReadData             INFO Could not find ExampleTrackContainer/MyTracks
-ReadData             INFO Could not find ExampleHitContainer/MyHits
-Stream1             DEBUG addItemObjects(2101,"*") called
-Stream1             DEBUG            Key:*
-Stream1             DEBUG  Added object 2101,"ByteStreamEventInfo"
-Stream1             DEBUG  Collected objects:
-Stream1             DEBUG  Object/count: EventInfo_ByteStreamEventInfo, 2
-WriteTag             INFO EventInfo event: 14356  run: 20720
-WriteTag             INFO registered all data
-RegStream1          DEBUG RegistrationStream execute
-RegStream1          DEBUG getRefs: Not DataHeader, skipping (40774349,"RunEventTag") 
-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=00000005-00000001] for Stream1
-RegStream1          DEBUG Found ref for input header [DB=????][CNT=][CLID=!!!!][TECH=00001000][OID=00000000-00498264]
-RegStream1          DEBUG Adding ref for StreamRAW
-RegStream1          DEBUG Setting tagKey to RunEventTag
-RegStream1          DEBUG  Not class requested by Tool, skipping (222376821,"Stream1") 
-AthenaEventLoopMgr   INFO   ===>>>  done processing event #14356, run #20720 2 events processed so far  <<<===
-EventSelector     WARNING  bc_time nanosecond number larger than 1e9, it is 1188507009, reset it to 1 sec
-AthenaEventLoopMgr   INFO   ===>>>  start processing event #14382, run #20720 2 events processed so far  <<<===
-ReadBs              DEBUG in execute()
-ReadBs               INFO ByteStreamMetadata, run# = 20720, #events = 3
-ReadBs               INFO ByteStreamMetadataContainer, size =  1
-ReadData            DEBUG in execute()
-ReadData          WARNING Could not find EventStreamInfo
-ReadData             INFO EventInfo event: 14382 run: 20720
-ReadData             INFO Get Smart data ptr 1
-ReadData             INFO Could not find ExampleTrackContainer/MyTracks
-ReadData             INFO Could not find ExampleHitContainer/MyHits
-Stream1             DEBUG addItemObjects(2101,"*") called
-Stream1             DEBUG            Key:*
-Stream1             DEBUG  Added object 2101,"ByteStreamEventInfo"
-Stream1             DEBUG  Collected objects:
-Stream1             DEBUG  Object/count: EventInfo_ByteStreamEventInfo, 3
-WriteTag             INFO EventInfo event: 14382  run: 20720
-WriteTag             INFO registered all data
-RegStream1          DEBUG RegistrationStream execute
-RegStream1          DEBUG getRefs: Not DataHeader, skipping (40774349,"RunEventTag") 
-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=00000005-00000002] for Stream1
-RegStream1          DEBUG Found ref for input header [DB=????][CNT=][CLID=!!!!][TECH=00001000][OID=00000000-00930D24]
-RegStream1          DEBUG Adding ref for StreamRAW
-RegStream1          DEBUG Setting tagKey to RunEventTag
-RegStream1          DEBUG  Not class requested by Tool, skipping (222376821,"Stream1") 
-AthenaEventLoopMgr   INFO   ===>>>  done processing event #14382, run #20720 3 events processed so far  <<<===
-MetaDataSvc         DEBUG handle() EndInputFile for BSF:test_defl.data
-EventSelector        INFO End of input file list reached
-AthenaEventLoopMgr   INFO No more events in event selection 
-MetaDataSvc         DEBUG handle() LastInputFile for stop
-MetaDataSvc         DEBUG  calling metaDataStop for ToolSvc.IOVDbMetaDataTool
-MetaDataSvc         DEBUG  calling metaDataStop for ToolSvc.ByteStreamMetadataTool
-MetaDataSvc         DEBUG Releasing MetaDataTools
-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(1076128893,"*") called
-Stream1             DEBUG            Key:*
-Stream1             DEBUG  Added object 1076128893,"ByteStreamMetadata"
-Stream1             DEBUG addItemObjects(1316383046,"*") called
-Stream1             DEBUG            Key:*
-StorageSvc           INFO Building shape according to reflection information using shape ID for:
-StorageSvc           INFO EventStreamInfo_p3 [????]
-SimplePoolFromR...  DEBUG --> Access   DbContainer  CREA/UPDA [ROOT_Tree] MetaData(EventStreamInfo_p3/Stream1)
-MetaData(EventS...  DEBUG Opening
-MetaData(EventS...  DEBUG    attributes# = 1
-MetaData(EventS...  DEBUG Branch container 'EventStreamInfo_p3_Stream1'
-MetaData(EventS...  DEBUG Opened container MetaData(EventStreamInfo_p3/Stream1) of type ROOT_Tree
-SimplePoolFromR...  DEBUG --->Adding Assoc :????/MetaData(EventStreamInfo_p3/Stream1) [202]  (7 , ffffffff)
-SimplePoolFromR...  DEBUG ---->ClassID:????
-SimplePoolFromR...  DEBUG --->Adding Shape[3 , ????]:  [1 Column(s)] 
-SimplePoolFromR...  DEBUG ---->Class:EventStreamInfo_p3
-SimplePoolFromR...  DEBUG ---->[0]:EventStreamInfo_p3 Typ:EventStreamInfo_p3 [21] Size:0 Offset:0 #Elements:1
-StorageSvc           INFO Building shape according to reflection information using shape ID for:
-StorageSvc           INFO ByteStreamMetadataContainer_p1 [????]
-SimplePoolFromR...  DEBUG --> Access   DbContainer  CREA/UPDA [ROOT_Tree] MetaData(ByteStreamMetadataContainer_p1/ByteStreamMetadata)
-MetaData(ByteSt...  DEBUG Opening
-MetaData(ByteSt...  DEBUG    attributes# = 1
-MetaData(ByteSt...  DEBUG Branch container 'ByteStreamMetadataContainer_p1_ByteStreamMetadata'
-MetaData(ByteSt...  DEBUG Opened container MetaData(ByteStreamMetadataContainer_p1/ByteStreamMetadata) of type ROOT_Tree
-SimplePoolFromR...  DEBUG --->Adding Assoc :????/MetaData(ByteStreamMetadataContainer_p1/ByteStreamMetadata) [202]  (8 , ffffffff)
-SimplePoolFromR...  DEBUG ---->ClassID:????
-SimplePoolFromR...  DEBUG --->Adding Shape[4 , ????]:  [1 Column(s)] 
-SimplePoolFromR...  DEBUG ---->Class:ByteStreamMetadataContainer_p1
-SimplePoolFromR...  DEBUG ---->[0]:ByteStreamMetadataContainer_p1 Typ:ByteStreamMetadataContainer_p1 [21] Size:0 Offset:0 #Elements:1
-SimplePoolFromR...  DEBUG --> Access   DbContainer  CREA/UPDA [ROOT_Tree] MetaDataHdrForm(DataHeaderForm)
-MetaDataHdrForm...  DEBUG Opening
-MetaDataHdrForm...  DEBUG    attributes# = 1
-MetaDataHdrForm...  DEBUG Branch container 'DataHeaderForm'
-MetaDataHdrForm...  DEBUG Opened container MetaDataHdrForm(DataHeaderForm) of type ROOT_Tree
-SimplePoolFromR...  DEBUG --->Adding Assoc :????/MetaDataHdrForm(DataHeaderForm) [202]  (9 , ffffffff)
-SimplePoolFromR...  DEBUG ---->ClassID:????
-SimplePoolFromR...  DEBUG --> Access   DbContainer  CREA/UPDA [ROOT_Tree] MetaDataHdr(DataHeader)
-MetaDataHdr(Dat...  DEBUG Opening
-MetaDataHdr(Dat...  DEBUG    attributes# = 1
-MetaDataHdr(Dat...  DEBUG Branch container 'DataHeader'
-MetaDataHdr(Dat...  DEBUG Opened container MetaDataHdr(DataHeader) of type ROOT_Tree
-SimplePoolFromR...  DEBUG --->Adding Assoc :????/MetaDataHdr(DataHeader) [202]  (a , ffffffff)
-SimplePoolFromR...  DEBUG ---->ClassID:????
-ClassIDSvc           INFO  getRegistryEntries: read 15 CLIDRegistry entries for module ALL
-Stream1              INFO Records written: 4
-Stream1             DEBUG Leaving handle
-RegStream1          DEBUG handle() incident type: MetaDataStop
-RegStream1.TagTool   INFO Collection Events output: 3
-Domain[ROOT_All]     INFO >   Deaccess DbDomain     READ      [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
-IncidentProcAlg1     INFO Finalize
-ReadBs               INFO in finalize()
-ReadData             INFO in finalize()
-Stream1             DEBUG finalize: Optimize output
-Stream1             DEBUG finalize: end optimize output
-WriteTag             INFO in finalize()
-RegStream1          DEBUG In finalize
-IncidentProcAlg2     INFO Finalize
-EventInfoByteSt...   INFO finalize 
-DecisionSvc          INFO Finalized successfully.
-AthenaPoolCnvSvc    DEBUG releasing all workers
-AthDictLoaderSvc     INFO in finalize...
-ToolSvc              INFO Removing all tools created by ToolSvc
-ToolSvc.ByteStr...   INFO in finalize()
-*****Chrono*****     INFO ****************************************************************************************************
-*****Chrono*****     INFO  The Final CPU consumption ( Chrono ) Table (ordered)
-*****Chrono*****     INFO ****************************************************************************************************
-commitOutput         INFO Time User   : Tot=    0 [us] Ave/Min/Max=    0(+-    0)/    0/    0 [us] #=  4
-fRep_ALL             INFO Time User   : Tot=    0 [us] Ave/Min/Max=    0(+-    0)/    0/    0 [us] #= 12
-cRepR_ALL            INFO Time User   : Tot=   30 [ms] Ave/Min/Max= 1.58(+- 4.88)/    0/   20 [ms] #= 19
-cRep_ALL             INFO Time User   : Tot=   90 [ms] Ave/Min/Max=  7.5(+- 14.8)/    0/   50 [ms] #= 12
-ChronoStatSvc        INFO Time User   : Tot= 1.31  [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"
diff --git a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_RWcBsJobOptions.py b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_RWcBsJobOptions.py
deleted file mode 100644
index 69197e1f3d0e8be45c3f36e6c38bc0afb818549f..0000000000000000000000000000000000000000
--- a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_RWcBsJobOptions.py
+++ /dev/null
@@ -1,109 +0,0 @@
-## @file AthenaPoolExample_RWBsJobOptions.py
-## @brief Example job options file to illustrate how to write event data to Pool.
-## @author Peter van Gemmeren <gemmeren@anl.gov>
-## $Id: $
-###############################################################
-#
-# This Job option:
-# ----------------
-# 1. Read ByteStream test data file
-# 2. Writes a SimplePoolFromRaw.root file without any 'real' data
-# ------------------------------------------------------------
-# Expected output file (3 events):
-# -rw-r--r--  1 gemmeren zp  19470 Nov 25 18:47 SimplePoolFromRaw.root
-# ------------------------------------------------------------
-# File:SimplePoolFromRaw.root
-# Size:       19.014 kb
-# Nbr Events: 3
-# 
-# ================================================================================
-#      Mem Size       Disk Size        Size/Evt      MissZip/Mem  items  (X) Container Name (X=Tree|Branch)
-# ================================================================================
-#        5.722 kb        0.875 kb        0.292 kb        0.000        3  (T) DataHeader
-# --------------------------------------------------------------------------------
-#        2.180 kb        0.270 kb        0.090 kb        0.523        3  (B) EventInfo_p3_ByteStreamEventInfo
-#        3.021 kb        0.436 kb        0.145 kb        0.532        1  (T) MetaDataHdrDataHeaderForm
-#        4.051 kb        0.576 kb        0.192 kb        0.397        3  (T) POOLContainer_DataHeaderForm
-#        8.606 kb        0.767 kb        0.256 kb        0.395        1  (T) MetaDataHdrDataHeader
-#       18.452 kb        1.199 kb        0.400 kb        0.383        1  (B) EventStreamInfo_p2_Stream1
-# ================================================================================
-#       42.031 kb        4.122 kb        1.374 kb        0.000        3  TOTAL (POOL containers)
-# ================================================================================
-#
-#==============================================================
-
-import os
-if not os.path.exists ('test_defl.data'):
-    fname = "/afs/cern.ch/atlas/offline/test/daq.m4_combined.0020720.extract.L1TT-b00000010._0001.data"
-    if not os.path.exists (fname) and os.environ.has_key('ATLAS_REFERENCE_DATA'):
-        fname = os.environ['ATLAS_REFERENCE_DATA'] + "/bstest/daq.m4_combined.0020720.extract.L1TT-b00000010._0001.data"
-    os.system ('AtlCopyBSEvent.exe -d -e 14350,14356,14382 -o test_defl.data ' + fname)
-
-
-## basic job configuration
-import AthenaCommon.AtlasUnixStandardJob
-
-include( "ByteStreamCnvSvc/BSEventStorageEventSelector_jobOptions.py" )
-
-## get a handle on the ServiceManager
-from AthenaCommon.AppMgr import ServiceMgr as svcMgr
-
-## get a handle on the default top-level algorithm sequence
-from AthenaCommon.AlgSequence import AlgSequence
-topSequence = AlgSequence()
-
-svcMgr.ByteStreamInputSvc.FullFileName = [ "/afs/cern.ch/atlas/offline/test/daq.m4_combined.0020720.extract.L1TT-b00000010._0001.data" ]
-svcMgr.ByteStreamInputSvc.FullFileName = [ "test_defl.data" ]
-
-svcMgr.ByteStreamInputSvc.ValidateEvent = True
-svcMgr.ByteStreamInputSvc.ProcessBadEvent = True
-
-import AthenaPoolCnvSvc.WriteAthenaPool
-
-#--------------------------------------------------------------
-# Private Application Configuration options
-#--------------------------------------------------------------
-# Load "user algorithm" top algorithms to be run, and the libraries that house them
-from AthenaPoolExampleAlgorithms.AthenaPoolExampleAlgorithmsConf import AthPoolEx__ReadBs
-topSequence += AthPoolEx__ReadBs("ReadBs")
-
-from AthenaPoolExampleAlgorithms.AthenaPoolExampleAlgorithmsConf import AthPoolEx__ReadData
-topSequence += AthPoolEx__ReadData("ReadData")
-
-from AthenaPoolCnvSvc.WriteAthenaPool import AthenaPoolOutputStream
-Stream1 = AthenaPoolOutputStream( "Stream1" , "SimplePoolFromRaw.root" , True, noTag=True )
-Stream1.MetadataItemList += [ "ByteStreamMetadataContainer#*" ]
-
-from AthenaPoolExampleAlgorithms.AthenaPoolExampleAlgorithmsConf import AthPoolEx__WriteTag
-topSequence += AthPoolEx__WriteTag( "WriteTag" )
-
-from RegistrationServices.RegistrationServicesConf import RegistrationStreamTagTool
-TagTool = RegistrationStreamTagTool("TagTool")
-
-from RegistrationServices.RegistrationServicesConf import RegistrationStream
-RegStream1 = RegistrationStream( "RegStream1" , CollectionType="ExplicitROOT" , Tool=TagTool )
-RegStream1.WriteInputDataHeader = False
-RegStream1.OutputCollection = "SimpleRawCollection.root"
-RegStream1.ItemList += [ "DataHeader#Stream1" ]
-RegStream1.ItemList += [ "TagAthenaAttributeList#RunEventTag" ]
-topSequence += RegStream1
-
-#--------------------------------------------------------------
-# Set output level threshold (2=DEBUG, 3=INFO, 4=WARNING, 5=ERROR, 6=FATAL)
-#--------------------------------------------------------------
-svcMgr.MessageSvc.OutputLevel = 3
-svcMgr.PoolSvc.OutputLevel = 2 
-svcMgr.AthenaPoolCnvSvc.OutputLevel = 2
-svcMgr.MetaDataSvc.OutputLevel = 2 
-topSequence.ReadBs.OutputLevel = 2
-topSequence.ReadData.OutputLevel = 2
-Stream1.OutputLevel = 2
-Stream1.WritingTool.OutputLevel = 3
-Stream1.HelperTools[0].OutputLevel = 3
-RegStream1.OutputLevel = 2
-RegStream1.Tool.OutputLevel = 3
-
-#
-# End of job options file
-#
-###############################################################
diff --git a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_ReWrite.ref b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_ReWrite.ref
index b4adf57970eb5b4ba4fbd0b272c3a00ec681d6cf..6cedcdfb97aa699af3a1a530450f2a2cd8081f87 100644
--- a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_ReWrite.ref
+++ b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_ReWrite.ref
@@ -1,57 +1,28 @@
-Mon Jan 22 13:10:27 CST 2018
-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_RWJobOptions.py"
-Py:ConfigurableDb    INFO Read module info for 5435 configurables from 52 genConfDb files
-Py:ConfigurableDb    INFO No duplicates have been found: that's good !
 Athena               INFO including file "AthenaCommon/runbatch.py"
-[?1034hApplicationMgr       INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0
-ApplicationMgr    SUCCESS 
-====================================================================================================================================
-                                                   Welcome to ApplicationMgr (GaudiCoreSvc v30r1)
-                                          running on atlas1.hep.anl.gov on Mon Jan 22 13:10:40 2018
-====================================================================================================================================
-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 2319 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
-ReadData            DEBUG Property update for OutputLevel : new value = 2
 ReadData             INFO in initialize()
-MetaDataSvc         DEBUG Property update for OutputLevel : new value = 2
-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 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://lcgft-atlas.gridpp.rl.ac.uk:3128/frontierATLAS)(serverurl=http://frontier-atlas.lcg.triumf.ca:3128/ATLAS_frontier)(serverurl=http://ccfrontier.in2p3.fr:23128/ccin2p3-AtlasFrontier) will be considered for COOL data
-DBReplicaSvc         INFO Read replica configuration from /users/gemmeren/workarea/build/x86_64-slc6-gcc62-opt/share/dbreplica.config
-DBReplicaSvc         INFO Total of 1 servers found for host atlas1.hep.anl.gov [ATLF ]
 PoolSvc              INFO Successfully setup replica sorting algorithm
 PoolSvc             DEBUG OutputLevel is 
 PoolSvc              INFO Setting up APR FileCatalog and Streams
 PoolSvc             DEBUG POOL ReadCatalog is file:Catalog.xml
 PoolSvc              INFO POOL WriteCatalog is file:Catalog1.xml
-DbSession            INFO     Open     DbSession    
-Domain[ROOT_All]     INFO >   Access   DbDomain     READ      [ROOT_All] 
-EventSelector       DEBUG Property update for OutputLevel : new value = 2
-EventSelector        INFO Initializing EventSelector - package version EventSelectorAthenaPool-00-00-00
 EventSelector        INFO reinitialization...
 EventSelector        INFO EventSelection with query 
 EventSelector       DEBUG Try item: "SimplePoolFile1.root" from the collection list.
 MetaDataSvc         DEBUG handle() FirstInputFile for FID:????
 MetaDataSvc         DEBUG initInputMetaDataStore: file name FID:????
-Domain[ROOT_All]     INFO ->  Access   DbDatabase   READ      [ROOT_All] ????
 Domain[ROOT_All]     INFO                           SimplePoolFile1.root
 SimplePoolFile1...  DEBUG --> Access   DbContainer  READ      [ROOT_All] ##Shapes
 ##Shapes            DEBUG Opening
@@ -94,15 +65,13 @@ SimplePoolFile1...  DEBUG --->Reading Assoc:????/POOLCollectionTree(EventNumber)
 SimplePoolFile1...  DEBUG ---->ClassID:????
 SimplePoolFile1...  DEBUG --->Reading Assoc:????/POOLCollectionTree(MagicNumber) [202]  (a , ffffffff)
 SimplePoolFile1...  DEBUG ---->ClassID:????
-SimplePoolFile1...  DEBUG --->Reading Assoc:????/POOLContainer(basic/DataHeader) [202]  (b , ffffffff)
+SimplePoolFile1...  DEBUG --->Reading Assoc:????/MetaData(EventStreamInfo_p3/Stream1) [202]  (b , ffffffff)
 SimplePoolFile1...  DEBUG ---->ClassID:????
-SimplePoolFile1...  DEBUG --->Reading Assoc:????/MetaData(EventStreamInfo_p3/Stream1) [202]  (c , ffffffff)
+SimplePoolFile1...  DEBUG --->Reading Assoc:????/MetaDataHdrForm(DataHeaderForm) [202]  (c , ffffffff)
 SimplePoolFile1...  DEBUG ---->ClassID:????
-SimplePoolFile1...  DEBUG --->Reading Assoc:????/MetaDataHdrForm(DataHeaderForm) [202]  (d , ffffffff)
+SimplePoolFile1...  DEBUG --->Reading Assoc:????/MetaDataHdr(DataHeader) [202]  (d , ffffffff)
 SimplePoolFile1...  DEBUG ---->ClassID:????
-SimplePoolFile1...  DEBUG --->Reading Assoc:????/MetaDataHdr(DataHeader) [202]  (e , ffffffff)
-SimplePoolFile1...  DEBUG ---->ClassID:????
-##Links             DEBUG No objects passing selection criteria... Container has 13 Entries in total.
+##Links             DEBUG No objects passing selection criteria... Container has 12 Entries in total.
 SimplePoolFile1...  DEBUG --> Access   DbContainer  READ      [ROOT_All] ##Params
 ##Params            DEBUG Opening
 ##Params            DEBUG    attributes# = 1
@@ -124,20 +93,9 @@ MetaDataHdrForm...  DEBUG    attributes# = 1
 MetaDataHdrForm...  DEBUG Branch container 'DataHeaderForm'
 MetaDataHdrForm...  DEBUG Opened container MetaDataHdrForm(DataHeaderForm) of type ROOT_Tree
 MetaDataSvc         DEBUG Loaded input meta data store proxies
-AthenaPoolAddre...  DEBUG Property update for OutputLevel : new value = 2
-ReadData            DEBUG input handles: 0
-ReadData            DEBUG output handles: 0
-ReadData            DEBUG Data Deps for ReadData
-ReWriteData         DEBUG Property update for OutputLevel : new value = 2
 ReWriteData          INFO in initialize()
-ReWriteData         DEBUG input handles: 0
-ReWriteData         DEBUG output handles: 0
-ReWriteData         DEBUG Data Deps for ReWriteData
 WriteTag             INFO in initialize()
 MagicWriteTag        INFO in initialize()
-Stream1             DEBUG Property update for OutputLevel : new value = 2
-Stream1.Stream1...  DEBUG Property update for OutputLevel : new value = 2
-ClassIDSvc           INFO  getRegistryEntries: read 3114 CLIDRegistry entries for module ALL
 Stream1             DEBUG In initialize 
 Stream1             DEBUG Found IDecisionSvc.
 DecisionSvc          INFO Inserting stream: Stream1 with no Algs
@@ -145,43 +103,27 @@ Stream1             DEBUG End initialize
 Stream1             DEBUG In initialize
 Stream1             DEBUG Found StoreGateSvc store.
 Stream1             DEBUG Found MetaDataStore store.
-OutputStreamSeq...   INFO Initializing OutputStreamSequencerSvc - package version AthenaServices-00-00-00
-Stream1.Stream1...  DEBUG Property update for OutputLevel : new value = 2
-ClassIDSvc           INFO  getRegistryEntries: read 386 CLIDRegistry entries for module ALL
-Stream1.Stream1...   INFO Initializing Stream1.Stream1Tool - package version OutputStreamAthenaPool-00-00-00
-Stream1.Stream1...   INFO streamProperty ProcessingTag = Stream1
 AthenaPoolAddre...  DEBUG Cannot find DataHeader in DetectorStore.
-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: SimplePoolFile3.root
-Stream1              INFO I/O reinitialization...
+Stream1              INFO ../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
-RegStream1          DEBUG Property update for OutputLevel : new value = 2
-RegStream1.RegS...  DEBUG Property update for OutputLevel : new value = 2
+Stream1             DEBUG Adding private ToolHandle tool Stream1.Stream1Tool (AthenaOutputStreamTool)
 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
 HistogramPersis...WARNING Histograms saving not required.
 AthenaEventLoopMgr   INFO Setup EventSelector service EventSelector
 ApplicationMgr       INFO Application Manager Initialized successfully
@@ -210,14 +152,11 @@ POOLContainerFo...  DEBUG Opened container POOLContainerForm(DataHeaderForm) of
 AthenaPoolAddre...  DEBUG The current Event contains: 3 objects
 AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo
 AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 9102, name = MyHits
-AlgResourcePool      INFO TopAlg list empty. Recovering the one of Application Manager
 SimplePoolFile1...  DEBUG --> Access   DbContainer  READ      [ROOT_Tree] CollectionTree(EventInfo_p4/McEventInfo)
 CollectionTree(...  DEBUG Opening
 CollectionTree(...  DEBUG    attributes# = 1
 CollectionTree(...  DEBUG Branch container 'EventInfo_p4_McEventInfo'
 CollectionTree(...  DEBUG Opened container CollectionTree(EventInfo_p4/McEventInfo) of type ROOT_Tree
-AthenaPoolConve...   INFO massageEventInfo: unable to get OverrideRunNumberFromInput property from EventSelector 
-ClassIDSvc           INFO  getRegistryEntries: read 11 CLIDRegistry entries for module ALL
 AthenaEventLoopMgr   INFO   ===>>>  start of run 1    <<<===
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #0, run #1 0 events processed so far  <<<===
 ReadData            DEBUG in execute()
@@ -251,7 +190,6 @@ ReadData             INFO Hit x = 20.4945 y = 63.5816 z = 48.1358 detector = Dum
 ReadData             INFO Hit x = 23.7045 y = 57.9027 z = 46.3159 detector = DummyHitDetector
 ReadData             INFO Hit x = 26.9145 y = 52.2238 z = 44.9265 detector = DummyHitDetector
 ReadData             INFO Hit x = 30.1245 y = 46.5449 z = 43.831 detector = DummyHitDetector
-ClassIDSvc           INFO  getRegistryEntries: read 10 CLIDRegistry entries for module ALL
 ReWriteData         DEBUG in execute()
 ReWriteData          INFO Hit x = 1.2345 y = 97.655 z = 226.672 detector = DummyHitDetector
 ReWriteData          INFO Hit x = 4.4445 y = 91.9761 z = 94.7318 detector = DummyHitDetector
@@ -282,13 +220,10 @@ 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                           SimplePoolFile3.root
 SimplePoolFile3...  DEBUG --> Access   DbContainer  CREATE    [ROOT_All] ##Shapes
 ##Shapes            DEBUG Opening
@@ -393,13 +328,6 @@ POOLCollectionT...  DEBUG Branch container 'MagicNumber'
 POOLCollectionT...  DEBUG Opened container POOLCollectionTree(MagicNumber) of type ROOT_Tree
 SimplePoolFile3...  DEBUG --->Adding Assoc :????/POOLCollectionTree(MagicNumber) [202]  (a , ffffffff)
 SimplePoolFile3...  DEBUG ---->ClassID:????
-SimplePoolFile3...  DEBUG --> Access   DbContainer  CREA/UPDA [ROOT_Tree] POOLContainer(basic/DataHeader)
-POOLContainer(b...  DEBUG Opening
-POOLContainer(b...  DEBUG    attributes# = 1
-POOLContainer(b...  DEBUG Branch container 'basic_DataHeader'
-POOLContainer(b...  DEBUG Opened container POOLContainer(basic/DataHeader) of type ROOT_Tree
-SimplePoolFile3...  DEBUG --->Adding Assoc :????/POOLContainer(basic/DataHeader) [202]  (b , ffffffff)
-SimplePoolFile3...  DEBUG ---->ClassID:????
 AthenaPoolCnvSvc    DEBUG setAttribute BRANCH_BASKET_SIZE to 256000 for db: SimplePoolFile3.root and cont: POOLContainer(DataHeader)
 AthenaPoolCnvSvc    DEBUG setAttribute BRANCH_BASKET_SIZE to 1024000 for db: SimplePoolFile3.root and cont: POOLContainerForm(DataHeaderForm)
 RegStream1          DEBUG RegistrationStream execute
@@ -1917,7 +1845,6 @@ RegStream1          DEBUG  Not class requested by Tool, skipping (222376821,"Str
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #19, run #1 20 events processed so far  <<<===
 MetaDataSvc         DEBUG handle() EndInputFile for FID:????
 MetaDataSvc         DEBUG handle() EndTagFile for SimplePoolFile1.root
-Domain[ROOT_All]     INFO ->  Deaccess DbDatabase   READ      [ROOT_All] ????
 Domain[ROOT_All]     INFO >   Deaccess DbDomain     READ      [ROOT_All] 
 MetaDataSvc         DEBUG handle() LastInputFile for end
 AthenaEventLoopMgr   INFO No more events in event selection 
@@ -1936,7 +1863,7 @@ MetaData(EventS...  DEBUG Opening
 MetaData(EventS...  DEBUG    attributes# = 1
 MetaData(EventS...  DEBUG Branch container 'EventStreamInfo_p3_Stream1'
 MetaData(EventS...  DEBUG Opened container MetaData(EventStreamInfo_p3/Stream1) of type ROOT_Tree
-SimplePoolFile3...  DEBUG --->Adding Assoc :????/MetaData(EventStreamInfo_p3/Stream1) [202]  (c , ffffffff)
+SimplePoolFile3...  DEBUG --->Adding Assoc :????/MetaData(EventStreamInfo_p3/Stream1) [202]  (b , ffffffff)
 SimplePoolFile3...  DEBUG ---->ClassID:????
 SimplePoolFile3...  DEBUG --->Adding Shape[6 , ????]:  [1 Column(s)] 
 SimplePoolFile3...  DEBUG ---->Class:EventStreamInfo_p3
@@ -1946,23 +1873,21 @@ MetaDataHdrForm...  DEBUG Opening
 MetaDataHdrForm...  DEBUG    attributes# = 1
 MetaDataHdrForm...  DEBUG Branch container 'DataHeaderForm'
 MetaDataHdrForm...  DEBUG Opened container MetaDataHdrForm(DataHeaderForm) of type ROOT_Tree
-SimplePoolFile3...  DEBUG --->Adding Assoc :????/MetaDataHdrForm(DataHeaderForm) [202]  (d , ffffffff)
+SimplePoolFile3...  DEBUG --->Adding Assoc :????/MetaDataHdrForm(DataHeaderForm) [202]  (c , ffffffff)
 SimplePoolFile3...  DEBUG ---->ClassID:????
 SimplePoolFile3...  DEBUG --> Access   DbContainer  CREA/UPDA [ROOT_Tree] MetaDataHdr(DataHeader)
 MetaDataHdr(Dat...  DEBUG Opening
 MetaDataHdr(Dat...  DEBUG    attributes# = 1
 MetaDataHdr(Dat...  DEBUG Branch container 'DataHeader'
 MetaDataHdr(Dat...  DEBUG Opened container MetaDataHdr(DataHeader) of type ROOT_Tree
-SimplePoolFile3...  DEBUG --->Adding Assoc :????/MetaDataHdr(DataHeader) [202]  (e , ffffffff)
+SimplePoolFile3...  DEBUG --->Adding Assoc :????/MetaDataHdr(DataHeader) [202]  (d , ffffffff)
 SimplePoolFile3...  DEBUG ---->ClassID:????
 Stream1              INFO Records written: 21
 Stream1             DEBUG Leaving handle
 RegStream1          DEBUG handle() incident type: MetaDataStop
 RegStream1.TagTool   INFO Collection Events output: 20
-Domain[ROOT_All]     INFO ->  Deaccess DbDatabase   CREATE    [ROOT_All] ????
 Domain[ROOT_All]     INFO >   Deaccess DbDomain     UPDATE    [ROOT_All] 
 ApplicationMgr       INFO Application Manager Stopped successfully
-IncidentProcAlg1     INFO Finalize
 ReadData             INFO in finalize()
 ReWriteData          INFO in finalize()
 WriteTag             INFO in finalize()
@@ -1970,7 +1895,6 @@ MagicWriteTag        INFO in finalize()
 Stream1             DEBUG finalize: Optimize output
 Stream1             DEBUG finalize: end optimize output
 RegStream1          DEBUG In finalize
-IncidentProcAlg2     INFO Finalize
 DecisionSvc          INFO Finalized successfully.
 AthenaPoolCnvSvc    DEBUG releasing all workers
 AthDictLoaderSvc     INFO in finalize...
@@ -1978,13 +1902,6 @@ 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] #= 82
-commitOutput         INFO Time User   : Tot=    0 [us] Ave/Min/Max=    0(+-    0)/    0/    0 [us] #= 21
-cObjR_ALL            INFO Time User   : Tot=   10 [ms] Ave/Min/Max=0.152(+- 1.22)/    0/   10 [ms] #= 66
-cRepR_ALL            INFO Time User   : Tot=   20 [ms] Ave/Min/Max=0.0985(+-0.988)/    0/   10 [ms] #=203
-cObj_ALL             INFO Time User   : Tot=   40 [ms] Ave/Min/Max=0.635(+- 3.51)/    0/   20 [ms] #= 63
-cRep_ALL             INFO Time User   : Tot=   50 [ms] Ave/Min/Max= 0.61(+- 2.39)/    0/   10 [ms] #= 82
-ChronoStatSvc        INFO Time User   : Tot= 1.14  [s]                                             #=  1
 *****Chrono*****     INFO ****************************************************************************************************
 ChronoStatSvc.f...   INFO  Service finalized successfully 
 ApplicationMgr       INFO Application Manager Finalized successfully
diff --git a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_ReWriteAgain.ref b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_ReWriteAgain.ref
index 990115a685e7a98230f2015e96b17ccd1427c557..d1a025a5177931d74f28ff64fba4b9d49a0d3ac5 100644
--- a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_ReWriteAgain.ref
+++ b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_ReWriteAgain.ref
@@ -1,55 +1,26 @@
-Mon Jan 22 13:12:15 CST 2018
-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_ReWriteAgainJobOptions.py"
-Py:ConfigurableDb    INFO Read module info for 5435 configurables from 52 genConfDb files
-Py:ConfigurableDb    INFO No duplicates have been found: that's good !
 Athena               INFO including file "AthenaCommon/runbatch.py"
-[?1034hApplicationMgr       INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0
-ApplicationMgr    SUCCESS 
-====================================================================================================================================
-                                                   Welcome to ApplicationMgr (GaudiCoreSvc v30r1)
-                                          running on atlas1.hep.anl.gov on Mon Jan 22 13:12:30 2018
-====================================================================================================================================
-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 2319 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
-ReadData            DEBUG Property update for OutputLevel : new value = 2
 ReadData             INFO in initialize()
-MetaDataSvc         DEBUG Property update for OutputLevel : new value = 2
-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 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://lcgft-atlas.gridpp.rl.ac.uk:3128/frontierATLAS)(serverurl=http://frontier-atlas.lcg.triumf.ca:3128/ATLAS_frontier)(serverurl=http://ccfrontier.in2p3.fr:23128/ccin2p3-AtlasFrontier) will be considered for COOL data
-DBReplicaSvc         INFO Read replica configuration from /users/gemmeren/workarea/build/x86_64-slc6-gcc62-opt/share/dbreplica.config
-DBReplicaSvc         INFO Total of 1 servers found for host atlas1.hep.anl.gov [ATLF ]
 PoolSvc              INFO Successfully setup replica sorting algorithm
 PoolSvc             DEBUG OutputLevel is 
 PoolSvc              INFO Setting up APR FileCatalog and Streams
 PoolSvc             DEBUG POOL ReadCatalog is file:Catalog.xml
 PoolSvc              INFO POOL WriteCatalog is file:Catalog1.xml
-DbSession            INFO     Open     DbSession    
-Domain[ROOT_All]     INFO >   Access   DbDomain     READ      [ROOT_All] 
-EventSelector       DEBUG Property update for OutputLevel : new value = 2
-EventSelector        INFO Initializing EventSelector - package version EventSelectorAthenaPool-00-00-00
 EventSelector        INFO reinitialization...
 EventSelector        INFO EventSelection with query 
 EventSelector       DEBUG Try item: "SimplePoolReplica1.root" from the collection list.
-Domain[ROOT_All]     INFO ->  Access   DbDatabase   READ      [ROOT_All] ????
 Domain[ROOT_All]     INFO                           SimplePoolReplica1.root
 SimplePoolRepli...  DEBUG --> Access   DbContainer  READ      [ROOT_All] ##Shapes
 ##Shapes            DEBUG Opening
@@ -80,15 +51,13 @@ SimplePoolRepli...  DEBUG --->Reading Assoc:????/POOLContainerForm(DataHeaderFor
 SimplePoolRepli...  DEBUG ---->ClassID:????
 SimplePoolRepli...  DEBUG --->Reading Assoc:????/POOLContainer(DataHeader) [202]  (6 , ffffffff)
 SimplePoolRepli...  DEBUG ---->ClassID:????
-SimplePoolRepli...  DEBUG --->Reading Assoc:????/POOLContainer(basic/DataHeader) [202]  (7 , ffffffff)
+SimplePoolRepli...  DEBUG --->Reading Assoc:????/MetaData(EventStreamInfo_p3/Stream1) [202]  (7 , ffffffff)
 SimplePoolRepli...  DEBUG ---->ClassID:????
-SimplePoolRepli...  DEBUG --->Reading Assoc:????/MetaData(EventStreamInfo_p3/Stream1) [202]  (8 , ffffffff)
+SimplePoolRepli...  DEBUG --->Reading Assoc:????/MetaDataHdrForm(DataHeaderForm) [202]  (8 , ffffffff)
 SimplePoolRepli...  DEBUG ---->ClassID:????
-SimplePoolRepli...  DEBUG --->Reading Assoc:????/MetaDataHdrForm(DataHeaderForm) [202]  (9 , ffffffff)
+SimplePoolRepli...  DEBUG --->Reading Assoc:????/MetaDataHdr(DataHeader) [202]  (9 , ffffffff)
 SimplePoolRepli...  DEBUG ---->ClassID:????
-SimplePoolRepli...  DEBUG --->Reading Assoc:????/MetaDataHdr(DataHeader) [202]  (a , ffffffff)
-SimplePoolRepli...  DEBUG ---->ClassID:????
-##Links             DEBUG No objects passing selection criteria... Container has 9 Entries in total.
+##Links             DEBUG No objects passing selection criteria... Container has 8 Entries in total.
 SimplePoolRepli...  DEBUG --> Access   DbContainer  READ      [ROOT_All] ##Params
 ##Params            DEBUG Opening
 ##Params            DEBUG    attributes# = 1
@@ -117,20 +86,9 @@ MetaDataHdrForm...  DEBUG    attributes# = 1
 MetaDataHdrForm...  DEBUG Branch container 'DataHeaderForm'
 MetaDataHdrForm...  DEBUG Opened container MetaDataHdrForm(DataHeaderForm) of type ROOT_Tree
 MetaDataSvc         DEBUG Loaded input meta data store proxies
-AthenaPoolAddre...  DEBUG Property update for OutputLevel : new value = 2
-ReadData            DEBUG input handles: 0
-ReadData            DEBUG output handles: 0
-ReadData            DEBUG Data Deps for ReadData
-ReWriteData         DEBUG Property update for OutputLevel : new value = 2
 ReWriteData          INFO in initialize()
-ReWriteData         DEBUG input handles: 0
-ReWriteData         DEBUG output handles: 0
-ReWriteData         DEBUG Data Deps for ReWriteData
 WriteTag             INFO in initialize()
 MagicWriteTag        INFO in initialize()
-Stream1             DEBUG Property update for OutputLevel : new value = 2
-Stream1.Stream1...  DEBUG Property update for OutputLevel : new value = 2
-ClassIDSvc           INFO  getRegistryEntries: read 3111 CLIDRegistry entries for module ALL
 Stream1             DEBUG In initialize 
 Stream1             DEBUG Found IDecisionSvc.
 DecisionSvc          INFO Inserting stream: Stream1 with no Algs
@@ -138,52 +96,32 @@ Stream1             DEBUG End initialize
 Stream1             DEBUG In initialize
 Stream1             DEBUG Found StoreGateSvc store.
 Stream1             DEBUG Found MetaDataStore store.
-OutputStreamSeq...   INFO Initializing OutputStreamSequencerSvc - package version AthenaServices-00-00-00
-Stream1.Stream1...  DEBUG Property update for OutputLevel : new value = 2
-ClassIDSvc           INFO  getRegistryEntries: read 386 CLIDRegistry entries for module ALL
-Stream1.Stream1...   INFO Initializing Stream1.Stream1Tool - package version OutputStreamAthenaPool-00-00-00
-Stream1.Stream1...   INFO streamProperty ProcessingTag = Stream1
 AthenaPoolAddre...  DEBUG Cannot find DataHeader in DetectorStore.
-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: SimplePoolFile3.root
-Stream1              INFO I/O reinitialization...
+Stream1              INFO ../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
-RegStream1          DEBUG Property update for OutputLevel : new value = 2
-RegStream1.RegS...  DEBUG Property update for OutputLevel : new value = 2
+Stream1             DEBUG Adding private ToolHandle tool Stream1.Stream1Tool (AthenaOutputStreamTool)
 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
 HistogramPersis...WARNING Histograms saving not required.
 AthenaEventLoopMgr   INFO Setup EventSelector service EventSelector
 ApplicationMgr       INFO Application Manager Initialized successfully
-Domain[ROOT_All]     INFO ->  Deaccess DbDatabase   READ      [ROOT_All] ????
 Domain[ROOT_All]     INFO >   Deaccess DbDomain     READ      [ROOT_All] 
 EventSelector       DEBUG Try item: "SimplePoolReplica1.root" from the collection list.
-DbSession            INFO     Open     DbSession    
-Domain[ROOT_All]     INFO >   Access   DbDomain     READ      [ROOT_All] 
-Domain[ROOT_All]     INFO ->  Access   DbDatabase   READ      [ROOT_All] ????
 Domain[ROOT_All]     INFO                           SimplePoolReplica1.root
 SimplePoolRepli...  DEBUG --> Access   DbContainer  READ      [ROOT_All] ##Shapes
 ##Shapes            DEBUG Opening
@@ -214,15 +152,13 @@ SimplePoolRepli...  DEBUG --->Reading Assoc:????/POOLContainerForm(DataHeaderFor
 SimplePoolRepli...  DEBUG ---->ClassID:????
 SimplePoolRepli...  DEBUG --->Reading Assoc:????/POOLContainer(DataHeader) [202]  (6 , ffffffff)
 SimplePoolRepli...  DEBUG ---->ClassID:????
-SimplePoolRepli...  DEBUG --->Reading Assoc:????/POOLContainer(basic/DataHeader) [202]  (7 , ffffffff)
-SimplePoolRepli...  DEBUG ---->ClassID:????
-SimplePoolRepli...  DEBUG --->Reading Assoc:????/MetaData(EventStreamInfo_p3/Stream1) [202]  (8 , ffffffff)
+SimplePoolRepli...  DEBUG --->Reading Assoc:????/MetaData(EventStreamInfo_p3/Stream1) [202]  (7 , ffffffff)
 SimplePoolRepli...  DEBUG ---->ClassID:????
-SimplePoolRepli...  DEBUG --->Reading Assoc:????/MetaDataHdrForm(DataHeaderForm) [202]  (9 , ffffffff)
+SimplePoolRepli...  DEBUG --->Reading Assoc:????/MetaDataHdrForm(DataHeaderForm) [202]  (8 , ffffffff)
 SimplePoolRepli...  DEBUG ---->ClassID:????
-SimplePoolRepli...  DEBUG --->Reading Assoc:????/MetaDataHdr(DataHeader) [202]  (a , ffffffff)
+SimplePoolRepli...  DEBUG --->Reading Assoc:????/MetaDataHdr(DataHeader) [202]  (9 , ffffffff)
 SimplePoolRepli...  DEBUG ---->ClassID:????
-##Links             DEBUG No objects passing selection criteria... Container has 9 Entries in total.
+##Links             DEBUG No objects passing selection criteria... Container has 8 Entries in total.
 SimplePoolRepli...  DEBUG --> Access   DbContainer  READ      [ROOT_All] ##Params
 ##Params            DEBUG Opening
 ##Params            DEBUG    attributes# = 1
@@ -261,14 +197,11 @@ POOLContainerFo...  DEBUG Opened container POOLContainerForm(DataHeaderForm) of
 AthenaPoolAddre...  DEBUG The current Event contains: 3 objects
 AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo
 AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 9102, name = MyHits
-AlgResourcePool      INFO TopAlg list empty. Recovering the one of Application Manager
 SimplePoolRepli...  DEBUG --> Access   DbContainer  READ      [ROOT_Tree] CollectionTree(EventInfo_p4/McEventInfo)
 CollectionTree(...  DEBUG Opening
 CollectionTree(...  DEBUG    attributes# = 1
 CollectionTree(...  DEBUG Branch container 'EventInfo_p4_McEventInfo'
 CollectionTree(...  DEBUG Opened container CollectionTree(EventInfo_p4/McEventInfo) of type ROOT_Tree
-AthenaPoolConve...   INFO massageEventInfo: unable to get OverrideRunNumberFromInput property from EventSelector 
-ClassIDSvc           INFO  getRegistryEntries: read 11 CLIDRegistry entries for module ALL
 AthenaEventLoopMgr   INFO   ===>>>  start of run 1    <<<===
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #0, run #1 0 events processed so far  <<<===
 ReadData            DEBUG in execute()
@@ -302,7 +235,6 @@ ReadData             INFO Hit x = 20.4945 y = 63.5816 z = 48.1358 detector = Dum
 ReadData             INFO Hit x = 23.7045 y = 57.9027 z = 46.3159 detector = DummyHitDetector
 ReadData             INFO Hit x = 26.9145 y = 52.2238 z = 44.9265 detector = DummyHitDetector
 ReadData             INFO Hit x = 30.1245 y = 46.5449 z = 43.831 detector = DummyHitDetector
-ClassIDSvc           INFO  getRegistryEntries: read 10 CLIDRegistry entries for module ALL
 ReWriteData         DEBUG in execute()
 ReWriteData          INFO Hit x = 1.2345 y = 97.655 z = 226.672 detector = DummyHitDetector
 ReWriteData          INFO Hit x = 4.4445 y = 91.9761 z = 94.7318 detector = DummyHitDetector
@@ -333,13 +265,10 @@ 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                           SimplePoolFile3.root
 SimplePoolFile3...  DEBUG --> Access   DbContainer  CREATE    [ROOT_All] ##Shapes
 ##Shapes            DEBUG Opening
@@ -448,14 +377,6 @@ POOLCollectionT...  DEBUG Branch container 'MagicNumber'
 POOLCollectionT...  DEBUG Opened container POOLCollectionTree(MagicNumber) of type ROOT_Tree
 SimplePoolFile3...  DEBUG --->Adding Assoc :????/POOLCollectionTree(MagicNumber) [202]  (a , ffffffff)
 SimplePoolFile3...  DEBUG ---->ClassID:????
-ClassIDSvc           INFO  getRegistryEntries: read 3 CLIDRegistry entries for module ALL
-SimplePoolFile3...  DEBUG --> Access   DbContainer  CREA/UPDA [ROOT_Tree] POOLContainer(basic/DataHeader)
-POOLContainer(b...  DEBUG Opening
-POOLContainer(b...  DEBUG    attributes# = 1
-POOLContainer(b...  DEBUG Branch container 'basic_DataHeader'
-POOLContainer(b...  DEBUG Opened container POOLContainer(basic/DataHeader) of type ROOT_Tree
-SimplePoolFile3...  DEBUG --->Adding Assoc :????/POOLContainer(basic/DataHeader) [202]  (b , ffffffff)
-SimplePoolFile3...  DEBUG ---->ClassID:????
 AthenaPoolCnvSvc    DEBUG setAttribute BRANCH_BASKET_SIZE to 256000 for db: SimplePoolFile3.root and cont: POOLContainer(DataHeader)
 AthenaPoolCnvSvc    DEBUG setAttribute BRANCH_BASKET_SIZE to 1024000 for db: SimplePoolFile3.root and cont: POOLContainerForm(DataHeaderForm)
 RegStream1          DEBUG RegistrationStream execute
@@ -1971,7 +1892,6 @@ RegStream1          DEBUG Adding ref for Stream1
 RegStream1          DEBUG Setting tagKey to MagicTag
 RegStream1          DEBUG  Not class requested by Tool, skipping (222376821,"Stream1") 
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #19, run #1 20 events processed so far  <<<===
-Domain[ROOT_All]     INFO ->  Deaccess DbDatabase   READ      [ROOT_All] ????
 Domain[ROOT_All]     INFO >   Deaccess DbDomain     READ      [ROOT_All] 
 MetaDataSvc         DEBUG handle() EndInputFile for FID:????
 MetaDataSvc         DEBUG handle() EndTagFile for SimplePoolReplica1.root
@@ -1992,7 +1912,7 @@ MetaData(EventS...  DEBUG Opening
 MetaData(EventS...  DEBUG    attributes# = 1
 MetaData(EventS...  DEBUG Branch container 'EventStreamInfo_p3_Stream1'
 MetaData(EventS...  DEBUG Opened container MetaData(EventStreamInfo_p3/Stream1) of type ROOT_Tree
-SimplePoolFile3...  DEBUG --->Adding Assoc :????/MetaData(EventStreamInfo_p3/Stream1) [202]  (c , ffffffff)
+SimplePoolFile3...  DEBUG --->Adding Assoc :????/MetaData(EventStreamInfo_p3/Stream1) [202]  (b , ffffffff)
 SimplePoolFile3...  DEBUG ---->ClassID:????
 SimplePoolFile3...  DEBUG --->Adding Shape[6 , ????]:  [1 Column(s)] 
 SimplePoolFile3...  DEBUG ---->Class:EventStreamInfo_p3
@@ -2002,23 +1922,21 @@ MetaDataHdrForm...  DEBUG Opening
 MetaDataHdrForm...  DEBUG    attributes# = 1
 MetaDataHdrForm...  DEBUG Branch container 'DataHeaderForm'
 MetaDataHdrForm...  DEBUG Opened container MetaDataHdrForm(DataHeaderForm) of type ROOT_Tree
-SimplePoolFile3...  DEBUG --->Adding Assoc :????/MetaDataHdrForm(DataHeaderForm) [202]  (d , ffffffff)
+SimplePoolFile3...  DEBUG --->Adding Assoc :????/MetaDataHdrForm(DataHeaderForm) [202]  (c , ffffffff)
 SimplePoolFile3...  DEBUG ---->ClassID:????
 SimplePoolFile3...  DEBUG --> Access   DbContainer  CREA/UPDA [ROOT_Tree] MetaDataHdr(DataHeader)
 MetaDataHdr(Dat...  DEBUG Opening
 MetaDataHdr(Dat...  DEBUG    attributes# = 1
 MetaDataHdr(Dat...  DEBUG Branch container 'DataHeader'
 MetaDataHdr(Dat...  DEBUG Opened container MetaDataHdr(DataHeader) of type ROOT_Tree
-SimplePoolFile3...  DEBUG --->Adding Assoc :????/MetaDataHdr(DataHeader) [202]  (e , ffffffff)
+SimplePoolFile3...  DEBUG --->Adding Assoc :????/MetaDataHdr(DataHeader) [202]  (d , ffffffff)
 SimplePoolFile3...  DEBUG ---->ClassID:????
 Stream1              INFO Records written: 21
 Stream1             DEBUG Leaving handle
 RegStream1          DEBUG handle() incident type: MetaDataStop
 RegStream1.TagTool   INFO Collection Events output: 20
-Domain[ROOT_All]     INFO ->  Deaccess DbDatabase   CREATE    [ROOT_All] ????
 Domain[ROOT_All]     INFO >   Deaccess DbDomain     UPDATE    [ROOT_All] 
 ApplicationMgr       INFO Application Manager Stopped successfully
-IncidentProcAlg1     INFO Finalize
 ReadData             INFO in finalize()
 ReWriteData          INFO in finalize()
 WriteTag             INFO in finalize()
@@ -2026,7 +1944,6 @@ MagicWriteTag        INFO in finalize()
 Stream1             DEBUG finalize: Optimize output
 Stream1             DEBUG finalize: end optimize output
 RegStream1          DEBUG In finalize
-IncidentProcAlg2     INFO Finalize
 DecisionSvc          INFO Finalized successfully.
 AthenaPoolCnvSvc    DEBUG releasing all workers
 AthDictLoaderSvc     INFO in finalize...
@@ -2034,13 +1951,6 @@ ToolSvc              INFO Removing all tools created by ToolSvc
 *****Chrono*****     INFO ****************************************************************************************************
 *****Chrono*****     INFO  The Final CPU consumption ( Chrono ) Table (ordered)
 *****Chrono*****     INFO ****************************************************************************************************
-commitOutput         INFO Time User   : Tot=    0 [us] Ave/Min/Max=    0(+-    0)/    0/    0 [us] #= 21
-fRep_ALL             INFO Time User   : Tot=    0 [us] Ave/Min/Max=    0(+-    0)/    0/    0 [us] #= 82
-cRepR_ALL            INFO Time User   : Tot=   20 [ms] Ave/Min/Max=0.0985(+-  1.4)/    0/   20 [ms] #=203
-cRep_ALL             INFO Time User   : Tot=   40 [ms] Ave/Min/Max=0.488(+- 2.66)/    0/   20 [ms] #= 82
-cObjR_ALL            INFO Time User   : Tot=   10 [ms] Ave/Min/Max=0.154(+- 1.23)/    0/   10 [ms] #= 65
-cObj_ALL             INFO Time User   : Tot=   40 [ms] Ave/Min/Max=0.635(+- 3.02)/    0/   20 [ms] #= 63
-ChronoStatSvc        INFO Time User   : Tot= 1.17  [s]                                             #=  1
 *****Chrono*****     INFO ****************************************************************************************************
 ChronoStatSvc.f...   INFO  Service finalized successfully 
 ApplicationMgr       INFO Application Manager Finalized successfully
diff --git a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_ReWriteNext.ref b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_ReWriteNext.ref
index 212cea123be4758c39c60fc1f025285709e97eac..32f29a905cf419ee06ea04c699f65ecf0817b41a 100644
--- a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_ReWriteNext.ref
+++ b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_ReWriteNext.ref
@@ -1,57 +1,28 @@
-Mon Jan 22 13:12:36 CST 2018
-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_ReWriteNextJobOptions.py"
-Py:ConfigurableDb    INFO Read module info for 5435 configurables from 52 genConfDb files
-Py:ConfigurableDb    INFO No duplicates have been found: that's good !
 Athena               INFO including file "AthenaCommon/runbatch.py"
-[?1034hApplicationMgr       INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0
-ApplicationMgr    SUCCESS 
-====================================================================================================================================
-                                                   Welcome to ApplicationMgr (GaudiCoreSvc v30r1)
-                                          running on atlas1.hep.anl.gov on Mon Jan 22 13:12:48 2018
-====================================================================================================================================
-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 2319 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
-ReadData            DEBUG Property update for OutputLevel : new value = 2
 ReadData             INFO in initialize()
-MetaDataSvc         DEBUG Property update for OutputLevel : new value = 2
-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 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://lcgft-atlas.gridpp.rl.ac.uk:3128/frontierATLAS)(serverurl=http://frontier-atlas.lcg.triumf.ca:3128/ATLAS_frontier)(serverurl=http://ccfrontier.in2p3.fr:23128/ccin2p3-AtlasFrontier) will be considered for COOL data
-DBReplicaSvc         INFO Read replica configuration from /users/gemmeren/workarea/build/x86_64-slc6-gcc62-opt/share/dbreplica.config
-DBReplicaSvc         INFO Total of 1 servers found for host atlas1.hep.anl.gov [ATLF ]
 PoolSvc              INFO Successfully setup replica sorting algorithm
 PoolSvc             DEBUG OutputLevel is 
 PoolSvc              INFO Setting up APR FileCatalog and Streams
 PoolSvc             DEBUG POOL ReadCatalog is file:Catalog.xml
 PoolSvc              INFO POOL WriteCatalog is file:Catalog1.xml
-DbSession            INFO     Open     DbSession    
-Domain[ROOT_All]     INFO >   Access   DbDomain     READ      [ROOT_All] 
-EventSelector       DEBUG Property update for OutputLevel : new value = 2
-EventSelector        INFO Initializing EventSelector - package version EventSelectorAthenaPool-00-00-00
 EventSelector        INFO reinitialization...
 EventSelector        INFO EventSelection with query 
 EventSelector       DEBUG Try item: "SimplePoolFile3.root" from the collection list.
 MetaDataSvc         DEBUG handle() FirstInputFile for FID:????
 MetaDataSvc         DEBUG initInputMetaDataStore: file name FID:????
-Domain[ROOT_All]     INFO ->  Access   DbDatabase   READ      [ROOT_All] ????
 Domain[ROOT_All]     INFO                           SimplePoolFile3.root
 SimplePoolFile3...  DEBUG --> Access   DbContainer  READ      [ROOT_All] ##Shapes
 ##Shapes            DEBUG Opening
@@ -94,15 +65,13 @@ SimplePoolFile3...  DEBUG --->Reading Assoc:????/POOLCollectionTree(EventNumber)
 SimplePoolFile3...  DEBUG ---->ClassID:????
 SimplePoolFile3...  DEBUG --->Reading Assoc:????/POOLCollectionTree(MagicNumber) [202]  (a , ffffffff)
 SimplePoolFile3...  DEBUG ---->ClassID:????
-SimplePoolFile3...  DEBUG --->Reading Assoc:????/POOLContainer(basic/DataHeader) [202]  (b , ffffffff)
+SimplePoolFile3...  DEBUG --->Reading Assoc:????/MetaData(EventStreamInfo_p3/Stream1) [202]  (b , ffffffff)
 SimplePoolFile3...  DEBUG ---->ClassID:????
-SimplePoolFile3...  DEBUG --->Reading Assoc:????/MetaData(EventStreamInfo_p3/Stream1) [202]  (c , ffffffff)
+SimplePoolFile3...  DEBUG --->Reading Assoc:????/MetaDataHdrForm(DataHeaderForm) [202]  (c , ffffffff)
 SimplePoolFile3...  DEBUG ---->ClassID:????
-SimplePoolFile3...  DEBUG --->Reading Assoc:????/MetaDataHdrForm(DataHeaderForm) [202]  (d , ffffffff)
+SimplePoolFile3...  DEBUG --->Reading Assoc:????/MetaDataHdr(DataHeader) [202]  (d , ffffffff)
 SimplePoolFile3...  DEBUG ---->ClassID:????
-SimplePoolFile3...  DEBUG --->Reading Assoc:????/MetaDataHdr(DataHeader) [202]  (e , ffffffff)
-SimplePoolFile3...  DEBUG ---->ClassID:????
-##Links             DEBUG No objects passing selection criteria... Container has 13 Entries in total.
+##Links             DEBUG No objects passing selection criteria... Container has 12 Entries in total.
 SimplePoolFile3...  DEBUG --> Access   DbContainer  READ      [ROOT_All] ##Params
 ##Params            DEBUG Opening
 ##Params            DEBUG    attributes# = 1
@@ -124,20 +93,9 @@ MetaDataHdrForm...  DEBUG    attributes# = 1
 MetaDataHdrForm...  DEBUG Branch container 'DataHeaderForm'
 MetaDataHdrForm...  DEBUG Opened container MetaDataHdrForm(DataHeaderForm) of type ROOT_Tree
 MetaDataSvc         DEBUG Loaded input meta data store proxies
-AthenaPoolAddre...  DEBUG Property update for OutputLevel : new value = 2
-ReadData            DEBUG input handles: 0
-ReadData            DEBUG output handles: 0
-ReadData            DEBUG Data Deps for ReadData
-ReWriteData         DEBUG Property update for OutputLevel : new value = 2
 ReWriteData          INFO in initialize()
-ReWriteData         DEBUG input handles: 0
-ReWriteData         DEBUG output handles: 0
-ReWriteData         DEBUG Data Deps for ReWriteData
 WriteTag             INFO in initialize()
 MagicWriteTag        INFO in initialize()
-Stream1             DEBUG Property update for OutputLevel : new value = 2
-Stream1.Stream1...  DEBUG Property update for OutputLevel : new value = 2
-ClassIDSvc           INFO  getRegistryEntries: read 3114 CLIDRegistry entries for module ALL
 Stream1             DEBUG In initialize 
 Stream1             DEBUG Found IDecisionSvc.
 DecisionSvc          INFO Inserting stream: Stream1 with no Algs
@@ -145,43 +103,27 @@ Stream1             DEBUG End initialize
 Stream1             DEBUG In initialize
 Stream1             DEBUG Found StoreGateSvc store.
 Stream1             DEBUG Found MetaDataStore store.
-OutputStreamSeq...   INFO Initializing OutputStreamSequencerSvc - package version AthenaServices-00-00-00
-Stream1.Stream1...  DEBUG Property update for OutputLevel : new value = 2
-ClassIDSvc           INFO  getRegistryEntries: read 386 CLIDRegistry entries for module ALL
-Stream1.Stream1...   INFO Initializing Stream1.Stream1Tool - package version OutputStreamAthenaPool-00-00-00
-Stream1.Stream1...   INFO streamProperty ProcessingTag = Stream1
 AthenaPoolAddre...  DEBUG Cannot find DataHeader in DetectorStore.
-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: SimplePoolFile4.root
-Stream1              INFO I/O reinitialization...
+Stream1              INFO ../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
-RegStream1          DEBUG Property update for OutputLevel : new value = 2
-RegStream1.RegS...  DEBUG Property update for OutputLevel : new value = 2
+Stream1             DEBUG Adding private ToolHandle tool Stream1.Stream1Tool (AthenaOutputStreamTool)
 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
 HistogramPersis...WARNING Histograms saving not required.
 AthenaEventLoopMgr   INFO Setup EventSelector service EventSelector
 ApplicationMgr       INFO Application Manager Initialized successfully
@@ -210,14 +152,11 @@ POOLContainerFo...  DEBUG Opened container POOLContainerForm(DataHeaderForm) of
 AthenaPoolAddre...  DEBUG The current Event contains: 3 objects
 AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo
 AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 9103, name = MyTracks
-AlgResourcePool      INFO TopAlg list empty. Recovering the one of Application Manager
 SimplePoolFile3...  DEBUG --> Access   DbContainer  READ      [ROOT_Tree] CollectionTree(EventInfo_p4/McEventInfo)
 CollectionTree(...  DEBUG Opening
 CollectionTree(...  DEBUG    attributes# = 1
 CollectionTree(...  DEBUG Branch container 'EventInfo_p4_McEventInfo'
 CollectionTree(...  DEBUG Opened container CollectionTree(EventInfo_p4/McEventInfo) of type ROOT_Tree
-AthenaPoolConve...   INFO massageEventInfo: unable to get OverrideRunNumberFromInput property from EventSelector 
-ClassIDSvc           INFO  getRegistryEntries: read 11 CLIDRegistry entries for module ALL
 AthenaEventLoopMgr   INFO   ===>>>  start of run 1    <<<===
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #0, run #1 0 events processed so far  <<<===
 ReadData            DEBUG in execute()
@@ -245,18 +184,14 @@ ReadData          WARNING Could not follow ExampleTrackContainer/MyTracks Elemen
 ReadData             INFO Could not find ExampleHitContainer/MyHits
 ReWriteData         DEBUG in execute()
 ReWriteData          INFO registered all data
-ClassIDSvc           INFO  getRegistryEntries: read 10 CLIDRegistry entries for module ALL
 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                           SimplePoolFile4.root
 SimplePoolFile4...  DEBUG --> Access   DbContainer  CREATE    [ROOT_All] ##Shapes
 ##Shapes            DEBUG Opening
@@ -359,13 +294,6 @@ POOLCollectionT...  DEBUG Branch container 'MagicNumber'
 POOLCollectionT...  DEBUG Opened container POOLCollectionTree(MagicNumber) of type ROOT_Tree
 SimplePoolFile4...  DEBUG --->Adding Assoc :????/POOLCollectionTree(MagicNumber) [202]  (a , ffffffff)
 SimplePoolFile4...  DEBUG ---->ClassID:????
-SimplePoolFile4...  DEBUG --> Access   DbContainer  CREA/UPDA [ROOT_Tree] POOLContainer(basic/DataHeader)
-POOLContainer(b...  DEBUG Opening
-POOLContainer(b...  DEBUG    attributes# = 1
-POOLContainer(b...  DEBUG Branch container 'basic_DataHeader'
-POOLContainer(b...  DEBUG Opened container POOLContainer(basic/DataHeader) of type ROOT_Tree
-SimplePoolFile4...  DEBUG --->Adding Assoc :????/POOLContainer(basic/DataHeader) [202]  (b , ffffffff)
-SimplePoolFile4...  DEBUG ---->ClassID:????
 AthenaPoolCnvSvc    DEBUG setAttribute BRANCH_BASKET_SIZE to 256000 for db: SimplePoolFile4.root and cont: POOLContainer(DataHeader)
 AthenaPoolCnvSvc    DEBUG setAttribute BRANCH_BASKET_SIZE to 1024000 for db: SimplePoolFile4.root and cont: POOLContainerForm(DataHeaderForm)
 RegStream1          DEBUG RegistrationStream execute
@@ -1315,7 +1243,6 @@ RegStream1          DEBUG  Not class requested by Tool, skipping (222376821,"Str
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #19, run #1 20 events processed so far  <<<===
 MetaDataSvc         DEBUG handle() EndInputFile for FID:????
 MetaDataSvc         DEBUG handle() EndTagFile for SimplePoolFile3.root
-Domain[ROOT_All]     INFO ->  Deaccess DbDatabase   READ      [ROOT_All] ????
 Domain[ROOT_All]     INFO >   Deaccess DbDomain     READ      [ROOT_All] 
 MetaDataSvc         DEBUG handle() LastInputFile for end
 AthenaEventLoopMgr   INFO No more events in event selection 
@@ -1334,7 +1261,7 @@ MetaData(EventS...  DEBUG Opening
 MetaData(EventS...  DEBUG    attributes# = 1
 MetaData(EventS...  DEBUG Branch container 'EventStreamInfo_p3_Stream1'
 MetaData(EventS...  DEBUG Opened container MetaData(EventStreamInfo_p3/Stream1) of type ROOT_Tree
-SimplePoolFile4...  DEBUG --->Adding Assoc :????/MetaData(EventStreamInfo_p3/Stream1) [202]  (c , ffffffff)
+SimplePoolFile4...  DEBUG --->Adding Assoc :????/MetaData(EventStreamInfo_p3/Stream1) [202]  (b , ffffffff)
 SimplePoolFile4...  DEBUG ---->ClassID:????
 SimplePoolFile4...  DEBUG --->Adding Shape[6 , ????]:  [1 Column(s)] 
 SimplePoolFile4...  DEBUG ---->Class:EventStreamInfo_p3
@@ -1344,23 +1271,21 @@ MetaDataHdrForm...  DEBUG Opening
 MetaDataHdrForm...  DEBUG    attributes# = 1
 MetaDataHdrForm...  DEBUG Branch container 'DataHeaderForm'
 MetaDataHdrForm...  DEBUG Opened container MetaDataHdrForm(DataHeaderForm) of type ROOT_Tree
-SimplePoolFile4...  DEBUG --->Adding Assoc :????/MetaDataHdrForm(DataHeaderForm) [202]  (d , ffffffff)
+SimplePoolFile4...  DEBUG --->Adding Assoc :????/MetaDataHdrForm(DataHeaderForm) [202]  (c , ffffffff)
 SimplePoolFile4...  DEBUG ---->ClassID:????
 SimplePoolFile4...  DEBUG --> Access   DbContainer  CREA/UPDA [ROOT_Tree] MetaDataHdr(DataHeader)
 MetaDataHdr(Dat...  DEBUG Opening
 MetaDataHdr(Dat...  DEBUG    attributes# = 1
 MetaDataHdr(Dat...  DEBUG Branch container 'DataHeader'
 MetaDataHdr(Dat...  DEBUG Opened container MetaDataHdr(DataHeader) of type ROOT_Tree
-SimplePoolFile4...  DEBUG --->Adding Assoc :????/MetaDataHdr(DataHeader) [202]  (e , ffffffff)
+SimplePoolFile4...  DEBUG --->Adding Assoc :????/MetaDataHdr(DataHeader) [202]  (d , ffffffff)
 SimplePoolFile4...  DEBUG ---->ClassID:????
 Stream1              INFO Records written: 21
 Stream1             DEBUG Leaving handle
 RegStream1          DEBUG handle() incident type: MetaDataStop
 RegStream1.TagTool   INFO Collection Events output: 20
-Domain[ROOT_All]     INFO ->  Deaccess DbDatabase   CREATE    [ROOT_All] ????
 Domain[ROOT_All]     INFO >   Deaccess DbDomain     UPDATE    [ROOT_All] 
 ApplicationMgr       INFO Application Manager Stopped successfully
-IncidentProcAlg1     INFO Finalize
 ReadData             INFO in finalize()
 ReWriteData          INFO in finalize()
 WriteTag             INFO in finalize()
@@ -1368,7 +1293,6 @@ MagicWriteTag        INFO in finalize()
 Stream1             DEBUG finalize: Optimize output
 Stream1             DEBUG finalize: end optimize output
 RegStream1          DEBUG In finalize
-IncidentProcAlg2     INFO Finalize
 DecisionSvc          INFO Finalized successfully.
 AthenaPoolCnvSvc    DEBUG releasing all workers
 AthDictLoaderSvc     INFO in finalize...
@@ -1376,13 +1300,6 @@ ToolSvc              INFO Removing all tools created by ToolSvc
 *****Chrono*****     INFO ****************************************************************************************************
 *****Chrono*****     INFO  The Final CPU consumption ( Chrono ) Table (ordered)
 *****Chrono*****     INFO ****************************************************************************************************
-commitOutput         INFO Time User   : Tot=    0 [us] Ave/Min/Max=    0(+-    0)/    0/    0 [us] #= 21
-fRep_ALL             INFO Time User   : Tot=    0 [us] Ave/Min/Max=    0(+-    0)/    0/    0 [us] #= 82
-cRep_ALL             INFO Time User   : Tot=    0 [us] Ave/Min/Max=    0(+-    0)/    0/    0 [us] #= 82
-cRepR_ALL            INFO Time User   : Tot=    0 [us] Ave/Min/Max=    0(+-    0)/    0/    0 [us] #=203
-cObjR_ALL            INFO Time User   : Tot=   20 [ms] Ave/Min/Max=0.308(+- 1.73)/    0/   10 [ms] #= 65
-cObj_ALL             INFO Time User   : Tot=   40 [ms] Ave/Min/Max=0.635(+- 3.02)/    0/   20 [ms] #= 63
-ChronoStatSvc        INFO Time User   : Tot= 1.17  [s]                                             #=  1
 *****Chrono*****     INFO ****************************************************************************************************
 ChronoStatSvc.f...   INFO  Service finalized successfully 
 ApplicationMgr       INFO Application Manager Finalized successfully
diff --git a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_Read.ref b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_Read.ref
index fe23fcb22cb55636523416d6cbfac7673662a011..a136900ecd7c83c973a9c9c39893b12cb485d82f 100644
--- a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_Read.ref
+++ b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_Read.ref
@@ -1,54 +1,26 @@
-Mon Jan 22 13:10:45 CST 2018
-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_ReadJobOptions.py"
-Py:ConfigurableDb    INFO Read module info for 5435 configurables from 52 genConfDb files
-Py:ConfigurableDb    INFO No duplicates have been found: that's good !
 Athena               INFO including file "AthenaCommon/runbatch.py"
-[?1034hApplicationMgr       INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0
-ApplicationMgr    SUCCESS 
-====================================================================================================================================
-                                                   Welcome to ApplicationMgr (GaudiCoreSvc v30r1)
-                                          running on atlas1.hep.anl.gov on Mon Jan 22 13:10:58 2018
-====================================================================================================================================
-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 2319 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
-ReadData            DEBUG Property update for OutputLevel : new value = 2
 ReadData             INFO in initialize()
-MetaDataSvc         DEBUG Property update for OutputLevel : new value = 2
-MetaDataSvc          INFO Initializing MetaDataSvc - package version AthenaServices-00-00-00
-AthenaPoolCnvSvc     INFO Initializing AthenaPoolCnvSvc - package version AthenaPoolCnvSvc-00-00-00
-PoolSvc             DEBUG Property update for OutputLevel : new value = 2
 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://lcgft-atlas.gridpp.rl.ac.uk:3128/frontierATLAS)(serverurl=http://frontier-atlas.lcg.triumf.ca:3128/ATLAS_frontier)(serverurl=http://ccfrontier.in2p3.fr:23128/ccin2p3-AtlasFrontier) will be considered for COOL data
-DBReplicaSvc         INFO Read replica configuration from /users/gemmeren/workarea/build/x86_64-slc6-gcc62-opt/share/dbreplica.config
-DBReplicaSvc         INFO Total of 1 servers found for host atlas1.hep.anl.gov [ATLF ]
 PoolSvc              INFO Successfully setup replica sorting algorithm
 PoolSvc             DEBUG OutputLevel is 
 PoolSvc              INFO Setting up APR FileCatalog and Streams
 PoolSvc              INFO POOL WriteCatalog is file:Catalog1.xml
-DbSession            INFO     Open     DbSession    
-Domain[ROOT_All]     INFO >   Access   DbDomain     READ      [ROOT_All] 
-EventSelector       DEBUG Property update for OutputLevel : new value = 2
-EventSelector        INFO Initializing EventSelector - package version EventSelectorAthenaPool-00-00-00
 IoComponentMgr       INFO IoComponent EventSelector has already had file EmptyPoolFile.root registered with i/o mode READ
 EventSelector        INFO reinitialization...
 EventSelector        INFO EventSelection with query 
 EventSelector       DEBUG Try item: "EmptyPoolFile.root" from the collection list.
-Domain[ROOT_All]     INFO ->  Access   DbDatabase   READ      [ROOT_All] ????
 Domain[ROOT_All]     INFO                           EmptyPoolFile.root
 EmptyPoolFile.root  DEBUG --> Access   DbContainer  READ      [ROOT_All] ##Shapes
 ##Shapes            DEBUG Opening
@@ -86,14 +58,10 @@ EmptyPoolFile.root  DEBUG --->Reading Param:FORMAT_VSN=[1.1]
 PoolSvc              INFO Failed to find container POOLContainer(DataHeader) to create POOL collection.
 PoolSvc              INFO Failed to find container POOLContainer_DataHeader to create POOL collection.
 EventSelector       DEBUG No events found in: EmptyPoolFile.root skipped!!!
-Domain[ROOT_All]     INFO ->  Deaccess DbDatabase   READ      [ROOT_All] ????
 Domain[ROOT_All]     INFO >   Deaccess DbDomain     READ      [ROOT_All] 
 EventSelector       DEBUG Try item: "SimplePoolFile1.root" from the collection list.
 MetaDataSvc         DEBUG handle() FirstInputFile for FID:????
 MetaDataSvc         DEBUG initInputMetaDataStore: file name FID:????
-DbSession            INFO     Open     DbSession    
-Domain[ROOT_All]     INFO >   Access   DbDomain     READ      [ROOT_All] 
-Domain[ROOT_All]     INFO ->  Access   DbDatabase   READ      [ROOT_All] ????
 Domain[ROOT_All]     INFO                           SimplePoolFile1.root
 SimplePoolFile1...  DEBUG --> Access   DbContainer  READ      [ROOT_All] ##Shapes
 ##Shapes            DEBUG Opening
@@ -136,15 +104,13 @@ SimplePoolFile1...  DEBUG --->Reading Assoc:????/POOLCollectionTree(EventNumber)
 SimplePoolFile1...  DEBUG ---->ClassID:????
 SimplePoolFile1...  DEBUG --->Reading Assoc:????/POOLCollectionTree(MagicNumber) [202]  (a , ffffffff)
 SimplePoolFile1...  DEBUG ---->ClassID:????
-SimplePoolFile1...  DEBUG --->Reading Assoc:????/POOLContainer(basic/DataHeader) [202]  (b , ffffffff)
+SimplePoolFile1...  DEBUG --->Reading Assoc:????/MetaData(EventStreamInfo_p3/Stream1) [202]  (b , ffffffff)
 SimplePoolFile1...  DEBUG ---->ClassID:????
-SimplePoolFile1...  DEBUG --->Reading Assoc:????/MetaData(EventStreamInfo_p3/Stream1) [202]  (c , ffffffff)
+SimplePoolFile1...  DEBUG --->Reading Assoc:????/MetaDataHdrForm(DataHeaderForm) [202]  (c , ffffffff)
 SimplePoolFile1...  DEBUG ---->ClassID:????
-SimplePoolFile1...  DEBUG --->Reading Assoc:????/MetaDataHdrForm(DataHeaderForm) [202]  (d , ffffffff)
+SimplePoolFile1...  DEBUG --->Reading Assoc:????/MetaDataHdr(DataHeader) [202]  (d , ffffffff)
 SimplePoolFile1...  DEBUG ---->ClassID:????
-SimplePoolFile1...  DEBUG --->Reading Assoc:????/MetaDataHdr(DataHeader) [202]  (e , ffffffff)
-SimplePoolFile1...  DEBUG ---->ClassID:????
-##Links             DEBUG No objects passing selection criteria... Container has 13 Entries in total.
+##Links             DEBUG No objects passing selection criteria... Container has 12 Entries in total.
 SimplePoolFile1...  DEBUG --> Access   DbContainer  READ      [ROOT_All] ##Params
 ##Params            DEBUG Opening
 ##Params            DEBUG    attributes# = 1
@@ -166,15 +132,10 @@ MetaDataHdrForm...  DEBUG    attributes# = 1
 MetaDataHdrForm...  DEBUG Branch container 'DataHeaderForm'
 MetaDataHdrForm...  DEBUG Opened container MetaDataHdrForm(DataHeaderForm) of type ROOT_Tree
 MetaDataSvc         DEBUG Loaded input meta data store proxies
-AthenaPoolAddre...  DEBUG Property update for OutputLevel : new value = 2
-ReadData            DEBUG input handles: 0
-ReadData            DEBUG output handles: 0
-ReadData            DEBUG Data Deps for ReadData
 HistogramPersis...WARNING Histograms saving not required.
 AthenaEventLoopMgr   INFO Setup EventSelector service EventSelector
 ApplicationMgr       INFO Application Manager Initialized successfully
 EventSelector       DEBUG Try item: "EmptyPoolFile.root" from the collection list.
-Domain[ROOT_All]     INFO ->  Access   DbDatabase   READ      [ROOT_All] ????
 Domain[ROOT_All]     INFO                           EmptyPoolFile.root
 EmptyPoolFile.root  DEBUG --> Access   DbContainer  READ      [ROOT_All] ##Shapes
 ##Shapes            DEBUG Opening
@@ -227,7 +188,6 @@ MetaDataHdrForm...  DEBUG Opened container MetaDataHdrForm(DataHeaderForm) of ty
 MetaDataSvc         DEBUG Loaded input meta data store proxies
 MetaDataSvc         DEBUG  calling beginInputFile for ToolSvc.IOVDbMetaDataTool
 MetaDataSvc         DEBUG handle() EndInputFile for eventless EmptyPoolFile.root
-Domain[ROOT_All]     INFO ->  Deaccess DbDatabase   READ      [ROOT_All] ????
 EventSelector       DEBUG Try item: "SimplePoolFile1.root" from the collection list.
 MetaDataSvc         DEBUG handle() BeginTagFile for SimplePoolFile1.root
 ApplicationMgr       INFO Application Manager Started successfully
@@ -254,7 +214,6 @@ EventSelector        INFO skipping event 9
 EventSelector        INFO skipping event 10
 EventSelector       DEBUG Get AttributeList from the collection
 EventSelector       DEBUG AttributeList size 3
-ClassIDSvc           INFO  getRegistryEntries: read 2674 CLIDRegistry entries for module ALL
 EventSelector       DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000000A].
 EventSelector       DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000000A].
 EventSelector       DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000000A]
@@ -271,14 +230,11 @@ POOLContainerFo...  DEBUG Opened container POOLContainerForm(DataHeaderForm) of
 AthenaPoolAddre...  DEBUG The current Event contains: 3 objects
 AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo
 AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 9102, name = MyHits
-AlgResourcePool      INFO TopAlg list empty. Recovering the one of Application Manager
 SimplePoolFile1...  DEBUG --> Access   DbContainer  READ      [ROOT_Tree] CollectionTree(EventInfo_p4/McEventInfo)
 CollectionTree(...  DEBUG Opening
 CollectionTree(...  DEBUG    attributes# = 1
 CollectionTree(...  DEBUG Branch container 'EventInfo_p4_McEventInfo'
 CollectionTree(...  DEBUG Opened container CollectionTree(EventInfo_p4/McEventInfo) of type ROOT_Tree
-AthenaPoolConve...   INFO massageEventInfo: unable to get OverrideRunNumberFromInput property from EventSelector 
-ClassIDSvc           INFO  getRegistryEntries: read 11 CLIDRegistry entries for module ALL
 AthenaEventLoopMgr   INFO   ===>>>  start of run 1    <<<===
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #10, run #1 0 events processed so far  <<<===
 ReadData            DEBUG in execute()
@@ -312,8 +268,6 @@ ReadData             INFO Hit x = 1020.49 y = 63.5816 z = -951.864 detector = Du
 ReadData             INFO Hit x = 1023.7 y = 57.9027 z = -953.684 detector = DummyHitDetector
 ReadData             INFO Hit x = 1026.91 y = 52.2238 z = -955.073 detector = DummyHitDetector
 ReadData             INFO Hit x = 1030.12 y = 46.5449 z = -956.169 detector = DummyHitDetector
-ClassIDSvc           INFO  getRegistryEntries: read 10 CLIDRegistry entries for module ALL
-PoolSvc              INFO Database (SimplePoolFile1.root) attribute [BYTES_READ]: 27995
 PoolSvc              INFO Database (SimplePoolFile1.root) attribute [READ_CALLS]: 24
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #10, run #1 1 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -346,7 +300,6 @@ ReadData             INFO Hit x = 1120.49 y = 63.5816 z = -1051.86 detector = Du
 ReadData             INFO Hit x = 1123.7 y = 57.9027 z = -1053.68 detector = DummyHitDetector
 ReadData             INFO Hit x = 1126.91 y = 52.2238 z = -1055.07 detector = DummyHitDetector
 ReadData             INFO Hit x = 1130.12 y = 46.5449 z = -1056.17 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolFile1.root) attribute [BYTES_READ]: 27995
 PoolSvc              INFO Database (SimplePoolFile1.root) attribute [READ_CALLS]: 24
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #11, run #1 2 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -379,7 +332,6 @@ ReadData             INFO Hit x = 1220.49 y = 63.5816 z = -1151.86 detector = Du
 ReadData             INFO Hit x = 1223.7 y = 57.9027 z = -1153.68 detector = DummyHitDetector
 ReadData             INFO Hit x = 1226.91 y = 52.2238 z = -1155.07 detector = DummyHitDetector
 ReadData             INFO Hit x = 1230.12 y = 46.5449 z = -1156.17 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolFile1.root) attribute [BYTES_READ]: 27995
 PoolSvc              INFO Database (SimplePoolFile1.root) attribute [READ_CALLS]: 24
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #12, run #1 3 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -412,7 +364,6 @@ ReadData             INFO Hit x = 1320.49 y = 63.5816 z = -1251.86 detector = Du
 ReadData             INFO Hit x = 1323.7 y = 57.9027 z = -1253.68 detector = DummyHitDetector
 ReadData             INFO Hit x = 1326.91 y = 52.2238 z = -1255.07 detector = DummyHitDetector
 ReadData             INFO Hit x = 1330.12 y = 46.5449 z = -1256.17 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolFile1.root) attribute [BYTES_READ]: 27995
 PoolSvc              INFO Database (SimplePoolFile1.root) attribute [READ_CALLS]: 24
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #13, run #1 4 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -445,7 +396,6 @@ ReadData             INFO Hit x = 1420.49 y = 63.5816 z = -1351.86 detector = Du
 ReadData             INFO Hit x = 1423.7 y = 57.9027 z = -1353.68 detector = DummyHitDetector
 ReadData             INFO Hit x = 1426.91 y = 52.2238 z = -1355.07 detector = DummyHitDetector
 ReadData             INFO Hit x = 1430.12 y = 46.5449 z = -1356.17 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolFile1.root) attribute [BYTES_READ]: 27995
 PoolSvc              INFO Database (SimplePoolFile1.root) attribute [READ_CALLS]: 24
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #14, run #1 5 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -478,7 +428,6 @@ ReadData             INFO Hit x = 1520.49 y = 63.5816 z = -1451.86 detector = Du
 ReadData             INFO Hit x = 1523.7 y = 57.9027 z = -1453.68 detector = DummyHitDetector
 ReadData             INFO Hit x = 1526.91 y = 52.2238 z = -1455.07 detector = DummyHitDetector
 ReadData             INFO Hit x = 1530.12 y = 46.5449 z = -1456.17 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolFile1.root) attribute [BYTES_READ]: 27995
 PoolSvc              INFO Database (SimplePoolFile1.root) attribute [READ_CALLS]: 24
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #15, run #1 6 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -511,7 +460,6 @@ ReadData             INFO Hit x = 1620.49 y = 63.5816 z = -1551.86 detector = Du
 ReadData             INFO Hit x = 1623.7 y = 57.9027 z = -1553.68 detector = DummyHitDetector
 ReadData             INFO Hit x = 1626.91 y = 52.2238 z = -1555.07 detector = DummyHitDetector
 ReadData             INFO Hit x = 1630.12 y = 46.5449 z = -1556.17 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolFile1.root) attribute [BYTES_READ]: 27995
 PoolSvc              INFO Database (SimplePoolFile1.root) attribute [READ_CALLS]: 24
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #16, run #1 7 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -544,7 +492,6 @@ ReadData             INFO Hit x = 1720.49 y = 63.5816 z = -1651.86 detector = Du
 ReadData             INFO Hit x = 1723.7 y = 57.9027 z = -1653.68 detector = DummyHitDetector
 ReadData             INFO Hit x = 1726.91 y = 52.2238 z = -1655.07 detector = DummyHitDetector
 ReadData             INFO Hit x = 1730.12 y = 46.5449 z = -1656.17 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolFile1.root) attribute [BYTES_READ]: 27995
 PoolSvc              INFO Database (SimplePoolFile1.root) attribute [READ_CALLS]: 24
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #17, run #1 8 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -577,7 +524,6 @@ ReadData             INFO Hit x = 1820.49 y = 63.5816 z = -1751.86 detector = Du
 ReadData             INFO Hit x = 1823.7 y = 57.9027 z = -1753.68 detector = DummyHitDetector
 ReadData             INFO Hit x = 1826.91 y = 52.2238 z = -1755.07 detector = DummyHitDetector
 ReadData             INFO Hit x = 1830.12 y = 46.5449 z = -1756.17 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolFile1.root) attribute [BYTES_READ]: 27995
 PoolSvc              INFO Database (SimplePoolFile1.root) attribute [READ_CALLS]: 24
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #18, run #1 9 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -610,17 +556,12 @@ ReadData             INFO Hit x = 1920.49 y = 63.5816 z = -1851.86 detector = Du
 ReadData             INFO Hit x = 1923.7 y = 57.9027 z = -1853.68 detector = DummyHitDetector
 ReadData             INFO Hit x = 1926.91 y = 52.2238 z = -1855.07 detector = DummyHitDetector
 ReadData             INFO Hit x = 1930.12 y = 46.5449 z = -1856.17 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolFile1.root) attribute [BYTES_READ]: 27995
 PoolSvc              INFO Database (SimplePoolFile1.root) attribute [READ_CALLS]: 24
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #19, run #1 10 events processed so far  <<<===
 MetaDataSvc         DEBUG handle() EndInputFile for FID:????
 MetaDataSvc         DEBUG handle() EndTagFile for SimplePoolFile1.root
-Domain[ROOT_All]     INFO ->  Deaccess DbDatabase   READ      [ROOT_All] ????
 Domain[ROOT_All]     INFO >   Deaccess DbDomain     READ      [ROOT_All] 
 EventSelector       DEBUG Try item: "EmptyPoolFile.root" from the collection list.
-DbSession            INFO     Open     DbSession    
-Domain[ROOT_All]     INFO >   Access   DbDomain     READ      [ROOT_All] 
-Domain[ROOT_All]     INFO ->  Access   DbDatabase   READ      [ROOT_All] ????
 Domain[ROOT_All]     INFO                           EmptyPoolFile.root
 EmptyPoolFile.root  DEBUG --> Access   DbContainer  READ      [ROOT_All] ##Shapes
 ##Shapes            DEBUG Opening
@@ -673,13 +614,9 @@ MetaDataHdrForm...  DEBUG Opened container MetaDataHdrForm(DataHeaderForm) of ty
 MetaDataSvc         DEBUG Loaded input meta data store proxies
 MetaDataSvc         DEBUG  calling beginInputFile for ToolSvc.IOVDbMetaDataTool
 MetaDataSvc         DEBUG handle() EndInputFile for eventless EmptyPoolFile.root
-Domain[ROOT_All]     INFO ->  Deaccess DbDatabase   READ      [ROOT_All] ????
 Domain[ROOT_All]     INFO >   Deaccess DbDomain     READ      [ROOT_All] 
 EventSelector       DEBUG Try item: "SimplePoolFile2.root" from the collection list.
 MetaDataSvc         DEBUG handle() BeginTagFile for SimplePoolFile2.root
-DbSession            INFO     Open     DbSession    
-Domain[ROOT_All]     INFO >   Access   DbDomain     READ      [ROOT_All] 
-Domain[ROOT_All]     INFO ->  Access   DbDatabase   READ      [ROOT_All] ????
 Domain[ROOT_All]     INFO                           SimplePoolFile2.root
 SimplePoolFile2...  DEBUG --> Access   DbContainer  READ      [ROOT_All] ##Shapes
 ##Shapes            DEBUG Opening
@@ -718,17 +655,15 @@ SimplePoolFile2...  DEBUG --->Reading Assoc:????/POOLCollectionTree(EventNumber)
 SimplePoolFile2...  DEBUG ---->ClassID:????
 SimplePoolFile2...  DEBUG --->Reading Assoc:????/POOLCollectionTree(MagicNumber) [202]  (9 , ffffffff)
 SimplePoolFile2...  DEBUG ---->ClassID:????
-SimplePoolFile2...  DEBUG --->Reading Assoc:????/POOLContainer(basic/DataHeader) [202]  (a , ffffffff)
-SimplePoolFile2...  DEBUG ---->ClassID:????
-SimplePoolFile2...  DEBUG --->Reading Assoc:????/MetaData(EventStreamInfo_p3/Stream2) [202]  (b , ffffffff)
+SimplePoolFile2...  DEBUG --->Reading Assoc:????/MetaData(EventStreamInfo_p3/Stream2) [202]  (a , ffffffff)
 SimplePoolFile2...  DEBUG ---->ClassID:????
-SimplePoolFile2...  DEBUG --->Reading Assoc:????/MetaDataHdrForm(DataHeaderForm) [202]  (c , ffffffff)
+SimplePoolFile2...  DEBUG --->Reading Assoc:????/MetaDataHdrForm(DataHeaderForm) [202]  (b , ffffffff)
 SimplePoolFile2...  DEBUG ---->ClassID:????
-SimplePoolFile2...  DEBUG --->Reading Assoc:????/MetaDataHdr(DataHeader) [202]  (d , ffffffff)
+SimplePoolFile2...  DEBUG --->Reading Assoc:????/MetaDataHdr(DataHeader) [202]  (c , ffffffff)
 SimplePoolFile2...  DEBUG ---->ClassID:????
-SimplePoolFile2...  DEBUG --->Reading Assoc:????/MetaData(EventStreamInfo_p3/Stream1) [202]  (e , ffffffff)
+SimplePoolFile2...  DEBUG --->Reading Assoc:????/MetaData(EventStreamInfo_p3/Stream1) [202]  (d , ffffffff)
 SimplePoolFile2...  DEBUG ---->ClassID:????
-##Links             DEBUG No objects passing selection criteria... Container has 13 Entries in total.
+##Links             DEBUG No objects passing selection criteria... Container has 12 Entries in total.
 SimplePoolFile2...  DEBUG --> Access   DbContainer  READ      [ROOT_All] ##Params
 ##Params            DEBUG Opening
 ##Params            DEBUG    attributes# = 1
@@ -809,7 +744,6 @@ ReadData             INFO EventInfo event: 0 run: 1
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 26591
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 27
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #0, run #1 11 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -837,7 +771,6 @@ ReadData             INFO EventInfo event: 1 run: 1
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 26591
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 27
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #1, run #1 12 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -865,7 +798,6 @@ ReadData             INFO EventInfo event: 2 run: 1
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 26591
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 27
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #2, run #1 13 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -893,7 +825,6 @@ ReadData             INFO EventInfo event: 3 run: 1
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 26591
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 27
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #3, run #1 14 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -921,7 +852,6 @@ ReadData             INFO EventInfo event: 4 run: 1
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 26591
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 27
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #4, run #1 15 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -949,7 +879,6 @@ ReadData             INFO EventInfo event: 5 run: 1
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 26591
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 27
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #5, run #1 16 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -977,7 +906,6 @@ ReadData             INFO EventInfo event: 6 run: 1
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 26591
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 27
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #6, run #1 17 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1005,7 +933,6 @@ ReadData             INFO EventInfo event: 7 run: 1
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 26591
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 27
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #7, run #1 18 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1033,7 +960,6 @@ ReadData             INFO EventInfo event: 8 run: 1
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 26591
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 27
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #8, run #1 19 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1061,7 +987,6 @@ ReadData             INFO EventInfo event: 9 run: 1
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 26591
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 27
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #9, run #1 20 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1089,7 +1014,6 @@ ReadData             INFO EventInfo event: 10 run: 1
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 26591
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 27
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #10, run #1 21 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1117,7 +1041,6 @@ ReadData             INFO EventInfo event: 11 run: 1
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 26591
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 27
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #11, run #1 22 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1145,7 +1068,6 @@ ReadData             INFO EventInfo event: 12 run: 1
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 26591
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 27
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #12, run #1 23 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1173,7 +1095,6 @@ ReadData             INFO EventInfo event: 13 run: 1
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 26591
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 27
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #13, run #1 24 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1201,7 +1122,6 @@ ReadData             INFO EventInfo event: 14 run: 1
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 26591
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 27
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #14, run #1 25 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1229,7 +1149,6 @@ ReadData             INFO EventInfo event: 15 run: 1
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 26591
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 27
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #15, run #1 26 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1257,7 +1176,6 @@ ReadData             INFO EventInfo event: 16 run: 1
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 26591
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 27
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #16, run #1 27 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1285,7 +1203,6 @@ ReadData             INFO EventInfo event: 17 run: 1
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 26591
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 27
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #17, run #1 28 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1313,7 +1230,6 @@ ReadData             INFO EventInfo event: 18 run: 1
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 26591
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 27
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #18, run #1 29 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1341,7 +1257,6 @@ ReadData             INFO EventInfo event: 19 run: 1
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 26591
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 27
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #19, run #1 30 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1370,7 +1285,6 @@ ReadData             INFO EventInfo event: 20 run: 2
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 28480
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 31
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #20, run #2 31 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1398,7 +1312,6 @@ ReadData             INFO EventInfo event: 21 run: 2
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 28480
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 31
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #21, run #2 32 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1426,7 +1339,6 @@ ReadData             INFO EventInfo event: 22 run: 2
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 28480
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 31
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #22, run #2 33 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1454,7 +1366,6 @@ ReadData             INFO EventInfo event: 23 run: 2
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 28480
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 31
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #23, run #2 34 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1482,7 +1393,6 @@ ReadData             INFO EventInfo event: 24 run: 2
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 28480
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 31
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #24, run #2 35 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1510,7 +1420,6 @@ ReadData             INFO EventInfo event: 25 run: 2
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 28480
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 31
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #25, run #2 36 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1538,7 +1447,6 @@ ReadData             INFO EventInfo event: 26 run: 2
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 28480
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 31
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #26, run #2 37 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1566,7 +1474,6 @@ ReadData             INFO EventInfo event: 27 run: 2
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 28480
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 31
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #27, run #2 38 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1594,7 +1501,6 @@ ReadData             INFO EventInfo event: 28 run: 2
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 28480
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 31
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #28, run #2 39 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1622,7 +1528,6 @@ ReadData             INFO EventInfo event: 29 run: 2
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 28480
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 31
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #29, run #2 40 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1650,7 +1555,6 @@ ReadData             INFO EventInfo event: 30 run: 2
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 28480
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 31
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #30, run #2 41 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1678,7 +1582,6 @@ ReadData             INFO EventInfo event: 31 run: 2
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 28480
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 31
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #31, run #2 42 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1706,7 +1609,6 @@ ReadData             INFO EventInfo event: 32 run: 2
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 28480
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 31
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #32, run #2 43 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1734,7 +1636,6 @@ ReadData             INFO EventInfo event: 33 run: 2
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 28480
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 31
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #33, run #2 44 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1762,7 +1663,6 @@ ReadData             INFO EventInfo event: 34 run: 2
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 28480
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 31
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #34, run #2 45 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1790,7 +1690,6 @@ ReadData             INFO EventInfo event: 35 run: 2
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 28480
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 31
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #35, run #2 46 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1818,7 +1717,6 @@ ReadData             INFO EventInfo event: 36 run: 2
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 28480
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 31
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #36, run #2 47 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1846,7 +1744,6 @@ ReadData             INFO EventInfo event: 37 run: 2
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 28480
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 31
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #37, run #2 48 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1874,7 +1771,6 @@ ReadData             INFO EventInfo event: 38 run: 2
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 28480
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 31
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #38, run #2 49 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1902,18 +1798,13 @@ ReadData             INFO EventInfo event: 39 run: 2
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 28480
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 31
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #39, run #2 50 events processed so far  <<<===
 MetaDataSvc         DEBUG handle() EndInputFile for FID:????
 MetaDataSvc         DEBUG handle() EndTagFile for SimplePoolFile2.root
-Domain[ROOT_All]     INFO ->  Deaccess DbDatabase   READ      [ROOT_All] ????
 Domain[ROOT_All]     INFO >   Deaccess DbDomain     READ      [ROOT_All] 
 EventSelector       DEBUG Try item: "SimplePoolFile3.root" from the collection list.
 MetaDataSvc         DEBUG handle() BeginTagFile for SimplePoolFile3.root
-DbSession            INFO     Open     DbSession    
-Domain[ROOT_All]     INFO >   Access   DbDomain     READ      [ROOT_All] 
-Domain[ROOT_All]     INFO ->  Access   DbDatabase   READ      [ROOT_All] ????
 Domain[ROOT_All]     INFO                           SimplePoolFile3.root
 SimplePoolFile3...  DEBUG --> Access   DbContainer  READ      [ROOT_All] ##Shapes
 ##Shapes            DEBUG Opening
@@ -1956,15 +1847,13 @@ SimplePoolFile3...  DEBUG --->Reading Assoc:????/POOLCollectionTree(EventNumber)
 SimplePoolFile3...  DEBUG ---->ClassID:????
 SimplePoolFile3...  DEBUG --->Reading Assoc:????/POOLCollectionTree(MagicNumber) [202]  (a , ffffffff)
 SimplePoolFile3...  DEBUG ---->ClassID:????
-SimplePoolFile3...  DEBUG --->Reading Assoc:????/POOLContainer(basic/DataHeader) [202]  (b , ffffffff)
+SimplePoolFile3...  DEBUG --->Reading Assoc:????/MetaData(EventStreamInfo_p3/Stream1) [202]  (b , ffffffff)
 SimplePoolFile3...  DEBUG ---->ClassID:????
-SimplePoolFile3...  DEBUG --->Reading Assoc:????/MetaData(EventStreamInfo_p3/Stream1) [202]  (c , ffffffff)
+SimplePoolFile3...  DEBUG --->Reading Assoc:????/MetaDataHdrForm(DataHeaderForm) [202]  (c , ffffffff)
 SimplePoolFile3...  DEBUG ---->ClassID:????
-SimplePoolFile3...  DEBUG --->Reading Assoc:????/MetaDataHdrForm(DataHeaderForm) [202]  (d , ffffffff)
+SimplePoolFile3...  DEBUG --->Reading Assoc:????/MetaDataHdr(DataHeader) [202]  (d , ffffffff)
 SimplePoolFile3...  DEBUG ---->ClassID:????
-SimplePoolFile3...  DEBUG --->Reading Assoc:????/MetaDataHdr(DataHeader) [202]  (e , ffffffff)
-SimplePoolFile3...  DEBUG ---->ClassID:????
-##Links             DEBUG No objects passing selection criteria... Container has 13 Entries in total.
+##Links             DEBUG No objects passing selection criteria... Container has 12 Entries in total.
 SimplePoolFile3...  DEBUG --> Access   DbContainer  READ      [ROOT_All] ##Params
 ##Params            DEBUG Opening
 ##Params            DEBUG    attributes# = 1
@@ -2041,7 +1930,6 @@ CollectionTree(...  DEBUG    attributes# = 1
 CollectionTree(...  DEBUG Branch container 'ExampleTrackContainer_p1_MyTracks'
 CollectionTree(...  DEBUG Opened container CollectionTree(ExampleTrackContainer_p1/MyTracks) of type ROOT_Tree
 ReadData             INFO Track pt = 74.8928 eta = 3.1676 phi = 2.6161 detector = Track made in: DummyHitDetector
-Domain[ROOT_All]     INFO ->  Access   DbDatabase   READ      [ROOT_All] ????
 Domain[ROOT_All]     INFO                           SimplePoolFile1.root
 SimplePoolFile1...  DEBUG --> Access   DbContainer  READ      [ROOT_All] ##Shapes
 ##Shapes            DEBUG Opening
@@ -2084,15 +1972,13 @@ SimplePoolFile1...  DEBUG --->Reading Assoc:????/POOLCollectionTree(EventNumber)
 SimplePoolFile1...  DEBUG ---->ClassID:????
 SimplePoolFile1...  DEBUG --->Reading Assoc:????/POOLCollectionTree(MagicNumber) [202]  (a , ffffffff)
 SimplePoolFile1...  DEBUG ---->ClassID:????
-SimplePoolFile1...  DEBUG --->Reading Assoc:????/POOLContainer(basic/DataHeader) [202]  (b , ffffffff)
-SimplePoolFile1...  DEBUG ---->ClassID:????
-SimplePoolFile1...  DEBUG --->Reading Assoc:????/MetaData(EventStreamInfo_p3/Stream1) [202]  (c , ffffffff)
+SimplePoolFile1...  DEBUG --->Reading Assoc:????/MetaData(EventStreamInfo_p3/Stream1) [202]  (b , ffffffff)
 SimplePoolFile1...  DEBUG ---->ClassID:????
-SimplePoolFile1...  DEBUG --->Reading Assoc:????/MetaDataHdrForm(DataHeaderForm) [202]  (d , ffffffff)
+SimplePoolFile1...  DEBUG --->Reading Assoc:????/MetaDataHdrForm(DataHeaderForm) [202]  (c , ffffffff)
 SimplePoolFile1...  DEBUG ---->ClassID:????
-SimplePoolFile1...  DEBUG --->Reading Assoc:????/MetaDataHdr(DataHeader) [202]  (e , ffffffff)
+SimplePoolFile1...  DEBUG --->Reading Assoc:????/MetaDataHdr(DataHeader) [202]  (d , ffffffff)
 SimplePoolFile1...  DEBUG ---->ClassID:????
-##Links             DEBUG No objects passing selection criteria... Container has 13 Entries in total.
+##Links             DEBUG No objects passing selection criteria... Container has 12 Entries in total.
 SimplePoolFile1...  DEBUG --> Access   DbContainer  READ      [ROOT_All] ##Params
 ##Params            DEBUG Opening
 ##Params            DEBUG    attributes# = 1
@@ -2141,7 +2027,6 @@ ReadData             INFO Hit x = 20.4945 y = 63.5816 z = 48.1358 detector = Dum
 ReadData             INFO Hit x = 23.7045 y = 57.9027 z = 46.3159 detector = DummyHitDetector
 ReadData             INFO Hit x = 26.9145 y = 52.2238 z = 44.9265 detector = DummyHitDetector
 ReadData             INFO Hit x = 30.1245 y = 46.5449 z = 43.831 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 27200
 PoolSvc              INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 23
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #0, run #1 51 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -2188,7 +2073,6 @@ ReadData             INFO Hit x = 120.494 y = 63.5816 z = -51.8642 detector = Du
 ReadData             INFO Hit x = 123.704 y = 57.9027 z = -53.6841 detector = DummyHitDetector
 ReadData             INFO Hit x = 126.915 y = 52.2238 z = -55.0735 detector = DummyHitDetector
 ReadData             INFO Hit x = 130.125 y = 46.5449 z = -56.169 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 27200
 PoolSvc              INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 23
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #1, run #1 52 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -2235,7 +2119,6 @@ ReadData             INFO Hit x = 220.494 y = 63.5816 z = -151.864 detector = Du
 ReadData             INFO Hit x = 223.704 y = 57.9027 z = -153.684 detector = DummyHitDetector
 ReadData             INFO Hit x = 226.915 y = 52.2238 z = -155.073 detector = DummyHitDetector
 ReadData             INFO Hit x = 230.125 y = 46.5449 z = -156.169 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 27200
 PoolSvc              INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 23
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #2, run #1 53 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -2282,7 +2165,6 @@ ReadData             INFO Hit x = 320.495 y = 63.5816 z = -251.864 detector = Du
 ReadData             INFO Hit x = 323.705 y = 57.9027 z = -253.684 detector = DummyHitDetector
 ReadData             INFO Hit x = 326.915 y = 52.2238 z = -255.073 detector = DummyHitDetector
 ReadData             INFO Hit x = 330.125 y = 46.5449 z = -256.169 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 27200
 PoolSvc              INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 23
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #3, run #1 54 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -2329,7 +2211,6 @@ ReadData             INFO Hit x = 420.495 y = 63.5816 z = -351.864 detector = Du
 ReadData             INFO Hit x = 423.705 y = 57.9027 z = -353.684 detector = DummyHitDetector
 ReadData             INFO Hit x = 426.915 y = 52.2238 z = -355.073 detector = DummyHitDetector
 ReadData             INFO Hit x = 430.125 y = 46.5449 z = -356.169 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 27200
 PoolSvc              INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 23
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #4, run #1 55 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -2376,7 +2257,6 @@ ReadData             INFO Hit x = 520.495 y = 63.5816 z = -451.864 detector = Du
 ReadData             INFO Hit x = 523.705 y = 57.9027 z = -453.684 detector = DummyHitDetector
 ReadData             INFO Hit x = 526.914 y = 52.2238 z = -455.073 detector = DummyHitDetector
 ReadData             INFO Hit x = 530.125 y = 46.5449 z = -456.169 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 27200
 PoolSvc              INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 23
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #5, run #1 56 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -2423,7 +2303,6 @@ ReadData             INFO Hit x = 620.495 y = 63.5816 z = -551.864 detector = Du
 ReadData             INFO Hit x = 623.705 y = 57.9027 z = -553.684 detector = DummyHitDetector
 ReadData             INFO Hit x = 626.914 y = 52.2238 z = -555.073 detector = DummyHitDetector
 ReadData             INFO Hit x = 630.125 y = 46.5449 z = -556.169 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 27200
 PoolSvc              INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 23
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #6, run #1 57 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -2470,7 +2349,6 @@ ReadData             INFO Hit x = 720.495 y = 63.5816 z = -651.864 detector = Du
 ReadData             INFO Hit x = 723.705 y = 57.9027 z = -653.684 detector = DummyHitDetector
 ReadData             INFO Hit x = 726.914 y = 52.2238 z = -655.073 detector = DummyHitDetector
 ReadData             INFO Hit x = 730.125 y = 46.5449 z = -656.169 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 27200
 PoolSvc              INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 23
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #7, run #1 58 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -2517,7 +2395,6 @@ ReadData             INFO Hit x = 820.495 y = 63.5816 z = -751.864 detector = Du
 ReadData             INFO Hit x = 823.705 y = 57.9027 z = -753.684 detector = DummyHitDetector
 ReadData             INFO Hit x = 826.914 y = 52.2238 z = -755.073 detector = DummyHitDetector
 ReadData             INFO Hit x = 830.125 y = 46.5449 z = -756.169 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 27200
 PoolSvc              INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 23
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #8, run #1 59 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -2564,7 +2441,6 @@ ReadData             INFO Hit x = 920.495 y = 63.5816 z = -851.864 detector = Du
 ReadData             INFO Hit x = 923.705 y = 57.9027 z = -853.684 detector = DummyHitDetector
 ReadData             INFO Hit x = 926.914 y = 52.2238 z = -855.073 detector = DummyHitDetector
 ReadData             INFO Hit x = 930.125 y = 46.5449 z = -856.169 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 27200
 PoolSvc              INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 23
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #9, run #1 60 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -2611,7 +2487,6 @@ ReadData             INFO Hit x = 1020.49 y = 63.5816 z = -951.864 detector = Du
 ReadData             INFO Hit x = 1023.7 y = 57.9027 z = -953.684 detector = DummyHitDetector
 ReadData             INFO Hit x = 1026.91 y = 52.2238 z = -955.073 detector = DummyHitDetector
 ReadData             INFO Hit x = 1030.12 y = 46.5449 z = -956.169 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 27200
 PoolSvc              INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 23
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #10, run #1 61 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -2658,7 +2533,6 @@ ReadData             INFO Hit x = 1120.49 y = 63.5816 z = -1051.86 detector = Du
 ReadData             INFO Hit x = 1123.7 y = 57.9027 z = -1053.68 detector = DummyHitDetector
 ReadData             INFO Hit x = 1126.91 y = 52.2238 z = -1055.07 detector = DummyHitDetector
 ReadData             INFO Hit x = 1130.12 y = 46.5449 z = -1056.17 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 27200
 PoolSvc              INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 23
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #11, run #1 62 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -2705,7 +2579,6 @@ ReadData             INFO Hit x = 1220.49 y = 63.5816 z = -1151.86 detector = Du
 ReadData             INFO Hit x = 1223.7 y = 57.9027 z = -1153.68 detector = DummyHitDetector
 ReadData             INFO Hit x = 1226.91 y = 52.2238 z = -1155.07 detector = DummyHitDetector
 ReadData             INFO Hit x = 1230.12 y = 46.5449 z = -1156.17 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 27200
 PoolSvc              INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 23
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #12, run #1 63 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -2752,7 +2625,6 @@ ReadData             INFO Hit x = 1320.49 y = 63.5816 z = -1251.86 detector = Du
 ReadData             INFO Hit x = 1323.7 y = 57.9027 z = -1253.68 detector = DummyHitDetector
 ReadData             INFO Hit x = 1326.91 y = 52.2238 z = -1255.07 detector = DummyHitDetector
 ReadData             INFO Hit x = 1330.12 y = 46.5449 z = -1256.17 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 27200
 PoolSvc              INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 23
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #13, run #1 64 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -2799,7 +2671,6 @@ ReadData             INFO Hit x = 1420.49 y = 63.5816 z = -1351.86 detector = Du
 ReadData             INFO Hit x = 1423.7 y = 57.9027 z = -1353.68 detector = DummyHitDetector
 ReadData             INFO Hit x = 1426.91 y = 52.2238 z = -1355.07 detector = DummyHitDetector
 ReadData             INFO Hit x = 1430.12 y = 46.5449 z = -1356.17 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 27200
 PoolSvc              INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 23
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #14, run #1 65 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -2846,7 +2717,6 @@ ReadData             INFO Hit x = 1520.49 y = 63.5816 z = -1451.86 detector = Du
 ReadData             INFO Hit x = 1523.7 y = 57.9027 z = -1453.68 detector = DummyHitDetector
 ReadData             INFO Hit x = 1526.91 y = 52.2238 z = -1455.07 detector = DummyHitDetector
 ReadData             INFO Hit x = 1530.12 y = 46.5449 z = -1456.17 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 27200
 PoolSvc              INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 23
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #15, run #1 66 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -2893,7 +2763,6 @@ ReadData             INFO Hit x = 1620.49 y = 63.5816 z = -1551.86 detector = Du
 ReadData             INFO Hit x = 1623.7 y = 57.9027 z = -1553.68 detector = DummyHitDetector
 ReadData             INFO Hit x = 1626.91 y = 52.2238 z = -1555.07 detector = DummyHitDetector
 ReadData             INFO Hit x = 1630.12 y = 46.5449 z = -1556.17 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 27200
 PoolSvc              INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 23
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #16, run #1 67 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -2940,7 +2809,6 @@ ReadData             INFO Hit x = 1720.49 y = 63.5816 z = -1651.86 detector = Du
 ReadData             INFO Hit x = 1723.7 y = 57.9027 z = -1653.68 detector = DummyHitDetector
 ReadData             INFO Hit x = 1726.91 y = 52.2238 z = -1655.07 detector = DummyHitDetector
 ReadData             INFO Hit x = 1730.12 y = 46.5449 z = -1656.17 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 27200
 PoolSvc              INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 23
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #17, run #1 68 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -2987,7 +2855,6 @@ ReadData             INFO Hit x = 1820.49 y = 63.5816 z = -1751.86 detector = Du
 ReadData             INFO Hit x = 1823.7 y = 57.9027 z = -1753.68 detector = DummyHitDetector
 ReadData             INFO Hit x = 1826.91 y = 52.2238 z = -1755.07 detector = DummyHitDetector
 ReadData             INFO Hit x = 1830.12 y = 46.5449 z = -1756.17 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 27200
 PoolSvc              INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 23
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #18, run #1 69 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -3034,30 +2901,22 @@ ReadData             INFO Hit x = 1920.49 y = 63.5816 z = -1851.86 detector = Du
 ReadData             INFO Hit x = 1923.7 y = 57.9027 z = -1853.68 detector = DummyHitDetector
 ReadData             INFO Hit x = 1926.91 y = 52.2238 z = -1855.07 detector = DummyHitDetector
 ReadData             INFO Hit x = 1930.12 y = 46.5449 z = -1856.17 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 27200
 PoolSvc              INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 23
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #19, run #1 70 events processed so far  <<<===
 MetaDataSvc         DEBUG handle() EndInputFile for FID:????
 MetaDataSvc         DEBUG handle() EndTagFile for SimplePoolFile3.root
-Domain[ROOT_All]     INFO ->  Deaccess DbDatabase   READ      [ROOT_All] ????
 MetaDataSvc         DEBUG handle() LastInputFile for end
 AthenaEventLoopMgr   INFO No more events in event selection 
 MetaDataSvc         DEBUG  calling metaDataStop for ToolSvc.IOVDbMetaDataTool
 MetaDataSvc         DEBUG Releasing MetaDataTools
-Domain[ROOT_All]     INFO ->  Deaccess DbDatabase   READ      [ROOT_All] ????
 Domain[ROOT_All]     INFO >   Deaccess DbDomain     READ      [ROOT_All] 
 ApplicationMgr       INFO Application Manager Stopped successfully
-IncidentProcAlg1     INFO Finalize
 ReadData             INFO in finalize()
-IncidentProcAlg2     INFO Finalize
 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 ****************************************************************************************************
-cObjR_ALL            INFO Time User   : Tot=   30 [ms] Ave/Min/Max= 0.11(+- 1.04)/    0/   10 [ms] #=272
-cObj_ALL             INFO Time User   : Tot=   60 [ms] Ave/Min/Max=0.271(+- 1.88)/    0/   20 [ms] #=221
-ChronoStatSvc        INFO Time User   : Tot= 1.14  [s]                                             #=  1
 *****Chrono*****     INFO ****************************************************************************************************
 ChronoStatSvc.f...   INFO  Service finalized successfully 
 ApplicationMgr       INFO Application Manager Finalized successfully
diff --git a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_ReadAgain.ref b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_ReadAgain.ref
index ace67d91e90ded7fdb472d0470a11097198f7cf0..27101030ae57f9cb503d0ec13b7ec4320778a5c4 100644
--- a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_ReadAgain.ref
+++ b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_ReadAgain.ref
@@ -1,54 +1,26 @@
-Mon Jan 22 13:13:28 CST 2018
-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_ReadAgainJobOptions.py"
-Py:ConfigurableDb    INFO Read module info for 5435 configurables from 52 genConfDb files
-Py:ConfigurableDb    INFO No duplicates have been found: that's good !
 Athena               INFO including file "AthenaCommon/runbatch.py"
-[?1034hApplicationMgr       INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0
-ApplicationMgr    SUCCESS 
-====================================================================================================================================
-                                                   Welcome to ApplicationMgr (GaudiCoreSvc v30r1)
-                                          running on atlas1.hep.anl.gov on Mon Jan 22 13:13:43 2018
-====================================================================================================================================
-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 2319 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
-ReadData            DEBUG Property update for OutputLevel : new value = 2
 ReadData             INFO in initialize()
-MetaDataSvc         DEBUG Property update for OutputLevel : new value = 2
-MetaDataSvc          INFO Initializing MetaDataSvc - package version AthenaServices-00-00-00
-AthenaPoolCnvSvc     INFO Initializing AthenaPoolCnvSvc - package version AthenaPoolCnvSvc-00-00-00
-PoolSvc             DEBUG Property update for OutputLevel : new value = 2
 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://lcgft-atlas.gridpp.rl.ac.uk:3128/frontierATLAS)(serverurl=http://frontier-atlas.lcg.triumf.ca:3128/ATLAS_frontier)(serverurl=http://ccfrontier.in2p3.fr:23128/ccin2p3-AtlasFrontier) will be considered for COOL data
-DBReplicaSvc         INFO Read replica configuration from /users/gemmeren/workarea/build/x86_64-slc6-gcc62-opt/share/dbreplica.config
-DBReplicaSvc         INFO Total of 1 servers found for host atlas1.hep.anl.gov [ATLF ]
 PoolSvc              INFO Successfully setup replica sorting algorithm
 PoolSvc             DEBUG OutputLevel is 
 PoolSvc              INFO Setting up APR FileCatalog and Streams
 PoolSvc              INFO POOL WriteCatalog is file:Catalog1.xml
-DbSession            INFO     Open     DbSession    
-Domain[ROOT_All]     INFO >   Access   DbDomain     READ      [ROOT_All] 
-EventSelector       DEBUG Property update for OutputLevel : new value = 2
-EventSelector        INFO Initializing EventSelector - package version EventSelectorAthenaPool-00-00-00
 IoComponentMgr       INFO IoComponent EventSelector has already had file EmptyPoolFile.root registered with i/o mode READ
 EventSelector        INFO reinitialization...
 EventSelector        INFO EventSelection with query 
 EventSelector       DEBUG Try item: "EmptyPoolFile.root" from the collection list.
-Domain[ROOT_All]     INFO ->  Access   DbDatabase   READ      [ROOT_All] ????
 Domain[ROOT_All]     INFO                           EmptyPoolFile.root
 EmptyPoolFile.root  DEBUG --> Access   DbContainer  READ      [ROOT_All] ##Shapes
 ##Shapes            DEBUG Opening
@@ -86,12 +58,8 @@ EmptyPoolFile.root  DEBUG --->Reading Param:FORMAT_VSN=[1.1]
 PoolSvc              INFO Failed to find container POOLContainer(DataHeader) to create POOL collection.
 PoolSvc              INFO Failed to find container POOLContainer_DataHeader to create POOL collection.
 EventSelector       DEBUG No events found in: EmptyPoolFile.root skipped!!!
-Domain[ROOT_All]     INFO ->  Deaccess DbDatabase   READ      [ROOT_All] ????
 Domain[ROOT_All]     INFO >   Deaccess DbDomain     READ      [ROOT_All] 
 EventSelector       DEBUG Try item: "SimplePoolReplica1.root" from the collection list.
-DbSession            INFO     Open     DbSession    
-Domain[ROOT_All]     INFO >   Access   DbDomain     READ      [ROOT_All] 
-Domain[ROOT_All]     INFO ->  Access   DbDatabase   READ      [ROOT_All] ????
 Domain[ROOT_All]     INFO                           SimplePoolReplica1.root
 SimplePoolRepli...  DEBUG --> Access   DbContainer  READ      [ROOT_All] ##Shapes
 ##Shapes            DEBUG Opening
@@ -122,15 +90,13 @@ SimplePoolRepli...  DEBUG --->Reading Assoc:????/POOLContainerForm(DataHeaderFor
 SimplePoolRepli...  DEBUG ---->ClassID:????
 SimplePoolRepli...  DEBUG --->Reading Assoc:????/POOLContainer(DataHeader) [202]  (6 , ffffffff)
 SimplePoolRepli...  DEBUG ---->ClassID:????
-SimplePoolRepli...  DEBUG --->Reading Assoc:????/POOLContainer(basic/DataHeader) [202]  (7 , ffffffff)
+SimplePoolRepli...  DEBUG --->Reading Assoc:????/MetaData(EventStreamInfo_p3/Stream1) [202]  (7 , ffffffff)
 SimplePoolRepli...  DEBUG ---->ClassID:????
-SimplePoolRepli...  DEBUG --->Reading Assoc:????/MetaData(EventStreamInfo_p3/Stream1) [202]  (8 , ffffffff)
+SimplePoolRepli...  DEBUG --->Reading Assoc:????/MetaDataHdrForm(DataHeaderForm) [202]  (8 , ffffffff)
 SimplePoolRepli...  DEBUG ---->ClassID:????
-SimplePoolRepli...  DEBUG --->Reading Assoc:????/MetaDataHdrForm(DataHeaderForm) [202]  (9 , ffffffff)
+SimplePoolRepli...  DEBUG --->Reading Assoc:????/MetaDataHdr(DataHeader) [202]  (9 , ffffffff)
 SimplePoolRepli...  DEBUG ---->ClassID:????
-SimplePoolRepli...  DEBUG --->Reading Assoc:????/MetaDataHdr(DataHeader) [202]  (a , ffffffff)
-SimplePoolRepli...  DEBUG ---->ClassID:????
-##Links             DEBUG No objects passing selection criteria... Container has 9 Entries in total.
+##Links             DEBUG No objects passing selection criteria... Container has 8 Entries in total.
 SimplePoolRepli...  DEBUG --> Access   DbContainer  READ      [ROOT_All] ##Params
 ##Params            DEBUG Opening
 ##Params            DEBUG    attributes# = 1
@@ -159,19 +125,11 @@ MetaDataHdrForm...  DEBUG    attributes# = 1
 MetaDataHdrForm...  DEBUG Branch container 'DataHeaderForm'
 MetaDataHdrForm...  DEBUG Opened container MetaDataHdrForm(DataHeaderForm) of type ROOT_Tree
 MetaDataSvc         DEBUG Loaded input meta data store proxies
-AthenaPoolAddre...  DEBUG Property update for OutputLevel : new value = 2
-ReadData            DEBUG input handles: 0
-ReadData            DEBUG output handles: 0
-ReadData            DEBUG Data Deps for ReadData
 HistogramPersis...WARNING Histograms saving not required.
 AthenaEventLoopMgr   INFO Setup EventSelector service EventSelector
 ApplicationMgr       INFO Application Manager Initialized successfully
-Domain[ROOT_All]     INFO ->  Deaccess DbDatabase   READ      [ROOT_All] ????
 Domain[ROOT_All]     INFO >   Deaccess DbDomain     READ      [ROOT_All] 
 EventSelector       DEBUG Try item: "EmptyPoolFile.root" from the collection list.
-DbSession            INFO     Open     DbSession    
-Domain[ROOT_All]     INFO >   Access   DbDomain     READ      [ROOT_All] 
-Domain[ROOT_All]     INFO ->  Access   DbDatabase   READ      [ROOT_All] ????
 Domain[ROOT_All]     INFO                           EmptyPoolFile.root
 EmptyPoolFile.root  DEBUG --> Access   DbContainer  READ      [ROOT_All] ##Shapes
 ##Shapes            DEBUG Opening
@@ -224,12 +182,8 @@ MetaDataHdrForm...  DEBUG Opened container MetaDataHdrForm(DataHeaderForm) of ty
 MetaDataSvc         DEBUG Loaded input meta data store proxies
 MetaDataSvc         DEBUG  calling beginInputFile for ToolSvc.IOVDbMetaDataTool
 MetaDataSvc         DEBUG handle() EndInputFile for eventless EmptyPoolFile.root
-Domain[ROOT_All]     INFO ->  Deaccess DbDatabase   READ      [ROOT_All] ????
 Domain[ROOT_All]     INFO >   Deaccess DbDomain     READ      [ROOT_All] 
 EventSelector       DEBUG Try item: "SimplePoolReplica1.root" from the collection list.
-DbSession            INFO     Open     DbSession    
-Domain[ROOT_All]     INFO >   Access   DbDomain     READ      [ROOT_All] 
-Domain[ROOT_All]     INFO ->  Access   DbDatabase   READ      [ROOT_All] ????
 Domain[ROOT_All]     INFO                           SimplePoolReplica1.root
 SimplePoolRepli...  DEBUG --> Access   DbContainer  READ      [ROOT_All] ##Shapes
 ##Shapes            DEBUG Opening
@@ -260,15 +214,13 @@ SimplePoolRepli...  DEBUG --->Reading Assoc:????/POOLContainerForm(DataHeaderFor
 SimplePoolRepli...  DEBUG ---->ClassID:????
 SimplePoolRepli...  DEBUG --->Reading Assoc:????/POOLContainer(DataHeader) [202]  (6 , ffffffff)
 SimplePoolRepli...  DEBUG ---->ClassID:????
-SimplePoolRepli...  DEBUG --->Reading Assoc:????/POOLContainer(basic/DataHeader) [202]  (7 , ffffffff)
-SimplePoolRepli...  DEBUG ---->ClassID:????
-SimplePoolRepli...  DEBUG --->Reading Assoc:????/MetaData(EventStreamInfo_p3/Stream1) [202]  (8 , ffffffff)
+SimplePoolRepli...  DEBUG --->Reading Assoc:????/MetaData(EventStreamInfo_p3/Stream1) [202]  (7 , ffffffff)
 SimplePoolRepli...  DEBUG ---->ClassID:????
-SimplePoolRepli...  DEBUG --->Reading Assoc:????/MetaDataHdrForm(DataHeaderForm) [202]  (9 , ffffffff)
+SimplePoolRepli...  DEBUG --->Reading Assoc:????/MetaDataHdrForm(DataHeaderForm) [202]  (8 , ffffffff)
 SimplePoolRepli...  DEBUG ---->ClassID:????
-SimplePoolRepli...  DEBUG --->Reading Assoc:????/MetaDataHdr(DataHeader) [202]  (a , ffffffff)
+SimplePoolRepli...  DEBUG --->Reading Assoc:????/MetaDataHdr(DataHeader) [202]  (9 , ffffffff)
 SimplePoolRepli...  DEBUG ---->ClassID:????
-##Links             DEBUG No objects passing selection criteria... Container has 9 Entries in total.
+##Links             DEBUG No objects passing selection criteria... Container has 8 Entries in total.
 SimplePoolRepli...  DEBUG --> Access   DbContainer  READ      [ROOT_All] ##Params
 ##Params            DEBUG Opening
 ##Params            DEBUG    attributes# = 1
@@ -318,7 +270,6 @@ EventSelector        INFO skipping event 9
 EventSelector        INFO skipping event 10
 EventSelector       DEBUG Get AttributeList from the collection
 EventSelector       DEBUG AttributeList size 0
-ClassIDSvc           INFO  getRegistryEntries: read 2671 CLIDRegistry entries for module ALL
 EventSelector       DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000000A].
 EventSelector       DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000000A].
 EventSelector       DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000000A]
@@ -330,14 +281,11 @@ POOLContainerFo...  DEBUG Opened container POOLContainerForm(DataHeaderForm) of
 AthenaPoolAddre...  DEBUG The current Event contains: 3 objects
 AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo
 AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 9102, name = MyHits
-AlgResourcePool      INFO TopAlg list empty. Recovering the one of Application Manager
 SimplePoolRepli...  DEBUG --> Access   DbContainer  READ      [ROOT_Tree] CollectionTree(EventInfo_p4/McEventInfo)
 CollectionTree(...  DEBUG Opening
 CollectionTree(...  DEBUG    attributes# = 1
 CollectionTree(...  DEBUG Branch container 'EventInfo_p4_McEventInfo'
 CollectionTree(...  DEBUG Opened container CollectionTree(EventInfo_p4/McEventInfo) of type ROOT_Tree
-AthenaPoolConve...   INFO massageEventInfo: unable to get OverrideRunNumberFromInput property from EventSelector 
-ClassIDSvc           INFO  getRegistryEntries: read 11 CLIDRegistry entries for module ALL
 AthenaEventLoopMgr   INFO   ===>>>  start of run 1    <<<===
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #10, run #1 0 events processed so far  <<<===
 ReadData            DEBUG in execute()
@@ -371,8 +319,6 @@ ReadData             INFO Hit x = 1020.49 y = 63.5816 z = -951.864 detector = Du
 ReadData             INFO Hit x = 1023.7 y = 57.9027 z = -953.684 detector = DummyHitDetector
 ReadData             INFO Hit x = 1026.91 y = 52.2238 z = -955.073 detector = DummyHitDetector
 ReadData             INFO Hit x = 1030.12 y = 46.5449 z = -956.169 detector = DummyHitDetector
-ClassIDSvc           INFO  getRegistryEntries: read 10 CLIDRegistry entries for module ALL
-PoolSvc              INFO Database (SimplePoolReplica1.root) attribute [BYTES_READ]: 27430
 PoolSvc              INFO Database (SimplePoolReplica1.root) attribute [READ_CALLS]: 24
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #10, run #1 1 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -405,7 +351,6 @@ ReadData             INFO Hit x = 1120.49 y = 63.5816 z = -1051.86 detector = Du
 ReadData             INFO Hit x = 1123.7 y = 57.9027 z = -1053.68 detector = DummyHitDetector
 ReadData             INFO Hit x = 1126.91 y = 52.2238 z = -1055.07 detector = DummyHitDetector
 ReadData             INFO Hit x = 1130.12 y = 46.5449 z = -1056.17 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolReplica1.root) attribute [BYTES_READ]: 27430
 PoolSvc              INFO Database (SimplePoolReplica1.root) attribute [READ_CALLS]: 24
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #11, run #1 2 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -438,7 +383,6 @@ ReadData             INFO Hit x = 1220.49 y = 63.5816 z = -1151.86 detector = Du
 ReadData             INFO Hit x = 1223.7 y = 57.9027 z = -1153.68 detector = DummyHitDetector
 ReadData             INFO Hit x = 1226.91 y = 52.2238 z = -1155.07 detector = DummyHitDetector
 ReadData             INFO Hit x = 1230.12 y = 46.5449 z = -1156.17 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolReplica1.root) attribute [BYTES_READ]: 27430
 PoolSvc              INFO Database (SimplePoolReplica1.root) attribute [READ_CALLS]: 24
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #12, run #1 3 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -471,7 +415,6 @@ ReadData             INFO Hit x = 1320.49 y = 63.5816 z = -1251.86 detector = Du
 ReadData             INFO Hit x = 1323.7 y = 57.9027 z = -1253.68 detector = DummyHitDetector
 ReadData             INFO Hit x = 1326.91 y = 52.2238 z = -1255.07 detector = DummyHitDetector
 ReadData             INFO Hit x = 1330.12 y = 46.5449 z = -1256.17 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolReplica1.root) attribute [BYTES_READ]: 27430
 PoolSvc              INFO Database (SimplePoolReplica1.root) attribute [READ_CALLS]: 24
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #13, run #1 4 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -504,7 +447,6 @@ ReadData             INFO Hit x = 1420.49 y = 63.5816 z = -1351.86 detector = Du
 ReadData             INFO Hit x = 1423.7 y = 57.9027 z = -1353.68 detector = DummyHitDetector
 ReadData             INFO Hit x = 1426.91 y = 52.2238 z = -1355.07 detector = DummyHitDetector
 ReadData             INFO Hit x = 1430.12 y = 46.5449 z = -1356.17 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolReplica1.root) attribute [BYTES_READ]: 27430
 PoolSvc              INFO Database (SimplePoolReplica1.root) attribute [READ_CALLS]: 24
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #14, run #1 5 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -537,7 +479,6 @@ ReadData             INFO Hit x = 1520.49 y = 63.5816 z = -1451.86 detector = Du
 ReadData             INFO Hit x = 1523.7 y = 57.9027 z = -1453.68 detector = DummyHitDetector
 ReadData             INFO Hit x = 1526.91 y = 52.2238 z = -1455.07 detector = DummyHitDetector
 ReadData             INFO Hit x = 1530.12 y = 46.5449 z = -1456.17 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolReplica1.root) attribute [BYTES_READ]: 27430
 PoolSvc              INFO Database (SimplePoolReplica1.root) attribute [READ_CALLS]: 24
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #15, run #1 6 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -570,7 +511,6 @@ ReadData             INFO Hit x = 1620.49 y = 63.5816 z = -1551.86 detector = Du
 ReadData             INFO Hit x = 1623.7 y = 57.9027 z = -1553.68 detector = DummyHitDetector
 ReadData             INFO Hit x = 1626.91 y = 52.2238 z = -1555.07 detector = DummyHitDetector
 ReadData             INFO Hit x = 1630.12 y = 46.5449 z = -1556.17 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolReplica1.root) attribute [BYTES_READ]: 27430
 PoolSvc              INFO Database (SimplePoolReplica1.root) attribute [READ_CALLS]: 24
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #16, run #1 7 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -603,7 +543,6 @@ ReadData             INFO Hit x = 1720.49 y = 63.5816 z = -1651.86 detector = Du
 ReadData             INFO Hit x = 1723.7 y = 57.9027 z = -1653.68 detector = DummyHitDetector
 ReadData             INFO Hit x = 1726.91 y = 52.2238 z = -1655.07 detector = DummyHitDetector
 ReadData             INFO Hit x = 1730.12 y = 46.5449 z = -1656.17 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolReplica1.root) attribute [BYTES_READ]: 27430
 PoolSvc              INFO Database (SimplePoolReplica1.root) attribute [READ_CALLS]: 24
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #17, run #1 8 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -636,7 +575,6 @@ ReadData             INFO Hit x = 1820.49 y = 63.5816 z = -1751.86 detector = Du
 ReadData             INFO Hit x = 1823.7 y = 57.9027 z = -1753.68 detector = DummyHitDetector
 ReadData             INFO Hit x = 1826.91 y = 52.2238 z = -1755.07 detector = DummyHitDetector
 ReadData             INFO Hit x = 1830.12 y = 46.5449 z = -1756.17 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolReplica1.root) attribute [BYTES_READ]: 27430
 PoolSvc              INFO Database (SimplePoolReplica1.root) attribute [READ_CALLS]: 24
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #18, run #1 9 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -669,17 +607,12 @@ ReadData             INFO Hit x = 1920.49 y = 63.5816 z = -1851.86 detector = Du
 ReadData             INFO Hit x = 1923.7 y = 57.9027 z = -1853.68 detector = DummyHitDetector
 ReadData             INFO Hit x = 1926.91 y = 52.2238 z = -1855.07 detector = DummyHitDetector
 ReadData             INFO Hit x = 1930.12 y = 46.5449 z = -1856.17 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolReplica1.root) attribute [BYTES_READ]: 27430
 PoolSvc              INFO Database (SimplePoolReplica1.root) attribute [READ_CALLS]: 24
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #19, run #1 10 events processed so far  <<<===
-Domain[ROOT_All]     INFO ->  Deaccess DbDatabase   READ      [ROOT_All] ????
 Domain[ROOT_All]     INFO >   Deaccess DbDomain     READ      [ROOT_All] 
 MetaDataSvc         DEBUG handle() EndInputFile for FID:????
 MetaDataSvc         DEBUG handle() EndTagFile for SimplePoolReplica1.root
 EventSelector       DEBUG Try item: "EmptyPoolFile.root" from the collection list.
-DbSession            INFO     Open     DbSession    
-Domain[ROOT_All]     INFO >   Access   DbDomain     READ      [ROOT_All] 
-Domain[ROOT_All]     INFO ->  Access   DbDatabase   READ      [ROOT_All] ????
 Domain[ROOT_All]     INFO                           EmptyPoolFile.root
 EmptyPoolFile.root  DEBUG --> Access   DbContainer  READ      [ROOT_All] ##Shapes
 ##Shapes            DEBUG Opening
@@ -732,13 +665,9 @@ MetaDataHdrForm...  DEBUG Opened container MetaDataHdrForm(DataHeaderForm) of ty
 MetaDataSvc         DEBUG Loaded input meta data store proxies
 MetaDataSvc         DEBUG  calling beginInputFile for ToolSvc.IOVDbMetaDataTool
 MetaDataSvc         DEBUG handle() EndInputFile for eventless EmptyPoolFile.root
-Domain[ROOT_All]     INFO ->  Deaccess DbDatabase   READ      [ROOT_All] ????
 Domain[ROOT_All]     INFO >   Deaccess DbDomain     READ      [ROOT_All] 
 EventSelector       DEBUG Try item: "SimplePoolFile2.root" from the collection list.
 MetaDataSvc         DEBUG handle() BeginTagFile for SimplePoolFile2.root
-DbSession            INFO     Open     DbSession    
-Domain[ROOT_All]     INFO >   Access   DbDomain     READ      [ROOT_All] 
-Domain[ROOT_All]     INFO ->  Access   DbDatabase   READ      [ROOT_All] ????
 Domain[ROOT_All]     INFO                           SimplePoolFile2.root
 SimplePoolFile2...  DEBUG --> Access   DbContainer  READ      [ROOT_All] ##Shapes
 ##Shapes            DEBUG Opening
@@ -777,17 +706,15 @@ SimplePoolFile2...  DEBUG --->Reading Assoc:????/POOLCollectionTree(EventNumber)
 SimplePoolFile2...  DEBUG ---->ClassID:????
 SimplePoolFile2...  DEBUG --->Reading Assoc:????/POOLCollectionTree(MagicNumber) [202]  (9 , ffffffff)
 SimplePoolFile2...  DEBUG ---->ClassID:????
-SimplePoolFile2...  DEBUG --->Reading Assoc:????/POOLContainer(basic/DataHeader) [202]  (a , ffffffff)
-SimplePoolFile2...  DEBUG ---->ClassID:????
-SimplePoolFile2...  DEBUG --->Reading Assoc:????/MetaData(EventStreamInfo_p3/Stream2) [202]  (b , ffffffff)
+SimplePoolFile2...  DEBUG --->Reading Assoc:????/MetaData(EventStreamInfo_p3/Stream2) [202]  (a , ffffffff)
 SimplePoolFile2...  DEBUG ---->ClassID:????
-SimplePoolFile2...  DEBUG --->Reading Assoc:????/MetaDataHdrForm(DataHeaderForm) [202]  (c , ffffffff)
+SimplePoolFile2...  DEBUG --->Reading Assoc:????/MetaDataHdrForm(DataHeaderForm) [202]  (b , ffffffff)
 SimplePoolFile2...  DEBUG ---->ClassID:????
-SimplePoolFile2...  DEBUG --->Reading Assoc:????/MetaDataHdr(DataHeader) [202]  (d , ffffffff)
+SimplePoolFile2...  DEBUG --->Reading Assoc:????/MetaDataHdr(DataHeader) [202]  (c , ffffffff)
 SimplePoolFile2...  DEBUG ---->ClassID:????
-SimplePoolFile2...  DEBUG --->Reading Assoc:????/MetaData(EventStreamInfo_p3/Stream1) [202]  (e , ffffffff)
+SimplePoolFile2...  DEBUG --->Reading Assoc:????/MetaData(EventStreamInfo_p3/Stream1) [202]  (d , ffffffff)
 SimplePoolFile2...  DEBUG ---->ClassID:????
-##Links             DEBUG No objects passing selection criteria... Container has 13 Entries in total.
+##Links             DEBUG No objects passing selection criteria... Container has 12 Entries in total.
 SimplePoolFile2...  DEBUG --> Access   DbContainer  READ      [ROOT_All] ##Params
 ##Params            DEBUG Opening
 ##Params            DEBUG    attributes# = 1
@@ -820,7 +747,6 @@ MetaDataSvc         DEBUG Loaded input meta data store proxies
 MetaDataSvc         DEBUG  calling beginInputFile for ToolSvc.IOVDbMetaDataTool
 EventSelector       DEBUG Get AttributeList from the collection
 EventSelector       DEBUG AttributeList size 3
-ClassIDSvc           INFO  getRegistryEntries: read 3 CLIDRegistry entries for module ALL
 EventSelector       DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000000].
 EventSelector       DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000000].
 EventSelector       DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000000]
@@ -869,7 +795,6 @@ ReadData             INFO EventInfo event: 0 run: 1
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 26591
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 27
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #0, run #1 11 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -897,7 +822,6 @@ ReadData             INFO EventInfo event: 1 run: 1
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 26591
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 27
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #1, run #1 12 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -925,7 +849,6 @@ ReadData             INFO EventInfo event: 2 run: 1
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 26591
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 27
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #2, run #1 13 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -953,7 +876,6 @@ ReadData             INFO EventInfo event: 3 run: 1
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 26591
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 27
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #3, run #1 14 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -981,7 +903,6 @@ ReadData             INFO EventInfo event: 4 run: 1
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 26591
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 27
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #4, run #1 15 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1009,7 +930,6 @@ ReadData             INFO EventInfo event: 5 run: 1
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 26591
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 27
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #5, run #1 16 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1037,7 +957,6 @@ ReadData             INFO EventInfo event: 6 run: 1
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 26591
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 27
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #6, run #1 17 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1065,7 +984,6 @@ ReadData             INFO EventInfo event: 7 run: 1
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 26591
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 27
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #7, run #1 18 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1093,7 +1011,6 @@ ReadData             INFO EventInfo event: 8 run: 1
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 26591
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 27
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #8, run #1 19 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1121,7 +1038,6 @@ ReadData             INFO EventInfo event: 9 run: 1
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 26591
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 27
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #9, run #1 20 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1149,7 +1065,6 @@ ReadData             INFO EventInfo event: 10 run: 1
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 26591
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 27
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #10, run #1 21 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1177,7 +1092,6 @@ ReadData             INFO EventInfo event: 11 run: 1
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 26591
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 27
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #11, run #1 22 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1205,7 +1119,6 @@ ReadData             INFO EventInfo event: 12 run: 1
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 26591
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 27
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #12, run #1 23 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1233,7 +1146,6 @@ ReadData             INFO EventInfo event: 13 run: 1
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 26591
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 27
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #13, run #1 24 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1261,7 +1173,6 @@ ReadData             INFO EventInfo event: 14 run: 1
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 26591
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 27
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #14, run #1 25 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1289,7 +1200,6 @@ ReadData             INFO EventInfo event: 15 run: 1
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 26591
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 27
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #15, run #1 26 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1317,7 +1227,6 @@ ReadData             INFO EventInfo event: 16 run: 1
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 26591
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 27
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #16, run #1 27 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1345,7 +1254,6 @@ ReadData             INFO EventInfo event: 17 run: 1
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 26591
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 27
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #17, run #1 28 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1373,7 +1281,6 @@ ReadData             INFO EventInfo event: 18 run: 1
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 26591
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 27
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #18, run #1 29 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1401,7 +1308,6 @@ ReadData             INFO EventInfo event: 19 run: 1
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 26591
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 27
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #19, run #1 30 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1430,7 +1336,6 @@ ReadData             INFO EventInfo event: 20 run: 2
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 28480
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 31
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #20, run #2 31 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1458,7 +1363,6 @@ ReadData             INFO EventInfo event: 21 run: 2
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 28480
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 31
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #21, run #2 32 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1486,7 +1390,6 @@ ReadData             INFO EventInfo event: 22 run: 2
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 28480
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 31
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #22, run #2 33 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1514,7 +1417,6 @@ ReadData             INFO EventInfo event: 23 run: 2
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 28480
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 31
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #23, run #2 34 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1542,7 +1444,6 @@ ReadData             INFO EventInfo event: 24 run: 2
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 28480
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 31
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #24, run #2 35 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1570,7 +1471,6 @@ ReadData             INFO EventInfo event: 25 run: 2
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 28480
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 31
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #25, run #2 36 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1598,7 +1498,6 @@ ReadData             INFO EventInfo event: 26 run: 2
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 28480
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 31
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #26, run #2 37 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1626,7 +1525,6 @@ ReadData             INFO EventInfo event: 27 run: 2
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 28480
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 31
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #27, run #2 38 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1654,7 +1552,6 @@ ReadData             INFO EventInfo event: 28 run: 2
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 28480
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 31
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #28, run #2 39 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1682,7 +1579,6 @@ ReadData             INFO EventInfo event: 29 run: 2
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 28480
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 31
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #29, run #2 40 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1710,7 +1606,6 @@ ReadData             INFO EventInfo event: 30 run: 2
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 28480
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 31
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #30, run #2 41 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1738,7 +1633,6 @@ ReadData             INFO EventInfo event: 31 run: 2
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 28480
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 31
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #31, run #2 42 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1766,7 +1660,6 @@ ReadData             INFO EventInfo event: 32 run: 2
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 28480
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 31
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #32, run #2 43 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1794,7 +1687,6 @@ ReadData             INFO EventInfo event: 33 run: 2
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 28480
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 31
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #33, run #2 44 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1822,7 +1714,6 @@ ReadData             INFO EventInfo event: 34 run: 2
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 28480
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 31
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #34, run #2 45 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1850,7 +1741,6 @@ ReadData             INFO EventInfo event: 35 run: 2
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 28480
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 31
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #35, run #2 46 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1878,7 +1768,6 @@ ReadData             INFO EventInfo event: 36 run: 2
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 28480
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 31
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #36, run #2 47 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1906,7 +1795,6 @@ ReadData             INFO EventInfo event: 37 run: 2
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 28480
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 31
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #37, run #2 48 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1934,7 +1822,6 @@ ReadData             INFO EventInfo event: 38 run: 2
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 28480
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 31
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #38, run #2 49 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1962,18 +1849,13 @@ ReadData             INFO EventInfo event: 39 run: 2
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 28480
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 31
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #39, run #2 50 events processed so far  <<<===
 MetaDataSvc         DEBUG handle() EndInputFile for FID:????
 MetaDataSvc         DEBUG handle() EndTagFile for SimplePoolFile2.root
-Domain[ROOT_All]     INFO ->  Deaccess DbDatabase   READ      [ROOT_All] ????
 Domain[ROOT_All]     INFO >   Deaccess DbDomain     READ      [ROOT_All] 
 EventSelector       DEBUG Try item: "SimplePoolFile4.root" from the collection list.
 MetaDataSvc         DEBUG handle() BeginTagFile for SimplePoolFile4.root
-DbSession            INFO     Open     DbSession    
-Domain[ROOT_All]     INFO >   Access   DbDomain     READ      [ROOT_All] 
-Domain[ROOT_All]     INFO ->  Access   DbDatabase   READ      [ROOT_All] ????
 Domain[ROOT_All]     INFO                           SimplePoolFile4.root
 SimplePoolFile4...  DEBUG --> Access   DbContainer  READ      [ROOT_All] ##Shapes
 ##Shapes            DEBUG Opening
@@ -2016,15 +1898,13 @@ SimplePoolFile4...  DEBUG --->Reading Assoc:????/POOLCollectionTree(EventNumber)
 SimplePoolFile4...  DEBUG ---->ClassID:????
 SimplePoolFile4...  DEBUG --->Reading Assoc:????/POOLCollectionTree(MagicNumber) [202]  (a , ffffffff)
 SimplePoolFile4...  DEBUG ---->ClassID:????
-SimplePoolFile4...  DEBUG --->Reading Assoc:????/POOLContainer(basic/DataHeader) [202]  (b , ffffffff)
+SimplePoolFile4...  DEBUG --->Reading Assoc:????/MetaData(EventStreamInfo_p3/Stream1) [202]  (b , ffffffff)
 SimplePoolFile4...  DEBUG ---->ClassID:????
-SimplePoolFile4...  DEBUG --->Reading Assoc:????/MetaData(EventStreamInfo_p3/Stream1) [202]  (c , ffffffff)
+SimplePoolFile4...  DEBUG --->Reading Assoc:????/MetaDataHdrForm(DataHeaderForm) [202]  (c , ffffffff)
 SimplePoolFile4...  DEBUG ---->ClassID:????
-SimplePoolFile4...  DEBUG --->Reading Assoc:????/MetaDataHdrForm(DataHeaderForm) [202]  (d , ffffffff)
+SimplePoolFile4...  DEBUG --->Reading Assoc:????/MetaDataHdr(DataHeader) [202]  (d , ffffffff)
 SimplePoolFile4...  DEBUG ---->ClassID:????
-SimplePoolFile4...  DEBUG --->Reading Assoc:????/MetaDataHdr(DataHeader) [202]  (e , ffffffff)
-SimplePoolFile4...  DEBUG ---->ClassID:????
-##Links             DEBUG No objects passing selection criteria... Container has 13 Entries in total.
+##Links             DEBUG No objects passing selection criteria... Container has 12 Entries in total.
 SimplePoolFile4...  DEBUG --> Access   DbContainer  READ      [ROOT_All] ##Params
 ##Params            DEBUG Opening
 ##Params            DEBUG    attributes# = 1
@@ -2101,7 +1981,6 @@ CollectionTree(...  DEBUG    attributes# = 1
 CollectionTree(...  DEBUG Branch container 'ExampleTrackContainer_p1_MyTracks'
 CollectionTree(...  DEBUG Opened container CollectionTree(ExampleTrackContainer_p1/MyTracks) of type ROOT_Tree
 ReadData             INFO Track pt = 74.8928 eta = 3.1676 phi = 2.6161 detector = Track made in: DummyHitDetector
-Domain[ROOT_All]     INFO ->  Access   DbDatabase   READ      [ROOT_All] ????
 Domain[ROOT_All]     INFO                           SimplePoolFile3.root
 SimplePoolFile3...  DEBUG --> Access   DbContainer  READ      [ROOT_All] ##Shapes
 ##Shapes            DEBUG Opening
@@ -2144,15 +2023,13 @@ SimplePoolFile3...  DEBUG --->Reading Assoc:????/POOLCollectionTree(EventNumber)
 SimplePoolFile3...  DEBUG ---->ClassID:????
 SimplePoolFile3...  DEBUG --->Reading Assoc:????/POOLCollectionTree(MagicNumber) [202]  (a , ffffffff)
 SimplePoolFile3...  DEBUG ---->ClassID:????
-SimplePoolFile3...  DEBUG --->Reading Assoc:????/POOLContainer(basic/DataHeader) [202]  (b , ffffffff)
-SimplePoolFile3...  DEBUG ---->ClassID:????
-SimplePoolFile3...  DEBUG --->Reading Assoc:????/MetaData(EventStreamInfo_p3/Stream1) [202]  (c , ffffffff)
+SimplePoolFile3...  DEBUG --->Reading Assoc:????/MetaData(EventStreamInfo_p3/Stream1) [202]  (b , ffffffff)
 SimplePoolFile3...  DEBUG ---->ClassID:????
-SimplePoolFile3...  DEBUG --->Reading Assoc:????/MetaDataHdrForm(DataHeaderForm) [202]  (d , ffffffff)
+SimplePoolFile3...  DEBUG --->Reading Assoc:????/MetaDataHdrForm(DataHeaderForm) [202]  (c , ffffffff)
 SimplePoolFile3...  DEBUG ---->ClassID:????
-SimplePoolFile3...  DEBUG --->Reading Assoc:????/MetaDataHdr(DataHeader) [202]  (e , ffffffff)
+SimplePoolFile3...  DEBUG --->Reading Assoc:????/MetaDataHdr(DataHeader) [202]  (d , ffffffff)
 SimplePoolFile3...  DEBUG ---->ClassID:????
-##Links             DEBUG No objects passing selection criteria... Container has 13 Entries in total.
+##Links             DEBUG No objects passing selection criteria... Container has 12 Entries in total.
 SimplePoolFile3...  DEBUG --> Access   DbContainer  READ      [ROOT_All] ##Params
 ##Params            DEBUG Opening
 ##Params            DEBUG    attributes# = 1
@@ -2172,7 +2049,6 @@ POOLContainerFo...  DEBUG Opening
 POOLContainerFo...  DEBUG    attributes# = 1
 POOLContainerFo...  DEBUG Branch container 'DataHeaderForm'
 POOLContainerFo...  DEBUG Opened container POOLContainerForm(DataHeaderForm) of type ROOT_Tree
-Domain[ROOT_All]     INFO ->  Access   DbDatabase   READ      [ROOT_All] ????
 Domain[ROOT_All]     INFO                           SimplePoolReplica1.root
 SimplePoolRepli...  DEBUG --> Access   DbContainer  READ      [ROOT_All] ##Shapes
 ##Shapes            DEBUG Opening
@@ -2203,15 +2079,13 @@ SimplePoolRepli...  DEBUG --->Reading Assoc:????/POOLContainerForm(DataHeaderFor
 SimplePoolRepli...  DEBUG ---->ClassID:????
 SimplePoolRepli...  DEBUG --->Reading Assoc:????/POOLContainer(DataHeader) [202]  (6 , ffffffff)
 SimplePoolRepli...  DEBUG ---->ClassID:????
-SimplePoolRepli...  DEBUG --->Reading Assoc:????/POOLContainer(basic/DataHeader) [202]  (7 , ffffffff)
-SimplePoolRepli...  DEBUG ---->ClassID:????
-SimplePoolRepli...  DEBUG --->Reading Assoc:????/MetaData(EventStreamInfo_p3/Stream1) [202]  (8 , ffffffff)
+SimplePoolRepli...  DEBUG --->Reading Assoc:????/MetaData(EventStreamInfo_p3/Stream1) [202]  (7 , ffffffff)
 SimplePoolRepli...  DEBUG ---->ClassID:????
-SimplePoolRepli...  DEBUG --->Reading Assoc:????/MetaDataHdrForm(DataHeaderForm) [202]  (9 , ffffffff)
+SimplePoolRepli...  DEBUG --->Reading Assoc:????/MetaDataHdrForm(DataHeaderForm) [202]  (8 , ffffffff)
 SimplePoolRepli...  DEBUG ---->ClassID:????
-SimplePoolRepli...  DEBUG --->Reading Assoc:????/MetaDataHdr(DataHeader) [202]  (a , ffffffff)
+SimplePoolRepli...  DEBUG --->Reading Assoc:????/MetaDataHdr(DataHeader) [202]  (9 , ffffffff)
 SimplePoolRepli...  DEBUG ---->ClassID:????
-##Links             DEBUG No objects passing selection criteria... Container has 9 Entries in total.
+##Links             DEBUG No objects passing selection criteria... Container has 8 Entries in total.
 SimplePoolRepli...  DEBUG --> Access   DbContainer  READ      [ROOT_All] ##Params
 ##Params            DEBUG Opening
 ##Params            DEBUG    attributes# = 1
@@ -2260,7 +2134,6 @@ ReadData             INFO Hit x = 20.4945 y = 63.5816 z = 48.1358 detector = Dum
 ReadData             INFO Hit x = 23.7045 y = 57.9027 z = 46.3159 detector = DummyHitDetector
 ReadData             INFO Hit x = 26.9145 y = 52.2238 z = 44.9265 detector = DummyHitDetector
 ReadData             INFO Hit x = 30.1245 y = 46.5449 z = 43.831 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolFile4.root) attribute [BYTES_READ]: 27285
 PoolSvc              INFO Database (SimplePoolFile4.root) attribute [READ_CALLS]: 23
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #0, run #1 51 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -2307,7 +2180,6 @@ ReadData             INFO Hit x = 120.494 y = 63.5816 z = -51.8642 detector = Du
 ReadData             INFO Hit x = 123.704 y = 57.9027 z = -53.6841 detector = DummyHitDetector
 ReadData             INFO Hit x = 126.915 y = 52.2238 z = -55.0735 detector = DummyHitDetector
 ReadData             INFO Hit x = 130.125 y = 46.5449 z = -56.169 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolFile4.root) attribute [BYTES_READ]: 27285
 PoolSvc              INFO Database (SimplePoolFile4.root) attribute [READ_CALLS]: 23
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #1, run #1 52 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -2354,7 +2226,6 @@ ReadData             INFO Hit x = 220.494 y = 63.5816 z = -151.864 detector = Du
 ReadData             INFO Hit x = 223.704 y = 57.9027 z = -153.684 detector = DummyHitDetector
 ReadData             INFO Hit x = 226.915 y = 52.2238 z = -155.073 detector = DummyHitDetector
 ReadData             INFO Hit x = 230.125 y = 46.5449 z = -156.169 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolFile4.root) attribute [BYTES_READ]: 27285
 PoolSvc              INFO Database (SimplePoolFile4.root) attribute [READ_CALLS]: 23
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #2, run #1 53 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -2401,7 +2272,6 @@ ReadData             INFO Hit x = 320.495 y = 63.5816 z = -251.864 detector = Du
 ReadData             INFO Hit x = 323.705 y = 57.9027 z = -253.684 detector = DummyHitDetector
 ReadData             INFO Hit x = 326.915 y = 52.2238 z = -255.073 detector = DummyHitDetector
 ReadData             INFO Hit x = 330.125 y = 46.5449 z = -256.169 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolFile4.root) attribute [BYTES_READ]: 27285
 PoolSvc              INFO Database (SimplePoolFile4.root) attribute [READ_CALLS]: 23
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #3, run #1 54 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -2448,7 +2318,6 @@ ReadData             INFO Hit x = 420.495 y = 63.5816 z = -351.864 detector = Du
 ReadData             INFO Hit x = 423.705 y = 57.9027 z = -353.684 detector = DummyHitDetector
 ReadData             INFO Hit x = 426.915 y = 52.2238 z = -355.073 detector = DummyHitDetector
 ReadData             INFO Hit x = 430.125 y = 46.5449 z = -356.169 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolFile4.root) attribute [BYTES_READ]: 27285
 PoolSvc              INFO Database (SimplePoolFile4.root) attribute [READ_CALLS]: 23
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #4, run #1 55 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -2495,7 +2364,6 @@ ReadData             INFO Hit x = 520.495 y = 63.5816 z = -451.864 detector = Du
 ReadData             INFO Hit x = 523.705 y = 57.9027 z = -453.684 detector = DummyHitDetector
 ReadData             INFO Hit x = 526.914 y = 52.2238 z = -455.073 detector = DummyHitDetector
 ReadData             INFO Hit x = 530.125 y = 46.5449 z = -456.169 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolFile4.root) attribute [BYTES_READ]: 27285
 PoolSvc              INFO Database (SimplePoolFile4.root) attribute [READ_CALLS]: 23
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #5, run #1 56 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -2542,7 +2410,6 @@ ReadData             INFO Hit x = 620.495 y = 63.5816 z = -551.864 detector = Du
 ReadData             INFO Hit x = 623.705 y = 57.9027 z = -553.684 detector = DummyHitDetector
 ReadData             INFO Hit x = 626.914 y = 52.2238 z = -555.073 detector = DummyHitDetector
 ReadData             INFO Hit x = 630.125 y = 46.5449 z = -556.169 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolFile4.root) attribute [BYTES_READ]: 27285
 PoolSvc              INFO Database (SimplePoolFile4.root) attribute [READ_CALLS]: 23
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #6, run #1 57 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -2589,7 +2456,6 @@ ReadData             INFO Hit x = 720.495 y = 63.5816 z = -651.864 detector = Du
 ReadData             INFO Hit x = 723.705 y = 57.9027 z = -653.684 detector = DummyHitDetector
 ReadData             INFO Hit x = 726.914 y = 52.2238 z = -655.073 detector = DummyHitDetector
 ReadData             INFO Hit x = 730.125 y = 46.5449 z = -656.169 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolFile4.root) attribute [BYTES_READ]: 27285
 PoolSvc              INFO Database (SimplePoolFile4.root) attribute [READ_CALLS]: 23
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #7, run #1 58 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -2636,7 +2502,6 @@ ReadData             INFO Hit x = 820.495 y = 63.5816 z = -751.864 detector = Du
 ReadData             INFO Hit x = 823.705 y = 57.9027 z = -753.684 detector = DummyHitDetector
 ReadData             INFO Hit x = 826.914 y = 52.2238 z = -755.073 detector = DummyHitDetector
 ReadData             INFO Hit x = 830.125 y = 46.5449 z = -756.169 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolFile4.root) attribute [BYTES_READ]: 27285
 PoolSvc              INFO Database (SimplePoolFile4.root) attribute [READ_CALLS]: 23
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #8, run #1 59 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -2683,7 +2548,6 @@ ReadData             INFO Hit x = 920.495 y = 63.5816 z = -851.864 detector = Du
 ReadData             INFO Hit x = 923.705 y = 57.9027 z = -853.684 detector = DummyHitDetector
 ReadData             INFO Hit x = 926.914 y = 52.2238 z = -855.073 detector = DummyHitDetector
 ReadData             INFO Hit x = 930.125 y = 46.5449 z = -856.169 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolFile4.root) attribute [BYTES_READ]: 27285
 PoolSvc              INFO Database (SimplePoolFile4.root) attribute [READ_CALLS]: 23
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #9, run #1 60 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -2730,7 +2594,6 @@ ReadData             INFO Hit x = 1020.49 y = 63.5816 z = -951.864 detector = Du
 ReadData             INFO Hit x = 1023.7 y = 57.9027 z = -953.684 detector = DummyHitDetector
 ReadData             INFO Hit x = 1026.91 y = 52.2238 z = -955.073 detector = DummyHitDetector
 ReadData             INFO Hit x = 1030.12 y = 46.5449 z = -956.169 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolFile4.root) attribute [BYTES_READ]: 27285
 PoolSvc              INFO Database (SimplePoolFile4.root) attribute [READ_CALLS]: 23
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #10, run #1 61 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -2777,7 +2640,6 @@ ReadData             INFO Hit x = 1120.49 y = 63.5816 z = -1051.86 detector = Du
 ReadData             INFO Hit x = 1123.7 y = 57.9027 z = -1053.68 detector = DummyHitDetector
 ReadData             INFO Hit x = 1126.91 y = 52.2238 z = -1055.07 detector = DummyHitDetector
 ReadData             INFO Hit x = 1130.12 y = 46.5449 z = -1056.17 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolFile4.root) attribute [BYTES_READ]: 27285
 PoolSvc              INFO Database (SimplePoolFile4.root) attribute [READ_CALLS]: 23
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #11, run #1 62 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -2824,7 +2686,6 @@ ReadData             INFO Hit x = 1220.49 y = 63.5816 z = -1151.86 detector = Du
 ReadData             INFO Hit x = 1223.7 y = 57.9027 z = -1153.68 detector = DummyHitDetector
 ReadData             INFO Hit x = 1226.91 y = 52.2238 z = -1155.07 detector = DummyHitDetector
 ReadData             INFO Hit x = 1230.12 y = 46.5449 z = -1156.17 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolFile4.root) attribute [BYTES_READ]: 27285
 PoolSvc              INFO Database (SimplePoolFile4.root) attribute [READ_CALLS]: 23
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #12, run #1 63 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -2871,7 +2732,6 @@ ReadData             INFO Hit x = 1320.49 y = 63.5816 z = -1251.86 detector = Du
 ReadData             INFO Hit x = 1323.7 y = 57.9027 z = -1253.68 detector = DummyHitDetector
 ReadData             INFO Hit x = 1326.91 y = 52.2238 z = -1255.07 detector = DummyHitDetector
 ReadData             INFO Hit x = 1330.12 y = 46.5449 z = -1256.17 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolFile4.root) attribute [BYTES_READ]: 27285
 PoolSvc              INFO Database (SimplePoolFile4.root) attribute [READ_CALLS]: 23
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #13, run #1 64 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -2918,7 +2778,6 @@ ReadData             INFO Hit x = 1420.49 y = 63.5816 z = -1351.86 detector = Du
 ReadData             INFO Hit x = 1423.7 y = 57.9027 z = -1353.68 detector = DummyHitDetector
 ReadData             INFO Hit x = 1426.91 y = 52.2238 z = -1355.07 detector = DummyHitDetector
 ReadData             INFO Hit x = 1430.12 y = 46.5449 z = -1356.17 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolFile4.root) attribute [BYTES_READ]: 27285
 PoolSvc              INFO Database (SimplePoolFile4.root) attribute [READ_CALLS]: 23
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #14, run #1 65 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -2965,7 +2824,6 @@ ReadData             INFO Hit x = 1520.49 y = 63.5816 z = -1451.86 detector = Du
 ReadData             INFO Hit x = 1523.7 y = 57.9027 z = -1453.68 detector = DummyHitDetector
 ReadData             INFO Hit x = 1526.91 y = 52.2238 z = -1455.07 detector = DummyHitDetector
 ReadData             INFO Hit x = 1530.12 y = 46.5449 z = -1456.17 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolFile4.root) attribute [BYTES_READ]: 27285
 PoolSvc              INFO Database (SimplePoolFile4.root) attribute [READ_CALLS]: 23
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #15, run #1 66 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -3012,7 +2870,6 @@ ReadData             INFO Hit x = 1620.49 y = 63.5816 z = -1551.86 detector = Du
 ReadData             INFO Hit x = 1623.7 y = 57.9027 z = -1553.68 detector = DummyHitDetector
 ReadData             INFO Hit x = 1626.91 y = 52.2238 z = -1555.07 detector = DummyHitDetector
 ReadData             INFO Hit x = 1630.12 y = 46.5449 z = -1556.17 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolFile4.root) attribute [BYTES_READ]: 27285
 PoolSvc              INFO Database (SimplePoolFile4.root) attribute [READ_CALLS]: 23
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #16, run #1 67 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -3059,7 +2916,6 @@ ReadData             INFO Hit x = 1720.49 y = 63.5816 z = -1651.86 detector = Du
 ReadData             INFO Hit x = 1723.7 y = 57.9027 z = -1653.68 detector = DummyHitDetector
 ReadData             INFO Hit x = 1726.91 y = 52.2238 z = -1655.07 detector = DummyHitDetector
 ReadData             INFO Hit x = 1730.12 y = 46.5449 z = -1656.17 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolFile4.root) attribute [BYTES_READ]: 27285
 PoolSvc              INFO Database (SimplePoolFile4.root) attribute [READ_CALLS]: 23
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #17, run #1 68 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -3106,7 +2962,6 @@ ReadData             INFO Hit x = 1820.49 y = 63.5816 z = -1751.86 detector = Du
 ReadData             INFO Hit x = 1823.7 y = 57.9027 z = -1753.68 detector = DummyHitDetector
 ReadData             INFO Hit x = 1826.91 y = 52.2238 z = -1755.07 detector = DummyHitDetector
 ReadData             INFO Hit x = 1830.12 y = 46.5449 z = -1756.17 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolFile4.root) attribute [BYTES_READ]: 27285
 PoolSvc              INFO Database (SimplePoolFile4.root) attribute [READ_CALLS]: 23
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #18, run #1 69 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -3153,31 +3008,22 @@ ReadData             INFO Hit x = 1920.49 y = 63.5816 z = -1851.86 detector = Du
 ReadData             INFO Hit x = 1923.7 y = 57.9027 z = -1853.68 detector = DummyHitDetector
 ReadData             INFO Hit x = 1926.91 y = 52.2238 z = -1855.07 detector = DummyHitDetector
 ReadData             INFO Hit x = 1930.12 y = 46.5449 z = -1856.17 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolFile4.root) attribute [BYTES_READ]: 27285
 PoolSvc              INFO Database (SimplePoolFile4.root) attribute [READ_CALLS]: 23
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #19, run #1 70 events processed so far  <<<===
 MetaDataSvc         DEBUG handle() EndInputFile for FID:????
 MetaDataSvc         DEBUG handle() EndTagFile for SimplePoolFile4.root
-Domain[ROOT_All]     INFO ->  Deaccess DbDatabase   READ      [ROOT_All] ????
 MetaDataSvc         DEBUG handle() LastInputFile for end
 AthenaEventLoopMgr   INFO No more events in event selection 
 MetaDataSvc         DEBUG  calling metaDataStop for ToolSvc.IOVDbMetaDataTool
 MetaDataSvc         DEBUG Releasing MetaDataTools
-Domain[ROOT_All]     INFO ->  Deaccess DbDatabase   READ      [ROOT_All] ????
-Domain[ROOT_All]     INFO ->  Deaccess DbDatabase   READ      [ROOT_All] ????
 Domain[ROOT_All]     INFO >   Deaccess DbDomain     READ      [ROOT_All] 
 ApplicationMgr       INFO Application Manager Stopped successfully
-IncidentProcAlg1     INFO Finalize
 ReadData             INFO in finalize()
-IncidentProcAlg2     INFO Finalize
 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 ****************************************************************************************************
-cObjR_ALL            INFO Time User   : Tot=   30 [ms] Ave/Min/Max=0.0965(+-0.977)/    0/   10 [ms] #=311
-cObj_ALL             INFO Time User   : Tot=   60 [ms] Ave/Min/Max=0.249(+-  1.8)/    0/   20 [ms] #=241
-ChronoStatSvc        INFO Time User   : Tot= 1.16  [s]                                             #=  1
 *****Chrono*****     INFO ****************************************************************************************************
 ChronoStatSvc.f...   INFO  Service finalized successfully 
 ApplicationMgr       INFO Application Manager Finalized successfully
diff --git a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_ReadBN.ref b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_ReadBN.ref
index 7757ac945551ab35c7e73dfd71e0cc8a91dce424..f57f14b153adc61db3250da03d28986517be6152 100644
--- a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_ReadBN.ref
+++ b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_ReadBN.ref
@@ -1,54 +1,26 @@
-Mon Jan 22 13:11:23 CST 2018
-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_ReadBNJobOptions.py"
-Py:ConfigurableDb    INFO Read module info for 5435 configurables from 52 genConfDb files
-Py:ConfigurableDb    INFO No duplicates have been found: that's good !
 Athena               INFO including file "AthenaCommon/runbatch.py"
-[?1034hApplicationMgr       INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0
-ApplicationMgr    SUCCESS 
-====================================================================================================================================
-                                                   Welcome to ApplicationMgr (GaudiCoreSvc v30r1)
-                                          running on atlas1.hep.anl.gov on Mon Jan 22 13:11:35 2018
-====================================================================================================================================
-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 2319 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
-ReadData            DEBUG Property update for OutputLevel : new value = 2
 ReadData             INFO in initialize()
-MetaDataSvc         DEBUG Property update for OutputLevel : new value = 2
-MetaDataSvc          INFO Initializing MetaDataSvc - package version AthenaServices-00-00-00
-AthenaPoolCnvSvc     INFO Initializing AthenaPoolCnvSvc - package version AthenaPoolCnvSvc-00-00-00
-PoolSvc             DEBUG Property update for OutputLevel : new value = 2
 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://lcgft-atlas.gridpp.rl.ac.uk:3128/frontierATLAS)(serverurl=http://frontier-atlas.lcg.triumf.ca:3128/ATLAS_frontier)(serverurl=http://ccfrontier.in2p3.fr:23128/ccin2p3-AtlasFrontier) will be considered for COOL data
-DBReplicaSvc         INFO Read replica configuration from /users/gemmeren/workarea/build/x86_64-slc6-gcc62-opt/share/dbreplica.config
-DBReplicaSvc         INFO Total of 1 servers found for host atlas1.hep.anl.gov [ATLF ]
 PoolSvc              INFO Successfully setup replica sorting algorithm
 PoolSvc             DEBUG OutputLevel is 
 PoolSvc              INFO Setting up APR FileCatalog and Streams
 PoolSvc              INFO POOL WriteCatalog is file:Catalog1.xml
-DbSession            INFO     Open     DbSession    
-Domain[ROOT_All]     INFO >   Access   DbDomain     READ      [ROOT_All] 
-EventSelector       DEBUG Property update for OutputLevel : new value = 2
-EventSelector        INFO Initializing EventSelector - package version EventSelectorAthenaPool-00-00-00
 IoComponentMgr       INFO IoComponent EventSelector has already had file EmptyPoolFile.root registered with i/o mode READ
 EventSelector        INFO reinitialization...
 EventSelector        INFO EventSelection with query 
 EventSelector       DEBUG Try item: "EmptyPoolFile.root" from the collection list.
-Domain[ROOT_All]     INFO ->  Access   DbDatabase   READ      [ROOT_All] ????
 Domain[ROOT_All]     INFO                           EmptyPoolFile.root
 EmptyPoolFile.root  DEBUG --> Access   DbContainer  READ      [ROOT_All] ##Shapes
 ##Shapes            DEBUG Opening
@@ -86,14 +58,10 @@ EmptyPoolFile.root  DEBUG --->Reading Param:FORMAT_VSN=[1.1]
 PoolSvc              INFO Failed to find container POOLContainer(DataHeader) to create POOL collection.
 PoolSvc              INFO Failed to find container POOLContainer_DataHeader to create POOL collection.
 EventSelector       DEBUG No events found in: EmptyPoolFile.root skipped!!!
-Domain[ROOT_All]     INFO ->  Deaccess DbDatabase   READ      [ROOT_All] ????
 Domain[ROOT_All]     INFO >   Deaccess DbDomain     READ      [ROOT_All] 
 EventSelector       DEBUG Try item: "SimplePoolFile1.root" from the collection list.
 MetaDataSvc         DEBUG handle() FirstInputFile for FID:????
 MetaDataSvc         DEBUG initInputMetaDataStore: file name FID:????
-DbSession            INFO     Open     DbSession    
-Domain[ROOT_All]     INFO >   Access   DbDomain     READ      [ROOT_All] 
-Domain[ROOT_All]     INFO ->  Access   DbDatabase   READ      [ROOT_All] ????
 Domain[ROOT_All]     INFO                           SimplePoolFile1.root
 SimplePoolFile1...  DEBUG --> Access   DbContainer  READ      [ROOT_All] ##Shapes
 ##Shapes            DEBUG Opening
@@ -136,15 +104,13 @@ SimplePoolFile1...  DEBUG --->Reading Assoc:????/POOLCollectionTree(EventNumber)
 SimplePoolFile1...  DEBUG ---->ClassID:????
 SimplePoolFile1...  DEBUG --->Reading Assoc:????/POOLCollectionTree(MagicNumber) [202]  (a , ffffffff)
 SimplePoolFile1...  DEBUG ---->ClassID:????
-SimplePoolFile1...  DEBUG --->Reading Assoc:????/POOLContainer(basic/DataHeader) [202]  (b , ffffffff)
+SimplePoolFile1...  DEBUG --->Reading Assoc:????/MetaData(EventStreamInfo_p3/Stream1) [202]  (b , ffffffff)
 SimplePoolFile1...  DEBUG ---->ClassID:????
-SimplePoolFile1...  DEBUG --->Reading Assoc:????/MetaData(EventStreamInfo_p3/Stream1) [202]  (c , ffffffff)
+SimplePoolFile1...  DEBUG --->Reading Assoc:????/MetaDataHdrForm(DataHeaderForm) [202]  (c , ffffffff)
 SimplePoolFile1...  DEBUG ---->ClassID:????
-SimplePoolFile1...  DEBUG --->Reading Assoc:????/MetaDataHdrForm(DataHeaderForm) [202]  (d , ffffffff)
+SimplePoolFile1...  DEBUG --->Reading Assoc:????/MetaDataHdr(DataHeader) [202]  (d , ffffffff)
 SimplePoolFile1...  DEBUG ---->ClassID:????
-SimplePoolFile1...  DEBUG --->Reading Assoc:????/MetaDataHdr(DataHeader) [202]  (e , ffffffff)
-SimplePoolFile1...  DEBUG ---->ClassID:????
-##Links             DEBUG No objects passing selection criteria... Container has 13 Entries in total.
+##Links             DEBUG No objects passing selection criteria... Container has 12 Entries in total.
 SimplePoolFile1...  DEBUG --> Access   DbContainer  READ      [ROOT_All] ##Params
 ##Params            DEBUG Opening
 ##Params            DEBUG    attributes# = 1
@@ -166,16 +132,11 @@ MetaDataHdrForm...  DEBUG    attributes# = 1
 MetaDataHdrForm...  DEBUG Branch container 'DataHeaderForm'
 MetaDataHdrForm...  DEBUG Opened container MetaDataHdrForm(DataHeaderForm) of type ROOT_Tree
 MetaDataSvc         DEBUG Loaded input meta data store proxies
-AthenaPoolAddre...  DEBUG Property update for OutputLevel : new value = 2
 AthenaPoolAddre...   INFO BackNavigationScope for: ExampleHitContainer#MyHits :: Stream1
-ReadData            DEBUG input handles: 0
-ReadData            DEBUG output handles: 0
-ReadData            DEBUG Data Deps for ReadData
 HistogramPersis...WARNING Histograms saving not required.
 AthenaEventLoopMgr   INFO Setup EventSelector service EventSelector
 ApplicationMgr       INFO Application Manager Initialized successfully
 EventSelector       DEBUG Try item: "EmptyPoolFile.root" from the collection list.
-Domain[ROOT_All]     INFO ->  Access   DbDatabase   READ      [ROOT_All] ????
 Domain[ROOT_All]     INFO                           EmptyPoolFile.root
 EmptyPoolFile.root  DEBUG --> Access   DbContainer  READ      [ROOT_All] ##Shapes
 ##Shapes            DEBUG Opening
@@ -228,7 +189,6 @@ MetaDataHdrForm...  DEBUG Opened container MetaDataHdrForm(DataHeaderForm) of ty
 MetaDataSvc         DEBUG Loaded input meta data store proxies
 MetaDataSvc         DEBUG  calling beginInputFile for ToolSvc.IOVDbMetaDataTool
 MetaDataSvc         DEBUG handle() EndInputFile for eventless EmptyPoolFile.root
-Domain[ROOT_All]     INFO ->  Deaccess DbDatabase   READ      [ROOT_All] ????
 EventSelector       DEBUG Try item: "SimplePoolFile1.root" from the collection list.
 MetaDataSvc         DEBUG handle() BeginTagFile for SimplePoolFile1.root
 ApplicationMgr       INFO Application Manager Started successfully
@@ -255,7 +215,6 @@ EventSelector        INFO skipping event 9
 EventSelector        INFO skipping event 10
 EventSelector       DEBUG Get AttributeList from the collection
 EventSelector       DEBUG AttributeList size 3
-ClassIDSvc           INFO  getRegistryEntries: read 2674 CLIDRegistry entries for module ALL
 EventSelector       DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000000A].
 EventSelector       DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000000A].
 EventSelector       DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000000A]
@@ -272,14 +231,11 @@ POOLContainerFo...  DEBUG Opened container POOLContainerForm(DataHeaderForm) of
 AthenaPoolAddre...  DEBUG The current Event contains: 3 objects
 AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo
 AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 9102, name = MyHits
-AlgResourcePool      INFO TopAlg list empty. Recovering the one of Application Manager
 SimplePoolFile1...  DEBUG --> Access   DbContainer  READ      [ROOT_Tree] CollectionTree(EventInfo_p4/McEventInfo)
 CollectionTree(...  DEBUG Opening
 CollectionTree(...  DEBUG    attributes# = 1
 CollectionTree(...  DEBUG Branch container 'EventInfo_p4_McEventInfo'
 CollectionTree(...  DEBUG Opened container CollectionTree(EventInfo_p4/McEventInfo) of type ROOT_Tree
-AthenaPoolConve...   INFO massageEventInfo: unable to get OverrideRunNumberFromInput property from EventSelector 
-ClassIDSvc           INFO  getRegistryEntries: read 11 CLIDRegistry entries for module ALL
 AthenaEventLoopMgr   INFO   ===>>>  start of run 1    <<<===
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #10, run #1 0 events processed so far  <<<===
 ReadData            DEBUG in execute()
@@ -313,8 +269,6 @@ ReadData             INFO Hit x = 1020.49 y = 63.5816 z = -951.864 detector = Du
 ReadData             INFO Hit x = 1023.7 y = 57.9027 z = -953.684 detector = DummyHitDetector
 ReadData             INFO Hit x = 1026.91 y = 52.2238 z = -955.073 detector = DummyHitDetector
 ReadData             INFO Hit x = 1030.12 y = 46.5449 z = -956.169 detector = DummyHitDetector
-ClassIDSvc           INFO  getRegistryEntries: read 10 CLIDRegistry entries for module ALL
-PoolSvc              INFO Database (SimplePoolFile1.root) attribute [BYTES_READ]: 27995
 PoolSvc              INFO Database (SimplePoolFile1.root) attribute [READ_CALLS]: 24
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #10, run #1 1 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -347,7 +301,6 @@ ReadData             INFO Hit x = 1120.49 y = 63.5816 z = -1051.86 detector = Du
 ReadData             INFO Hit x = 1123.7 y = 57.9027 z = -1053.68 detector = DummyHitDetector
 ReadData             INFO Hit x = 1126.91 y = 52.2238 z = -1055.07 detector = DummyHitDetector
 ReadData             INFO Hit x = 1130.12 y = 46.5449 z = -1056.17 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolFile1.root) attribute [BYTES_READ]: 27995
 PoolSvc              INFO Database (SimplePoolFile1.root) attribute [READ_CALLS]: 24
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #11, run #1 2 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -380,7 +333,6 @@ ReadData             INFO Hit x = 1220.49 y = 63.5816 z = -1151.86 detector = Du
 ReadData             INFO Hit x = 1223.7 y = 57.9027 z = -1153.68 detector = DummyHitDetector
 ReadData             INFO Hit x = 1226.91 y = 52.2238 z = -1155.07 detector = DummyHitDetector
 ReadData             INFO Hit x = 1230.12 y = 46.5449 z = -1156.17 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolFile1.root) attribute [BYTES_READ]: 27995
 PoolSvc              INFO Database (SimplePoolFile1.root) attribute [READ_CALLS]: 24
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #12, run #1 3 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -413,7 +365,6 @@ ReadData             INFO Hit x = 1320.49 y = 63.5816 z = -1251.86 detector = Du
 ReadData             INFO Hit x = 1323.7 y = 57.9027 z = -1253.68 detector = DummyHitDetector
 ReadData             INFO Hit x = 1326.91 y = 52.2238 z = -1255.07 detector = DummyHitDetector
 ReadData             INFO Hit x = 1330.12 y = 46.5449 z = -1256.17 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolFile1.root) attribute [BYTES_READ]: 27995
 PoolSvc              INFO Database (SimplePoolFile1.root) attribute [READ_CALLS]: 24
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #13, run #1 4 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -446,7 +397,6 @@ ReadData             INFO Hit x = 1420.49 y = 63.5816 z = -1351.86 detector = Du
 ReadData             INFO Hit x = 1423.7 y = 57.9027 z = -1353.68 detector = DummyHitDetector
 ReadData             INFO Hit x = 1426.91 y = 52.2238 z = -1355.07 detector = DummyHitDetector
 ReadData             INFO Hit x = 1430.12 y = 46.5449 z = -1356.17 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolFile1.root) attribute [BYTES_READ]: 27995
 PoolSvc              INFO Database (SimplePoolFile1.root) attribute [READ_CALLS]: 24
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #14, run #1 5 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -479,7 +429,6 @@ ReadData             INFO Hit x = 1520.49 y = 63.5816 z = -1451.86 detector = Du
 ReadData             INFO Hit x = 1523.7 y = 57.9027 z = -1453.68 detector = DummyHitDetector
 ReadData             INFO Hit x = 1526.91 y = 52.2238 z = -1455.07 detector = DummyHitDetector
 ReadData             INFO Hit x = 1530.12 y = 46.5449 z = -1456.17 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolFile1.root) attribute [BYTES_READ]: 27995
 PoolSvc              INFO Database (SimplePoolFile1.root) attribute [READ_CALLS]: 24
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #15, run #1 6 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -512,7 +461,6 @@ ReadData             INFO Hit x = 1620.49 y = 63.5816 z = -1551.86 detector = Du
 ReadData             INFO Hit x = 1623.7 y = 57.9027 z = -1553.68 detector = DummyHitDetector
 ReadData             INFO Hit x = 1626.91 y = 52.2238 z = -1555.07 detector = DummyHitDetector
 ReadData             INFO Hit x = 1630.12 y = 46.5449 z = -1556.17 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolFile1.root) attribute [BYTES_READ]: 27995
 PoolSvc              INFO Database (SimplePoolFile1.root) attribute [READ_CALLS]: 24
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #16, run #1 7 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -545,7 +493,6 @@ ReadData             INFO Hit x = 1720.49 y = 63.5816 z = -1651.86 detector = Du
 ReadData             INFO Hit x = 1723.7 y = 57.9027 z = -1653.68 detector = DummyHitDetector
 ReadData             INFO Hit x = 1726.91 y = 52.2238 z = -1655.07 detector = DummyHitDetector
 ReadData             INFO Hit x = 1730.12 y = 46.5449 z = -1656.17 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolFile1.root) attribute [BYTES_READ]: 27995
 PoolSvc              INFO Database (SimplePoolFile1.root) attribute [READ_CALLS]: 24
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #17, run #1 8 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -578,7 +525,6 @@ ReadData             INFO Hit x = 1820.49 y = 63.5816 z = -1751.86 detector = Du
 ReadData             INFO Hit x = 1823.7 y = 57.9027 z = -1753.68 detector = DummyHitDetector
 ReadData             INFO Hit x = 1826.91 y = 52.2238 z = -1755.07 detector = DummyHitDetector
 ReadData             INFO Hit x = 1830.12 y = 46.5449 z = -1756.17 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolFile1.root) attribute [BYTES_READ]: 27995
 PoolSvc              INFO Database (SimplePoolFile1.root) attribute [READ_CALLS]: 24
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #18, run #1 9 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -611,17 +557,12 @@ ReadData             INFO Hit x = 1920.49 y = 63.5816 z = -1851.86 detector = Du
 ReadData             INFO Hit x = 1923.7 y = 57.9027 z = -1853.68 detector = DummyHitDetector
 ReadData             INFO Hit x = 1926.91 y = 52.2238 z = -1855.07 detector = DummyHitDetector
 ReadData             INFO Hit x = 1930.12 y = 46.5449 z = -1856.17 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolFile1.root) attribute [BYTES_READ]: 27995
 PoolSvc              INFO Database (SimplePoolFile1.root) attribute [READ_CALLS]: 24
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #19, run #1 10 events processed so far  <<<===
 MetaDataSvc         DEBUG handle() EndInputFile for FID:????
 MetaDataSvc         DEBUG handle() EndTagFile for SimplePoolFile1.root
-Domain[ROOT_All]     INFO ->  Deaccess DbDatabase   READ      [ROOT_All] ????
 Domain[ROOT_All]     INFO >   Deaccess DbDomain     READ      [ROOT_All] 
 EventSelector       DEBUG Try item: "EmptyPoolFile.root" from the collection list.
-DbSession            INFO     Open     DbSession    
-Domain[ROOT_All]     INFO >   Access   DbDomain     READ      [ROOT_All] 
-Domain[ROOT_All]     INFO ->  Access   DbDatabase   READ      [ROOT_All] ????
 Domain[ROOT_All]     INFO                           EmptyPoolFile.root
 EmptyPoolFile.root  DEBUG --> Access   DbContainer  READ      [ROOT_All] ##Shapes
 ##Shapes            DEBUG Opening
@@ -674,13 +615,9 @@ MetaDataHdrForm...  DEBUG Opened container MetaDataHdrForm(DataHeaderForm) of ty
 MetaDataSvc         DEBUG Loaded input meta data store proxies
 MetaDataSvc         DEBUG  calling beginInputFile for ToolSvc.IOVDbMetaDataTool
 MetaDataSvc         DEBUG handle() EndInputFile for eventless EmptyPoolFile.root
-Domain[ROOT_All]     INFO ->  Deaccess DbDatabase   READ      [ROOT_All] ????
 Domain[ROOT_All]     INFO >   Deaccess DbDomain     READ      [ROOT_All] 
 EventSelector       DEBUG Try item: "SimplePoolFile2.root" from the collection list.
 MetaDataSvc         DEBUG handle() BeginTagFile for SimplePoolFile2.root
-DbSession            INFO     Open     DbSession    
-Domain[ROOT_All]     INFO >   Access   DbDomain     READ      [ROOT_All] 
-Domain[ROOT_All]     INFO ->  Access   DbDatabase   READ      [ROOT_All] ????
 Domain[ROOT_All]     INFO                           SimplePoolFile2.root
 SimplePoolFile2...  DEBUG --> Access   DbContainer  READ      [ROOT_All] ##Shapes
 ##Shapes            DEBUG Opening
@@ -719,17 +656,15 @@ SimplePoolFile2...  DEBUG --->Reading Assoc:????/POOLCollectionTree(EventNumber)
 SimplePoolFile2...  DEBUG ---->ClassID:????
 SimplePoolFile2...  DEBUG --->Reading Assoc:????/POOLCollectionTree(MagicNumber) [202]  (9 , ffffffff)
 SimplePoolFile2...  DEBUG ---->ClassID:????
-SimplePoolFile2...  DEBUG --->Reading Assoc:????/POOLContainer(basic/DataHeader) [202]  (a , ffffffff)
-SimplePoolFile2...  DEBUG ---->ClassID:????
-SimplePoolFile2...  DEBUG --->Reading Assoc:????/MetaData(EventStreamInfo_p3/Stream2) [202]  (b , ffffffff)
+SimplePoolFile2...  DEBUG --->Reading Assoc:????/MetaData(EventStreamInfo_p3/Stream2) [202]  (a , ffffffff)
 SimplePoolFile2...  DEBUG ---->ClassID:????
-SimplePoolFile2...  DEBUG --->Reading Assoc:????/MetaDataHdrForm(DataHeaderForm) [202]  (c , ffffffff)
+SimplePoolFile2...  DEBUG --->Reading Assoc:????/MetaDataHdrForm(DataHeaderForm) [202]  (b , ffffffff)
 SimplePoolFile2...  DEBUG ---->ClassID:????
-SimplePoolFile2...  DEBUG --->Reading Assoc:????/MetaDataHdr(DataHeader) [202]  (d , ffffffff)
+SimplePoolFile2...  DEBUG --->Reading Assoc:????/MetaDataHdr(DataHeader) [202]  (c , ffffffff)
 SimplePoolFile2...  DEBUG ---->ClassID:????
-SimplePoolFile2...  DEBUG --->Reading Assoc:????/MetaData(EventStreamInfo_p3/Stream1) [202]  (e , ffffffff)
+SimplePoolFile2...  DEBUG --->Reading Assoc:????/MetaData(EventStreamInfo_p3/Stream1) [202]  (d , ffffffff)
 SimplePoolFile2...  DEBUG ---->ClassID:????
-##Links             DEBUG No objects passing selection criteria... Container has 13 Entries in total.
+##Links             DEBUG No objects passing selection criteria... Container has 12 Entries in total.
 SimplePoolFile2...  DEBUG --> Access   DbContainer  READ      [ROOT_All] ##Params
 ##Params            DEBUG Opening
 ##Params            DEBUG    attributes# = 1
@@ -810,7 +745,6 @@ ReadData             INFO EventInfo event: 0 run: 1
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 26591
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 27
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #0, run #1 11 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -838,7 +772,6 @@ ReadData             INFO EventInfo event: 1 run: 1
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 26591
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 27
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #1, run #1 12 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -866,7 +799,6 @@ ReadData             INFO EventInfo event: 2 run: 1
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 26591
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 27
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #2, run #1 13 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -894,7 +826,6 @@ ReadData             INFO EventInfo event: 3 run: 1
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 26591
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 27
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #3, run #1 14 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -922,7 +853,6 @@ ReadData             INFO EventInfo event: 4 run: 1
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 26591
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 27
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #4, run #1 15 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -950,7 +880,6 @@ ReadData             INFO EventInfo event: 5 run: 1
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 26591
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 27
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #5, run #1 16 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -978,7 +907,6 @@ ReadData             INFO EventInfo event: 6 run: 1
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 26591
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 27
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #6, run #1 17 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1006,7 +934,6 @@ ReadData             INFO EventInfo event: 7 run: 1
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 26591
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 27
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #7, run #1 18 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1034,7 +961,6 @@ ReadData             INFO EventInfo event: 8 run: 1
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 26591
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 27
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #8, run #1 19 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1062,7 +988,6 @@ ReadData             INFO EventInfo event: 9 run: 1
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 26591
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 27
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #9, run #1 20 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1090,7 +1015,6 @@ ReadData             INFO EventInfo event: 10 run: 1
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 26591
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 27
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #10, run #1 21 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1118,7 +1042,6 @@ ReadData             INFO EventInfo event: 11 run: 1
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 26591
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 27
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #11, run #1 22 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1146,7 +1069,6 @@ ReadData             INFO EventInfo event: 12 run: 1
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 26591
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 27
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #12, run #1 23 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1174,7 +1096,6 @@ ReadData             INFO EventInfo event: 13 run: 1
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 26591
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 27
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #13, run #1 24 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1202,7 +1123,6 @@ ReadData             INFO EventInfo event: 14 run: 1
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 26591
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 27
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #14, run #1 25 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1230,7 +1150,6 @@ ReadData             INFO EventInfo event: 15 run: 1
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 26591
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 27
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #15, run #1 26 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1258,7 +1177,6 @@ ReadData             INFO EventInfo event: 16 run: 1
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 26591
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 27
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #16, run #1 27 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1286,7 +1204,6 @@ ReadData             INFO EventInfo event: 17 run: 1
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 26591
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 27
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #17, run #1 28 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1314,7 +1231,6 @@ ReadData             INFO EventInfo event: 18 run: 1
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 26591
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 27
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #18, run #1 29 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1342,7 +1258,6 @@ ReadData             INFO EventInfo event: 19 run: 1
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 26591
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 27
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #19, run #1 30 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1371,7 +1286,6 @@ ReadData             INFO EventInfo event: 20 run: 2
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 28480
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 31
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #20, run #2 31 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1399,7 +1313,6 @@ ReadData             INFO EventInfo event: 21 run: 2
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 28480
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 31
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #21, run #2 32 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1427,7 +1340,6 @@ ReadData             INFO EventInfo event: 22 run: 2
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 28480
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 31
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #22, run #2 33 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1455,7 +1367,6 @@ ReadData             INFO EventInfo event: 23 run: 2
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 28480
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 31
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #23, run #2 34 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1483,7 +1394,6 @@ ReadData             INFO EventInfo event: 24 run: 2
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 28480
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 31
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #24, run #2 35 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1511,7 +1421,6 @@ ReadData             INFO EventInfo event: 25 run: 2
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 28480
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 31
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #25, run #2 36 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1539,7 +1448,6 @@ ReadData             INFO EventInfo event: 26 run: 2
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 28480
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 31
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #26, run #2 37 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1567,7 +1475,6 @@ ReadData             INFO EventInfo event: 27 run: 2
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 28480
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 31
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #27, run #2 38 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1595,7 +1502,6 @@ ReadData             INFO EventInfo event: 28 run: 2
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 28480
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 31
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #28, run #2 39 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1623,7 +1529,6 @@ ReadData             INFO EventInfo event: 29 run: 2
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 28480
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 31
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #29, run #2 40 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1651,7 +1556,6 @@ ReadData             INFO EventInfo event: 30 run: 2
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 28480
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 31
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #30, run #2 41 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1679,7 +1583,6 @@ ReadData             INFO EventInfo event: 31 run: 2
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 28480
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 31
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #31, run #2 42 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1707,7 +1610,6 @@ ReadData             INFO EventInfo event: 32 run: 2
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 28480
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 31
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #32, run #2 43 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1735,7 +1637,6 @@ ReadData             INFO EventInfo event: 33 run: 2
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 28480
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 31
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #33, run #2 44 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1763,7 +1664,6 @@ ReadData             INFO EventInfo event: 34 run: 2
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 28480
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 31
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #34, run #2 45 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1791,7 +1691,6 @@ ReadData             INFO EventInfo event: 35 run: 2
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 28480
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 31
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #35, run #2 46 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1819,7 +1718,6 @@ ReadData             INFO EventInfo event: 36 run: 2
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 28480
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 31
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #36, run #2 47 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1847,7 +1745,6 @@ ReadData             INFO EventInfo event: 37 run: 2
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 28480
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 31
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #37, run #2 48 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1875,7 +1772,6 @@ ReadData             INFO EventInfo event: 38 run: 2
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 28480
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 31
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #38, run #2 49 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1903,18 +1799,13 @@ ReadData             INFO EventInfo event: 39 run: 2
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 28480
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 31
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #39, run #2 50 events processed so far  <<<===
 MetaDataSvc         DEBUG handle() EndInputFile for FID:????
 MetaDataSvc         DEBUG handle() EndTagFile for SimplePoolFile2.root
-Domain[ROOT_All]     INFO ->  Deaccess DbDatabase   READ      [ROOT_All] ????
 Domain[ROOT_All]     INFO >   Deaccess DbDomain     READ      [ROOT_All] 
 EventSelector       DEBUG Try item: "SimplePoolFile3.root" from the collection list.
 MetaDataSvc         DEBUG handle() BeginTagFile for SimplePoolFile3.root
-DbSession            INFO     Open     DbSession    
-Domain[ROOT_All]     INFO >   Access   DbDomain     READ      [ROOT_All] 
-Domain[ROOT_All]     INFO ->  Access   DbDatabase   READ      [ROOT_All] ????
 Domain[ROOT_All]     INFO                           SimplePoolFile3.root
 SimplePoolFile3...  DEBUG --> Access   DbContainer  READ      [ROOT_All] ##Shapes
 ##Shapes            DEBUG Opening
@@ -1957,15 +1848,13 @@ SimplePoolFile3...  DEBUG --->Reading Assoc:????/POOLCollectionTree(EventNumber)
 SimplePoolFile3...  DEBUG ---->ClassID:????
 SimplePoolFile3...  DEBUG --->Reading Assoc:????/POOLCollectionTree(MagicNumber) [202]  (a , ffffffff)
 SimplePoolFile3...  DEBUG ---->ClassID:????
-SimplePoolFile3...  DEBUG --->Reading Assoc:????/POOLContainer(basic/DataHeader) [202]  (b , ffffffff)
+SimplePoolFile3...  DEBUG --->Reading Assoc:????/MetaData(EventStreamInfo_p3/Stream1) [202]  (b , ffffffff)
 SimplePoolFile3...  DEBUG ---->ClassID:????
-SimplePoolFile3...  DEBUG --->Reading Assoc:????/MetaData(EventStreamInfo_p3/Stream1) [202]  (c , ffffffff)
+SimplePoolFile3...  DEBUG --->Reading Assoc:????/MetaDataHdrForm(DataHeaderForm) [202]  (c , ffffffff)
 SimplePoolFile3...  DEBUG ---->ClassID:????
-SimplePoolFile3...  DEBUG --->Reading Assoc:????/MetaDataHdrForm(DataHeaderForm) [202]  (d , ffffffff)
+SimplePoolFile3...  DEBUG --->Reading Assoc:????/MetaDataHdr(DataHeader) [202]  (d , ffffffff)
 SimplePoolFile3...  DEBUG ---->ClassID:????
-SimplePoolFile3...  DEBUG --->Reading Assoc:????/MetaDataHdr(DataHeader) [202]  (e , ffffffff)
-SimplePoolFile3...  DEBUG ---->ClassID:????
-##Links             DEBUG No objects passing selection criteria... Container has 13 Entries in total.
+##Links             DEBUG No objects passing selection criteria... Container has 12 Entries in total.
 SimplePoolFile3...  DEBUG --> Access   DbContainer  READ      [ROOT_All] ##Params
 ##Params            DEBUG Opening
 ##Params            DEBUG    attributes# = 1
@@ -2042,7 +1931,6 @@ CollectionTree(...  DEBUG    attributes# = 1
 CollectionTree(...  DEBUG Branch container 'ExampleTrackContainer_p1_MyTracks'
 CollectionTree(...  DEBUG Opened container CollectionTree(ExampleTrackContainer_p1/MyTracks) of type ROOT_Tree
 ReadData             INFO Track pt = 74.8928 eta = 3.1676 phi = 2.6161 detector = Track made in: DummyHitDetector
-Domain[ROOT_All]     INFO ->  Access   DbDatabase   READ      [ROOT_All] ????
 Domain[ROOT_All]     INFO                           SimplePoolFile1.root
 SimplePoolFile1...  DEBUG --> Access   DbContainer  READ      [ROOT_All] ##Shapes
 ##Shapes            DEBUG Opening
@@ -2085,15 +1973,13 @@ SimplePoolFile1...  DEBUG --->Reading Assoc:????/POOLCollectionTree(EventNumber)
 SimplePoolFile1...  DEBUG ---->ClassID:????
 SimplePoolFile1...  DEBUG --->Reading Assoc:????/POOLCollectionTree(MagicNumber) [202]  (a , ffffffff)
 SimplePoolFile1...  DEBUG ---->ClassID:????
-SimplePoolFile1...  DEBUG --->Reading Assoc:????/POOLContainer(basic/DataHeader) [202]  (b , ffffffff)
-SimplePoolFile1...  DEBUG ---->ClassID:????
-SimplePoolFile1...  DEBUG --->Reading Assoc:????/MetaData(EventStreamInfo_p3/Stream1) [202]  (c , ffffffff)
+SimplePoolFile1...  DEBUG --->Reading Assoc:????/MetaData(EventStreamInfo_p3/Stream1) [202]  (b , ffffffff)
 SimplePoolFile1...  DEBUG ---->ClassID:????
-SimplePoolFile1...  DEBUG --->Reading Assoc:????/MetaDataHdrForm(DataHeaderForm) [202]  (d , ffffffff)
+SimplePoolFile1...  DEBUG --->Reading Assoc:????/MetaDataHdrForm(DataHeaderForm) [202]  (c , ffffffff)
 SimplePoolFile1...  DEBUG ---->ClassID:????
-SimplePoolFile1...  DEBUG --->Reading Assoc:????/MetaDataHdr(DataHeader) [202]  (e , ffffffff)
+SimplePoolFile1...  DEBUG --->Reading Assoc:????/MetaDataHdr(DataHeader) [202]  (d , ffffffff)
 SimplePoolFile1...  DEBUG ---->ClassID:????
-##Links             DEBUG No objects passing selection criteria... Container has 13 Entries in total.
+##Links             DEBUG No objects passing selection criteria... Container has 12 Entries in total.
 SimplePoolFile1...  DEBUG --> Access   DbContainer  READ      [ROOT_All] ##Params
 ##Params            DEBUG Opening
 ##Params            DEBUG    attributes# = 1
@@ -2142,7 +2028,6 @@ ReadData             INFO Hit x = 20.4945 y = 63.5816 z = 48.1358 detector = Dum
 ReadData             INFO Hit x = 23.7045 y = 57.9027 z = 46.3159 detector = DummyHitDetector
 ReadData             INFO Hit x = 26.9145 y = 52.2238 z = 44.9265 detector = DummyHitDetector
 ReadData             INFO Hit x = 30.1245 y = 46.5449 z = 43.831 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 27200
 PoolSvc              INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 23
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #0, run #1 51 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -2189,7 +2074,6 @@ ReadData             INFO Hit x = 120.494 y = 63.5816 z = -51.8642 detector = Du
 ReadData             INFO Hit x = 123.704 y = 57.9027 z = -53.6841 detector = DummyHitDetector
 ReadData             INFO Hit x = 126.915 y = 52.2238 z = -55.0735 detector = DummyHitDetector
 ReadData             INFO Hit x = 130.125 y = 46.5449 z = -56.169 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 27200
 PoolSvc              INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 23
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #1, run #1 52 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -2236,7 +2120,6 @@ ReadData             INFO Hit x = 220.494 y = 63.5816 z = -151.864 detector = Du
 ReadData             INFO Hit x = 223.704 y = 57.9027 z = -153.684 detector = DummyHitDetector
 ReadData             INFO Hit x = 226.915 y = 52.2238 z = -155.073 detector = DummyHitDetector
 ReadData             INFO Hit x = 230.125 y = 46.5449 z = -156.169 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 27200
 PoolSvc              INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 23
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #2, run #1 53 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -2283,7 +2166,6 @@ ReadData             INFO Hit x = 320.495 y = 63.5816 z = -251.864 detector = Du
 ReadData             INFO Hit x = 323.705 y = 57.9027 z = -253.684 detector = DummyHitDetector
 ReadData             INFO Hit x = 326.915 y = 52.2238 z = -255.073 detector = DummyHitDetector
 ReadData             INFO Hit x = 330.125 y = 46.5449 z = -256.169 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 27200
 PoolSvc              INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 23
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #3, run #1 54 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -2330,7 +2212,6 @@ ReadData             INFO Hit x = 420.495 y = 63.5816 z = -351.864 detector = Du
 ReadData             INFO Hit x = 423.705 y = 57.9027 z = -353.684 detector = DummyHitDetector
 ReadData             INFO Hit x = 426.915 y = 52.2238 z = -355.073 detector = DummyHitDetector
 ReadData             INFO Hit x = 430.125 y = 46.5449 z = -356.169 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 27200
 PoolSvc              INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 23
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #4, run #1 55 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -2377,7 +2258,6 @@ ReadData             INFO Hit x = 520.495 y = 63.5816 z = -451.864 detector = Du
 ReadData             INFO Hit x = 523.705 y = 57.9027 z = -453.684 detector = DummyHitDetector
 ReadData             INFO Hit x = 526.914 y = 52.2238 z = -455.073 detector = DummyHitDetector
 ReadData             INFO Hit x = 530.125 y = 46.5449 z = -456.169 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 27200
 PoolSvc              INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 23
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #5, run #1 56 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -2424,7 +2304,6 @@ ReadData             INFO Hit x = 620.495 y = 63.5816 z = -551.864 detector = Du
 ReadData             INFO Hit x = 623.705 y = 57.9027 z = -553.684 detector = DummyHitDetector
 ReadData             INFO Hit x = 626.914 y = 52.2238 z = -555.073 detector = DummyHitDetector
 ReadData             INFO Hit x = 630.125 y = 46.5449 z = -556.169 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 27200
 PoolSvc              INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 23
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #6, run #1 57 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -2471,7 +2350,6 @@ ReadData             INFO Hit x = 720.495 y = 63.5816 z = -651.864 detector = Du
 ReadData             INFO Hit x = 723.705 y = 57.9027 z = -653.684 detector = DummyHitDetector
 ReadData             INFO Hit x = 726.914 y = 52.2238 z = -655.073 detector = DummyHitDetector
 ReadData             INFO Hit x = 730.125 y = 46.5449 z = -656.169 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 27200
 PoolSvc              INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 23
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #7, run #1 58 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -2518,7 +2396,6 @@ ReadData             INFO Hit x = 820.495 y = 63.5816 z = -751.864 detector = Du
 ReadData             INFO Hit x = 823.705 y = 57.9027 z = -753.684 detector = DummyHitDetector
 ReadData             INFO Hit x = 826.914 y = 52.2238 z = -755.073 detector = DummyHitDetector
 ReadData             INFO Hit x = 830.125 y = 46.5449 z = -756.169 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 27200
 PoolSvc              INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 23
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #8, run #1 59 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -2565,7 +2442,6 @@ ReadData             INFO Hit x = 920.495 y = 63.5816 z = -851.864 detector = Du
 ReadData             INFO Hit x = 923.705 y = 57.9027 z = -853.684 detector = DummyHitDetector
 ReadData             INFO Hit x = 926.914 y = 52.2238 z = -855.073 detector = DummyHitDetector
 ReadData             INFO Hit x = 930.125 y = 46.5449 z = -856.169 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 27200
 PoolSvc              INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 23
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #9, run #1 60 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -2612,7 +2488,6 @@ ReadData             INFO Hit x = 1020.49 y = 63.5816 z = -951.864 detector = Du
 ReadData             INFO Hit x = 1023.7 y = 57.9027 z = -953.684 detector = DummyHitDetector
 ReadData             INFO Hit x = 1026.91 y = 52.2238 z = -955.073 detector = DummyHitDetector
 ReadData             INFO Hit x = 1030.12 y = 46.5449 z = -956.169 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 27200
 PoolSvc              INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 23
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #10, run #1 61 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -2659,7 +2534,6 @@ ReadData             INFO Hit x = 1120.49 y = 63.5816 z = -1051.86 detector = Du
 ReadData             INFO Hit x = 1123.7 y = 57.9027 z = -1053.68 detector = DummyHitDetector
 ReadData             INFO Hit x = 1126.91 y = 52.2238 z = -1055.07 detector = DummyHitDetector
 ReadData             INFO Hit x = 1130.12 y = 46.5449 z = -1056.17 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 27200
 PoolSvc              INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 23
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #11, run #1 62 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -2706,7 +2580,6 @@ ReadData             INFO Hit x = 1220.49 y = 63.5816 z = -1151.86 detector = Du
 ReadData             INFO Hit x = 1223.7 y = 57.9027 z = -1153.68 detector = DummyHitDetector
 ReadData             INFO Hit x = 1226.91 y = 52.2238 z = -1155.07 detector = DummyHitDetector
 ReadData             INFO Hit x = 1230.12 y = 46.5449 z = -1156.17 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 27200
 PoolSvc              INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 23
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #12, run #1 63 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -2753,7 +2626,6 @@ ReadData             INFO Hit x = 1320.49 y = 63.5816 z = -1251.86 detector = Du
 ReadData             INFO Hit x = 1323.7 y = 57.9027 z = -1253.68 detector = DummyHitDetector
 ReadData             INFO Hit x = 1326.91 y = 52.2238 z = -1255.07 detector = DummyHitDetector
 ReadData             INFO Hit x = 1330.12 y = 46.5449 z = -1256.17 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 27200
 PoolSvc              INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 23
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #13, run #1 64 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -2800,7 +2672,6 @@ ReadData             INFO Hit x = 1420.49 y = 63.5816 z = -1351.86 detector = Du
 ReadData             INFO Hit x = 1423.7 y = 57.9027 z = -1353.68 detector = DummyHitDetector
 ReadData             INFO Hit x = 1426.91 y = 52.2238 z = -1355.07 detector = DummyHitDetector
 ReadData             INFO Hit x = 1430.12 y = 46.5449 z = -1356.17 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 27200
 PoolSvc              INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 23
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #14, run #1 65 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -2847,7 +2718,6 @@ ReadData             INFO Hit x = 1520.49 y = 63.5816 z = -1451.86 detector = Du
 ReadData             INFO Hit x = 1523.7 y = 57.9027 z = -1453.68 detector = DummyHitDetector
 ReadData             INFO Hit x = 1526.91 y = 52.2238 z = -1455.07 detector = DummyHitDetector
 ReadData             INFO Hit x = 1530.12 y = 46.5449 z = -1456.17 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 27200
 PoolSvc              INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 23
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #15, run #1 66 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -2894,7 +2764,6 @@ ReadData             INFO Hit x = 1620.49 y = 63.5816 z = -1551.86 detector = Du
 ReadData             INFO Hit x = 1623.7 y = 57.9027 z = -1553.68 detector = DummyHitDetector
 ReadData             INFO Hit x = 1626.91 y = 52.2238 z = -1555.07 detector = DummyHitDetector
 ReadData             INFO Hit x = 1630.12 y = 46.5449 z = -1556.17 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 27200
 PoolSvc              INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 23
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #16, run #1 67 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -2941,7 +2810,6 @@ ReadData             INFO Hit x = 1720.49 y = 63.5816 z = -1651.86 detector = Du
 ReadData             INFO Hit x = 1723.7 y = 57.9027 z = -1653.68 detector = DummyHitDetector
 ReadData             INFO Hit x = 1726.91 y = 52.2238 z = -1655.07 detector = DummyHitDetector
 ReadData             INFO Hit x = 1730.12 y = 46.5449 z = -1656.17 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 27200
 PoolSvc              INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 23
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #17, run #1 68 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -2988,7 +2856,6 @@ ReadData             INFO Hit x = 1820.49 y = 63.5816 z = -1751.86 detector = Du
 ReadData             INFO Hit x = 1823.7 y = 57.9027 z = -1753.68 detector = DummyHitDetector
 ReadData             INFO Hit x = 1826.91 y = 52.2238 z = -1755.07 detector = DummyHitDetector
 ReadData             INFO Hit x = 1830.12 y = 46.5449 z = -1756.17 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 27200
 PoolSvc              INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 23
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #18, run #1 69 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -3035,30 +2902,22 @@ ReadData             INFO Hit x = 1920.49 y = 63.5816 z = -1851.86 detector = Du
 ReadData             INFO Hit x = 1923.7 y = 57.9027 z = -1853.68 detector = DummyHitDetector
 ReadData             INFO Hit x = 1926.91 y = 52.2238 z = -1855.07 detector = DummyHitDetector
 ReadData             INFO Hit x = 1930.12 y = 46.5449 z = -1856.17 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 27200
 PoolSvc              INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 23
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #19, run #1 70 events processed so far  <<<===
 MetaDataSvc         DEBUG handle() EndInputFile for FID:????
 MetaDataSvc         DEBUG handle() EndTagFile for SimplePoolFile3.root
-Domain[ROOT_All]     INFO ->  Deaccess DbDatabase   READ      [ROOT_All] ????
 MetaDataSvc         DEBUG handle() LastInputFile for end
 AthenaEventLoopMgr   INFO No more events in event selection 
 MetaDataSvc         DEBUG  calling metaDataStop for ToolSvc.IOVDbMetaDataTool
 MetaDataSvc         DEBUG Releasing MetaDataTools
-Domain[ROOT_All]     INFO ->  Deaccess DbDatabase   READ      [ROOT_All] ????
 Domain[ROOT_All]     INFO >   Deaccess DbDomain     READ      [ROOT_All] 
 ApplicationMgr       INFO Application Manager Stopped successfully
-IncidentProcAlg1     INFO Finalize
 ReadData             INFO in finalize()
-IncidentProcAlg2     INFO Finalize
 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 ****************************************************************************************************
-cObjR_ALL            INFO Time User   : Tot=   30 [ms] Ave/Min/Max= 0.11(+- 1.04)/    0/   10 [ms] #=272
-cObj_ALL             INFO Time User   : Tot=   70 [ms] Ave/Min/Max=0.317(+- 2.21)/    0/   20 [ms] #=221
-ChronoStatSvc        INFO Time User   : Tot= 1.11  [s]                                             #=  1
 *****Chrono*****     INFO ****************************************************************************************************
 ChronoStatSvc.f...   INFO  Service finalized successfully 
 ApplicationMgr       INFO Application Manager Finalized successfully
diff --git a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_ReadBs.ref b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_ReadBs.ref
deleted file mode 100644
index 05c54589869605d7a0814132959c46c5bf277943..0000000000000000000000000000000000000000
--- a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_ReadBs.ref
+++ /dev/null
@@ -1,315 +0,0 @@
-Wed Dec 20 16:03:33 CST 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_ReadBsJobOptions.py"
-Py:ConfigurableDb    INFO Read module info for 5439 configurables from 18 genConfDb files
-Py:ConfigurableDb    INFO No duplicates have been found: that's good !
-Athena               INFO including file "AthenaCommon/runbatch.py"
-[?1034hApplicationMgr       INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0
-ApplicationMgr    SUCCESS 
-====================================================================================================================================
-                                                   Welcome to ApplicationMgr (GaudiCoreSvc v30r0)
-                                          running on atlas2.hep.anl.gov on Wed Dec 20 16:03:47 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 2318 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
-ReadBs               INFO in initialize()
-MetaDataSvc         DEBUG Property update for OutputLevel : new value = 2
-MetaDataSvc          INFO Initializing MetaDataSvc - package version AthenaServices-00-00-00
-AthenaPoolCnvSvc     INFO Initializing AthenaPoolCnvSvc - package version AthenaPoolCnvSvc-00-00-00
-PoolSvc             DEBUG Property update for OutputLevel : new value = 2
-PoolSvc              INFO io_register[PoolSvc](xmlcatalog_file:PoolFileCatalog.xml) [ok]
-PoolSvc              INFO Set connectionsvc retry/timeout/IDLE timeout to  'ConnectionRetrialPeriod':300/ 'ConnectionRetrialTimeOut':3600/ 'ConnectionTimeOut':5 seconds with connection cleanup disabled
-PoolSvc              INFO Frontier compression level set to 5
-DBReplicaSvc         INFO Frontier server at (serverurl=http://atlasfrontier-ai.cern.ch:8000/atlr)(serverurl=http://lcgft-atlas.gridpp.rl.ac.uk:3128/frontierATLAS)(serverurl=http://frontier-atlas.lcg.triumf.ca:3128/ATLAS_frontier)(serverurl=http://ccfrontier.in2p3.fr:23128/ccin2p3-AtlasFrontier) will be considered for COOL data
-DBReplicaSvc         INFO Read replica configuration from /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2017-12-17T2303/Athena/22.0.0/InstallArea/x86_64-slc6-gcc62-opt/share/dbreplica.config
-DBReplicaSvc         INFO Total of 1 servers found for host atlas2.hep.anl.gov [ATLF ]
-PoolSvc              INFO Successfully setup replica sorting algorithm
-PoolSvc             DEBUG OutputLevel is 
-PoolSvc              INFO Setting up APR FileCatalog and Streams
-PoolSvc              INFO POOL WriteCatalog is xmlcatalog_file:PoolFileCatalog.xml
-DbSession            INFO     Open     DbSession    
-Domain[ROOT_All]     INFO >   Access   DbDomain     READ      [ROOT_All] 
-ToolSvc.ByteStr...   INFO Initializing ToolSvc.ByteStreamMetadataTool - package version ByteStreamCnvSvc-00-00-00
-EventSelector       DEBUG Property update for OutputLevel : new value = 2
-EventSelector        INFO Initializing EventSelector - package version EventSelectorAthenaPool-00-00-00
-EventSelector        INFO reinitialization...
-EventSelector        INFO EventSelection with query 
-EventSelector       DEBUG Try item: "SimplePoolFromRaw.root" from the collection list.
-Domain[ROOT_All]     INFO ->  Access   DbDatabase   READ      [ROOT_All] ????
-Domain[ROOT_All]     INFO                           SimplePoolFromRaw.root
-SimplePoolFromR...  DEBUG --> Access   DbContainer  READ      [ROOT_All] ##Shapes
-##Shapes            DEBUG Opening
-##Shapes            DEBUG    attributes# = 1
-##Shapes            DEBUG Opened container ##Shapes of type ROOT_Tree
-SimplePoolFromR...  DEBUG --->Reading Shape[0 , ????]: [1 Column(s)]
-SimplePoolFromR...  DEBUG ---->[0]:EventInfo_p4 Typ:EventInfo_p4 [21] Size:0 Offset:0 #Elements:1
-SimplePoolFromR...  DEBUG --->Reading Shape[1 , ????]: [1 Column(s)]
-SimplePoolFromR...  DEBUG ---->[0]:DataHeaderForm_p5 Typ:DataHeaderForm_p5 [21] Size:0 Offset:0 #Elements:1
-SimplePoolFromR...  DEBUG --->Reading Shape[2 , ????]: [1 Column(s)]
-SimplePoolFromR...  DEBUG ---->[0]:DataHeader_p5 Typ:DataHeader_p5 [21] Size:0 Offset:0 #Elements:1
-SimplePoolFromR...  DEBUG --->Reading Shape[3 , ????]: [1 Column(s)]
-SimplePoolFromR...  DEBUG ---->[0]:EventStreamInfo_p3 Typ:EventStreamInfo_p3 [21] Size:0 Offset:0 #Elements:1
-SimplePoolFromR...  DEBUG --->Reading Shape[4 , ????]: [1 Column(s)]
-SimplePoolFromR...  DEBUG ---->[0]:ByteStreamMetadataContainer_p1 Typ:ByteStreamMetadataContainer_p1 [21] Size:0 Offset:0 #Elements:1
-##Shapes            DEBUG No objects passing selection criteria... Container has 5 Entries in total.
-SimplePoolFromR...  DEBUG --> Access   DbContainer  READ      [ROOT_All] ##Links
-##Links             DEBUG Opening
-##Links             DEBUG    attributes# = 1
-##Links             DEBUG Opened container ##Links of type ROOT_Tree
-SimplePoolFromR...  DEBUG --->Reading Assoc:????/##Params [200]  (2 , ffffffff)
-SimplePoolFromR...  DEBUG ---->ClassID:????
-SimplePoolFromR...  DEBUG --->Reading Assoc:????/CollectionTree(EventInfo_p4/ByteStreamEventInfo) [202]  (3 , ffffffff)
-SimplePoolFromR...  DEBUG ---->ClassID:????
-SimplePoolFromR...  DEBUG --->Reading Assoc:????/POOLContainerForm(DataHeaderForm) [202]  (4 , ffffffff)
-SimplePoolFromR...  DEBUG ---->ClassID:????
-SimplePoolFromR...  DEBUG --->Reading Assoc:????/POOLContainer(DataHeader) [202]  (5 , ffffffff)
-SimplePoolFromR...  DEBUG ---->ClassID:????
-SimplePoolFromR...  DEBUG --->Reading Assoc:????/POOLContainer(basic/DataHeader) [202]  (6 , ffffffff)
-SimplePoolFromR...  DEBUG ---->ClassID:????
-SimplePoolFromR...  DEBUG --->Reading Assoc:????/MetaData(EventStreamInfo_p3/Stream1) [202]  (7 , ffffffff)
-SimplePoolFromR...  DEBUG ---->ClassID:????
-SimplePoolFromR...  DEBUG --->Reading Assoc:????/MetaData(ByteStreamMetadataContainer_p1/ByteStreamMetadata) [202]  (8 , ffffffff)
-SimplePoolFromR...  DEBUG ---->ClassID:????
-SimplePoolFromR...  DEBUG --->Reading Assoc:????/MetaDataHdrForm(DataHeaderForm) [202]  (9 , ffffffff)
-SimplePoolFromR...  DEBUG ---->ClassID:????
-SimplePoolFromR...  DEBUG --->Reading Assoc:????/MetaDataHdr(DataHeader) [202]  (a , ffffffff)
-SimplePoolFromR...  DEBUG ---->ClassID:????
-##Links             DEBUG No objects passing selection criteria... Container has 9 Entries in total.
-SimplePoolFromR...  DEBUG --> Access   DbContainer  READ      [ROOT_All] ##Params
-##Params            DEBUG Opening
-##Params            DEBUG    attributes# = 1
-##Params            DEBUG Opened container ##Params of type ROOT_Tree
-SimplePoolFromR...  DEBUG --->Reading Param:FID=[????]
-SimplePoolFromR...  DEBUG --->Reading Param:PFN=[SimplePoolFromRaw.root]
-SimplePoolFromR...  DEBUG --->Reading Param:POOL_VSN=[1.1]
-SimplePoolFromR...  DEBUG --->Reading Param:FORMAT_VSN=[1.1]
-##Params            DEBUG No objects passing selection criteria... Container has 4 Entries in total.
-SimplePoolFromR...  DEBUG --> Access   DbContainer  READ      [ROOT_Tree] POOLContainer(DataHeader)
-POOLContainer(D...  DEBUG Opening
-POOLContainer(D...  DEBUG    attributes# = 1
-POOLContainer(D...  DEBUG Branch container 'DataHeader'
-POOLContainer(D...  DEBUG Opened container POOLContainer(DataHeader) of type ROOT_Tree
-MetaDataSvc         DEBUG handle() FirstInputFile for FID:????
-MetaDataSvc         DEBUG initInputMetaDataStore: file name FID:????
-SimplePoolFromR...  DEBUG --> Access   DbContainer  READ      [ROOT_Tree] MetaDataHdr(DataHeader)
-MetaDataHdr(Dat...  DEBUG Opening
-MetaDataHdr(Dat...  DEBUG    attributes# = 1
-MetaDataHdr(Dat...  DEBUG Branch container 'DataHeader'
-MetaDataHdr(Dat...  DEBUG Opened container MetaDataHdr(DataHeader) of type ROOT_Tree
-EventPersistenc...   INFO Added successfully Conversion service:AthenaPoolCnvSvc
-SimplePoolFromR...  DEBUG --> Access   DbContainer  READ      [ROOT_Tree] MetaDataHdrForm(DataHeaderForm)
-MetaDataHdrForm...  DEBUG Opening
-MetaDataHdrForm...  DEBUG    attributes# = 1
-MetaDataHdrForm...  DEBUG Branch container 'DataHeaderForm'
-MetaDataHdrForm...  DEBUG Opened container MetaDataHdrForm(DataHeaderForm) of type ROOT_Tree
-MetaDataSvc         DEBUG Loaded input meta data store proxies
-AthenaPoolAddre...  DEBUG Property update for OutputLevel : new value = 2
-AthenaPoolAddre...   INFO Initializing AthenaPoolAddressProviderSvc - package version EventSelectorAthenaPool-00-00-00
-ReadData            DEBUG Property update for OutputLevel : new value = 2
-ReadData             INFO in initialize()
-ReadData            DEBUG input handles: 0
-ReadData            DEBUG output handles: 0
-ReadData            DEBUG Data Deps for ReadData
-HistogramPersis...WARNING Histograms saving not required.
-AthenaEventLoopMgr   INFO Setup EventSelector service EventSelector
-ApplicationMgr       INFO Application Manager Initialized successfully
-Domain[ROOT_All]     INFO ->  Deaccess DbDatabase   READ      [ROOT_All] ????
-Domain[ROOT_All]     INFO >   Deaccess DbDomain     READ      [ROOT_All] 
-EventSelector       DEBUG Try item: "SimplePoolFromRaw.root" from the collection list.
-DbSession            INFO     Open     DbSession    
-Domain[ROOT_All]     INFO >   Access   DbDomain     READ      [ROOT_All] 
-Domain[ROOT_All]     INFO ->  Access   DbDatabase   READ      [ROOT_All] ????
-Domain[ROOT_All]     INFO                           SimplePoolFromRaw.root
-SimplePoolFromR...  DEBUG --> Access   DbContainer  READ      [ROOT_All] ##Shapes
-##Shapes            DEBUG Opening
-##Shapes            DEBUG    attributes# = 1
-##Shapes            DEBUG Opened container ##Shapes of type ROOT_Tree
-SimplePoolFromR...  DEBUG --->Reading Shape[0 , ????]: [1 Column(s)]
-SimplePoolFromR...  DEBUG ---->[0]:EventInfo_p4 Typ:EventInfo_p4 [21] Size:0 Offset:0 #Elements:1
-SimplePoolFromR...  DEBUG --->Reading Shape[1 , ????]: [1 Column(s)]
-SimplePoolFromR...  DEBUG ---->[0]:DataHeaderForm_p5 Typ:DataHeaderForm_p5 [21] Size:0 Offset:0 #Elements:1
-SimplePoolFromR...  DEBUG --->Reading Shape[2 , ????]: [1 Column(s)]
-SimplePoolFromR...  DEBUG ---->[0]:DataHeader_p5 Typ:DataHeader_p5 [21] Size:0 Offset:0 #Elements:1
-SimplePoolFromR...  DEBUG --->Reading Shape[3 , ????]: [1 Column(s)]
-SimplePoolFromR...  DEBUG ---->[0]:EventStreamInfo_p3 Typ:EventStreamInfo_p3 [21] Size:0 Offset:0 #Elements:1
-SimplePoolFromR...  DEBUG --->Reading Shape[4 , ????]: [1 Column(s)]
-SimplePoolFromR...  DEBUG ---->[0]:ByteStreamMetadataContainer_p1 Typ:ByteStreamMetadataContainer_p1 [21] Size:0 Offset:0 #Elements:1
-##Shapes            DEBUG No objects passing selection criteria... Container has 5 Entries in total.
-SimplePoolFromR...  DEBUG --> Access   DbContainer  READ      [ROOT_All] ##Links
-##Links             DEBUG Opening
-##Links             DEBUG    attributes# = 1
-##Links             DEBUG Opened container ##Links of type ROOT_Tree
-SimplePoolFromR...  DEBUG --->Reading Assoc:????/##Params [200]  (2 , ffffffff)
-SimplePoolFromR...  DEBUG ---->ClassID:????
-SimplePoolFromR...  DEBUG --->Reading Assoc:????/CollectionTree(EventInfo_p4/ByteStreamEventInfo) [202]  (3 , ffffffff)
-SimplePoolFromR...  DEBUG ---->ClassID:????
-SimplePoolFromR...  DEBUG --->Reading Assoc:????/POOLContainerForm(DataHeaderForm) [202]  (4 , ffffffff)
-SimplePoolFromR...  DEBUG ---->ClassID:????
-SimplePoolFromR...  DEBUG --->Reading Assoc:????/POOLContainer(DataHeader) [202]  (5 , ffffffff)
-SimplePoolFromR...  DEBUG ---->ClassID:????
-SimplePoolFromR...  DEBUG --->Reading Assoc:????/POOLContainer(basic/DataHeader) [202]  (6 , ffffffff)
-SimplePoolFromR...  DEBUG ---->ClassID:????
-SimplePoolFromR...  DEBUG --->Reading Assoc:????/MetaData(EventStreamInfo_p3/Stream1) [202]  (7 , ffffffff)
-SimplePoolFromR...  DEBUG ---->ClassID:????
-SimplePoolFromR...  DEBUG --->Reading Assoc:????/MetaData(ByteStreamMetadataContainer_p1/ByteStreamMetadata) [202]  (8 , ffffffff)
-SimplePoolFromR...  DEBUG ---->ClassID:????
-SimplePoolFromR...  DEBUG --->Reading Assoc:????/MetaDataHdrForm(DataHeaderForm) [202]  (9 , ffffffff)
-SimplePoolFromR...  DEBUG ---->ClassID:????
-SimplePoolFromR...  DEBUG --->Reading Assoc:????/MetaDataHdr(DataHeader) [202]  (a , ffffffff)
-SimplePoolFromR...  DEBUG ---->ClassID:????
-##Links             DEBUG No objects passing selection criteria... Container has 9 Entries in total.
-SimplePoolFromR...  DEBUG --> Access   DbContainer  READ      [ROOT_All] ##Params
-##Params            DEBUG Opening
-##Params            DEBUG    attributes# = 1
-##Params            DEBUG Opened container ##Params of type ROOT_Tree
-SimplePoolFromR...  DEBUG --->Reading Param:FID=[????]
-SimplePoolFromR...  DEBUG --->Reading Param:PFN=[SimplePoolFromRaw.root]
-SimplePoolFromR...  DEBUG --->Reading Param:POOL_VSN=[1.1]
-SimplePoolFromR...  DEBUG --->Reading Param:FORMAT_VSN=[1.1]
-##Params            DEBUG No objects passing selection criteria... Container has 4 Entries in total.
-MetaDataSvc         DEBUG handle() BeginTagFile for SimplePoolFromRaw.root
-SimplePoolFromR...  DEBUG --> Access   DbContainer  READ      [ROOT_Tree] POOLContainer(DataHeader)
-POOLContainer(D...  DEBUG Opening
-POOLContainer(D...  DEBUG    attributes# = 1
-POOLContainer(D...  DEBUG Branch container 'DataHeader'
-POOLContainer(D...  DEBUG Opened container POOLContainer(DataHeader) of type ROOT_Tree
-ApplicationMgr       INFO Application Manager Started successfully
-MetaDataSvc         DEBUG handle() BeginInputFile for SimplePoolFromRaw.root
-MetaDataSvc         DEBUG initInputMetaDataStore: file name SimplePoolFromRaw.root
-SimplePoolFromR...  DEBUG --> Access   DbContainer  READ      [ROOT_Tree] MetaDataHdr(DataHeader)
-MetaDataHdr(Dat...  DEBUG Opening
-MetaDataHdr(Dat...  DEBUG    attributes# = 1
-MetaDataHdr(Dat...  DEBUG Branch container 'DataHeader'
-MetaDataHdr(Dat...  DEBUG Opened container MetaDataHdr(DataHeader) of type ROOT_Tree
-MetaDataSvc         DEBUG Loaded input meta data store proxies
-MetaDataSvc         DEBUG  calling beginInputFile for ToolSvc.IOVDbMetaDataTool
-MetaDataSvc         DEBUG  calling beginInputFile for ToolSvc.ByteStreamMetadataTool
-SimplePoolFromR...  DEBUG --> Access   DbContainer  READ      [ROOT_Tree] MetaData(ByteStreamMetadataContainer_p1/ByteStreamMetadata)
-MetaData(ByteSt...  DEBUG Opening
-MetaData(ByteSt...  DEBUG    attributes# = 1
-MetaData(ByteSt...  DEBUG Branch container 'ByteStreamMetadataContainer_p1_ByteStreamMetadata'
-MetaData(ByteSt...  DEBUG Opened container MetaData(ByteStreamMetadataContainer_p1/ByteStreamMetadata) of type ROOT_Tree
-ClassIDSvc           INFO  getRegistryEntries: read 3714 CLIDRegistry entries for module ALL
-EventSelector       DEBUG Get AttributeList from the collection
-EventSelector       DEBUG AttributeList size 0
-EventSelector       DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000000].
-EventSelector       DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000000].
-EventSelector       DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000000]
-SimplePoolFromR...  DEBUG --> Access   DbContainer  READ      [ROOT_Tree] POOLContainerForm(DataHeaderForm)
-POOLContainerFo...  DEBUG Opening
-POOLContainerFo...  DEBUG    attributes# = 1
-POOLContainerFo...  DEBUG Branch container 'DataHeaderForm'
-POOLContainerFo...  DEBUG Opened container POOLContainerForm(DataHeaderForm) of type ROOT_Tree
-AthenaPoolAddre...  DEBUG The current Event contains: 2 objects
-AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 2101, name = ByteStreamEventInfo
-AlgResourcePool      INFO TopAlg list empty. Recovering the one of Application Manager
-SimplePoolFromR...  DEBUG --> Access   DbContainer  READ      [ROOT_Tree] CollectionTree(EventInfo_p4/ByteStreamEventInfo)
-CollectionTree(...  DEBUG Opening
-CollectionTree(...  DEBUG    attributes# = 1
-CollectionTree(...  DEBUG Branch container 'EventInfo_p4_ByteStreamEventInfo'
-CollectionTree(...  DEBUG Opened container CollectionTree(EventInfo_p4/ByteStreamEventInfo) of type ROOT_Tree
-AthenaPoolConve...   INFO massageEventInfo: unable to get OverrideRunNumberFromInput property from EventSelector 
-ClassIDSvc           INFO  getRegistryEntries: read 11 CLIDRegistry entries for module ALL
-AthenaEventLoopMgr   INFO   ===>>>  start of run 20720    <<<===
-AthenaEventLoopMgr   INFO   ===>>>  start processing event #14350, run #20720 0 events processed so far  <<<===
-ReadBs               INFO ByteStreamMetadataContainer, size =  1
-ReadData            DEBUG in execute()
-SimplePoolFromR...  DEBUG --> Access   DbContainer  READ      [ROOT_Tree] MetaData(EventStreamInfo_p3/Stream1)
-MetaData(EventS...  DEBUG Opening
-MetaData(EventS...  DEBUG    attributes# = 1
-MetaData(EventS...  DEBUG Branch container 'EventStreamInfo_p3_Stream1'
-MetaData(EventS...  DEBUG Opened container MetaData(EventStreamInfo_p3/Stream1) of type ROOT_Tree
-ReadData             INFO EventStreamInfo: Number of events = 3
-ReadData             INFO EventStreamInfo: ItemList:
-ReadData             INFO CLID = 2101, key = ByteStreamEventInfo
-ReadData             INFO CLID = 222376821, key = StreamX
-ReadData             INFO EventType: Event type: sim/data -  is data , testbeam/atlas -  is atlas , calib/physics -  is physics 
-ReadData             INFO TagInfo: 
-ReadData             INFO EventInfo event: 14350 run: 20720
-ReadData             INFO Get Smart data ptr 1
-ReadData             INFO Could not find ExampleTrackContainer/MyTracks
-ReadData             INFO Could not find ExampleHitContainer/MyHits
-AthenaEventLoopMgr   INFO   ===>>>  done processing event #14350, run #20720 1 events processed so far  <<<===
-EventSelector       DEBUG Get AttributeList from the collection
-EventSelector       DEBUG AttributeList size 0
-EventSelector       DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000001].
-EventSelector       DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000001].
-EventSelector       DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000001]
-AthenaPoolAddre...  DEBUG The current Event contains: 2 objects
-AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 2101, name = ByteStreamEventInfo
-AthenaEventLoopMgr   INFO   ===>>>  start processing event #14356, run #20720 1 events processed so far  <<<===
-ReadBs               INFO ByteStreamMetadataContainer, size =  1
-ReadData            DEBUG in execute()
-ReadData             INFO EventStreamInfo: Number of events = 3
-ReadData             INFO EventStreamInfo: ItemList:
-ReadData             INFO CLID = 2101, key = ByteStreamEventInfo
-ReadData             INFO CLID = 222376821, key = StreamX
-ReadData             INFO EventType: Event type: sim/data -  is data , testbeam/atlas -  is atlas , calib/physics -  is physics 
-ReadData             INFO TagInfo: 
-ReadData             INFO EventInfo event: 14356 run: 20720
-ReadData             INFO Get Smart data ptr 1
-ReadData             INFO Could not find ExampleTrackContainer/MyTracks
-ReadData             INFO Could not find ExampleHitContainer/MyHits
-AthenaEventLoopMgr   INFO   ===>>>  done processing event #14356, run #20720 2 events processed so far  <<<===
-EventSelector       DEBUG Get AttributeList from the collection
-EventSelector       DEBUG AttributeList size 0
-EventSelector       DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000002].
-EventSelector       DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000002].
-EventSelector       DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000002]
-AthenaPoolAddre...  DEBUG The current Event contains: 2 objects
-AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 2101, name = ByteStreamEventInfo
-AthenaEventLoopMgr   INFO   ===>>>  start processing event #14382, run #20720 2 events processed so far  <<<===
-ReadBs               INFO ByteStreamMetadataContainer, size =  1
-ReadData            DEBUG in execute()
-ReadData             INFO EventStreamInfo: Number of events = 3
-ReadData             INFO EventStreamInfo: ItemList:
-ReadData             INFO CLID = 2101, key = ByteStreamEventInfo
-ReadData             INFO CLID = 222376821, key = StreamX
-ReadData             INFO EventType: Event type: sim/data -  is data , testbeam/atlas -  is atlas , calib/physics -  is physics 
-ReadData             INFO TagInfo: 
-ReadData             INFO EventInfo event: 14382 run: 20720
-ReadData             INFO Get Smart data ptr 1
-ReadData             INFO Could not find ExampleTrackContainer/MyTracks
-ReadData             INFO Could not find ExampleHitContainer/MyHits
-AthenaEventLoopMgr   INFO   ===>>>  done processing event #14382, run #20720 3 events processed so far  <<<===
-Domain[ROOT_All]     INFO ->  Deaccess DbDatabase   READ      [ROOT_All] ????
-Domain[ROOT_All]     INFO >   Deaccess DbDomain     READ      [ROOT_All] 
-MetaDataSvc         DEBUG handle() EndInputFile for FID:????
-MetaDataSvc         DEBUG handle() EndTagFile for SimplePoolFromRaw.root
-MetaDataSvc         DEBUG handle() LastInputFile for end
-AthenaEventLoopMgr   INFO No more events in event selection 
-MetaDataSvc         DEBUG  calling metaDataStop for ToolSvc.IOVDbMetaDataTool
-MetaDataSvc         DEBUG  calling metaDataStop for ToolSvc.ByteStreamMetadataTool
-MetaDataSvc         DEBUG Releasing MetaDataTools
-ApplicationMgr       INFO Application Manager Stopped successfully
-IncidentProcAlg1     INFO Finalize
-ReadBs               INFO in finalize()
-ReadData             INFO in finalize()
-IncidentProcAlg2     INFO Finalize
-AthDictLoaderSvc     INFO in finalize...
-ToolSvc              INFO Removing all tools created by ToolSvc
-ToolSvc.ByteStr...   INFO in finalize()
-*****Chrono*****     INFO ****************************************************************************************************
-*****Chrono*****     INFO  The Final CPU consumption ( Chrono ) Table (ordered)
-*****Chrono*****     INFO ****************************************************************************************************
-cObjR_ALL            INFO Time User   : Tot=   20 [ms] Ave/Min/Max= 1.67(+- 5.53)/    0/   20 [ms] #= 12
-cObj_ALL             INFO Time User   : Tot=   50 [ms] Ave/Min/Max=    5(+- 9.22)/    0/   30 [ms] #= 10
-ChronoStatSvc        INFO Time User   : Tot= 1.02  [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"
diff --git a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_ReadBsJobOptions.py b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_ReadBsJobOptions.py
deleted file mode 100755
index ffed143715d74b7ed98eac91d4e28a0922e60eee..0000000000000000000000000000000000000000
--- a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_ReadBsJobOptions.py
+++ /dev/null
@@ -1,88 +0,0 @@
-## @file AthenaPoolExample_ReadJobOptions.py
-## @brief Example job options file to illustrate how to read event data from Pool.
-## @author Peter van Gemmeren <gemmeren@anl.gov>
-## $Id: AthenaPoolExample_ReadJobOptions.py,v 1.35 2009-05-20 18:02:24 gemmeren Exp $
-###############################################################
-#
-# This Job option:
-# ----------------
-# 1. Reads the data from files have been written with AthneaPoolExample_WriteJobOptions.py
-#    and AthneaPoolExample_RWJobOptions.py using global BackNavigation and skipping first 10 events.
-# 2. Same as 1., but using TAG collections. Instead of SkipEvents, a HelperTool is used to skip the
-#    first 10 events using their MagicTag attribute (example for computational TAG processing).
-# 3. Same as 1., but using scoped BackNavigation to ExampleHit.
-#
-#==============================================================
-
-## basic job configuration
-import AthenaCommon.AtlasUnixStandardJob
-
-## get a handle on the default top-level algorithm sequence
-from AthenaCommon.AlgSequence import AlgSequence
-topSequence = AlgSequence()
-
-#--------------------------------------------------------------
-# Event related parameters
-#--------------------------------------------------------------
-from AthenaCommon.AppMgr import theApp
-theApp.EvtMax = 200000
-
-#--------------------------------------------------------------
-# Load POOL support
-#--------------------------------------------------------------
-import AthenaPoolCnvSvc.ReadAthenaPool
-
-## get a handle on the ServiceManager
-from AthenaCommon.AppMgr import ServiceMgr as svcMgr
-
-from ByteStreamCnvSvc.ByteStreamCnvSvcConf import ByteStreamMetadataTool
-svcMgr.MetaDataSvc.MetaDataTools += [ "ByteStreamMetadataTool" ]
-
-svcMgr.EventSelector.InputCollections = [ "SimplePoolFromRaw.root" ]
-#svcMgr.EventSelector.InputCollections = [ "SimpleRawCollection.root" ]
-#svcMgr.EventSelector.CollectionType = "ExplicitROOT"
-#svcMgr.EventSelector.RefName = "StreamRAW"
-#svcMgr.EventSelector.Query="EventNumber==14356"
-
-"""Configure ByteStream
-from ByteStreamCnvSvc.ByteStreamCnvSvcConf import ByteStreamCnvSvc
-svcMgr += ByteStreamCnvSvc()
-svcMgr.EventPersistencySvc.CnvServices += [ "ByteStreamCnvSvc" ]
-
-# ByteStreamAddressProviderSvc
-from ByteStreamCnvSvcBase. ByteStreamCnvSvcBaseConf import ByteStreamAddressProviderSvc
-svcMgr += ByteStreamAddressProviderSvc()
-ByteStreamAddressProviderSvc = svcMgr.ByteStreamAddressProviderSvc
-
-# specific for tag
-from ByteStreamCnvSvc.ByteStreamCnvSvcConf import ByteStreamNavigationProviderSvc
-svcMgr += ByteStreamNavigationProviderSvc( "ByteStreamNavigationProviderSvc" )
-svcMgr.ProxyProviderSvc.ProviderNames += [ "ByteStreamNavigationProviderSvc" ]
-"""
-
-#--------------------------------------------------------------
-# Private Application Configuration options
-#--------------------------------------------------------------
-# Load "user algorithm" top algorithms to be run, and the libraries that house them
-from AthenaPoolExampleAlgorithms.AthenaPoolExampleAlgorithmsConf import AthPoolEx__ReadBs
-topSequence += AthPoolEx__ReadBs("ReadBs")
-
-from AthenaPoolExampleAlgorithms.AthenaPoolExampleAlgorithmsConf import AthPoolEx__ReadData
-topSequence += AthPoolEx__ReadData("ReadData")
-
-#--------------------------------------------------------------
-# Set output level threshold (2=DEBUG, 3=INFO, 4=WARNING, 5=ERROR, 6=FATAL)
-#--------------------------------------------------------------
-svcMgr.MessageSvc.OutputLevel = 3
-svcMgr.MessageSvc.defaultLimit = 100000
-
-svcMgr.MetaDataSvc.OutputLevel = 2
-svcMgr.EventSelector.OutputLevel = 2
-svcMgr.AthenaPoolAddressProviderSvc.OutputLevel = 2
-svcMgr.PoolSvc.OutputLevel = 2
-topSequence.ReadData.OutputLevel = 2
-
-#
-# End of job options file
-#
-###############################################################
diff --git a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_ReadBsTag.ref b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_ReadBsTag.ref
deleted file mode 100644
index f800557d6e0bb213937349f94424520d6e96fde5..0000000000000000000000000000000000000000
--- a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_ReadBsTag.ref
+++ /dev/null
@@ -1,134 +0,0 @@
-Warning in <TInterpreter::ReadRootmapFile>: class  Event found in libG4AtlasControlDict.so  is already in libtest_GPyTestDict.so 
-Warning in <TInterpreter::ReadRootmapFile>: class  UCharDbArray found in libStorageSvcDict.so  is already in libRootCnvDict.so 
-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_ReadBsTagJobOptions.py"
-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 
-====================================================================================================================================
-====================================================================================================================================
-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
-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-??-??-??
-AthMasterSeq         INFO Member list: AthSequencer/AthAlgSeq, AthSequencer/AthOutSeq, AthSequencer/AthRegSeq
-AthAlgSeq            INFO Member list: AthPoolEx::ReadBs/ReadBs, AthPoolEx::ReadData/ReadData
-ReadBs               INFO in initialize()
-MetaDataSvc         DEBUG Property update for OutputLevel : new value = 2
-MetaDataSvc          INFO Initializing MetaDataSvc - package version AthenaServices-??-??-??
-AthenaPoolCnvSvc     INFO Initializing AthenaPoolCnvSvc - package version AthenaPoolCnvSvc-??-??-??
-PoolSvc             DEBUG Property update for OutputLevel : new value = 2
-PoolSvc              INFO Initializing PoolSvc - package version PoolSvc-??-??-??
-PoolSvc              INFO io_register[PoolSvc](xmlcatalog_file:PoolFileCatalog.xml) [ok]
-PoolSvc              INFO Set connectionsvc retry/timeout/IDLE timeout to  'ConnectionRetrialPeriod':300/ 'ConnectionRetrialTimeOut':3600/ 'ConnectionTimeOut':5 seconds with connection cleanup disabled
-PoolSvc              INFO Frontier compression level set to 5
-PoolSvc              INFO Successfully setup replica sorting algorithm
-PoolSvc             DEBUG OutputLevel is 2
-PoolSvc              INFO Re-initializing PoolSvc
-PoolSvc              INFO POOL WriteCatalog is xmlcatalog_file:PoolFileCatalog.xml
-XMLFileCatalog Info Connecting to the catalog
-PoolXMLFileCatalog Info Xerces-c initialization Number 0
-ToolSvc.ByteStr...   INFO Initializing ToolSvc.ByteStreamMetadataTool - package version ByteStreamCnvSvc-??-??-??
-EventSelector       DEBUG Property update for OutputLevel : new value = 2
-EventSelector        INFO Initializing EventSelector - package version EventSelectorAthenaPool-??-??-??
-EventSelector        INFO reinitialization...
-EventSelector        INFO EventSelection with query EventNumber==14356
-EventSelector       DEBUG Try item: "SimpleRawCollection.root" from the collection list.
-RootCollection Info Opening Collection File SimpleRawCollection.root in mode: READ
-RootCollection Debug File SimpleRawCollection.root exists.
-RootCollection Info File SimpleRawCollection.root opened
-RootCollection Debug Retrieved Collection TTree  "POOLCollectionTree" from file SimpleRawCollection.root
-RootCollection Info Root collection opened, size = 3
-EventSelector        INFO Using collection ref name: StreamRAW
-AthenaPoolAddre...  DEBUG Property update for OutputLevel : new value = 2
-AthenaPoolAddre...   INFO Initializing AthenaPoolAddressProviderSvc - package version EventSelectorAthenaPool-??-??-??
-ByteStreamNavig...   INFO Initializing ByteStreamNavigationProviderSvc - package version ByteStreamCnvSvc-??-??-??
-ROBDataProviderSvc   INFO Initializing ROBDataProviderSvc - package version ByteStreamCnvSvcBase-??-??-??
-ROBDataProviderSvc   INFO  ---> Filter out empty ROB fragments                               =  'filterEmptyROB':False
-ROBDataProviderSvc   INFO  ---> Filter out specific ROBs by Status Code: # ROBs = 0
-ROBDataProviderSvc   INFO  ---> Filter out Sub Detector ROBs by Status Code: # Sub Detectors = 0
-ByteStreamAddre...   INFO Initializing ByteStreamAddressProviderSvc - package version ByteStreamCnvSvcBase-??-??-??
-ByteStreamAddre...   INFO initialized 
-ByteStreamAddre...   INFO -- Module IDs for: 
-ByteStreamAddre...   INFO    CTP                                  = 0x1
-ByteStreamAddre...   INFO    muCTPi                               = 0x1
-ByteStreamAddre...   INFO    Calorimeter Cluster Processor RoI    = 0xa8, 0xa9, 0xaa, 0xab
-ByteStreamAddre...   INFO    Calorimeter Jet/Energy Processor RoI = 0xac, 0xad
-ByteStreamAddre...   INFO    Topo Processor RoI = 0x81, 0x91
-ByteStreamAddre...   INFO -- Will fill Store with id =  0
-ProxyProviderSvc     INFO Initializing ProxyProviderSvc - package version SGComps-??-??-??
-ReadData            DEBUG Property update for OutputLevel : new value = 2
-ReadData             INFO in initialize()
-ReadData            DEBUG input handles: 0
-ReadData            DEBUG output handles: 0
-ReadData            DEBUG Data Deps for ReadData
-HistogramPersis...WARNING Histograms saving not required.
-AthenaEventLoopMgr   INFO Setup EventSelector service EventSelector
-ActiveStoreSvc       INFO Initializing ActiveStoreSvc - package version StoreGate-??-??-??
-ApplicationMgr       INFO Application Manager Initialized successfully
-RootCollection Info Closing open collection 'SimpleRawCollection.root'
-EventSelector       DEBUG Try item: "SimpleRawCollection.root" from the collection list.
-RootCollection Info Opening Collection File SimpleRawCollection.root in mode: READ
-RootCollection Debug File SimpleRawCollection.root exists.
-RootCollection Info File SimpleRawCollection.root opened
-RootCollection Debug Retrieved Collection TTree  "POOLCollectionTree" from file SimpleRawCollection.root
-RootCollection Info Root collection opened, size = 3
-RootCollection::Metadata Debug  Using char buffer of size: 4100
-RootCollection::Metadata Debug  readKeys: found 3 metadata keys
-MetaDataSvc         DEBUG handle() BeginTagFile for SimpleRawCollection.root
-ApplicationMgr       INFO Application Manager Started successfully
-EventSelector       DEBUG Get AttributeList from the collection
-EventSelector       DEBUG AttributeList size 2
-EventSelector       DEBUG record AthenaAttribute, name = Stream1_ref = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000001].
-EventSelector       DEBUG record AthenaAttribute, name = StreamRAW_ref = [DB=????][CNT=][CLID=!!!!][TECH=00001000][OID=00000000-0091678C].
-EventSelector       DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000001].
-EventSelector       DEBUG found AthenaAttribute, name = StreamRAW_ref = [DB=????][CNT=][CLID=!!!!][TECH=00001000][OID=00000000-0091678C]
-EventPersistenc...   INFO Added successfully Conversion service:AthenaPoolCnvSvc
-PoolXMLFileCatalog Debug FileID ???? is not in the catalog
-XMLFileCatalog Debug empty physical filename found
-PoolXMLFileCatalog Debug PFname  is not in the xml file
-AthenaPoolAddre...  DEBUG The current Event contains: 1 objects
-StoreGateSvc      WARNING retrieve(const): No valid proxy for object [DB=????][CNT=][CLID=!!!!][TECH=00001000][OID=00000000-0091678C]  of type DataHeader(CLID 222376821)
-StoreGateSvc      WARNING retrieve(const): No valid proxy for object [DB=????][CNT=][CLID=!!!!][TECH=00001000][OID=00000000-0091678C]  of type DataHeader(CLID 222376821)
-StoreGateSvc      WARNING retrieve(default): No valid proxy for default object 
- of type EventInfo(CLID 2101)
-AthenaEventLoopMgr  ERROR Unable to retrieve Event root object
-AthenaEventLoopMgr  ERROR Terminating event processing loop due to errors
-ToolSvc.ByteStr...   INFO handle() LastInputFile, filename = end
-MetaDataSvc         DEBUG handle() LastInputFile for end
-MetaDataSvc         DEBUG Releasing MetaDataTools
-ApplicationMgr       INFO Application Manager Stopped successfully
-ReadBs               INFO in finalize()
-ReadData             INFO in finalize()
-AthAlgSeq            INFO Finalizing AthAlgSeq...
-ReadData            DEBUG Calling destructor
-AthOutSeq            INFO Finalizing AthOutSeq...
-AthRegSeq            INFO Finalizing AthRegSeq...
-AthMasterSeq         INFO Finalizing AthMasterSeq...
-RootCollection Info Closing open collection 'SimpleRawCollection.root'
-XMLFileCatalog Debug There were no updates in the catalog
-PoolXMLFileCatalog Info XercesC termination number 0
-PoolSvc              INFO I/O finalization...
-AthDictLoaderSvc     INFO in finalize...
-ToolSvc              INFO Removing all tools created by ToolSvc
-ToolSvc.ByteStr...   INFO in finalize()
-*****Chrono*****     INFO ****************************************************************************************************
-*****Chrono*****     INFO  The Final CPU consumption ( Chrono ) Table (ordered)
-*****Chrono*****     INFO ****************************************************************************************************
-*****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 65: "failure in an algorithm execute"
-CORAL/Services/ConnectionService Info Deleting the ConnectionPool
diff --git a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_ReadBsTagJobOptions.py b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_ReadBsTagJobOptions.py
deleted file mode 100644
index 215e3232f83ec9388daa932d8c36a0431c875450..0000000000000000000000000000000000000000
--- a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_ReadBsTagJobOptions.py
+++ /dev/null
@@ -1,86 +0,0 @@
-## @file AthenaPoolExample_ReadJobOptions.py
-## @brief Example job options file to illustrate how to read event data from Pool.
-## @author Peter van Gemmeren <gemmeren@anl.gov>
-## $Id: AthenaPoolExample_ReadJobOptions.py,v 1.35 2009-05-20 18:02:24 gemmeren Exp $
-###############################################################
-#
-# This Job option:
-# ----------------
-# 1. Reads the data from files have been written with AthneaPoolExample_WriteJobOptions.py
-#    and AthneaPoolExample_RWJobOptions.py using global BackNavigation and skipping first 10 events.
-# 2. Same as 1., but using TAG collections. Instead of SkipEvents, a HelperTool is used to skip the
-#    first 10 events using their MagicTag attribute (example for computational TAG processing).
-# 3. Same as 1., but using scoped BackNavigation to ExampleHit.
-#
-#==============================================================
-
-## basic job configuration
-import AthenaCommon.AtlasUnixStandardJob
-
-## get a handle on the default top-level algorithm sequence
-from AthenaCommon.AlgSequence import AlgSequence
-topSequence = AlgSequence()
-
-#--------------------------------------------------------------
-# Event related parameters
-#--------------------------------------------------------------
-from AthenaCommon.AppMgr import theApp
-theApp.EvtMax = 200000
-
-#--------------------------------------------------------------
-# Load POOL support
-#--------------------------------------------------------------
-import AthenaPoolCnvSvc.ReadAthenaPool
-
-## get a handle on the ServiceManager
-from AthenaCommon.AppMgr import ServiceMgr as svcMgr
-
-from ByteStreamCnvSvc.ByteStreamCnvSvcConf import ByteStreamMetadataTool
-svcMgr.MetaDataSvc.MetaDataTools += [ "ByteStreamMetadataTool" ]
-
-svcMgr.EventSelector.InputCollections = [ "SimplePoolFromRaw.root" ]
-svcMgr.EventSelector.InputCollections = [ "SimpleRawCollection.root" ]
-svcMgr.EventSelector.CollectionType = "ExplicitROOT"
-svcMgr.EventSelector.RefName = "StreamRAW"
-svcMgr.EventSelector.Query="EventNumber==14356"
-
-from ByteStreamCnvSvc.ByteStreamCnvSvcConf import ByteStreamCnvSvc
-svcMgr += ByteStreamCnvSvc()
-svcMgr.EventPersistencySvc.CnvServices += [ "ByteStreamCnvSvc" ]
-
-# ByteStreamAddressProviderSvc
-from ByteStreamCnvSvcBase. ByteStreamCnvSvcBaseConf import ByteStreamAddressProviderSvc
-svcMgr += ByteStreamAddressProviderSvc()
-ByteStreamAddressProviderSvc = svcMgr.ByteStreamAddressProviderSvc
-
-# specific for tag
-from ByteStreamCnvSvc.ByteStreamCnvSvcConf import ByteStreamNavigationProviderSvc
-svcMgr += ByteStreamNavigationProviderSvc( "ByteStreamNavigationProviderSvc" )
-svcMgr.ProxyProviderSvc.ProviderNames += [ "ByteStreamNavigationProviderSvc" ]
-
-#--------------------------------------------------------------
-# Private Application Configuration options
-#--------------------------------------------------------------
-# Load "user algorithm" top algorithms to be run, and the libraries that house them
-from AthenaPoolExampleAlgorithms.AthenaPoolExampleAlgorithmsConf import AthPoolEx__ReadBs
-topSequence += AthPoolEx__ReadBs("ReadBs")
-
-from AthenaPoolExampleAlgorithms.AthenaPoolExampleAlgorithmsConf import AthPoolEx__ReadData
-topSequence += AthPoolEx__ReadData("ReadData")
-
-#--------------------------------------------------------------
-# Set output level threshold (2=DEBUG, 3=INFO, 4=WARNING, 5=ERROR, 6=FATAL)
-#--------------------------------------------------------------
-svcMgr.MessageSvc.OutputLevel = 3
-svcMgr.MessageSvc.defaultLimit = 100000
-
-svcMgr.MetaDataSvc.OutputLevel = 2
-svcMgr.EventSelector.OutputLevel = 2
-svcMgr.AthenaPoolAddressProviderSvc.OutputLevel = 2
-svcMgr.PoolSvc.OutputLevel = 2
-topSequence.ReadData.OutputLevel = 2
-
-#
-# End of job options file
-#
-###############################################################
diff --git a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_ReadConcat.ref b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_ReadConcat.ref
index a967320e2df0f65a95e635aed3d8105be751ade5..e026164a24206792c2ace7cff111d09a22af3ac3 100644
--- a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_ReadConcat.ref
+++ b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_ReadConcat.ref
@@ -1,54 +1,26 @@
-Mon Jan 22 13:14:06 CST 2018
-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_ReadJobOptions.py"
-Py:ConfigurableDb    INFO Read module info for 5435 configurables from 52 genConfDb files
-Py:ConfigurableDb    INFO No duplicates have been found: that's good !
 Athena               INFO including file "AthenaCommon/runbatch.py"
-[?1034hApplicationMgr       INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0
-ApplicationMgr    SUCCESS 
-====================================================================================================================================
-                                                   Welcome to ApplicationMgr (GaudiCoreSvc v30r1)
-                                          running on atlas1.hep.anl.gov on Mon Jan 22 13:14:18 2018
-====================================================================================================================================
-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 2319 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
-ReadData            DEBUG Property update for OutputLevel : new value = 2
 ReadData             INFO in initialize()
-MetaDataSvc         DEBUG Property update for OutputLevel : new value = 2
-MetaDataSvc          INFO Initializing MetaDataSvc - package version AthenaServices-00-00-00
-AthenaPoolCnvSvc     INFO Initializing AthenaPoolCnvSvc - package version AthenaPoolCnvSvc-00-00-00
-PoolSvc             DEBUG Property update for OutputLevel : new value = 2
 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://lcgft-atlas.gridpp.rl.ac.uk:3128/frontierATLAS)(serverurl=http://frontier-atlas.lcg.triumf.ca:3128/ATLAS_frontier)(serverurl=http://ccfrontier.in2p3.fr:23128/ccin2p3-AtlasFrontier) will be considered for COOL data
-DBReplicaSvc         INFO Read replica configuration from /users/gemmeren/workarea/build/x86_64-slc6-gcc62-opt/share/dbreplica.config
-DBReplicaSvc         INFO Total of 1 servers found for host atlas1.hep.anl.gov [ATLF ]
 PoolSvc              INFO Successfully setup replica sorting algorithm
 PoolSvc             DEBUG OutputLevel is 
 PoolSvc              INFO Setting up APR FileCatalog and Streams
 PoolSvc              INFO POOL WriteCatalog is file:Catalog1.xml
-DbSession            INFO     Open     DbSession    
-Domain[ROOT_All]     INFO >   Access   DbDomain     READ      [ROOT_All] 
-EventSelector       DEBUG Property update for OutputLevel : new value = 2
-EventSelector        INFO Initializing EventSelector - package version EventSelectorAthenaPool-00-00-00
 IoComponentMgr       INFO IoComponent EventSelector has already had file EmptyPoolFile.root registered with i/o mode READ
 EventSelector        INFO reinitialization...
 EventSelector        INFO EventSelection with query 
 EventSelector       DEBUG Try item: "EmptyPoolFile.root" from the collection list.
-Domain[ROOT_All]     INFO ->  Access   DbDatabase   READ      [ROOT_All] ????
 Domain[ROOT_All]     INFO                           EmptyPoolFile.root
 EmptyPoolFile.root  DEBUG --> Access   DbContainer  READ      [ROOT_All] ##Shapes
 ##Shapes            DEBUG Opening
@@ -86,12 +58,8 @@ EmptyPoolFile.root  DEBUG --->Reading Param:FORMAT_VSN=[1.1]
 PoolSvc              INFO Failed to find container POOLContainer(DataHeader) to create POOL collection.
 PoolSvc              INFO Failed to find container POOLContainer_DataHeader to create POOL collection.
 EventSelector       DEBUG No events found in: EmptyPoolFile.root skipped!!!
-Domain[ROOT_All]     INFO ->  Deaccess DbDatabase   READ      [ROOT_All] ????
 Domain[ROOT_All]     INFO >   Deaccess DbDomain     READ      [ROOT_All] 
 EventSelector       DEBUG Try item: "SimplePoolFile1.root" from the collection list.
-DbSession            INFO     Open     DbSession    
-Domain[ROOT_All]     INFO >   Access   DbDomain     READ      [ROOT_All] 
-Domain[ROOT_All]     INFO ->  Access   DbDatabase   READ      [ROOT_All] ????
 Domain[ROOT_All]     INFO                           SimplePoolFile1.root
 SimplePoolFile1...  DEBUG --> Access   DbContainer  READ      [ROOT_All] ##Shapes
 ##Shapes            DEBUG Opening
@@ -122,15 +90,13 @@ SimplePoolFile1...  DEBUG --->Reading Assoc:????/POOLContainerForm(DataHeaderFor
 SimplePoolFile1...  DEBUG ---->ClassID:????
 SimplePoolFile1...  DEBUG --->Reading Assoc:????/POOLContainer(DataHeader) [202]  (6 , ffffffff)
 SimplePoolFile1...  DEBUG ---->ClassID:????
-SimplePoolFile1...  DEBUG --->Reading Assoc:????/POOLContainer(basic/DataHeader) [202]  (7 , ffffffff)
+SimplePoolFile1...  DEBUG --->Reading Assoc:????/MetaData(EventStreamInfo_p3/Stream1) [202]  (7 , ffffffff)
 SimplePoolFile1...  DEBUG ---->ClassID:????
-SimplePoolFile1...  DEBUG --->Reading Assoc:????/MetaData(EventStreamInfo_p3/Stream1) [202]  (8 , ffffffff)
+SimplePoolFile1...  DEBUG --->Reading Assoc:????/MetaDataHdrForm(DataHeaderForm) [202]  (8 , ffffffff)
 SimplePoolFile1...  DEBUG ---->ClassID:????
-SimplePoolFile1...  DEBUG --->Reading Assoc:????/MetaDataHdrForm(DataHeaderForm) [202]  (9 , ffffffff)
+SimplePoolFile1...  DEBUG --->Reading Assoc:????/MetaDataHdr(DataHeader) [202]  (9 , ffffffff)
 SimplePoolFile1...  DEBUG ---->ClassID:????
-SimplePoolFile1...  DEBUG --->Reading Assoc:????/MetaDataHdr(DataHeader) [202]  (a , ffffffff)
-SimplePoolFile1...  DEBUG ---->ClassID:????
-##Links             DEBUG No objects passing selection criteria... Container has 9 Entries in total.
+##Links             DEBUG No objects passing selection criteria... Container has 8 Entries in total.
 SimplePoolFile1...  DEBUG --> Access   DbContainer  READ      [ROOT_All] ##Params
 ##Params            DEBUG Opening
 ##Params            DEBUG    attributes# = 1
@@ -159,19 +125,11 @@ MetaDataHdrForm...  DEBUG    attributes# = 1
 MetaDataHdrForm...  DEBUG Branch container 'DataHeaderForm'
 MetaDataHdrForm...  DEBUG Opened container MetaDataHdrForm(DataHeaderForm) of type ROOT_Tree
 MetaDataSvc         DEBUG Loaded input meta data store proxies
-AthenaPoolAddre...  DEBUG Property update for OutputLevel : new value = 2
-ReadData            DEBUG input handles: 0
-ReadData            DEBUG output handles: 0
-ReadData            DEBUG Data Deps for ReadData
 HistogramPersis...WARNING Histograms saving not required.
 AthenaEventLoopMgr   INFO Setup EventSelector service EventSelector
 ApplicationMgr       INFO Application Manager Initialized successfully
-Domain[ROOT_All]     INFO ->  Deaccess DbDatabase   READ      [ROOT_All] ????
 Domain[ROOT_All]     INFO >   Deaccess DbDomain     READ      [ROOT_All] 
 EventSelector       DEBUG Try item: "EmptyPoolFile.root" from the collection list.
-DbSession            INFO     Open     DbSession    
-Domain[ROOT_All]     INFO >   Access   DbDomain     READ      [ROOT_All] 
-Domain[ROOT_All]     INFO ->  Access   DbDatabase   READ      [ROOT_All] ????
 Domain[ROOT_All]     INFO                           EmptyPoolFile.root
 EmptyPoolFile.root  DEBUG --> Access   DbContainer  READ      [ROOT_All] ##Shapes
 ##Shapes            DEBUG Opening
@@ -224,12 +182,8 @@ MetaDataHdrForm...  DEBUG Opened container MetaDataHdrForm(DataHeaderForm) of ty
 MetaDataSvc         DEBUG Loaded input meta data store proxies
 MetaDataSvc         DEBUG  calling beginInputFile for ToolSvc.IOVDbMetaDataTool
 MetaDataSvc         DEBUG handle() EndInputFile for eventless EmptyPoolFile.root
-Domain[ROOT_All]     INFO ->  Deaccess DbDatabase   READ      [ROOT_All] ????
 Domain[ROOT_All]     INFO >   Deaccess DbDomain     READ      [ROOT_All] 
 EventSelector       DEBUG Try item: "SimplePoolFile1.root" from the collection list.
-DbSession            INFO     Open     DbSession    
-Domain[ROOT_All]     INFO >   Access   DbDomain     READ      [ROOT_All] 
-Domain[ROOT_All]     INFO ->  Access   DbDatabase   READ      [ROOT_All] ????
 Domain[ROOT_All]     INFO                           SimplePoolFile1.root
 SimplePoolFile1...  DEBUG --> Access   DbContainer  READ      [ROOT_All] ##Shapes
 ##Shapes            DEBUG Opening
@@ -260,15 +214,13 @@ SimplePoolFile1...  DEBUG --->Reading Assoc:????/POOLContainerForm(DataHeaderFor
 SimplePoolFile1...  DEBUG ---->ClassID:????
 SimplePoolFile1...  DEBUG --->Reading Assoc:????/POOLContainer(DataHeader) [202]  (6 , ffffffff)
 SimplePoolFile1...  DEBUG ---->ClassID:????
-SimplePoolFile1...  DEBUG --->Reading Assoc:????/POOLContainer(basic/DataHeader) [202]  (7 , ffffffff)
-SimplePoolFile1...  DEBUG ---->ClassID:????
-SimplePoolFile1...  DEBUG --->Reading Assoc:????/MetaData(EventStreamInfo_p3/Stream1) [202]  (8 , ffffffff)
+SimplePoolFile1...  DEBUG --->Reading Assoc:????/MetaData(EventStreamInfo_p3/Stream1) [202]  (7 , ffffffff)
 SimplePoolFile1...  DEBUG ---->ClassID:????
-SimplePoolFile1...  DEBUG --->Reading Assoc:????/MetaDataHdrForm(DataHeaderForm) [202]  (9 , ffffffff)
+SimplePoolFile1...  DEBUG --->Reading Assoc:????/MetaDataHdrForm(DataHeaderForm) [202]  (8 , ffffffff)
 SimplePoolFile1...  DEBUG ---->ClassID:????
-SimplePoolFile1...  DEBUG --->Reading Assoc:????/MetaDataHdr(DataHeader) [202]  (a , ffffffff)
+SimplePoolFile1...  DEBUG --->Reading Assoc:????/MetaDataHdr(DataHeader) [202]  (9 , ffffffff)
 SimplePoolFile1...  DEBUG ---->ClassID:????
-##Links             DEBUG No objects passing selection criteria... Container has 9 Entries in total.
+##Links             DEBUG No objects passing selection criteria... Container has 8 Entries in total.
 SimplePoolFile1...  DEBUG --> Access   DbContainer  READ      [ROOT_All] ##Params
 ##Params            DEBUG Opening
 ##Params            DEBUG    attributes# = 1
@@ -318,7 +270,6 @@ EventSelector        INFO skipping event 9
 EventSelector        INFO skipping event 10
 EventSelector       DEBUG Get AttributeList from the collection
 EventSelector       DEBUG AttributeList size 0
-ClassIDSvc           INFO  getRegistryEntries: read 2671 CLIDRegistry entries for module ALL
 EventSelector       DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000000A].
 EventSelector       DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000000A].
 EventSelector       DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000000A]
@@ -330,14 +281,11 @@ POOLContainerFo...  DEBUG Opened container POOLContainerForm(DataHeaderForm) of
 AthenaPoolAddre...  DEBUG The current Event contains: 3 objects
 AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo
 AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 9102, name = MyHits
-AlgResourcePool      INFO TopAlg list empty. Recovering the one of Application Manager
 SimplePoolFile1...  DEBUG --> Access   DbContainer  READ      [ROOT_Tree] CollectionTree(EventInfo_p4/McEventInfo)
 CollectionTree(...  DEBUG Opening
 CollectionTree(...  DEBUG    attributes# = 1
 CollectionTree(...  DEBUG Branch container 'EventInfo_p4_McEventInfo'
 CollectionTree(...  DEBUG Opened container CollectionTree(EventInfo_p4/McEventInfo) of type ROOT_Tree
-AthenaPoolConve...   INFO massageEventInfo: unable to get OverrideRunNumberFromInput property from EventSelector 
-ClassIDSvc           INFO  getRegistryEntries: read 11 CLIDRegistry entries for module ALL
 AthenaEventLoopMgr   INFO   ===>>>  start of run 1    <<<===
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #10, run #1 0 events processed so far  <<<===
 ReadData            DEBUG in execute()
@@ -371,8 +319,6 @@ ReadData             INFO Hit x = 1020.49 y = 63.5816 z = -951.864 detector = Du
 ReadData             INFO Hit x = 1023.7 y = 57.9027 z = -953.684 detector = DummyHitDetector
 ReadData             INFO Hit x = 1026.91 y = 52.2238 z = -955.073 detector = DummyHitDetector
 ReadData             INFO Hit x = 1030.12 y = 46.5449 z = -956.169 detector = DummyHitDetector
-ClassIDSvc           INFO  getRegistryEntries: read 10 CLIDRegistry entries for module ALL
-PoolSvc              INFO Database (SimplePoolFile1.root) attribute [BYTES_READ]: 27476
 PoolSvc              INFO Database (SimplePoolFile1.root) attribute [READ_CALLS]: 24
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #10, run #1 1 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -405,7 +351,6 @@ ReadData             INFO Hit x = 1120.49 y = 63.5816 z = -1051.86 detector = Du
 ReadData             INFO Hit x = 1123.7 y = 57.9027 z = -1053.68 detector = DummyHitDetector
 ReadData             INFO Hit x = 1126.91 y = 52.2238 z = -1055.07 detector = DummyHitDetector
 ReadData             INFO Hit x = 1130.12 y = 46.5449 z = -1056.17 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolFile1.root) attribute [BYTES_READ]: 27476
 PoolSvc              INFO Database (SimplePoolFile1.root) attribute [READ_CALLS]: 24
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #11, run #1 2 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -438,7 +383,6 @@ ReadData             INFO Hit x = 1220.49 y = 63.5816 z = -1151.86 detector = Du
 ReadData             INFO Hit x = 1223.7 y = 57.9027 z = -1153.68 detector = DummyHitDetector
 ReadData             INFO Hit x = 1226.91 y = 52.2238 z = -1155.07 detector = DummyHitDetector
 ReadData             INFO Hit x = 1230.12 y = 46.5449 z = -1156.17 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolFile1.root) attribute [BYTES_READ]: 27476
 PoolSvc              INFO Database (SimplePoolFile1.root) attribute [READ_CALLS]: 24
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #12, run #1 3 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -471,7 +415,6 @@ ReadData             INFO Hit x = 1320.49 y = 63.5816 z = -1251.86 detector = Du
 ReadData             INFO Hit x = 1323.7 y = 57.9027 z = -1253.68 detector = DummyHitDetector
 ReadData             INFO Hit x = 1326.91 y = 52.2238 z = -1255.07 detector = DummyHitDetector
 ReadData             INFO Hit x = 1330.12 y = 46.5449 z = -1256.17 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolFile1.root) attribute [BYTES_READ]: 27476
 PoolSvc              INFO Database (SimplePoolFile1.root) attribute [READ_CALLS]: 24
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #13, run #1 4 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -504,7 +447,6 @@ ReadData             INFO Hit x = 1420.49 y = 63.5816 z = -1351.86 detector = Du
 ReadData             INFO Hit x = 1423.7 y = 57.9027 z = -1353.68 detector = DummyHitDetector
 ReadData             INFO Hit x = 1426.91 y = 52.2238 z = -1355.07 detector = DummyHitDetector
 ReadData             INFO Hit x = 1430.12 y = 46.5449 z = -1356.17 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolFile1.root) attribute [BYTES_READ]: 27476
 PoolSvc              INFO Database (SimplePoolFile1.root) attribute [READ_CALLS]: 24
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #14, run #1 5 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -537,7 +479,6 @@ ReadData             INFO Hit x = 1520.49 y = 63.5816 z = -1451.86 detector = Du
 ReadData             INFO Hit x = 1523.7 y = 57.9027 z = -1453.68 detector = DummyHitDetector
 ReadData             INFO Hit x = 1526.91 y = 52.2238 z = -1455.07 detector = DummyHitDetector
 ReadData             INFO Hit x = 1530.12 y = 46.5449 z = -1456.17 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolFile1.root) attribute [BYTES_READ]: 27476
 PoolSvc              INFO Database (SimplePoolFile1.root) attribute [READ_CALLS]: 24
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #15, run #1 6 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -570,7 +511,6 @@ ReadData             INFO Hit x = 1620.49 y = 63.5816 z = -1551.86 detector = Du
 ReadData             INFO Hit x = 1623.7 y = 57.9027 z = -1553.68 detector = DummyHitDetector
 ReadData             INFO Hit x = 1626.91 y = 52.2238 z = -1555.07 detector = DummyHitDetector
 ReadData             INFO Hit x = 1630.12 y = 46.5449 z = -1556.17 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolFile1.root) attribute [BYTES_READ]: 27476
 PoolSvc              INFO Database (SimplePoolFile1.root) attribute [READ_CALLS]: 24
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #16, run #1 7 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -603,7 +543,6 @@ ReadData             INFO Hit x = 1720.49 y = 63.5816 z = -1651.86 detector = Du
 ReadData             INFO Hit x = 1723.7 y = 57.9027 z = -1653.68 detector = DummyHitDetector
 ReadData             INFO Hit x = 1726.91 y = 52.2238 z = -1655.07 detector = DummyHitDetector
 ReadData             INFO Hit x = 1730.12 y = 46.5449 z = -1656.17 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolFile1.root) attribute [BYTES_READ]: 27476
 PoolSvc              INFO Database (SimplePoolFile1.root) attribute [READ_CALLS]: 24
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #17, run #1 8 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -636,7 +575,6 @@ ReadData             INFO Hit x = 1820.49 y = 63.5816 z = -1751.86 detector = Du
 ReadData             INFO Hit x = 1823.7 y = 57.9027 z = -1753.68 detector = DummyHitDetector
 ReadData             INFO Hit x = 1826.91 y = 52.2238 z = -1755.07 detector = DummyHitDetector
 ReadData             INFO Hit x = 1830.12 y = 46.5449 z = -1756.17 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolFile1.root) attribute [BYTES_READ]: 27476
 PoolSvc              INFO Database (SimplePoolFile1.root) attribute [READ_CALLS]: 24
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #18, run #1 9 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -669,17 +607,12 @@ ReadData             INFO Hit x = 1920.49 y = 63.5816 z = -1851.86 detector = Du
 ReadData             INFO Hit x = 1923.7 y = 57.9027 z = -1853.68 detector = DummyHitDetector
 ReadData             INFO Hit x = 1926.91 y = 52.2238 z = -1855.07 detector = DummyHitDetector
 ReadData             INFO Hit x = 1930.12 y = 46.5449 z = -1856.17 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolFile1.root) attribute [BYTES_READ]: 27476
 PoolSvc              INFO Database (SimplePoolFile1.root) attribute [READ_CALLS]: 24
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #19, run #1 10 events processed so far  <<<===
-Domain[ROOT_All]     INFO ->  Deaccess DbDatabase   READ      [ROOT_All] ????
 Domain[ROOT_All]     INFO >   Deaccess DbDomain     READ      [ROOT_All] 
 MetaDataSvc         DEBUG handle() EndInputFile for FID:????
 MetaDataSvc         DEBUG handle() EndTagFile for SimplePoolFile1.root
 EventSelector       DEBUG Try item: "EmptyPoolFile.root" from the collection list.
-DbSession            INFO     Open     DbSession    
-Domain[ROOT_All]     INFO >   Access   DbDomain     READ      [ROOT_All] 
-Domain[ROOT_All]     INFO ->  Access   DbDatabase   READ      [ROOT_All] ????
 Domain[ROOT_All]     INFO                           EmptyPoolFile.root
 EmptyPoolFile.root  DEBUG --> Access   DbContainer  READ      [ROOT_All] ##Shapes
 ##Shapes            DEBUG Opening
@@ -732,13 +665,9 @@ MetaDataHdrForm...  DEBUG Opened container MetaDataHdrForm(DataHeaderForm) of ty
 MetaDataSvc         DEBUG Loaded input meta data store proxies
 MetaDataSvc         DEBUG  calling beginInputFile for ToolSvc.IOVDbMetaDataTool
 MetaDataSvc         DEBUG handle() EndInputFile for eventless EmptyPoolFile.root
-Domain[ROOT_All]     INFO ->  Deaccess DbDatabase   READ      [ROOT_All] ????
 Domain[ROOT_All]     INFO >   Deaccess DbDomain     READ      [ROOT_All] 
 EventSelector       DEBUG Try item: "SimplePoolFile2.root" from the collection list.
 MetaDataSvc         DEBUG handle() BeginTagFile for SimplePoolFile2.root
-DbSession            INFO     Open     DbSession    
-Domain[ROOT_All]     INFO >   Access   DbDomain     READ      [ROOT_All] 
-Domain[ROOT_All]     INFO ->  Access   DbDatabase   READ      [ROOT_All] ????
 Domain[ROOT_All]     INFO                           SimplePoolFile2.root
 SimplePoolFile2...  DEBUG --> Access   DbContainer  READ      [ROOT_All] ##Shapes
 ##Shapes            DEBUG Opening
@@ -777,17 +706,15 @@ SimplePoolFile2...  DEBUG --->Reading Assoc:????/POOLCollectionTree(EventNumber)
 SimplePoolFile2...  DEBUG ---->ClassID:????
 SimplePoolFile2...  DEBUG --->Reading Assoc:????/POOLCollectionTree(MagicNumber) [202]  (9 , ffffffff)
 SimplePoolFile2...  DEBUG ---->ClassID:????
-SimplePoolFile2...  DEBUG --->Reading Assoc:????/POOLContainer(basic/DataHeader) [202]  (a , ffffffff)
-SimplePoolFile2...  DEBUG ---->ClassID:????
-SimplePoolFile2...  DEBUG --->Reading Assoc:????/MetaData(EventStreamInfo_p3/Stream2) [202]  (b , ffffffff)
+SimplePoolFile2...  DEBUG --->Reading Assoc:????/MetaData(EventStreamInfo_p3/Stream2) [202]  (a , ffffffff)
 SimplePoolFile2...  DEBUG ---->ClassID:????
-SimplePoolFile2...  DEBUG --->Reading Assoc:????/MetaDataHdrForm(DataHeaderForm) [202]  (c , ffffffff)
+SimplePoolFile2...  DEBUG --->Reading Assoc:????/MetaDataHdrForm(DataHeaderForm) [202]  (b , ffffffff)
 SimplePoolFile2...  DEBUG ---->ClassID:????
-SimplePoolFile2...  DEBUG --->Reading Assoc:????/MetaDataHdr(DataHeader) [202]  (d , ffffffff)
+SimplePoolFile2...  DEBUG --->Reading Assoc:????/MetaDataHdr(DataHeader) [202]  (c , ffffffff)
 SimplePoolFile2...  DEBUG ---->ClassID:????
-SimplePoolFile2...  DEBUG --->Reading Assoc:????/MetaData(EventStreamInfo_p3/Stream1) [202]  (e , ffffffff)
+SimplePoolFile2...  DEBUG --->Reading Assoc:????/MetaData(EventStreamInfo_p3/Stream1) [202]  (d , ffffffff)
 SimplePoolFile2...  DEBUG ---->ClassID:????
-##Links             DEBUG No objects passing selection criteria... Container has 13 Entries in total.
+##Links             DEBUG No objects passing selection criteria... Container has 12 Entries in total.
 SimplePoolFile2...  DEBUG --> Access   DbContainer  READ      [ROOT_All] ##Params
 ##Params            DEBUG Opening
 ##Params            DEBUG    attributes# = 1
@@ -820,7 +747,6 @@ MetaDataSvc         DEBUG Loaded input meta data store proxies
 MetaDataSvc         DEBUG  calling beginInputFile for ToolSvc.IOVDbMetaDataTool
 EventSelector       DEBUG Get AttributeList from the collection
 EventSelector       DEBUG AttributeList size 3
-ClassIDSvc           INFO  getRegistryEntries: read 3 CLIDRegistry entries for module ALL
 EventSelector       DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000000].
 EventSelector       DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000000].
 EventSelector       DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000000]
@@ -869,7 +795,6 @@ ReadData             INFO EventInfo event: 0 run: 1
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 26591
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 27
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #0, run #1 11 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -897,7 +822,6 @@ ReadData             INFO EventInfo event: 1 run: 1
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 26591
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 27
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #1, run #1 12 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -925,7 +849,6 @@ ReadData             INFO EventInfo event: 2 run: 1
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 26591
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 27
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #2, run #1 13 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -953,7 +876,6 @@ ReadData             INFO EventInfo event: 3 run: 1
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 26591
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 27
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #3, run #1 14 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -981,7 +903,6 @@ ReadData             INFO EventInfo event: 4 run: 1
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 26591
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 27
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #4, run #1 15 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1009,7 +930,6 @@ ReadData             INFO EventInfo event: 5 run: 1
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 26591
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 27
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #5, run #1 16 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1037,7 +957,6 @@ ReadData             INFO EventInfo event: 6 run: 1
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 26591
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 27
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #6, run #1 17 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1065,7 +984,6 @@ ReadData             INFO EventInfo event: 7 run: 1
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 26591
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 27
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #7, run #1 18 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1093,7 +1011,6 @@ ReadData             INFO EventInfo event: 8 run: 1
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 26591
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 27
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #8, run #1 19 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1121,7 +1038,6 @@ ReadData             INFO EventInfo event: 9 run: 1
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 26591
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 27
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #9, run #1 20 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1149,7 +1065,6 @@ ReadData             INFO EventInfo event: 10 run: 1
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 26591
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 27
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #10, run #1 21 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1177,7 +1092,6 @@ ReadData             INFO EventInfo event: 11 run: 1
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 26591
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 27
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #11, run #1 22 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1205,7 +1119,6 @@ ReadData             INFO EventInfo event: 12 run: 1
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 26591
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 27
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #12, run #1 23 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1233,7 +1146,6 @@ ReadData             INFO EventInfo event: 13 run: 1
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 26591
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 27
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #13, run #1 24 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1261,7 +1173,6 @@ ReadData             INFO EventInfo event: 14 run: 1
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 26591
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 27
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #14, run #1 25 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1289,7 +1200,6 @@ ReadData             INFO EventInfo event: 15 run: 1
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 26591
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 27
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #15, run #1 26 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1317,7 +1227,6 @@ ReadData             INFO EventInfo event: 16 run: 1
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 26591
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 27
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #16, run #1 27 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1345,7 +1254,6 @@ ReadData             INFO EventInfo event: 17 run: 1
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 26591
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 27
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #17, run #1 28 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1373,7 +1281,6 @@ ReadData             INFO EventInfo event: 18 run: 1
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 26591
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 27
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #18, run #1 29 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1401,7 +1308,6 @@ ReadData             INFO EventInfo event: 19 run: 1
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 26591
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 27
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #19, run #1 30 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1430,7 +1336,6 @@ ReadData             INFO EventInfo event: 20 run: 2
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 28480
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 31
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #20, run #2 31 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1458,7 +1363,6 @@ ReadData             INFO EventInfo event: 21 run: 2
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 28480
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 31
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #21, run #2 32 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1486,7 +1390,6 @@ ReadData             INFO EventInfo event: 22 run: 2
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 28480
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 31
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #22, run #2 33 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1514,7 +1417,6 @@ ReadData             INFO EventInfo event: 23 run: 2
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 28480
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 31
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #23, run #2 34 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1542,7 +1444,6 @@ ReadData             INFO EventInfo event: 24 run: 2
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 28480
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 31
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #24, run #2 35 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1570,7 +1471,6 @@ ReadData             INFO EventInfo event: 25 run: 2
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 28480
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 31
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #25, run #2 36 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1598,7 +1498,6 @@ ReadData             INFO EventInfo event: 26 run: 2
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 28480
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 31
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #26, run #2 37 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1626,7 +1525,6 @@ ReadData             INFO EventInfo event: 27 run: 2
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 28480
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 31
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #27, run #2 38 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1654,7 +1552,6 @@ ReadData             INFO EventInfo event: 28 run: 2
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 28480
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 31
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #28, run #2 39 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1682,7 +1579,6 @@ ReadData             INFO EventInfo event: 29 run: 2
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 28480
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 31
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #29, run #2 40 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1710,7 +1606,6 @@ ReadData             INFO EventInfo event: 30 run: 2
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 28480
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 31
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #30, run #2 41 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1738,7 +1633,6 @@ ReadData             INFO EventInfo event: 31 run: 2
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 28480
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 31
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #31, run #2 42 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1766,7 +1660,6 @@ ReadData             INFO EventInfo event: 32 run: 2
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 28480
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 31
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #32, run #2 43 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1794,7 +1687,6 @@ ReadData             INFO EventInfo event: 33 run: 2
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 28480
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 31
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #33, run #2 44 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1822,7 +1714,6 @@ ReadData             INFO EventInfo event: 34 run: 2
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 28480
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 31
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #34, run #2 45 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1850,7 +1741,6 @@ ReadData             INFO EventInfo event: 35 run: 2
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 28480
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 31
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #35, run #2 46 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1878,7 +1768,6 @@ ReadData             INFO EventInfo event: 36 run: 2
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 28480
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 31
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #36, run #2 47 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1906,7 +1795,6 @@ ReadData             INFO EventInfo event: 37 run: 2
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 28480
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 31
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #37, run #2 48 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1934,7 +1822,6 @@ ReadData             INFO EventInfo event: 38 run: 2
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 28480
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 31
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #38, run #2 49 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1962,17 +1849,12 @@ ReadData             INFO EventInfo event: 39 run: 2
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 28480
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 31
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #39, run #2 50 events processed so far  <<<===
 MetaDataSvc         DEBUG handle() EndInputFile for FID:????
 MetaDataSvc         DEBUG handle() EndTagFile for SimplePoolFile2.root
-Domain[ROOT_All]     INFO ->  Deaccess DbDatabase   READ      [ROOT_All] ????
 Domain[ROOT_All]     INFO >   Deaccess DbDomain     READ      [ROOT_All] 
 EventSelector       DEBUG Try item: "SimplePoolFile3.root" from the collection list.
-DbSession            INFO     Open     DbSession    
-Domain[ROOT_All]     INFO >   Access   DbDomain     READ      [ROOT_All] 
-Domain[ROOT_All]     INFO ->  Access   DbDatabase   READ      [ROOT_All] ????
 Domain[ROOT_All]     INFO                           SimplePoolFile3.root
 SimplePoolFile3...  DEBUG --> Access   DbContainer  READ      [ROOT_All] ##Shapes
 ##Shapes            DEBUG Opening
@@ -2003,15 +1885,13 @@ SimplePoolFile3...  DEBUG --->Reading Assoc:????/POOLContainerForm(DataHeaderFor
 SimplePoolFile3...  DEBUG ---->ClassID:????
 SimplePoolFile3...  DEBUG --->Reading Assoc:????/POOLContainer(DataHeader) [202]  (6 , ffffffff)
 SimplePoolFile3...  DEBUG ---->ClassID:????
-SimplePoolFile3...  DEBUG --->Reading Assoc:????/POOLContainer(basic/DataHeader) [202]  (7 , ffffffff)
+SimplePoolFile3...  DEBUG --->Reading Assoc:????/MetaData(EventStreamInfo_p3/Stream2) [202]  (7 , ffffffff)
 SimplePoolFile3...  DEBUG ---->ClassID:????
-SimplePoolFile3...  DEBUG --->Reading Assoc:????/MetaData(EventStreamInfo_p3/Stream2) [202]  (8 , ffffffff)
+SimplePoolFile3...  DEBUG --->Reading Assoc:????/MetaDataHdrForm(DataHeaderForm) [202]  (8 , ffffffff)
 SimplePoolFile3...  DEBUG ---->ClassID:????
-SimplePoolFile3...  DEBUG --->Reading Assoc:????/MetaDataHdrForm(DataHeaderForm) [202]  (9 , ffffffff)
+SimplePoolFile3...  DEBUG --->Reading Assoc:????/MetaDataHdr(DataHeader) [202]  (9 , ffffffff)
 SimplePoolFile3...  DEBUG ---->ClassID:????
-SimplePoolFile3...  DEBUG --->Reading Assoc:????/MetaDataHdr(DataHeader) [202]  (a , ffffffff)
-SimplePoolFile3...  DEBUG ---->ClassID:????
-##Links             DEBUG No objects passing selection criteria... Container has 9 Entries in total.
+##Links             DEBUG No objects passing selection criteria... Container has 8 Entries in total.
 SimplePoolFile3...  DEBUG --> Access   DbContainer  READ      [ROOT_All] ##Params
 ##Params            DEBUG Opening
 ##Params            DEBUG    attributes# = 1
@@ -2089,7 +1969,6 @@ CollectionTree(...  DEBUG    attributes# = 1
 CollectionTree(...  DEBUG Branch container 'ExampleTrackContainer_p1_MyTracks'
 CollectionTree(...  DEBUG Opened container CollectionTree(ExampleTrackContainer_p1/MyTracks) of type ROOT_Tree
 ReadData             INFO Track pt = 74.8928 eta = 3.1676 phi = 2.6161 detector = Track made in: DummyHitDetector
-Domain[ROOT_All]     INFO ->  Access   DbDatabase   READ      [ROOT_All] ????
 Domain[ROOT_All]     INFO                           SimplePoolFile1.root
 SimplePoolFile1...  DEBUG --> Access   DbContainer  READ      [ROOT_All] ##Shapes
 ##Shapes            DEBUG Opening
@@ -2120,15 +1999,13 @@ SimplePoolFile1...  DEBUG --->Reading Assoc:????/POOLContainerForm(DataHeaderFor
 SimplePoolFile1...  DEBUG ---->ClassID:????
 SimplePoolFile1...  DEBUG --->Reading Assoc:????/POOLContainer(DataHeader) [202]  (6 , ffffffff)
 SimplePoolFile1...  DEBUG ---->ClassID:????
-SimplePoolFile1...  DEBUG --->Reading Assoc:????/POOLContainer(basic/DataHeader) [202]  (7 , ffffffff)
-SimplePoolFile1...  DEBUG ---->ClassID:????
-SimplePoolFile1...  DEBUG --->Reading Assoc:????/MetaData(EventStreamInfo_p3/Stream1) [202]  (8 , ffffffff)
+SimplePoolFile1...  DEBUG --->Reading Assoc:????/MetaData(EventStreamInfo_p3/Stream1) [202]  (7 , ffffffff)
 SimplePoolFile1...  DEBUG ---->ClassID:????
-SimplePoolFile1...  DEBUG --->Reading Assoc:????/MetaDataHdrForm(DataHeaderForm) [202]  (9 , ffffffff)
+SimplePoolFile1...  DEBUG --->Reading Assoc:????/MetaDataHdrForm(DataHeaderForm) [202]  (8 , ffffffff)
 SimplePoolFile1...  DEBUG ---->ClassID:????
-SimplePoolFile1...  DEBUG --->Reading Assoc:????/MetaDataHdr(DataHeader) [202]  (a , ffffffff)
+SimplePoolFile1...  DEBUG --->Reading Assoc:????/MetaDataHdr(DataHeader) [202]  (9 , ffffffff)
 SimplePoolFile1...  DEBUG ---->ClassID:????
-##Links             DEBUG No objects passing selection criteria... Container has 9 Entries in total.
+##Links             DEBUG No objects passing selection criteria... Container has 8 Entries in total.
 SimplePoolFile1...  DEBUG --> Access   DbContainer  READ      [ROOT_All] ##Params
 ##Params            DEBUG Opening
 ##Params            DEBUG    attributes# = 1
@@ -2177,7 +2054,6 @@ ReadData             INFO Hit x = 20.4945 y = 63.5816 z = 48.1358 detector = Dum
 ReadData             INFO Hit x = 23.7045 y = 57.9027 z = 46.3159 detector = DummyHitDetector
 ReadData             INFO Hit x = 26.9145 y = 52.2238 z = 44.9265 detector = DummyHitDetector
 ReadData             INFO Hit x = 30.1245 y = 46.5449 z = 43.831 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 26855
 PoolSvc              INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 23
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #0, run #1 51 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -2224,7 +2100,6 @@ ReadData             INFO Hit x = 120.494 y = 63.5816 z = -51.8642 detector = Du
 ReadData             INFO Hit x = 123.704 y = 57.9027 z = -53.6841 detector = DummyHitDetector
 ReadData             INFO Hit x = 126.915 y = 52.2238 z = -55.0735 detector = DummyHitDetector
 ReadData             INFO Hit x = 130.125 y = 46.5449 z = -56.169 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 26855
 PoolSvc              INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 23
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #1, run #1 52 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -2271,7 +2146,6 @@ ReadData             INFO Hit x = 220.494 y = 63.5816 z = -151.864 detector = Du
 ReadData             INFO Hit x = 223.704 y = 57.9027 z = -153.684 detector = DummyHitDetector
 ReadData             INFO Hit x = 226.915 y = 52.2238 z = -155.073 detector = DummyHitDetector
 ReadData             INFO Hit x = 230.125 y = 46.5449 z = -156.169 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 26855
 PoolSvc              INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 23
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #2, run #1 53 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -2318,7 +2192,6 @@ ReadData             INFO Hit x = 320.495 y = 63.5816 z = -251.864 detector = Du
 ReadData             INFO Hit x = 323.705 y = 57.9027 z = -253.684 detector = DummyHitDetector
 ReadData             INFO Hit x = 326.915 y = 52.2238 z = -255.073 detector = DummyHitDetector
 ReadData             INFO Hit x = 330.125 y = 46.5449 z = -256.169 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 26855
 PoolSvc              INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 23
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #3, run #1 54 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -2365,7 +2238,6 @@ ReadData             INFO Hit x = 420.495 y = 63.5816 z = -351.864 detector = Du
 ReadData             INFO Hit x = 423.705 y = 57.9027 z = -353.684 detector = DummyHitDetector
 ReadData             INFO Hit x = 426.915 y = 52.2238 z = -355.073 detector = DummyHitDetector
 ReadData             INFO Hit x = 430.125 y = 46.5449 z = -356.169 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 26855
 PoolSvc              INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 23
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #4, run #1 55 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -2412,7 +2284,6 @@ ReadData             INFO Hit x = 520.495 y = 63.5816 z = -451.864 detector = Du
 ReadData             INFO Hit x = 523.705 y = 57.9027 z = -453.684 detector = DummyHitDetector
 ReadData             INFO Hit x = 526.914 y = 52.2238 z = -455.073 detector = DummyHitDetector
 ReadData             INFO Hit x = 530.125 y = 46.5449 z = -456.169 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 26855
 PoolSvc              INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 23
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #5, run #1 56 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -2459,7 +2330,6 @@ ReadData             INFO Hit x = 620.495 y = 63.5816 z = -551.864 detector = Du
 ReadData             INFO Hit x = 623.705 y = 57.9027 z = -553.684 detector = DummyHitDetector
 ReadData             INFO Hit x = 626.914 y = 52.2238 z = -555.073 detector = DummyHitDetector
 ReadData             INFO Hit x = 630.125 y = 46.5449 z = -556.169 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 26855
 PoolSvc              INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 23
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #6, run #1 57 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -2506,7 +2376,6 @@ ReadData             INFO Hit x = 720.495 y = 63.5816 z = -651.864 detector = Du
 ReadData             INFO Hit x = 723.705 y = 57.9027 z = -653.684 detector = DummyHitDetector
 ReadData             INFO Hit x = 726.914 y = 52.2238 z = -655.073 detector = DummyHitDetector
 ReadData             INFO Hit x = 730.125 y = 46.5449 z = -656.169 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 26855
 PoolSvc              INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 23
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #7, run #1 58 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -2553,7 +2422,6 @@ ReadData             INFO Hit x = 820.495 y = 63.5816 z = -751.864 detector = Du
 ReadData             INFO Hit x = 823.705 y = 57.9027 z = -753.684 detector = DummyHitDetector
 ReadData             INFO Hit x = 826.914 y = 52.2238 z = -755.073 detector = DummyHitDetector
 ReadData             INFO Hit x = 830.125 y = 46.5449 z = -756.169 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 26855
 PoolSvc              INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 23
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #8, run #1 59 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -2600,7 +2468,6 @@ ReadData             INFO Hit x = 920.495 y = 63.5816 z = -851.864 detector = Du
 ReadData             INFO Hit x = 923.705 y = 57.9027 z = -853.684 detector = DummyHitDetector
 ReadData             INFO Hit x = 926.914 y = 52.2238 z = -855.073 detector = DummyHitDetector
 ReadData             INFO Hit x = 930.125 y = 46.5449 z = -856.169 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 26855
 PoolSvc              INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 23
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #9, run #1 60 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -2647,7 +2514,6 @@ ReadData             INFO Hit x = 1020.49 y = 63.5816 z = -951.864 detector = Du
 ReadData             INFO Hit x = 1023.7 y = 57.9027 z = -953.684 detector = DummyHitDetector
 ReadData             INFO Hit x = 1026.91 y = 52.2238 z = -955.073 detector = DummyHitDetector
 ReadData             INFO Hit x = 1030.12 y = 46.5449 z = -956.169 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 26855
 PoolSvc              INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 23
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #10, run #1 61 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -2694,7 +2560,6 @@ ReadData             INFO Hit x = 1120.49 y = 63.5816 z = -1051.86 detector = Du
 ReadData             INFO Hit x = 1123.7 y = 57.9027 z = -1053.68 detector = DummyHitDetector
 ReadData             INFO Hit x = 1126.91 y = 52.2238 z = -1055.07 detector = DummyHitDetector
 ReadData             INFO Hit x = 1130.12 y = 46.5449 z = -1056.17 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 26855
 PoolSvc              INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 23
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #11, run #1 62 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -2741,7 +2606,6 @@ ReadData             INFO Hit x = 1220.49 y = 63.5816 z = -1151.86 detector = Du
 ReadData             INFO Hit x = 1223.7 y = 57.9027 z = -1153.68 detector = DummyHitDetector
 ReadData             INFO Hit x = 1226.91 y = 52.2238 z = -1155.07 detector = DummyHitDetector
 ReadData             INFO Hit x = 1230.12 y = 46.5449 z = -1156.17 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 26855
 PoolSvc              INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 23
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #12, run #1 63 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -2788,7 +2652,6 @@ ReadData             INFO Hit x = 1320.49 y = 63.5816 z = -1251.86 detector = Du
 ReadData             INFO Hit x = 1323.7 y = 57.9027 z = -1253.68 detector = DummyHitDetector
 ReadData             INFO Hit x = 1326.91 y = 52.2238 z = -1255.07 detector = DummyHitDetector
 ReadData             INFO Hit x = 1330.12 y = 46.5449 z = -1256.17 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 26855
 PoolSvc              INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 23
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #13, run #1 64 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -2835,7 +2698,6 @@ ReadData             INFO Hit x = 1420.49 y = 63.5816 z = -1351.86 detector = Du
 ReadData             INFO Hit x = 1423.7 y = 57.9027 z = -1353.68 detector = DummyHitDetector
 ReadData             INFO Hit x = 1426.91 y = 52.2238 z = -1355.07 detector = DummyHitDetector
 ReadData             INFO Hit x = 1430.12 y = 46.5449 z = -1356.17 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 26855
 PoolSvc              INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 23
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #14, run #1 65 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -2882,7 +2744,6 @@ ReadData             INFO Hit x = 1520.49 y = 63.5816 z = -1451.86 detector = Du
 ReadData             INFO Hit x = 1523.7 y = 57.9027 z = -1453.68 detector = DummyHitDetector
 ReadData             INFO Hit x = 1526.91 y = 52.2238 z = -1455.07 detector = DummyHitDetector
 ReadData             INFO Hit x = 1530.12 y = 46.5449 z = -1456.17 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 26855
 PoolSvc              INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 23
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #15, run #1 66 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -2929,7 +2790,6 @@ ReadData             INFO Hit x = 1620.49 y = 63.5816 z = -1551.86 detector = Du
 ReadData             INFO Hit x = 1623.7 y = 57.9027 z = -1553.68 detector = DummyHitDetector
 ReadData             INFO Hit x = 1626.91 y = 52.2238 z = -1555.07 detector = DummyHitDetector
 ReadData             INFO Hit x = 1630.12 y = 46.5449 z = -1556.17 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 26855
 PoolSvc              INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 23
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #16, run #1 67 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -2976,7 +2836,6 @@ ReadData             INFO Hit x = 1720.49 y = 63.5816 z = -1651.86 detector = Du
 ReadData             INFO Hit x = 1723.7 y = 57.9027 z = -1653.68 detector = DummyHitDetector
 ReadData             INFO Hit x = 1726.91 y = 52.2238 z = -1655.07 detector = DummyHitDetector
 ReadData             INFO Hit x = 1730.12 y = 46.5449 z = -1656.17 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 26855
 PoolSvc              INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 23
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #17, run #1 68 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -3023,7 +2882,6 @@ ReadData             INFO Hit x = 1820.49 y = 63.5816 z = -1751.86 detector = Du
 ReadData             INFO Hit x = 1823.7 y = 57.9027 z = -1753.68 detector = DummyHitDetector
 ReadData             INFO Hit x = 1826.91 y = 52.2238 z = -1755.07 detector = DummyHitDetector
 ReadData             INFO Hit x = 1830.12 y = 46.5449 z = -1756.17 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 26855
 PoolSvc              INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 23
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #18, run #1 69 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -3070,30 +2928,22 @@ ReadData             INFO Hit x = 1920.49 y = 63.5816 z = -1851.86 detector = Du
 ReadData             INFO Hit x = 1923.7 y = 57.9027 z = -1853.68 detector = DummyHitDetector
 ReadData             INFO Hit x = 1926.91 y = 52.2238 z = -1855.07 detector = DummyHitDetector
 ReadData             INFO Hit x = 1930.12 y = 46.5449 z = -1856.17 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 26855
 PoolSvc              INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 23
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #19, run #1 70 events processed so far  <<<===
-Domain[ROOT_All]     INFO ->  Deaccess DbDatabase   READ      [ROOT_All] ????
 MetaDataSvc         DEBUG handle() EndInputFile for FID:????
 MetaDataSvc         DEBUG handle() EndTagFile for SimplePoolFile3.root
 MetaDataSvc         DEBUG handle() LastInputFile for end
 AthenaEventLoopMgr   INFO No more events in event selection 
 MetaDataSvc         DEBUG  calling metaDataStop for ToolSvc.IOVDbMetaDataTool
 MetaDataSvc         DEBUG Releasing MetaDataTools
-Domain[ROOT_All]     INFO ->  Deaccess DbDatabase   READ      [ROOT_All] ????
 Domain[ROOT_All]     INFO >   Deaccess DbDomain     READ      [ROOT_All] 
 ApplicationMgr       INFO Application Manager Stopped successfully
-IncidentProcAlg1     INFO Finalize
 ReadData             INFO in finalize()
-IncidentProcAlg2     INFO Finalize
 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 ****************************************************************************************************
-cObjR_ALL            INFO Time User   : Tot=   30 [ms] Ave/Min/Max= 0.11(+- 1.35)/    0/   20 [ms] #=272
-cObj_ALL             INFO Time User   : Tot=   60 [ms] Ave/Min/Max=0.271(+- 2.31)/    0/   30 [ms] #=221
-ChronoStatSvc        INFO Time User   : Tot= 1.11  [s]                                             #=  1
 *****Chrono*****     INFO ****************************************************************************************************
 ChronoStatSvc.f...   INFO  Service finalized successfully 
 ApplicationMgr       INFO Application Manager Finalized successfully
diff --git a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_ReadNoBN.ref b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_ReadNoBN.ref
index 74add1f6b7805cca272720d4e645a6c12299c0cb..c5466f6930967e81a952947ed4ff0b71ee4266ad 100644
--- a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_ReadNoBN.ref
+++ b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_ReadNoBN.ref
@@ -1,54 +1,26 @@
-Mon Jan 22 13:11:40 CST 2018
-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_ReadNoBNJobOptions.py"
-Py:ConfigurableDb    INFO Read module info for 5435 configurables from 52 genConfDb files
-Py:ConfigurableDb    INFO No duplicates have been found: that's good !
 Athena               INFO including file "AthenaCommon/runbatch.py"
-[?1034hApplicationMgr       INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0
-ApplicationMgr    SUCCESS 
-====================================================================================================================================
-                                                   Welcome to ApplicationMgr (GaudiCoreSvc v30r1)
-                                          running on atlas1.hep.anl.gov on Mon Jan 22 13:11:52 2018
-====================================================================================================================================
-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 2319 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
-ReadData            DEBUG Property update for OutputLevel : new value = 2
 ReadData             INFO in initialize()
-MetaDataSvc         DEBUG Property update for OutputLevel : new value = 2
-MetaDataSvc          INFO Initializing MetaDataSvc - package version AthenaServices-00-00-00
-AthenaPoolCnvSvc     INFO Initializing AthenaPoolCnvSvc - package version AthenaPoolCnvSvc-00-00-00
-PoolSvc             DEBUG Property update for OutputLevel : new value = 2
 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://lcgft-atlas.gridpp.rl.ac.uk:3128/frontierATLAS)(serverurl=http://frontier-atlas.lcg.triumf.ca:3128/ATLAS_frontier)(serverurl=http://ccfrontier.in2p3.fr:23128/ccin2p3-AtlasFrontier) will be considered for COOL data
-DBReplicaSvc         INFO Read replica configuration from /users/gemmeren/workarea/build/x86_64-slc6-gcc62-opt/share/dbreplica.config
-DBReplicaSvc         INFO Total of 1 servers found for host atlas1.hep.anl.gov [ATLF ]
 PoolSvc              INFO Successfully setup replica sorting algorithm
 PoolSvc             DEBUG OutputLevel is 
 PoolSvc              INFO Setting up APR FileCatalog and Streams
 PoolSvc              INFO POOL WriteCatalog is file:Catalog1.xml
-DbSession            INFO     Open     DbSession    
-Domain[ROOT_All]     INFO >   Access   DbDomain     READ      [ROOT_All] 
-EventSelector       DEBUG Property update for OutputLevel : new value = 2
-EventSelector        INFO Initializing EventSelector - package version EventSelectorAthenaPool-00-00-00
 IoComponentMgr       INFO IoComponent EventSelector has already had file EmptyPoolFile.root registered with i/o mode READ
 EventSelector        INFO reinitialization...
 EventSelector        INFO EventSelection with query 
 EventSelector       DEBUG Try item: "EmptyPoolFile.root" from the collection list.
-Domain[ROOT_All]     INFO ->  Access   DbDatabase   READ      [ROOT_All] ????
 Domain[ROOT_All]     INFO                           EmptyPoolFile.root
 EmptyPoolFile.root  DEBUG --> Access   DbContainer  READ      [ROOT_All] ##Shapes
 ##Shapes            DEBUG Opening
@@ -86,14 +58,10 @@ EmptyPoolFile.root  DEBUG --->Reading Param:FORMAT_VSN=[1.1]
 PoolSvc              INFO Failed to find container POOLContainer(DataHeader) to create POOL collection.
 PoolSvc              INFO Failed to find container POOLContainer_DataHeader to create POOL collection.
 EventSelector       DEBUG No events found in: EmptyPoolFile.root skipped!!!
-Domain[ROOT_All]     INFO ->  Deaccess DbDatabase   READ      [ROOT_All] ????
 Domain[ROOT_All]     INFO >   Deaccess DbDomain     READ      [ROOT_All] 
 EventSelector       DEBUG Try item: "SimplePoolFile1.root" from the collection list.
 MetaDataSvc         DEBUG handle() FirstInputFile for FID:????
 MetaDataSvc         DEBUG initInputMetaDataStore: file name FID:????
-DbSession            INFO     Open     DbSession    
-Domain[ROOT_All]     INFO >   Access   DbDomain     READ      [ROOT_All] 
-Domain[ROOT_All]     INFO ->  Access   DbDatabase   READ      [ROOT_All] ????
 Domain[ROOT_All]     INFO                           SimplePoolFile1.root
 SimplePoolFile1...  DEBUG --> Access   DbContainer  READ      [ROOT_All] ##Shapes
 ##Shapes            DEBUG Opening
@@ -136,15 +104,13 @@ SimplePoolFile1...  DEBUG --->Reading Assoc:????/POOLCollectionTree(EventNumber)
 SimplePoolFile1...  DEBUG ---->ClassID:????
 SimplePoolFile1...  DEBUG --->Reading Assoc:????/POOLCollectionTree(MagicNumber) [202]  (a , ffffffff)
 SimplePoolFile1...  DEBUG ---->ClassID:????
-SimplePoolFile1...  DEBUG --->Reading Assoc:????/POOLContainer(basic/DataHeader) [202]  (b , ffffffff)
+SimplePoolFile1...  DEBUG --->Reading Assoc:????/MetaData(EventStreamInfo_p3/Stream1) [202]  (b , ffffffff)
 SimplePoolFile1...  DEBUG ---->ClassID:????
-SimplePoolFile1...  DEBUG --->Reading Assoc:????/MetaData(EventStreamInfo_p3/Stream1) [202]  (c , ffffffff)
+SimplePoolFile1...  DEBUG --->Reading Assoc:????/MetaDataHdrForm(DataHeaderForm) [202]  (c , ffffffff)
 SimplePoolFile1...  DEBUG ---->ClassID:????
-SimplePoolFile1...  DEBUG --->Reading Assoc:????/MetaDataHdrForm(DataHeaderForm) [202]  (d , ffffffff)
+SimplePoolFile1...  DEBUG --->Reading Assoc:????/MetaDataHdr(DataHeader) [202]  (d , ffffffff)
 SimplePoolFile1...  DEBUG ---->ClassID:????
-SimplePoolFile1...  DEBUG --->Reading Assoc:????/MetaDataHdr(DataHeader) [202]  (e , ffffffff)
-SimplePoolFile1...  DEBUG ---->ClassID:????
-##Links             DEBUG No objects passing selection criteria... Container has 13 Entries in total.
+##Links             DEBUG No objects passing selection criteria... Container has 12 Entries in total.
 SimplePoolFile1...  DEBUG --> Access   DbContainer  READ      [ROOT_All] ##Params
 ##Params            DEBUG Opening
 ##Params            DEBUG    attributes# = 1
@@ -166,15 +132,10 @@ MetaDataHdrForm...  DEBUG    attributes# = 1
 MetaDataHdrForm...  DEBUG Branch container 'DataHeaderForm'
 MetaDataHdrForm...  DEBUG Opened container MetaDataHdrForm(DataHeaderForm) of type ROOT_Tree
 MetaDataSvc         DEBUG Loaded input meta data store proxies
-AthenaPoolAddre...  DEBUG Property update for OutputLevel : new value = 2
-ReadData            DEBUG input handles: 0
-ReadData            DEBUG output handles: 0
-ReadData            DEBUG Data Deps for ReadData
 HistogramPersis...WARNING Histograms saving not required.
 AthenaEventLoopMgr   INFO Setup EventSelector service EventSelector
 ApplicationMgr       INFO Application Manager Initialized successfully
 EventSelector       DEBUG Try item: "EmptyPoolFile.root" from the collection list.
-Domain[ROOT_All]     INFO ->  Access   DbDatabase   READ      [ROOT_All] ????
 Domain[ROOT_All]     INFO                           EmptyPoolFile.root
 EmptyPoolFile.root  DEBUG --> Access   DbContainer  READ      [ROOT_All] ##Shapes
 ##Shapes            DEBUG Opening
@@ -227,7 +188,6 @@ MetaDataHdrForm...  DEBUG Opened container MetaDataHdrForm(DataHeaderForm) of ty
 MetaDataSvc         DEBUG Loaded input meta data store proxies
 MetaDataSvc         DEBUG  calling beginInputFile for ToolSvc.IOVDbMetaDataTool
 MetaDataSvc         DEBUG handle() EndInputFile for eventless EmptyPoolFile.root
-Domain[ROOT_All]     INFO ->  Deaccess DbDatabase   READ      [ROOT_All] ????
 EventSelector       DEBUG Try item: "SimplePoolFile1.root" from the collection list.
 MetaDataSvc         DEBUG handle() BeginTagFile for SimplePoolFile1.root
 ApplicationMgr       INFO Application Manager Started successfully
@@ -254,7 +214,6 @@ EventSelector        INFO skipping event 9
 EventSelector        INFO skipping event 10
 EventSelector       DEBUG Get AttributeList from the collection
 EventSelector       DEBUG AttributeList size 3
-ClassIDSvc           INFO  getRegistryEntries: read 2674 CLIDRegistry entries for module ALL
 EventSelector       DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000000A].
 EventSelector       DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000000A].
 EventSelector       DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000000A]
@@ -271,14 +230,11 @@ POOLContainerFo...  DEBUG Opened container POOLContainerForm(DataHeaderForm) of
 AthenaPoolAddre...  DEBUG The current Event contains: 3 objects
 AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo
 AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 9102, name = MyHits
-AlgResourcePool      INFO TopAlg list empty. Recovering the one of Application Manager
 SimplePoolFile1...  DEBUG --> Access   DbContainer  READ      [ROOT_Tree] CollectionTree(EventInfo_p4/McEventInfo)
 CollectionTree(...  DEBUG Opening
 CollectionTree(...  DEBUG    attributes# = 1
 CollectionTree(...  DEBUG Branch container 'EventInfo_p4_McEventInfo'
 CollectionTree(...  DEBUG Opened container CollectionTree(EventInfo_p4/McEventInfo) of type ROOT_Tree
-AthenaPoolConve...   INFO massageEventInfo: unable to get OverrideRunNumberFromInput property from EventSelector 
-ClassIDSvc           INFO  getRegistryEntries: read 11 CLIDRegistry entries for module ALL
 AthenaEventLoopMgr   INFO   ===>>>  start of run 1    <<<===
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #10, run #1 0 events processed so far  <<<===
 ReadData            DEBUG in execute()
@@ -312,8 +268,6 @@ ReadData             INFO Hit x = 1020.49 y = 63.5816 z = -951.864 detector = Du
 ReadData             INFO Hit x = 1023.7 y = 57.9027 z = -953.684 detector = DummyHitDetector
 ReadData             INFO Hit x = 1026.91 y = 52.2238 z = -955.073 detector = DummyHitDetector
 ReadData             INFO Hit x = 1030.12 y = 46.5449 z = -956.169 detector = DummyHitDetector
-ClassIDSvc           INFO  getRegistryEntries: read 10 CLIDRegistry entries for module ALL
-PoolSvc              INFO Database (SimplePoolFile1.root) attribute [BYTES_READ]: 27995
 PoolSvc              INFO Database (SimplePoolFile1.root) attribute [READ_CALLS]: 24
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #10, run #1 1 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -346,7 +300,6 @@ ReadData             INFO Hit x = 1120.49 y = 63.5816 z = -1051.86 detector = Du
 ReadData             INFO Hit x = 1123.7 y = 57.9027 z = -1053.68 detector = DummyHitDetector
 ReadData             INFO Hit x = 1126.91 y = 52.2238 z = -1055.07 detector = DummyHitDetector
 ReadData             INFO Hit x = 1130.12 y = 46.5449 z = -1056.17 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolFile1.root) attribute [BYTES_READ]: 27995
 PoolSvc              INFO Database (SimplePoolFile1.root) attribute [READ_CALLS]: 24
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #11, run #1 2 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -379,7 +332,6 @@ ReadData             INFO Hit x = 1220.49 y = 63.5816 z = -1151.86 detector = Du
 ReadData             INFO Hit x = 1223.7 y = 57.9027 z = -1153.68 detector = DummyHitDetector
 ReadData             INFO Hit x = 1226.91 y = 52.2238 z = -1155.07 detector = DummyHitDetector
 ReadData             INFO Hit x = 1230.12 y = 46.5449 z = -1156.17 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolFile1.root) attribute [BYTES_READ]: 27995
 PoolSvc              INFO Database (SimplePoolFile1.root) attribute [READ_CALLS]: 24
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #12, run #1 3 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -412,7 +364,6 @@ ReadData             INFO Hit x = 1320.49 y = 63.5816 z = -1251.86 detector = Du
 ReadData             INFO Hit x = 1323.7 y = 57.9027 z = -1253.68 detector = DummyHitDetector
 ReadData             INFO Hit x = 1326.91 y = 52.2238 z = -1255.07 detector = DummyHitDetector
 ReadData             INFO Hit x = 1330.12 y = 46.5449 z = -1256.17 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolFile1.root) attribute [BYTES_READ]: 27995
 PoolSvc              INFO Database (SimplePoolFile1.root) attribute [READ_CALLS]: 24
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #13, run #1 4 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -445,7 +396,6 @@ ReadData             INFO Hit x = 1420.49 y = 63.5816 z = -1351.86 detector = Du
 ReadData             INFO Hit x = 1423.7 y = 57.9027 z = -1353.68 detector = DummyHitDetector
 ReadData             INFO Hit x = 1426.91 y = 52.2238 z = -1355.07 detector = DummyHitDetector
 ReadData             INFO Hit x = 1430.12 y = 46.5449 z = -1356.17 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolFile1.root) attribute [BYTES_READ]: 27995
 PoolSvc              INFO Database (SimplePoolFile1.root) attribute [READ_CALLS]: 24
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #14, run #1 5 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -478,7 +428,6 @@ ReadData             INFO Hit x = 1520.49 y = 63.5816 z = -1451.86 detector = Du
 ReadData             INFO Hit x = 1523.7 y = 57.9027 z = -1453.68 detector = DummyHitDetector
 ReadData             INFO Hit x = 1526.91 y = 52.2238 z = -1455.07 detector = DummyHitDetector
 ReadData             INFO Hit x = 1530.12 y = 46.5449 z = -1456.17 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolFile1.root) attribute [BYTES_READ]: 27995
 PoolSvc              INFO Database (SimplePoolFile1.root) attribute [READ_CALLS]: 24
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #15, run #1 6 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -511,7 +460,6 @@ ReadData             INFO Hit x = 1620.49 y = 63.5816 z = -1551.86 detector = Du
 ReadData             INFO Hit x = 1623.7 y = 57.9027 z = -1553.68 detector = DummyHitDetector
 ReadData             INFO Hit x = 1626.91 y = 52.2238 z = -1555.07 detector = DummyHitDetector
 ReadData             INFO Hit x = 1630.12 y = 46.5449 z = -1556.17 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolFile1.root) attribute [BYTES_READ]: 27995
 PoolSvc              INFO Database (SimplePoolFile1.root) attribute [READ_CALLS]: 24
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #16, run #1 7 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -544,7 +492,6 @@ ReadData             INFO Hit x = 1720.49 y = 63.5816 z = -1651.86 detector = Du
 ReadData             INFO Hit x = 1723.7 y = 57.9027 z = -1653.68 detector = DummyHitDetector
 ReadData             INFO Hit x = 1726.91 y = 52.2238 z = -1655.07 detector = DummyHitDetector
 ReadData             INFO Hit x = 1730.12 y = 46.5449 z = -1656.17 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolFile1.root) attribute [BYTES_READ]: 27995
 PoolSvc              INFO Database (SimplePoolFile1.root) attribute [READ_CALLS]: 24
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #17, run #1 8 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -577,7 +524,6 @@ ReadData             INFO Hit x = 1820.49 y = 63.5816 z = -1751.86 detector = Du
 ReadData             INFO Hit x = 1823.7 y = 57.9027 z = -1753.68 detector = DummyHitDetector
 ReadData             INFO Hit x = 1826.91 y = 52.2238 z = -1755.07 detector = DummyHitDetector
 ReadData             INFO Hit x = 1830.12 y = 46.5449 z = -1756.17 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolFile1.root) attribute [BYTES_READ]: 27995
 PoolSvc              INFO Database (SimplePoolFile1.root) attribute [READ_CALLS]: 24
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #18, run #1 9 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -610,17 +556,12 @@ ReadData             INFO Hit x = 1920.49 y = 63.5816 z = -1851.86 detector = Du
 ReadData             INFO Hit x = 1923.7 y = 57.9027 z = -1853.68 detector = DummyHitDetector
 ReadData             INFO Hit x = 1926.91 y = 52.2238 z = -1855.07 detector = DummyHitDetector
 ReadData             INFO Hit x = 1930.12 y = 46.5449 z = -1856.17 detector = DummyHitDetector
-PoolSvc              INFO Database (SimplePoolFile1.root) attribute [BYTES_READ]: 27995
 PoolSvc              INFO Database (SimplePoolFile1.root) attribute [READ_CALLS]: 24
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #19, run #1 10 events processed so far  <<<===
 MetaDataSvc         DEBUG handle() EndInputFile for FID:????
 MetaDataSvc         DEBUG handle() EndTagFile for SimplePoolFile1.root
-Domain[ROOT_All]     INFO ->  Deaccess DbDatabase   READ      [ROOT_All] ????
 Domain[ROOT_All]     INFO >   Deaccess DbDomain     READ      [ROOT_All] 
 EventSelector       DEBUG Try item: "EmptyPoolFile.root" from the collection list.
-DbSession            INFO     Open     DbSession    
-Domain[ROOT_All]     INFO >   Access   DbDomain     READ      [ROOT_All] 
-Domain[ROOT_All]     INFO ->  Access   DbDatabase   READ      [ROOT_All] ????
 Domain[ROOT_All]     INFO                           EmptyPoolFile.root
 EmptyPoolFile.root  DEBUG --> Access   DbContainer  READ      [ROOT_All] ##Shapes
 ##Shapes            DEBUG Opening
@@ -673,13 +614,9 @@ MetaDataHdrForm...  DEBUG Opened container MetaDataHdrForm(DataHeaderForm) of ty
 MetaDataSvc         DEBUG Loaded input meta data store proxies
 MetaDataSvc         DEBUG  calling beginInputFile for ToolSvc.IOVDbMetaDataTool
 MetaDataSvc         DEBUG handle() EndInputFile for eventless EmptyPoolFile.root
-Domain[ROOT_All]     INFO ->  Deaccess DbDatabase   READ      [ROOT_All] ????
 Domain[ROOT_All]     INFO >   Deaccess DbDomain     READ      [ROOT_All] 
 EventSelector       DEBUG Try item: "SimplePoolFile2.root" from the collection list.
 MetaDataSvc         DEBUG handle() BeginTagFile for SimplePoolFile2.root
-DbSession            INFO     Open     DbSession    
-Domain[ROOT_All]     INFO >   Access   DbDomain     READ      [ROOT_All] 
-Domain[ROOT_All]     INFO ->  Access   DbDatabase   READ      [ROOT_All] ????
 Domain[ROOT_All]     INFO                           SimplePoolFile2.root
 SimplePoolFile2...  DEBUG --> Access   DbContainer  READ      [ROOT_All] ##Shapes
 ##Shapes            DEBUG Opening
@@ -718,17 +655,15 @@ SimplePoolFile2...  DEBUG --->Reading Assoc:????/POOLCollectionTree(EventNumber)
 SimplePoolFile2...  DEBUG ---->ClassID:????
 SimplePoolFile2...  DEBUG --->Reading Assoc:????/POOLCollectionTree(MagicNumber) [202]  (9 , ffffffff)
 SimplePoolFile2...  DEBUG ---->ClassID:????
-SimplePoolFile2...  DEBUG --->Reading Assoc:????/POOLContainer(basic/DataHeader) [202]  (a , ffffffff)
-SimplePoolFile2...  DEBUG ---->ClassID:????
-SimplePoolFile2...  DEBUG --->Reading Assoc:????/MetaData(EventStreamInfo_p3/Stream2) [202]  (b , ffffffff)
+SimplePoolFile2...  DEBUG --->Reading Assoc:????/MetaData(EventStreamInfo_p3/Stream2) [202]  (a , ffffffff)
 SimplePoolFile2...  DEBUG ---->ClassID:????
-SimplePoolFile2...  DEBUG --->Reading Assoc:????/MetaDataHdrForm(DataHeaderForm) [202]  (c , ffffffff)
+SimplePoolFile2...  DEBUG --->Reading Assoc:????/MetaDataHdrForm(DataHeaderForm) [202]  (b , ffffffff)
 SimplePoolFile2...  DEBUG ---->ClassID:????
-SimplePoolFile2...  DEBUG --->Reading Assoc:????/MetaDataHdr(DataHeader) [202]  (d , ffffffff)
+SimplePoolFile2...  DEBUG --->Reading Assoc:????/MetaDataHdr(DataHeader) [202]  (c , ffffffff)
 SimplePoolFile2...  DEBUG ---->ClassID:????
-SimplePoolFile2...  DEBUG --->Reading Assoc:????/MetaData(EventStreamInfo_p3/Stream1) [202]  (e , ffffffff)
+SimplePoolFile2...  DEBUG --->Reading Assoc:????/MetaData(EventStreamInfo_p3/Stream1) [202]  (d , ffffffff)
 SimplePoolFile2...  DEBUG ---->ClassID:????
-##Links             DEBUG No objects passing selection criteria... Container has 13 Entries in total.
+##Links             DEBUG No objects passing selection criteria... Container has 12 Entries in total.
 SimplePoolFile2...  DEBUG --> Access   DbContainer  READ      [ROOT_All] ##Params
 ##Params            DEBUG Opening
 ##Params            DEBUG    attributes# = 1
@@ -809,7 +744,6 @@ ReadData             INFO EventInfo event: 0 run: 1
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 26591
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 27
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #0, run #1 11 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -837,7 +771,6 @@ ReadData             INFO EventInfo event: 1 run: 1
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 26591
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 27
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #1, run #1 12 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -865,7 +798,6 @@ ReadData             INFO EventInfo event: 2 run: 1
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 26591
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 27
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #2, run #1 13 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -893,7 +825,6 @@ ReadData             INFO EventInfo event: 3 run: 1
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 26591
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 27
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #3, run #1 14 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -921,7 +852,6 @@ ReadData             INFO EventInfo event: 4 run: 1
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 26591
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 27
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #4, run #1 15 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -949,7 +879,6 @@ ReadData             INFO EventInfo event: 5 run: 1
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 26591
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 27
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #5, run #1 16 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -977,7 +906,6 @@ ReadData             INFO EventInfo event: 6 run: 1
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 26591
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 27
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #6, run #1 17 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1005,7 +933,6 @@ ReadData             INFO EventInfo event: 7 run: 1
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 26591
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 27
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #7, run #1 18 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1033,7 +960,6 @@ ReadData             INFO EventInfo event: 8 run: 1
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 26591
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 27
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #8, run #1 19 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1061,7 +987,6 @@ ReadData             INFO EventInfo event: 9 run: 1
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 26591
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 27
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #9, run #1 20 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1089,7 +1014,6 @@ ReadData             INFO EventInfo event: 10 run: 1
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 26591
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 27
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #10, run #1 21 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1117,7 +1041,6 @@ ReadData             INFO EventInfo event: 11 run: 1
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 26591
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 27
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #11, run #1 22 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1145,7 +1068,6 @@ ReadData             INFO EventInfo event: 12 run: 1
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 26591
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 27
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #12, run #1 23 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1173,7 +1095,6 @@ ReadData             INFO EventInfo event: 13 run: 1
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 26591
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 27
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #13, run #1 24 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1201,7 +1122,6 @@ ReadData             INFO EventInfo event: 14 run: 1
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 26591
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 27
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #14, run #1 25 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1229,7 +1149,6 @@ ReadData             INFO EventInfo event: 15 run: 1
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 26591
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 27
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #15, run #1 26 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1257,7 +1176,6 @@ ReadData             INFO EventInfo event: 16 run: 1
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 26591
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 27
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #16, run #1 27 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1285,7 +1203,6 @@ ReadData             INFO EventInfo event: 17 run: 1
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 26591
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 27
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #17, run #1 28 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1313,7 +1230,6 @@ ReadData             INFO EventInfo event: 18 run: 1
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 26591
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 27
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #18, run #1 29 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1341,7 +1257,6 @@ ReadData             INFO EventInfo event: 19 run: 1
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 26591
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 27
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #19, run #1 30 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1370,7 +1285,6 @@ ReadData             INFO EventInfo event: 20 run: 2
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 28480
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 31
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #20, run #2 31 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1398,7 +1312,6 @@ ReadData             INFO EventInfo event: 21 run: 2
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 28480
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 31
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #21, run #2 32 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1426,7 +1339,6 @@ ReadData             INFO EventInfo event: 22 run: 2
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 28480
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 31
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #22, run #2 33 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1454,7 +1366,6 @@ ReadData             INFO EventInfo event: 23 run: 2
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 28480
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 31
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #23, run #2 34 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1482,7 +1393,6 @@ ReadData             INFO EventInfo event: 24 run: 2
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 28480
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 31
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #24, run #2 35 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1510,7 +1420,6 @@ ReadData             INFO EventInfo event: 25 run: 2
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 28480
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 31
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #25, run #2 36 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1538,7 +1447,6 @@ ReadData             INFO EventInfo event: 26 run: 2
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 28480
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 31
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #26, run #2 37 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1566,7 +1474,6 @@ ReadData             INFO EventInfo event: 27 run: 2
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 28480
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 31
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #27, run #2 38 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1594,7 +1501,6 @@ ReadData             INFO EventInfo event: 28 run: 2
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 28480
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 31
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #28, run #2 39 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1622,7 +1528,6 @@ ReadData             INFO EventInfo event: 29 run: 2
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 28480
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 31
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #29, run #2 40 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1650,7 +1555,6 @@ ReadData             INFO EventInfo event: 30 run: 2
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 28480
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 31
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #30, run #2 41 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1678,7 +1582,6 @@ ReadData             INFO EventInfo event: 31 run: 2
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 28480
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 31
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #31, run #2 42 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1706,7 +1609,6 @@ ReadData             INFO EventInfo event: 32 run: 2
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 28480
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 31
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #32, run #2 43 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1734,7 +1636,6 @@ ReadData             INFO EventInfo event: 33 run: 2
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 28480
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 31
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #33, run #2 44 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1762,7 +1663,6 @@ ReadData             INFO EventInfo event: 34 run: 2
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 28480
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 31
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #34, run #2 45 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1790,7 +1690,6 @@ ReadData             INFO EventInfo event: 35 run: 2
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 28480
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 31
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #35, run #2 46 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1818,7 +1717,6 @@ ReadData             INFO EventInfo event: 36 run: 2
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 28480
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 31
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #36, run #2 47 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1846,7 +1744,6 @@ ReadData             INFO EventInfo event: 37 run: 2
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 28480
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 31
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #37, run #2 48 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1874,7 +1771,6 @@ ReadData             INFO EventInfo event: 38 run: 2
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 28480
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 31
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #38, run #2 49 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -1902,18 +1798,13 @@ ReadData             INFO EventInfo event: 39 run: 2
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile2.root) attribute [BYTES_READ]: 28480
 PoolSvc              INFO Database (SimplePoolFile2.root) attribute [READ_CALLS]: 31
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #39, run #2 50 events processed so far  <<<===
 MetaDataSvc         DEBUG handle() EndInputFile for FID:????
 MetaDataSvc         DEBUG handle() EndTagFile for SimplePoolFile2.root
-Domain[ROOT_All]     INFO ->  Deaccess DbDatabase   READ      [ROOT_All] ????
 Domain[ROOT_All]     INFO >   Deaccess DbDomain     READ      [ROOT_All] 
 EventSelector       DEBUG Try item: "SimplePoolFile3.root" from the collection list.
 MetaDataSvc         DEBUG handle() BeginTagFile for SimplePoolFile3.root
-DbSession            INFO     Open     DbSession    
-Domain[ROOT_All]     INFO >   Access   DbDomain     READ      [ROOT_All] 
-Domain[ROOT_All]     INFO ->  Access   DbDatabase   READ      [ROOT_All] ????
 Domain[ROOT_All]     INFO                           SimplePoolFile3.root
 SimplePoolFile3...  DEBUG --> Access   DbContainer  READ      [ROOT_All] ##Shapes
 ##Shapes            DEBUG Opening
@@ -1956,15 +1847,13 @@ SimplePoolFile3...  DEBUG --->Reading Assoc:????/POOLCollectionTree(EventNumber)
 SimplePoolFile3...  DEBUG ---->ClassID:????
 SimplePoolFile3...  DEBUG --->Reading Assoc:????/POOLCollectionTree(MagicNumber) [202]  (a , ffffffff)
 SimplePoolFile3...  DEBUG ---->ClassID:????
-SimplePoolFile3...  DEBUG --->Reading Assoc:????/POOLContainer(basic/DataHeader) [202]  (b , ffffffff)
-SimplePoolFile3...  DEBUG ---->ClassID:????
-SimplePoolFile3...  DEBUG --->Reading Assoc:????/MetaData(EventStreamInfo_p3/Stream1) [202]  (c , ffffffff)
+SimplePoolFile3...  DEBUG --->Reading Assoc:????/MetaData(EventStreamInfo_p3/Stream1) [202]  (b , ffffffff)
 SimplePoolFile3...  DEBUG ---->ClassID:????
-SimplePoolFile3...  DEBUG --->Reading Assoc:????/MetaDataHdrForm(DataHeaderForm) [202]  (d , ffffffff)
+SimplePoolFile3...  DEBUG --->Reading Assoc:????/MetaDataHdrForm(DataHeaderForm) [202]  (c , ffffffff)
 SimplePoolFile3...  DEBUG ---->ClassID:????
-SimplePoolFile3...  DEBUG --->Reading Assoc:????/MetaDataHdr(DataHeader) [202]  (e , ffffffff)
+SimplePoolFile3...  DEBUG --->Reading Assoc:????/MetaDataHdr(DataHeader) [202]  (d , ffffffff)
 SimplePoolFile3...  DEBUG ---->ClassID:????
-##Links             DEBUG No objects passing selection criteria... Container has 13 Entries in total.
+##Links             DEBUG No objects passing selection criteria... Container has 12 Entries in total.
 SimplePoolFile3...  DEBUG --> Access   DbContainer  READ      [ROOT_All] ##Params
 ##Params            DEBUG Opening
 ##Params            DEBUG    attributes# = 1
@@ -2044,7 +1933,6 @@ ReadData             INFO Track pt = 74.8928 eta = 3.1676 phi = 2.6161 detector
 DataProxy         WARNING accessData:  IOA pointer not set
 ReadData          WARNING Could not follow ExampleTrackContainer/MyTracks ElementLinks to ExampleHitContainer/MyHits
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 27200
 PoolSvc              INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 23
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #0, run #1 51 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -2070,7 +1958,6 @@ ReadData             INFO Track pt = 137.584 eta = -39.525 phi = 17.2679 detecto
 DataProxy         WARNING accessData:  IOA pointer not set
 ReadData          WARNING Could not follow ExampleTrackContainer/MyTracks ElementLinks to ExampleHitContainer/MyHits
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 27200
 PoolSvc              INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 23
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #1, run #1 52 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -2096,7 +1983,6 @@ ReadData             INFO Track pt = 228.154 eta = -6.2704 phi = 31.9197 detecto
 DataProxy         WARNING accessData:  IOA pointer not set
 ReadData          WARNING Could not follow ExampleTrackContainer/MyTracks ElementLinks to ExampleHitContainer/MyHits
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 27200
 PoolSvc              INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 23
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #2, run #1 53 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -2122,7 +2008,6 @@ ReadData             INFO Track pt = 324.306 eta = -15.8941 phi = 46.5715 detect
 DataProxy         WARNING accessData:  IOA pointer not set
 ReadData          WARNING Could not follow ExampleTrackContainer/MyTracks ElementLinks to ExampleHitContainer/MyHits
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 27200
 PoolSvc              INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 23
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #3, run #1 54 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -2148,7 +2033,6 @@ ReadData             INFO Track pt = 422.255 eta = -13.279 phi = 61.2233 detecto
 DataProxy         WARNING accessData:  IOA pointer not set
 ReadData          WARNING Could not follow ExampleTrackContainer/MyTracks ElementLinks to ExampleHitContainer/MyHits
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 27200
 PoolSvc              INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 23
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #4, run #1 55 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -2174,7 +2058,6 @@ ReadData             INFO Track pt = 520.987 eta = -12.3511 phi = 75.8751 detect
 DataProxy         WARNING accessData:  IOA pointer not set
 ReadData          WARNING Could not follow ExampleTrackContainer/MyTracks ElementLinks to ExampleHitContainer/MyHits
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 27200
 PoolSvc              INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 23
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #5, run #1 56 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -2200,7 +2083,6 @@ ReadData             INFO Track pt = 620.127 eta = -11.8468 phi = 90.5269 detect
 DataProxy         WARNING accessData:  IOA pointer not set
 ReadData          WARNING Could not follow ExampleTrackContainer/MyTracks ElementLinks to ExampleHitContainer/MyHits
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 27200
 PoolSvc              INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 23
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #6, run #1 57 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -2226,7 +2108,6 @@ ReadData             INFO Track pt = 719.507 eta = -11.5247 phi = 105.179 detect
 DataProxy         WARNING accessData:  IOA pointer not set
 ReadData          WARNING Could not follow ExampleTrackContainer/MyTracks ElementLinks to ExampleHitContainer/MyHits
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 27200
 PoolSvc              INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 23
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #7, run #1 58 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -2252,7 +2133,6 @@ ReadData             INFO Track pt = 819.038 eta = -11.2998 phi = 119.831 detect
 DataProxy         WARNING accessData:  IOA pointer not set
 ReadData          WARNING Could not follow ExampleTrackContainer/MyTracks ElementLinks to ExampleHitContainer/MyHits
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 27200
 PoolSvc              INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 23
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #8, run #1 59 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -2278,7 +2158,6 @@ ReadData             INFO Track pt = 918.671 eta = -11.1334 phi = 134.482 detect
 DataProxy         WARNING accessData:  IOA pointer not set
 ReadData          WARNING Could not follow ExampleTrackContainer/MyTracks ElementLinks to ExampleHitContainer/MyHits
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 27200
 PoolSvc              INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 23
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #9, run #1 60 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -2304,7 +2183,6 @@ ReadData             INFO Track pt = 1018.38 eta = -11.0052 phi = 149.134 detect
 DataProxy         WARNING accessData:  IOA pointer not set
 ReadData          WARNING Could not follow ExampleTrackContainer/MyTracks ElementLinks to ExampleHitContainer/MyHits
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 27200
 PoolSvc              INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 23
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #10, run #1 61 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -2330,7 +2208,6 @@ ReadData             INFO Track pt = 1118.13 eta = -10.9031 phi = 163.786 detect
 DataProxy         WARNING accessData:  IOA pointer not set
 ReadData          WARNING Could not follow ExampleTrackContainer/MyTracks ElementLinks to ExampleHitContainer/MyHits
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 27200
 PoolSvc              INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 23
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #11, run #1 62 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -2356,7 +2233,6 @@ ReadData             INFO Track pt = 1217.93 eta = -10.82 phi = 178.438 detector
 DataProxy         WARNING accessData:  IOA pointer not set
 ReadData          WARNING Could not follow ExampleTrackContainer/MyTracks ElementLinks to ExampleHitContainer/MyHits
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 27200
 PoolSvc              INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 23
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #12, run #1 63 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -2382,7 +2258,6 @@ ReadData             INFO Track pt = 1317.76 eta = -10.751 phi = 193.09 detector
 DataProxy         WARNING accessData:  IOA pointer not set
 ReadData          WARNING Could not follow ExampleTrackContainer/MyTracks ElementLinks to ExampleHitContainer/MyHits
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 27200
 PoolSvc              INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 23
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #13, run #1 64 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -2408,7 +2283,6 @@ ReadData             INFO Track pt = 1417.61 eta = -10.6927 phi = 207.741 detect
 DataProxy         WARNING accessData:  IOA pointer not set
 ReadData          WARNING Could not follow ExampleTrackContainer/MyTracks ElementLinks to ExampleHitContainer/MyHits
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 27200
 PoolSvc              INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 23
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #14, run #1 65 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -2434,7 +2308,6 @@ ReadData             INFO Track pt = 1517.49 eta = -10.6429 phi = 222.393 detect
 DataProxy         WARNING accessData:  IOA pointer not set
 ReadData          WARNING Could not follow ExampleTrackContainer/MyTracks ElementLinks to ExampleHitContainer/MyHits
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 27200
 PoolSvc              INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 23
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #15, run #1 66 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -2460,7 +2333,6 @@ ReadData             INFO Track pt = 1617.37 eta = -10.5997 phi = 237.045 detect
 DataProxy         WARNING accessData:  IOA pointer not set
 ReadData          WARNING Could not follow ExampleTrackContainer/MyTracks ElementLinks to ExampleHitContainer/MyHits
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 27200
 PoolSvc              INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 23
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #16, run #1 67 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -2486,7 +2358,6 @@ ReadData             INFO Track pt = 1717.27 eta = -10.562 phi = 251.697 detecto
 DataProxy         WARNING accessData:  IOA pointer not set
 ReadData          WARNING Could not follow ExampleTrackContainer/MyTracks ElementLinks to ExampleHitContainer/MyHits
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 27200
 PoolSvc              INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 23
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #17, run #1 68 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -2512,7 +2383,6 @@ ReadData             INFO Track pt = 1817.19 eta = -10.5288 phi = 266.349 detect
 DataProxy         WARNING accessData:  IOA pointer not set
 ReadData          WARNING Could not follow ExampleTrackContainer/MyTracks ElementLinks to ExampleHitContainer/MyHits
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 27200
 PoolSvc              INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 23
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #18, run #1 69 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
@@ -2538,29 +2408,22 @@ ReadData             INFO Track pt = 1917.11 eta = -10.4993 phi = 281 detector =
 DataProxy         WARNING accessData:  IOA pointer not set
 ReadData          WARNING Could not follow ExampleTrackContainer/MyTracks ElementLinks to ExampleHitContainer/MyHits
 ReadData             INFO Could not find ExampleHitContainer/MyHits
-PoolSvc              INFO Database (SimplePoolFile3.root) attribute [BYTES_READ]: 27200
 PoolSvc              INFO Database (SimplePoolFile3.root) attribute [READ_CALLS]: 23
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #19, run #1 70 events processed so far  <<<===
 MetaDataSvc         DEBUG handle() EndInputFile for FID:????
 MetaDataSvc         DEBUG handle() EndTagFile for SimplePoolFile3.root
-Domain[ROOT_All]     INFO ->  Deaccess DbDatabase   READ      [ROOT_All] ????
 Domain[ROOT_All]     INFO >   Deaccess DbDomain     READ      [ROOT_All] 
 MetaDataSvc         DEBUG handle() LastInputFile for end
 AthenaEventLoopMgr   INFO No more events in event selection 
 MetaDataSvc         DEBUG  calling metaDataStop for ToolSvc.IOVDbMetaDataTool
 MetaDataSvc         DEBUG Releasing MetaDataTools
 ApplicationMgr       INFO Application Manager Stopped successfully
-IncidentProcAlg1     INFO Finalize
 ReadData             INFO in finalize()
-IncidentProcAlg2     INFO Finalize
 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 ****************************************************************************************************
-cObjR_ALL            INFO Time User   : Tot=   20 [ms] Ave/Min/Max=0.104(+- 1.44)/    0/   20 [ms] #=193
-cObj_ALL             INFO Time User   : Tot=   40 [ms] Ave/Min/Max=0.221(+- 2.34)/    0/   30 [ms] #=181
-ChronoStatSvc        INFO Time User   : Tot=  1.1  [s]                                             #=  1
 *****Chrono*****     INFO ****************************************************************************************************
 ChronoStatSvc.f...   INFO  Service finalized successfully 
 ApplicationMgr       INFO Application Manager Finalized successfully
diff --git a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_ReadTag.ref b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_ReadTag.ref
index 96409749cf4226d3d87cfd8f09aa0be2e7cb8826..7728ad254896f54c47b846a4c1166bd4f5c68e3d 100644
--- a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_ReadTag.ref
+++ b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_ReadTag.ref
@@ -1,50 +1,22 @@
-Mon Jan 22 13:11:03 CST 2018
-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_ReadTagJobOptions.py"
-Py:ConfigurableDb    INFO Read module info for 5435 configurables from 52 genConfDb files
-Py:ConfigurableDb    INFO No duplicates have been found: that's good !
 Athena               INFO including file "AthenaCommon/runbatch.py"
-[?1034hApplicationMgr       INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0
-ApplicationMgr    SUCCESS 
-====================================================================================================================================
-                                                   Welcome to ApplicationMgr (GaudiCoreSvc v30r1)
-                                          running on atlas1.hep.anl.gov on Mon Jan 22 13:11:17 2018
-====================================================================================================================================
-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 2319 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
-ReadData            DEBUG Property update for OutputLevel : new value = 2
 ReadData             INFO in initialize()
-MetaDataSvc         DEBUG Property update for OutputLevel : new value = 2
-MetaDataSvc          INFO Initializing MetaDataSvc - package version AthenaServices-00-00-00
-AthenaPoolCnvSvc     INFO Initializing AthenaPoolCnvSvc - package version AthenaPoolCnvSvc-00-00-00
-PoolSvc             DEBUG Property update for OutputLevel : new value = 2
 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://lcgft-atlas.gridpp.rl.ac.uk:3128/frontierATLAS)(serverurl=http://frontier-atlas.lcg.triumf.ca:3128/ATLAS_frontier)(serverurl=http://ccfrontier.in2p3.fr:23128/ccin2p3-AtlasFrontier) will be considered for COOL data
-DBReplicaSvc         INFO Read replica configuration from /users/gemmeren/workarea/build/x86_64-slc6-gcc62-opt/share/dbreplica.config
-DBReplicaSvc         INFO Total of 1 servers found for host atlas1.hep.anl.gov [ATLF ]
 PoolSvc              INFO Successfully setup replica sorting algorithm
 PoolSvc             DEBUG OutputLevel is 
 PoolSvc              INFO Setting up APR FileCatalog and Streams
 PoolSvc              INFO POOL WriteCatalog is file:Catalog1.xml
-DbSession            INFO     Open     DbSession    
-Domain[ROOT_All]     INFO >   Access   DbDomain     READ      [ROOT_All] 
-EventSelector       DEBUG Property update for OutputLevel : new value = 2
-EventSelector        INFO Initializing EventSelector - package version EventSelectorAthenaPool-00-00-00
-EventSelector.Q...  DEBUG Property update for OutputLevel : new value = 2
 EventSelector.Q...   INFO in initialize()
 IoComponentMgr       INFO IoComponent EventSelector has already had file EmptyPoolCollection.root registered with i/o mode READ
 EventSelector        INFO reinitialization...
@@ -54,7 +26,6 @@ EventSelector        INFO Using standard collection ref
 EventSelector       DEBUG Try item: "SimplePoolCollection1.root" from the collection list.
 MetaDataSvc         DEBUG handle() FirstInputFile for FID:????
 MetaDataSvc         DEBUG initInputMetaDataStore: file name FID:????
-Domain[ROOT_All]     INFO ->  Access   DbDatabase   READ      [ROOT_All] ????
 Domain[ROOT_All]     INFO                           SimplePoolFile1.root
 SimplePoolFile1...  DEBUG --> Access   DbContainer  READ      [ROOT_All] ##Shapes
 ##Shapes            DEBUG Opening
@@ -97,15 +68,13 @@ SimplePoolFile1...  DEBUG --->Reading Assoc:????/POOLCollectionTree(EventNumber)
 SimplePoolFile1...  DEBUG ---->ClassID:????
 SimplePoolFile1...  DEBUG --->Reading Assoc:????/POOLCollectionTree(MagicNumber) [202]  (a , ffffffff)
 SimplePoolFile1...  DEBUG ---->ClassID:????
-SimplePoolFile1...  DEBUG --->Reading Assoc:????/POOLContainer(basic/DataHeader) [202]  (b , ffffffff)
+SimplePoolFile1...  DEBUG --->Reading Assoc:????/MetaData(EventStreamInfo_p3/Stream1) [202]  (b , ffffffff)
 SimplePoolFile1...  DEBUG ---->ClassID:????
-SimplePoolFile1...  DEBUG --->Reading Assoc:????/MetaData(EventStreamInfo_p3/Stream1) [202]  (c , ffffffff)
+SimplePoolFile1...  DEBUG --->Reading Assoc:????/MetaDataHdrForm(DataHeaderForm) [202]  (c , ffffffff)
 SimplePoolFile1...  DEBUG ---->ClassID:????
-SimplePoolFile1...  DEBUG --->Reading Assoc:????/MetaDataHdrForm(DataHeaderForm) [202]  (d , ffffffff)
+SimplePoolFile1...  DEBUG --->Reading Assoc:????/MetaDataHdr(DataHeader) [202]  (d , ffffffff)
 SimplePoolFile1...  DEBUG ---->ClassID:????
-SimplePoolFile1...  DEBUG --->Reading Assoc:????/MetaDataHdr(DataHeader) [202]  (e , ffffffff)
-SimplePoolFile1...  DEBUG ---->ClassID:????
-##Links             DEBUG No objects passing selection criteria... Container has 13 Entries in total.
+##Links             DEBUG No objects passing selection criteria... Container has 12 Entries in total.
 SimplePoolFile1...  DEBUG --> Access   DbContainer  READ      [ROOT_All] ##Params
 ##Params            DEBUG Opening
 ##Params            DEBUG    attributes# = 1
@@ -127,10 +96,6 @@ MetaDataHdrForm...  DEBUG    attributes# = 1
 MetaDataHdrForm...  DEBUG Branch container 'DataHeaderForm'
 MetaDataHdrForm...  DEBUG Opened container MetaDataHdrForm(DataHeaderForm) of type ROOT_Tree
 MetaDataSvc         DEBUG Loaded input meta data store proxies
-AthenaPoolAddre...  DEBUG Property update for OutputLevel : new value = 2
-ReadData            DEBUG input handles: 0
-ReadData            DEBUG output handles: 0
-ReadData            DEBUG Data Deps for ReadData
 HistogramPersis...WARNING Histograms saving not required.
 AthenaEventLoopMgr   INFO Setup EventSelector service EventSelector
 ApplicationMgr       INFO Application Manager Initialized successfully
@@ -146,7 +111,6 @@ MetaDataSvc         DEBUG Loaded input meta data store proxies
 MetaDataSvc         DEBUG  calling beginInputFile for ToolSvc.IOVDbMetaDataTool
 EventSelector       DEBUG Get AttributeList from the collection
 EventSelector       DEBUG AttributeList size 3
-ClassIDSvc           INFO  getRegistryEntries: read 2674 CLIDRegistry entries for module ALL
 EventSelector       DEBUG record AthenaAttribute, name = Stream1_ref = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000000].
 EventSelector       DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000000].
 EventSelector        INFO Request skipping event from: EventSelector.QueryTag
@@ -223,14 +187,11 @@ POOLContainerFo...  DEBUG Opened container POOLContainerForm(DataHeaderForm) of
 AthenaPoolAddre...  DEBUG The current Event contains: 3 objects
 AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo
 AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 9102, name = MyHits
-AlgResourcePool      INFO TopAlg list empty. Recovering the one of Application Manager
 SimplePoolFile1...  DEBUG --> Access   DbContainer  READ      [ROOT_Tree] CollectionTree(EventInfo_p4/McEventInfo)
 CollectionTree(...  DEBUG Opening
 CollectionTree(...  DEBUG    attributes# = 1
 CollectionTree(...  DEBUG Branch container 'EventInfo_p4_McEventInfo'
 CollectionTree(...  DEBUG Opened container CollectionTree(EventInfo_p4/McEventInfo) of type ROOT_Tree
-AthenaPoolConve...   INFO massageEventInfo: unable to get OverrideRunNumberFromInput property from EventSelector 
-ClassIDSvc           INFO  getRegistryEntries: read 11 CLIDRegistry entries for module ALL
 AthenaEventLoopMgr   INFO   ===>>>  start of run 1    <<<===
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #10, run #1 0 events processed so far  <<<===
 ReadData            DEBUG in execute()
@@ -264,7 +225,6 @@ ReadData             INFO Hit x = 1020.49 y = 63.5816 z = -951.864 detector = Du
 ReadData             INFO Hit x = 1023.7 y = 57.9027 z = -953.684 detector = DummyHitDetector
 ReadData             INFO Hit x = 1026.91 y = 52.2238 z = -955.073 detector = DummyHitDetector
 ReadData             INFO Hit x = 1030.12 y = 46.5449 z = -956.169 detector = DummyHitDetector
-ClassIDSvc           INFO  getRegistryEntries: read 10 CLIDRegistry entries for module ALL
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #10, run #1 1 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
 EventSelector       DEBUG AttributeList size 3
@@ -547,7 +507,6 @@ ReadData             INFO Hit x = 1930.12 y = 46.5449 z = -1856.17 detector = Du
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #19, run #1 10 events processed so far  <<<===
 MetaDataSvc         DEBUG handle() EndInputFile for FID:????
 MetaDataSvc         DEBUG handle() EndTagFile for SimplePoolCollection1.root
-Domain[ROOT_All]     INFO ->  Deaccess DbDatabase   READ      [ROOT_All] ????
 Domain[ROOT_All]     INFO >   Deaccess DbDomain     READ      [ROOT_All] 
 EventSelector       DEBUG Try item: "EmptyPoolCollection.root" from the collection list.
 MetaDataSvc         DEBUG handle() BeginTagFile for EmptyPoolCollection.root
@@ -556,9 +515,6 @@ EventSelector       DEBUG Try item: "SimplePoolCollection2.root" from the collec
 MetaDataSvc         DEBUG handle() BeginTagFile for SimplePoolCollection2.root
 MetaDataSvc         DEBUG handle() BeginInputFile for FID:????
 MetaDataSvc         DEBUG initInputMetaDataStore: file name FID:????
-DbSession            INFO     Open     DbSession    
-Domain[ROOT_All]     INFO >   Access   DbDomain     READ      [ROOT_All] 
-Domain[ROOT_All]     INFO ->  Access   DbDatabase   READ      [ROOT_All] ????
 Domain[ROOT_All]     INFO                           SimplePoolFile2.root
 SimplePoolFile2...  DEBUG --> Access   DbContainer  READ      [ROOT_All] ##Shapes
 ##Shapes            DEBUG Opening
@@ -597,17 +553,15 @@ SimplePoolFile2...  DEBUG --->Reading Assoc:????/POOLCollectionTree(EventNumber)
 SimplePoolFile2...  DEBUG ---->ClassID:????
 SimplePoolFile2...  DEBUG --->Reading Assoc:????/POOLCollectionTree(MagicNumber) [202]  (9 , ffffffff)
 SimplePoolFile2...  DEBUG ---->ClassID:????
-SimplePoolFile2...  DEBUG --->Reading Assoc:????/POOLContainer(basic/DataHeader) [202]  (a , ffffffff)
-SimplePoolFile2...  DEBUG ---->ClassID:????
-SimplePoolFile2...  DEBUG --->Reading Assoc:????/MetaData(EventStreamInfo_p3/Stream2) [202]  (b , ffffffff)
+SimplePoolFile2...  DEBUG --->Reading Assoc:????/MetaData(EventStreamInfo_p3/Stream2) [202]  (a , ffffffff)
 SimplePoolFile2...  DEBUG ---->ClassID:????
-SimplePoolFile2...  DEBUG --->Reading Assoc:????/MetaDataHdrForm(DataHeaderForm) [202]  (c , ffffffff)
+SimplePoolFile2...  DEBUG --->Reading Assoc:????/MetaDataHdrForm(DataHeaderForm) [202]  (b , ffffffff)
 SimplePoolFile2...  DEBUG ---->ClassID:????
-SimplePoolFile2...  DEBUG --->Reading Assoc:????/MetaDataHdr(DataHeader) [202]  (d , ffffffff)
+SimplePoolFile2...  DEBUG --->Reading Assoc:????/MetaDataHdr(DataHeader) [202]  (c , ffffffff)
 SimplePoolFile2...  DEBUG ---->ClassID:????
-SimplePoolFile2...  DEBUG --->Reading Assoc:????/MetaData(EventStreamInfo_p3/Stream1) [202]  (e , ffffffff)
+SimplePoolFile2...  DEBUG --->Reading Assoc:????/MetaData(EventStreamInfo_p3/Stream1) [202]  (d , ffffffff)
 SimplePoolFile2...  DEBUG ---->ClassID:????
-##Links             DEBUG No objects passing selection criteria... Container has 13 Entries in total.
+##Links             DEBUG No objects passing selection criteria... Container has 12 Entries in total.
 SimplePoolFile2...  DEBUG --> Access   DbContainer  READ      [ROOT_All] ##Params
 ##Params            DEBUG Opening
 ##Params            DEBUG    attributes# = 1
@@ -1697,15 +1651,11 @@ ReadData             INFO Could not find ExampleHitContainer/MyHits
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #39, run #2 50 events processed so far  <<<===
 MetaDataSvc         DEBUG handle() EndInputFile for FID:????
 MetaDataSvc         DEBUG handle() EndTagFile for SimplePoolCollection2.root
-Domain[ROOT_All]     INFO ->  Deaccess DbDatabase   READ      [ROOT_All] ????
 Domain[ROOT_All]     INFO >   Deaccess DbDomain     READ      [ROOT_All] 
 EventSelector       DEBUG Try item: "SimplePoolCollection3.root" from the collection list.
 MetaDataSvc         DEBUG handle() BeginTagFile for SimplePoolCollection3.root
 MetaDataSvc         DEBUG handle() BeginInputFile for FID:????
 MetaDataSvc         DEBUG initInputMetaDataStore: file name FID:????
-DbSession            INFO     Open     DbSession    
-Domain[ROOT_All]     INFO >   Access   DbDomain     READ      [ROOT_All] 
-Domain[ROOT_All]     INFO ->  Access   DbDatabase   READ      [ROOT_All] ????
 Domain[ROOT_All]     INFO                           SimplePoolFile3.root
 SimplePoolFile3...  DEBUG --> Access   DbContainer  READ      [ROOT_All] ##Shapes
 ##Shapes            DEBUG Opening
@@ -1748,15 +1698,13 @@ SimplePoolFile3...  DEBUG --->Reading Assoc:????/POOLCollectionTree(EventNumber)
 SimplePoolFile3...  DEBUG ---->ClassID:????
 SimplePoolFile3...  DEBUG --->Reading Assoc:????/POOLCollectionTree(MagicNumber) [202]  (a , ffffffff)
 SimplePoolFile3...  DEBUG ---->ClassID:????
-SimplePoolFile3...  DEBUG --->Reading Assoc:????/POOLContainer(basic/DataHeader) [202]  (b , ffffffff)
+SimplePoolFile3...  DEBUG --->Reading Assoc:????/MetaData(EventStreamInfo_p3/Stream1) [202]  (b , ffffffff)
 SimplePoolFile3...  DEBUG ---->ClassID:????
-SimplePoolFile3...  DEBUG --->Reading Assoc:????/MetaData(EventStreamInfo_p3/Stream1) [202]  (c , ffffffff)
+SimplePoolFile3...  DEBUG --->Reading Assoc:????/MetaDataHdrForm(DataHeaderForm) [202]  (c , ffffffff)
 SimplePoolFile3...  DEBUG ---->ClassID:????
-SimplePoolFile3...  DEBUG --->Reading Assoc:????/MetaDataHdrForm(DataHeaderForm) [202]  (d , ffffffff)
+SimplePoolFile3...  DEBUG --->Reading Assoc:????/MetaDataHdr(DataHeader) [202]  (d , ffffffff)
 SimplePoolFile3...  DEBUG ---->ClassID:????
-SimplePoolFile3...  DEBUG --->Reading Assoc:????/MetaDataHdr(DataHeader) [202]  (e , ffffffff)
-SimplePoolFile3...  DEBUG ---->ClassID:????
-##Links             DEBUG No objects passing selection criteria... Container has 13 Entries in total.
+##Links             DEBUG No objects passing selection criteria... Container has 12 Entries in total.
 SimplePoolFile3...  DEBUG --> Access   DbContainer  READ      [ROOT_All] ##Params
 ##Params            DEBUG Opening
 ##Params            DEBUG    attributes# = 1
@@ -1884,7 +1832,6 @@ CollectionTree(...  DEBUG    attributes# = 1
 CollectionTree(...  DEBUG Branch container 'ExampleTrackContainer_p1_MyTracks'
 CollectionTree(...  DEBUG Opened container CollectionTree(ExampleTrackContainer_p1/MyTracks) of type ROOT_Tree
 ReadData             INFO Track pt = 1018.38 eta = -11.0052 phi = 149.134 detector = Track made in: DummyHitDetector
-Domain[ROOT_All]     INFO ->  Access   DbDatabase   READ      [ROOT_All] ????
 Domain[ROOT_All]     INFO                           SimplePoolFile1.root
 SimplePoolFile1...  DEBUG --> Access   DbContainer  READ      [ROOT_All] ##Shapes
 ##Shapes            DEBUG Opening
@@ -1927,15 +1874,13 @@ SimplePoolFile1...  DEBUG --->Reading Assoc:????/POOLCollectionTree(EventNumber)
 SimplePoolFile1...  DEBUG ---->ClassID:????
 SimplePoolFile1...  DEBUG --->Reading Assoc:????/POOLCollectionTree(MagicNumber) [202]  (a , ffffffff)
 SimplePoolFile1...  DEBUG ---->ClassID:????
-SimplePoolFile1...  DEBUG --->Reading Assoc:????/POOLContainer(basic/DataHeader) [202]  (b , ffffffff)
-SimplePoolFile1...  DEBUG ---->ClassID:????
-SimplePoolFile1...  DEBUG --->Reading Assoc:????/MetaData(EventStreamInfo_p3/Stream1) [202]  (c , ffffffff)
+SimplePoolFile1...  DEBUG --->Reading Assoc:????/MetaData(EventStreamInfo_p3/Stream1) [202]  (b , ffffffff)
 SimplePoolFile1...  DEBUG ---->ClassID:????
-SimplePoolFile1...  DEBUG --->Reading Assoc:????/MetaDataHdrForm(DataHeaderForm) [202]  (d , ffffffff)
+SimplePoolFile1...  DEBUG --->Reading Assoc:????/MetaDataHdrForm(DataHeaderForm) [202]  (c , ffffffff)
 SimplePoolFile1...  DEBUG ---->ClassID:????
-SimplePoolFile1...  DEBUG --->Reading Assoc:????/MetaDataHdr(DataHeader) [202]  (e , ffffffff)
+SimplePoolFile1...  DEBUG --->Reading Assoc:????/MetaDataHdr(DataHeader) [202]  (d , ffffffff)
 SimplePoolFile1...  DEBUG ---->ClassID:????
-##Links             DEBUG No objects passing selection criteria... Container has 13 Entries in total.
+##Links             DEBUG No objects passing selection criteria... Container has 12 Entries in total.
 SimplePoolFile1...  DEBUG --> Access   DbContainer  READ      [ROOT_All] ##Params
 ##Params            DEBUG Opening
 ##Params            DEBUG    attributes# = 1
@@ -2392,26 +2337,19 @@ ReadData             INFO Hit x = 1930.12 y = 46.5449 z = -1856.17 detector = Du
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #19, run #1 60 events processed so far  <<<===
 MetaDataSvc         DEBUG handle() EndInputFile for FID:????
 MetaDataSvc         DEBUG handle() EndTagFile for SimplePoolCollection3.root
-Domain[ROOT_All]     INFO ->  Deaccess DbDatabase   READ      [ROOT_All] ????
 MetaDataSvc         DEBUG handle() LastInputFile for end
 AthenaEventLoopMgr   INFO No more events in event selection 
 MetaDataSvc         DEBUG  calling metaDataStop for ToolSvc.IOVDbMetaDataTool
 MetaDataSvc         DEBUG Releasing MetaDataTools
-Domain[ROOT_All]     INFO ->  Deaccess DbDatabase   READ      [ROOT_All] ????
 Domain[ROOT_All]     INFO >   Deaccess DbDomain     READ      [ROOT_All] 
 ApplicationMgr       INFO Application Manager Stopped successfully
-IncidentProcAlg1     INFO Finalize
 ReadData             INFO in finalize()
-IncidentProcAlg2     INFO Finalize
 AthDictLoaderSvc     INFO in finalize...
 ToolSvc              INFO Removing all tools created by ToolSvc
 EventSelector.Q...   INFO in finalize()
 *****Chrono*****     INFO ****************************************************************************************************
 *****Chrono*****     INFO  The Final CPU consumption ( Chrono ) Table (ordered)
 *****Chrono*****     INFO ****************************************************************************************************
-cObjR_ALL            INFO Time User   : Tot=   20 [ms] Ave/Min/Max=0.102(+- 1.42)/    0/   20 [ms] #=197
-cObj_ALL             INFO Time User   : Tot=   40 [ms] Ave/Min/Max=0.237(+- 2.42)/    0/   30 [ms] #=169
-ChronoStatSvc        INFO Time User   : Tot= 1.16  [s]                                             #=  1
 *****Chrono*****     INFO ****************************************************************************************************
 ChronoStatSvc.f...   INFO  Service finalized successfully 
 ApplicationMgr       INFO Application Manager Finalized successfully
diff --git a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_ReadcBs.ref b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_ReadcBs.ref
deleted file mode 100644
index a4a69f63deab49f4fbc5e46e50ac7efed740c7a5..0000000000000000000000000000000000000000
--- a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_ReadcBs.ref
+++ /dev/null
@@ -1,315 +0,0 @@
-Tue Jan  9 14:07:37 CST 2018
-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_ReadBsJobOptions.py"
-Py:ConfigurableDb    INFO Read module info for 5433 configurables from 15 genConfDb files
-Py:ConfigurableDb    INFO No duplicates have been found: that's good !
-Athena               INFO including file "AthenaCommon/runbatch.py"
-[?1034hApplicationMgr       INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0
-ApplicationMgr    SUCCESS 
-====================================================================================================================================
-                                                   Welcome to ApplicationMgr (GaudiCoreSvc v30r1)
-                                          running on atlas2.hep.anl.gov on Tue Jan  9 14:07:52 2018
-====================================================================================================================================
-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 2318 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
-ReadBs               INFO in initialize()
-MetaDataSvc         DEBUG Property update for OutputLevel : new value = 2
-MetaDataSvc          INFO Initializing MetaDataSvc - package version AthenaServices-00-00-00
-AthenaPoolCnvSvc     INFO Initializing AthenaPoolCnvSvc - package version AthenaPoolCnvSvc-00-00-00
-PoolSvc             DEBUG Property update for OutputLevel : new value = 2
-PoolSvc              INFO io_register[PoolSvc](xmlcatalog_file:PoolFileCatalog.xml) [ok]
-PoolSvc              INFO Set connectionsvc retry/timeout/IDLE timeout to  'ConnectionRetrialPeriod':300/ 'ConnectionRetrialTimeOut':3600/ 'ConnectionTimeOut':5 seconds with connection cleanup disabled
-PoolSvc              INFO Frontier compression level set to 5
-DBReplicaSvc         INFO Frontier server at (serverurl=http://atlasfrontier-ai.cern.ch:8000/atlr)(serverurl=http://lcgft-atlas.gridpp.rl.ac.uk:3128/frontierATLAS)(serverurl=http://frontier-atlas.lcg.triumf.ca:3128/ATLAS_frontier)(serverurl=http://ccfrontier.in2p3.fr:23128/ccin2p3-AtlasFrontier) will be considered for COOL data
-DBReplicaSvc         INFO Read replica configuration from /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2018-01-05T2303/Athena/22.0.0/InstallArea/x86_64-slc6-gcc62-opt/share/dbreplica.config
-DBReplicaSvc         INFO Total of 1 servers found for host atlas2.hep.anl.gov [ATLF ]
-PoolSvc              INFO Successfully setup replica sorting algorithm
-PoolSvc             DEBUG OutputLevel is 
-PoolSvc              INFO Setting up APR FileCatalog and Streams
-PoolSvc              INFO POOL WriteCatalog is xmlcatalog_file:PoolFileCatalog.xml
-DbSession            INFO     Open     DbSession    
-Domain[ROOT_All]     INFO >   Access   DbDomain     READ      [ROOT_All] 
-ToolSvc.ByteStr...   INFO Initializing ToolSvc.ByteStreamMetadataTool - package version ByteStreamCnvSvc-00-00-00
-EventSelector       DEBUG Property update for OutputLevel : new value = 2
-EventSelector        INFO Initializing EventSelector - package version EventSelectorAthenaPool-00-00-00
-EventSelector        INFO reinitialization...
-EventSelector        INFO EventSelection with query 
-EventSelector       DEBUG Try item: "SimplePoolFromRaw.root" from the collection list.
-Domain[ROOT_All]     INFO ->  Access   DbDatabase   READ      [ROOT_All] ????
-Domain[ROOT_All]     INFO                           SimplePoolFromRaw.root
-SimplePoolFromR...  DEBUG --> Access   DbContainer  READ      [ROOT_All] ##Shapes
-##Shapes            DEBUG Opening
-##Shapes            DEBUG    attributes# = 1
-##Shapes            DEBUG Opened container ##Shapes of type ROOT_Tree
-SimplePoolFromR...  DEBUG --->Reading Shape[0 , ????]: [1 Column(s)]
-SimplePoolFromR...  DEBUG ---->[0]:EventInfo_p4 Typ:EventInfo_p4 [21] Size:0 Offset:0 #Elements:1
-SimplePoolFromR...  DEBUG --->Reading Shape[1 , ????]: [1 Column(s)]
-SimplePoolFromR...  DEBUG ---->[0]:DataHeaderForm_p5 Typ:DataHeaderForm_p5 [21] Size:0 Offset:0 #Elements:1
-SimplePoolFromR...  DEBUG --->Reading Shape[2 , ????]: [1 Column(s)]
-SimplePoolFromR...  DEBUG ---->[0]:DataHeader_p5 Typ:DataHeader_p5 [21] Size:0 Offset:0 #Elements:1
-SimplePoolFromR...  DEBUG --->Reading Shape[3 , ????]: [1 Column(s)]
-SimplePoolFromR...  DEBUG ---->[0]:EventStreamInfo_p3 Typ:EventStreamInfo_p3 [21] Size:0 Offset:0 #Elements:1
-SimplePoolFromR...  DEBUG --->Reading Shape[4 , ????]: [1 Column(s)]
-SimplePoolFromR...  DEBUG ---->[0]:ByteStreamMetadataContainer_p1 Typ:ByteStreamMetadataContainer_p1 [21] Size:0 Offset:0 #Elements:1
-##Shapes            DEBUG No objects passing selection criteria... Container has 5 Entries in total.
-SimplePoolFromR...  DEBUG --> Access   DbContainer  READ      [ROOT_All] ##Links
-##Links             DEBUG Opening
-##Links             DEBUG    attributes# = 1
-##Links             DEBUG Opened container ##Links of type ROOT_Tree
-SimplePoolFromR...  DEBUG --->Reading Assoc:????/##Params [200]  (2 , ffffffff)
-SimplePoolFromR...  DEBUG ---->ClassID:????
-SimplePoolFromR...  DEBUG --->Reading Assoc:????/CollectionTree(EventInfo_p4/ByteStreamEventInfo) [202]  (3 , ffffffff)
-SimplePoolFromR...  DEBUG ---->ClassID:????
-SimplePoolFromR...  DEBUG --->Reading Assoc:????/POOLContainerForm(DataHeaderForm) [202]  (4 , ffffffff)
-SimplePoolFromR...  DEBUG ---->ClassID:????
-SimplePoolFromR...  DEBUG --->Reading Assoc:????/POOLContainer(DataHeader) [202]  (5 , ffffffff)
-SimplePoolFromR...  DEBUG ---->ClassID:????
-SimplePoolFromR...  DEBUG --->Reading Assoc:????/POOLContainer(basic/DataHeader) [202]  (6 , ffffffff)
-SimplePoolFromR...  DEBUG ---->ClassID:????
-SimplePoolFromR...  DEBUG --->Reading Assoc:????/MetaData(EventStreamInfo_p3/Stream1) [202]  (7 , ffffffff)
-SimplePoolFromR...  DEBUG ---->ClassID:????
-SimplePoolFromR...  DEBUG --->Reading Assoc:????/MetaData(ByteStreamMetadataContainer_p1/ByteStreamMetadata) [202]  (8 , ffffffff)
-SimplePoolFromR...  DEBUG ---->ClassID:????
-SimplePoolFromR...  DEBUG --->Reading Assoc:????/MetaDataHdrForm(DataHeaderForm) [202]  (9 , ffffffff)
-SimplePoolFromR...  DEBUG ---->ClassID:????
-SimplePoolFromR...  DEBUG --->Reading Assoc:????/MetaDataHdr(DataHeader) [202]  (a , ffffffff)
-SimplePoolFromR...  DEBUG ---->ClassID:????
-##Links             DEBUG No objects passing selection criteria... Container has 9 Entries in total.
-SimplePoolFromR...  DEBUG --> Access   DbContainer  READ      [ROOT_All] ##Params
-##Params            DEBUG Opening
-##Params            DEBUG    attributes# = 1
-##Params            DEBUG Opened container ##Params of type ROOT_Tree
-SimplePoolFromR...  DEBUG --->Reading Param:FID=[????]
-SimplePoolFromR...  DEBUG --->Reading Param:PFN=[SimplePoolFromRaw.root]
-SimplePoolFromR...  DEBUG --->Reading Param:POOL_VSN=[1.1]
-SimplePoolFromR...  DEBUG --->Reading Param:FORMAT_VSN=[1.1]
-##Params            DEBUG No objects passing selection criteria... Container has 4 Entries in total.
-SimplePoolFromR...  DEBUG --> Access   DbContainer  READ      [ROOT_Tree] POOLContainer(DataHeader)
-POOLContainer(D...  DEBUG Opening
-POOLContainer(D...  DEBUG    attributes# = 1
-POOLContainer(D...  DEBUG Branch container 'DataHeader'
-POOLContainer(D...  DEBUG Opened container POOLContainer(DataHeader) of type ROOT_Tree
-MetaDataSvc         DEBUG handle() FirstInputFile for FID:????
-MetaDataSvc         DEBUG initInputMetaDataStore: file name FID:????
-SimplePoolFromR...  DEBUG --> Access   DbContainer  READ      [ROOT_Tree] MetaDataHdr(DataHeader)
-MetaDataHdr(Dat...  DEBUG Opening
-MetaDataHdr(Dat...  DEBUG    attributes# = 1
-MetaDataHdr(Dat...  DEBUG Branch container 'DataHeader'
-MetaDataHdr(Dat...  DEBUG Opened container MetaDataHdr(DataHeader) of type ROOT_Tree
-EventPersistenc...   INFO Added successfully Conversion service:AthenaPoolCnvSvc
-SimplePoolFromR...  DEBUG --> Access   DbContainer  READ      [ROOT_Tree] MetaDataHdrForm(DataHeaderForm)
-MetaDataHdrForm...  DEBUG Opening
-MetaDataHdrForm...  DEBUG    attributes# = 1
-MetaDataHdrForm...  DEBUG Branch container 'DataHeaderForm'
-MetaDataHdrForm...  DEBUG Opened container MetaDataHdrForm(DataHeaderForm) of type ROOT_Tree
-MetaDataSvc         DEBUG Loaded input meta data store proxies
-AthenaPoolAddre...  DEBUG Property update for OutputLevel : new value = 2
-AthenaPoolAddre...   INFO Initializing AthenaPoolAddressProviderSvc - package version EventSelectorAthenaPool-00-00-00
-ReadData            DEBUG Property update for OutputLevel : new value = 2
-ReadData             INFO in initialize()
-ReadData            DEBUG input handles: 0
-ReadData            DEBUG output handles: 0
-ReadData            DEBUG Data Deps for ReadData
-HistogramPersis...WARNING Histograms saving not required.
-AthenaEventLoopMgr   INFO Setup EventSelector service EventSelector
-ApplicationMgr       INFO Application Manager Initialized successfully
-Domain[ROOT_All]     INFO ->  Deaccess DbDatabase   READ      [ROOT_All] ????
-Domain[ROOT_All]     INFO >   Deaccess DbDomain     READ      [ROOT_All] 
-EventSelector       DEBUG Try item: "SimplePoolFromRaw.root" from the collection list.
-DbSession            INFO     Open     DbSession    
-Domain[ROOT_All]     INFO >   Access   DbDomain     READ      [ROOT_All] 
-Domain[ROOT_All]     INFO ->  Access   DbDatabase   READ      [ROOT_All] ????
-Domain[ROOT_All]     INFO                           SimplePoolFromRaw.root
-SimplePoolFromR...  DEBUG --> Access   DbContainer  READ      [ROOT_All] ##Shapes
-##Shapes            DEBUG Opening
-##Shapes            DEBUG    attributes# = 1
-##Shapes            DEBUG Opened container ##Shapes of type ROOT_Tree
-SimplePoolFromR...  DEBUG --->Reading Shape[0 , ????]: [1 Column(s)]
-SimplePoolFromR...  DEBUG ---->[0]:EventInfo_p4 Typ:EventInfo_p4 [21] Size:0 Offset:0 #Elements:1
-SimplePoolFromR...  DEBUG --->Reading Shape[1 , ????]: [1 Column(s)]
-SimplePoolFromR...  DEBUG ---->[0]:DataHeaderForm_p5 Typ:DataHeaderForm_p5 [21] Size:0 Offset:0 #Elements:1
-SimplePoolFromR...  DEBUG --->Reading Shape[2 , ????]: [1 Column(s)]
-SimplePoolFromR...  DEBUG ---->[0]:DataHeader_p5 Typ:DataHeader_p5 [21] Size:0 Offset:0 #Elements:1
-SimplePoolFromR...  DEBUG --->Reading Shape[3 , ????]: [1 Column(s)]
-SimplePoolFromR...  DEBUG ---->[0]:EventStreamInfo_p3 Typ:EventStreamInfo_p3 [21] Size:0 Offset:0 #Elements:1
-SimplePoolFromR...  DEBUG --->Reading Shape[4 , ????]: [1 Column(s)]
-SimplePoolFromR...  DEBUG ---->[0]:ByteStreamMetadataContainer_p1 Typ:ByteStreamMetadataContainer_p1 [21] Size:0 Offset:0 #Elements:1
-##Shapes            DEBUG No objects passing selection criteria... Container has 5 Entries in total.
-SimplePoolFromR...  DEBUG --> Access   DbContainer  READ      [ROOT_All] ##Links
-##Links             DEBUG Opening
-##Links             DEBUG    attributes# = 1
-##Links             DEBUG Opened container ##Links of type ROOT_Tree
-SimplePoolFromR...  DEBUG --->Reading Assoc:????/##Params [200]  (2 , ffffffff)
-SimplePoolFromR...  DEBUG ---->ClassID:????
-SimplePoolFromR...  DEBUG --->Reading Assoc:????/CollectionTree(EventInfo_p4/ByteStreamEventInfo) [202]  (3 , ffffffff)
-SimplePoolFromR...  DEBUG ---->ClassID:????
-SimplePoolFromR...  DEBUG --->Reading Assoc:????/POOLContainerForm(DataHeaderForm) [202]  (4 , ffffffff)
-SimplePoolFromR...  DEBUG ---->ClassID:????
-SimplePoolFromR...  DEBUG --->Reading Assoc:????/POOLContainer(DataHeader) [202]  (5 , ffffffff)
-SimplePoolFromR...  DEBUG ---->ClassID:????
-SimplePoolFromR...  DEBUG --->Reading Assoc:????/POOLContainer(basic/DataHeader) [202]  (6 , ffffffff)
-SimplePoolFromR...  DEBUG ---->ClassID:????
-SimplePoolFromR...  DEBUG --->Reading Assoc:????/MetaData(EventStreamInfo_p3/Stream1) [202]  (7 , ffffffff)
-SimplePoolFromR...  DEBUG ---->ClassID:????
-SimplePoolFromR...  DEBUG --->Reading Assoc:????/MetaData(ByteStreamMetadataContainer_p1/ByteStreamMetadata) [202]  (8 , ffffffff)
-SimplePoolFromR...  DEBUG ---->ClassID:????
-SimplePoolFromR...  DEBUG --->Reading Assoc:????/MetaDataHdrForm(DataHeaderForm) [202]  (9 , ffffffff)
-SimplePoolFromR...  DEBUG ---->ClassID:????
-SimplePoolFromR...  DEBUG --->Reading Assoc:????/MetaDataHdr(DataHeader) [202]  (a , ffffffff)
-SimplePoolFromR...  DEBUG ---->ClassID:????
-##Links             DEBUG No objects passing selection criteria... Container has 9 Entries in total.
-SimplePoolFromR...  DEBUG --> Access   DbContainer  READ      [ROOT_All] ##Params
-##Params            DEBUG Opening
-##Params            DEBUG    attributes# = 1
-##Params            DEBUG Opened container ##Params of type ROOT_Tree
-SimplePoolFromR...  DEBUG --->Reading Param:FID=[????]
-SimplePoolFromR...  DEBUG --->Reading Param:PFN=[SimplePoolFromRaw.root]
-SimplePoolFromR...  DEBUG --->Reading Param:POOL_VSN=[1.1]
-SimplePoolFromR...  DEBUG --->Reading Param:FORMAT_VSN=[1.1]
-##Params            DEBUG No objects passing selection criteria... Container has 4 Entries in total.
-MetaDataSvc         DEBUG handle() BeginTagFile for SimplePoolFromRaw.root
-SimplePoolFromR...  DEBUG --> Access   DbContainer  READ      [ROOT_Tree] POOLContainer(DataHeader)
-POOLContainer(D...  DEBUG Opening
-POOLContainer(D...  DEBUG    attributes# = 1
-POOLContainer(D...  DEBUG Branch container 'DataHeader'
-POOLContainer(D...  DEBUG Opened container POOLContainer(DataHeader) of type ROOT_Tree
-ApplicationMgr       INFO Application Manager Started successfully
-MetaDataSvc         DEBUG handle() BeginInputFile for SimplePoolFromRaw.root
-MetaDataSvc         DEBUG initInputMetaDataStore: file name SimplePoolFromRaw.root
-SimplePoolFromR...  DEBUG --> Access   DbContainer  READ      [ROOT_Tree] MetaDataHdr(DataHeader)
-MetaDataHdr(Dat...  DEBUG Opening
-MetaDataHdr(Dat...  DEBUG    attributes# = 1
-MetaDataHdr(Dat...  DEBUG Branch container 'DataHeader'
-MetaDataHdr(Dat...  DEBUG Opened container MetaDataHdr(DataHeader) of type ROOT_Tree
-MetaDataSvc         DEBUG Loaded input meta data store proxies
-MetaDataSvc         DEBUG  calling beginInputFile for ToolSvc.IOVDbMetaDataTool
-MetaDataSvc         DEBUG  calling beginInputFile for ToolSvc.ByteStreamMetadataTool
-SimplePoolFromR...  DEBUG --> Access   DbContainer  READ      [ROOT_Tree] MetaData(ByteStreamMetadataContainer_p1/ByteStreamMetadata)
-MetaData(ByteSt...  DEBUG Opening
-MetaData(ByteSt...  DEBUG    attributes# = 1
-MetaData(ByteSt...  DEBUG Branch container 'ByteStreamMetadataContainer_p1_ByteStreamMetadata'
-MetaData(ByteSt...  DEBUG Opened container MetaData(ByteStreamMetadataContainer_p1/ByteStreamMetadata) of type ROOT_Tree
-ClassIDSvc           INFO  getRegistryEntries: read 3710 CLIDRegistry entries for module ALL
-EventSelector       DEBUG Get AttributeList from the collection
-EventSelector       DEBUG AttributeList size 0
-EventSelector       DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000000].
-EventSelector       DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000000].
-EventSelector       DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000000]
-SimplePoolFromR...  DEBUG --> Access   DbContainer  READ      [ROOT_Tree] POOLContainerForm(DataHeaderForm)
-POOLContainerFo...  DEBUG Opening
-POOLContainerFo...  DEBUG    attributes# = 1
-POOLContainerFo...  DEBUG Branch container 'DataHeaderForm'
-POOLContainerFo...  DEBUG Opened container POOLContainerForm(DataHeaderForm) of type ROOT_Tree
-AthenaPoolAddre...  DEBUG The current Event contains: 2 objects
-AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 2101, name = ByteStreamEventInfo
-AlgResourcePool      INFO TopAlg list empty. Recovering the one of Application Manager
-SimplePoolFromR...  DEBUG --> Access   DbContainer  READ      [ROOT_Tree] CollectionTree(EventInfo_p4/ByteStreamEventInfo)
-CollectionTree(...  DEBUG Opening
-CollectionTree(...  DEBUG    attributes# = 1
-CollectionTree(...  DEBUG Branch container 'EventInfo_p4_ByteStreamEventInfo'
-CollectionTree(...  DEBUG Opened container CollectionTree(EventInfo_p4/ByteStreamEventInfo) of type ROOT_Tree
-AthenaPoolConve...   INFO massageEventInfo: unable to get OverrideRunNumberFromInput property from EventSelector 
-ClassIDSvc           INFO  getRegistryEntries: read 11 CLIDRegistry entries for module ALL
-AthenaEventLoopMgr   INFO   ===>>>  start of run 20720    <<<===
-AthenaEventLoopMgr   INFO   ===>>>  start processing event #14350, run #20720 0 events processed so far  <<<===
-ReadBs               INFO ByteStreamMetadataContainer, size =  1
-ReadData            DEBUG in execute()
-SimplePoolFromR...  DEBUG --> Access   DbContainer  READ      [ROOT_Tree] MetaData(EventStreamInfo_p3/Stream1)
-MetaData(EventS...  DEBUG Opening
-MetaData(EventS...  DEBUG    attributes# = 1
-MetaData(EventS...  DEBUG Branch container 'EventStreamInfo_p3_Stream1'
-MetaData(EventS...  DEBUG Opened container MetaData(EventStreamInfo_p3/Stream1) of type ROOT_Tree
-ReadData             INFO EventStreamInfo: Number of events = 3
-ReadData             INFO EventStreamInfo: ItemList:
-ReadData             INFO CLID = 2101, key = ByteStreamEventInfo
-ReadData             INFO CLID = 222376821, key = StreamX
-ReadData             INFO EventType: Event type: sim/data -  is data , testbeam/atlas -  is atlas , calib/physics -  is physics 
-ReadData             INFO TagInfo: 
-ReadData             INFO EventInfo event: 14350 run: 20720
-ReadData             INFO Get Smart data ptr 1
-ReadData             INFO Could not find ExampleTrackContainer/MyTracks
-ReadData             INFO Could not find ExampleHitContainer/MyHits
-AthenaEventLoopMgr   INFO   ===>>>  done processing event #14350, run #20720 1 events processed so far  <<<===
-EventSelector       DEBUG Get AttributeList from the collection
-EventSelector       DEBUG AttributeList size 0
-EventSelector       DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000001].
-EventSelector       DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000001].
-EventSelector       DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000001]
-AthenaPoolAddre...  DEBUG The current Event contains: 2 objects
-AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 2101, name = ByteStreamEventInfo
-AthenaEventLoopMgr   INFO   ===>>>  start processing event #14356, run #20720 1 events processed so far  <<<===
-ReadBs               INFO ByteStreamMetadataContainer, size =  1
-ReadData            DEBUG in execute()
-ReadData             INFO EventStreamInfo: Number of events = 3
-ReadData             INFO EventStreamInfo: ItemList:
-ReadData             INFO CLID = 2101, key = ByteStreamEventInfo
-ReadData             INFO CLID = 222376821, key = StreamX
-ReadData             INFO EventType: Event type: sim/data -  is data , testbeam/atlas -  is atlas , calib/physics -  is physics 
-ReadData             INFO TagInfo: 
-ReadData             INFO EventInfo event: 14356 run: 20720
-ReadData             INFO Get Smart data ptr 1
-ReadData             INFO Could not find ExampleTrackContainer/MyTracks
-ReadData             INFO Could not find ExampleHitContainer/MyHits
-AthenaEventLoopMgr   INFO   ===>>>  done processing event #14356, run #20720 2 events processed so far  <<<===
-EventSelector       DEBUG Get AttributeList from the collection
-EventSelector       DEBUG AttributeList size 0
-EventSelector       DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000002].
-EventSelector       DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000002].
-EventSelector       DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000002]
-AthenaPoolAddre...  DEBUG The current Event contains: 2 objects
-AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 2101, name = ByteStreamEventInfo
-AthenaEventLoopMgr   INFO   ===>>>  start processing event #14382, run #20720 2 events processed so far  <<<===
-ReadBs               INFO ByteStreamMetadataContainer, size =  1
-ReadData            DEBUG in execute()
-ReadData             INFO EventStreamInfo: Number of events = 3
-ReadData             INFO EventStreamInfo: ItemList:
-ReadData             INFO CLID = 2101, key = ByteStreamEventInfo
-ReadData             INFO CLID = 222376821, key = StreamX
-ReadData             INFO EventType: Event type: sim/data -  is data , testbeam/atlas -  is atlas , calib/physics -  is physics 
-ReadData             INFO TagInfo: 
-ReadData             INFO EventInfo event: 14382 run: 20720
-ReadData             INFO Get Smart data ptr 1
-ReadData             INFO Could not find ExampleTrackContainer/MyTracks
-ReadData             INFO Could not find ExampleHitContainer/MyHits
-AthenaEventLoopMgr   INFO   ===>>>  done processing event #14382, run #20720 3 events processed so far  <<<===
-Domain[ROOT_All]     INFO ->  Deaccess DbDatabase   READ      [ROOT_All] ????
-Domain[ROOT_All]     INFO >   Deaccess DbDomain     READ      [ROOT_All] 
-MetaDataSvc         DEBUG handle() EndInputFile for FID:????
-MetaDataSvc         DEBUG handle() EndTagFile for SimplePoolFromRaw.root
-MetaDataSvc         DEBUG handle() LastInputFile for end
-AthenaEventLoopMgr   INFO No more events in event selection 
-MetaDataSvc         DEBUG  calling metaDataStop for ToolSvc.IOVDbMetaDataTool
-MetaDataSvc         DEBUG  calling metaDataStop for ToolSvc.ByteStreamMetadataTool
-MetaDataSvc         DEBUG Releasing MetaDataTools
-ApplicationMgr       INFO Application Manager Stopped successfully
-IncidentProcAlg1     INFO Finalize
-ReadBs               INFO in finalize()
-ReadData             INFO in finalize()
-IncidentProcAlg2     INFO Finalize
-AthDictLoaderSvc     INFO in finalize...
-ToolSvc              INFO Removing all tools created by ToolSvc
-ToolSvc.ByteStr...   INFO in finalize()
-*****Chrono*****     INFO ****************************************************************************************************
-*****Chrono*****     INFO  The Final CPU consumption ( Chrono ) Table (ordered)
-*****Chrono*****     INFO ****************************************************************************************************
-cObjR_ALL            INFO Time User   : Tot=   20 [ms] Ave/Min/Max= 1.67(+- 3.73)/    0/   10 [ms] #= 12
-cObj_ALL             INFO Time User   : Tot=   40 [ms] Ave/Min/Max=    4(+- 6.63)/    0/   20 [ms] #= 10
-ChronoStatSvc        INFO Time User   : Tot= 1.05  [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"
diff --git a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_WCond.ref b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_WCond.ref
index bde8f9a2ee7c9d996f07aab067ea6146a5472038..ab6b58639d91a5afc34d79fb6c100256d3e3d828 100644
--- a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_WCond.ref
+++ b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_WCond.ref
@@ -1,59 +1,26 @@
-Wed Dec 20 16:04:25 CST 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_WCondJobOptions.py"
-Py:ConfigurableDb    INFO Read module info for 5439 configurables from 18 genConfDb files
-Py:ConfigurableDb    INFO No duplicates have been found: that's good !
 Athena               INFO including file "AthenaCommon/runbatch.py"
-[?1034hApplicationMgr       INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0
-ApplicationMgr    SUCCESS 
-====================================================================================================================================
-                                                   Welcome to ApplicationMgr (GaudiCoreSvc v30r0)
-                                          running on atlas2.hep.anl.gov on Wed Dec 20 16:04:35 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 2318 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
-Stream1             DEBUG Property update for OutputLevel : new value = 2
 Stream1             DEBUG in initialize()
-ToolSvc.Stream1...   INFO Initializing ToolSvc.Stream1Tool - package version OutputStreamAthenaPool-00-00-00
-AthenaPoolCnvSvc     INFO Initializing AthenaPoolCnvSvc - package version AthenaPoolCnvSvc-00-00-00
-PoolSvc             DEBUG Property update for OutputLevel : new value = 2
 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://lcgft-atlas.gridpp.rl.ac.uk:3128/frontierATLAS)(serverurl=http://frontier-atlas.lcg.triumf.ca:3128/ATLAS_frontier)(serverurl=http://ccfrontier.in2p3.fr:23128/ccin2p3-AtlasFrontier) will be considered for COOL data
-DBReplicaSvc         INFO Read replica configuration from /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2017-12-17T2303/Athena/22.0.0/InstallArea/x86_64-slc6-gcc62-opt/share/dbreplica.config
-DBReplicaSvc         INFO Total of 1 servers found for host atlas2.hep.anl.gov [ATLF ]
 PoolSvc              INFO Successfully setup replica sorting algorithm
 PoolSvc             DEBUG OutputLevel is 
 PoolSvc              INFO Setting up APR FileCatalog and Streams
 PoolSvc              INFO POOL WriteCatalog is file:Catalog1.xml
-DbSession            INFO     Open     DbSession    
-Domain[ROOT_All]     INFO >   Access   DbDomain     READ      [ROOT_All] 
-Stream1             DEBUG input handles: 0
-Stream1             DEBUG output handles: 0
-Stream1             DEBUG Data Deps for Stream1
-ReadData            DEBUG Property update for OutputLevel : new value = 2
 ReadData             INFO in initialize()
-MetaDataSvc         DEBUG Property update for OutputLevel : new value = 2
-MetaDataSvc          INFO Initializing MetaDataSvc - package version AthenaServices-00-00-00
-EventSelector       DEBUG Property update for OutputLevel : new value = 2
-EventSelector        INFO Initializing EventSelector - package version EventSelectorAthenaPool-00-00-00
 EventSelector        INFO reinitialization...
 EventSelector        INFO EventSelection with query 
 EventSelector       DEBUG Try item: "SimplePoolFile1.root" from the collection list.
-Domain[ROOT_All]     INFO ->  Access   DbDatabase   READ      [ROOT_All] ????
 Domain[ROOT_All]     INFO                           SimplePoolFile1.root
 SimplePoolFile1...  DEBUG --> Access   DbContainer  READ      [ROOT_All] ##Shapes
 ##Shapes            DEBUG Opening
@@ -84,15 +51,13 @@ SimplePoolFile1...  DEBUG --->Reading Assoc:????/POOLContainerForm(DataHeaderFor
 SimplePoolFile1...  DEBUG ---->ClassID:????
 SimplePoolFile1...  DEBUG --->Reading Assoc:????/POOLContainer(DataHeader) [202]  (6 , ffffffff)
 SimplePoolFile1...  DEBUG ---->ClassID:????
-SimplePoolFile1...  DEBUG --->Reading Assoc:????/POOLContainer(basic/DataHeader) [202]  (7 , ffffffff)
+SimplePoolFile1...  DEBUG --->Reading Assoc:????/MetaData(EventStreamInfo_p3/Stream1) [202]  (7 , ffffffff)
 SimplePoolFile1...  DEBUG ---->ClassID:????
-SimplePoolFile1...  DEBUG --->Reading Assoc:????/MetaData(EventStreamInfo_p3/Stream1) [202]  (8 , ffffffff)
+SimplePoolFile1...  DEBUG --->Reading Assoc:????/MetaDataHdrForm(DataHeaderForm) [202]  (8 , ffffffff)
 SimplePoolFile1...  DEBUG ---->ClassID:????
-SimplePoolFile1...  DEBUG --->Reading Assoc:????/MetaDataHdrForm(DataHeaderForm) [202]  (9 , ffffffff)
+SimplePoolFile1...  DEBUG --->Reading Assoc:????/MetaDataHdr(DataHeader) [202]  (9 , ffffffff)
 SimplePoolFile1...  DEBUG ---->ClassID:????
-SimplePoolFile1...  DEBUG --->Reading Assoc:????/MetaDataHdr(DataHeader) [202]  (a , ffffffff)
-SimplePoolFile1...  DEBUG ---->ClassID:????
-##Links             DEBUG No objects passing selection criteria... Container has 9 Entries in total.
+##Links             DEBUG No objects passing selection criteria... Container has 8 Entries in total.
 SimplePoolFile1...  DEBUG --> Access   DbContainer  READ      [ROOT_All] ##Params
 ##Params            DEBUG Opening
 ##Params            DEBUG    attributes# = 1
@@ -121,27 +86,13 @@ MetaDataHdrForm...  DEBUG    attributes# = 1
 MetaDataHdrForm...  DEBUG Branch container 'DataHeaderForm'
 MetaDataHdrForm...  DEBUG Opened container MetaDataHdrForm(DataHeaderForm) of type ROOT_Tree
 MetaDataSvc         DEBUG Loaded input meta data store proxies
-AthenaPoolAddre...  DEBUG Property update for OutputLevel : new value = 2
-AthenaPoolAddre...   INFO Initializing AthenaPoolAddressProviderSvc - package version EventSelectorAthenaPool-00-00-00
-ReadData            DEBUG input handles: 0
-ReadData            DEBUG output handles: 0
-ReadData            DEBUG Data Deps for ReadData
-WriteCond           DEBUG Property update for OutputLevel : new value = 2
 WriteCond            INFO in initialize()
 AthenaPoolAddre...  DEBUG Cannot find DataHeader in DetectorStore.
-ClassIDSvc           INFO  getRegistryEntries: read 3478 CLIDRegistry entries for module ALL
-WriteCond           DEBUG input handles: 0
-WriteCond           DEBUG output handles: 0
-WriteCond           DEBUG Data Deps for WriteCond
 HistogramPersis...WARNING Histograms saving not required.
 AthenaEventLoopMgr   INFO Setup EventSelector service EventSelector
 ApplicationMgr       INFO Application Manager Initialized successfully
-Domain[ROOT_All]     INFO ->  Deaccess DbDatabase   READ      [ROOT_All] ????
 Domain[ROOT_All]     INFO >   Deaccess DbDomain     READ      [ROOT_All] 
 EventSelector       DEBUG Try item: "SimplePoolFile1.root" from the collection list.
-DbSession            INFO     Open     DbSession    
-Domain[ROOT_All]     INFO >   Access   DbDomain     READ      [ROOT_All] 
-Domain[ROOT_All]     INFO ->  Access   DbDatabase   READ      [ROOT_All] ????
 Domain[ROOT_All]     INFO                           SimplePoolFile1.root
 SimplePoolFile1...  DEBUG --> Access   DbContainer  READ      [ROOT_All] ##Shapes
 ##Shapes            DEBUG Opening
@@ -172,15 +123,13 @@ SimplePoolFile1...  DEBUG --->Reading Assoc:????/POOLContainerForm(DataHeaderFor
 SimplePoolFile1...  DEBUG ---->ClassID:????
 SimplePoolFile1...  DEBUG --->Reading Assoc:????/POOLContainer(DataHeader) [202]  (6 , ffffffff)
 SimplePoolFile1...  DEBUG ---->ClassID:????
-SimplePoolFile1...  DEBUG --->Reading Assoc:????/POOLContainer(basic/DataHeader) [202]  (7 , ffffffff)
-SimplePoolFile1...  DEBUG ---->ClassID:????
-SimplePoolFile1...  DEBUG --->Reading Assoc:????/MetaData(EventStreamInfo_p3/Stream1) [202]  (8 , ffffffff)
+SimplePoolFile1...  DEBUG --->Reading Assoc:????/MetaData(EventStreamInfo_p3/Stream1) [202]  (7 , ffffffff)
 SimplePoolFile1...  DEBUG ---->ClassID:????
-SimplePoolFile1...  DEBUG --->Reading Assoc:????/MetaDataHdrForm(DataHeaderForm) [202]  (9 , ffffffff)
+SimplePoolFile1...  DEBUG --->Reading Assoc:????/MetaDataHdrForm(DataHeaderForm) [202]  (8 , ffffffff)
 SimplePoolFile1...  DEBUG ---->ClassID:????
-SimplePoolFile1...  DEBUG --->Reading Assoc:????/MetaDataHdr(DataHeader) [202]  (a , ffffffff)
+SimplePoolFile1...  DEBUG --->Reading Assoc:????/MetaDataHdr(DataHeader) [202]  (9 , ffffffff)
 SimplePoolFile1...  DEBUG ---->ClassID:????
-##Links             DEBUG No objects passing selection criteria... Container has 9 Entries in total.
+##Links             DEBUG No objects passing selection criteria... Container has 8 Entries in total.
 SimplePoolFile1...  DEBUG --> Access   DbContainer  READ      [ROOT_All] ##Params
 ##Params            DEBUG Opening
 ##Params            DEBUG    attributes# = 1
@@ -219,14 +168,11 @@ POOLContainerFo...  DEBUG Opened container POOLContainerForm(DataHeaderForm) of
 AthenaPoolAddre...  DEBUG The current Event contains: 3 objects
 AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo
 AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 9102, name = MyHits
-AlgResourcePool      INFO TopAlg list empty. Recovering the one of Application Manager
 SimplePoolFile1...  DEBUG --> Access   DbContainer  READ      [ROOT_Tree] CollectionTree(EventInfo_p4/McEventInfo)
 CollectionTree(...  DEBUG Opening
 CollectionTree(...  DEBUG    attributes# = 1
 CollectionTree(...  DEBUG Branch container 'EventInfo_p4_McEventInfo'
 CollectionTree(...  DEBUG Opened container CollectionTree(EventInfo_p4/McEventInfo) of type ROOT_Tree
-AthenaPoolConve...   INFO massageEventInfo: unable to get OverrideRunNumberFromInput property from EventSelector 
-ClassIDSvc           INFO  getRegistryEntries: read 11 CLIDRegistry entries for module ALL
 AthenaEventLoopMgr   INFO   ===>>>  start of run 1    <<<===
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #0, run #1 0 events processed so far  <<<===
 ReadData            DEBUG in execute()
@@ -260,7 +206,6 @@ ReadData             INFO Hit x = 20.4945 y = 63.5816 z = 48.1358 detector = Dum
 ReadData             INFO Hit x = 23.7045 y = 57.9027 z = 46.3159 detector = DummyHitDetector
 ReadData             INFO Hit x = 26.9145 y = 52.2238 z = 44.9265 detector = DummyHitDetector
 ReadData             INFO Hit x = 30.1245 y = 46.5449 z = 43.831 detector = DummyHitDetector
-ClassIDSvc           INFO  getRegistryEntries: read 10 CLIDRegistry entries for module ALL
 WriteCond           DEBUG in execute()
 WriteCond            INFO Hit x = 1.2345 y = 97.655 z = 226.672 detector = DummyHitDetector
 WriteCond            INFO Hit x = 4.4445 y = 91.9761 z = 94.7318 detector = DummyHitDetector
@@ -1091,7 +1036,6 @@ WriteCond            INFO Hit x = 1926.91 y = 52.2238 z = -1855.07 detector = Du
 WriteCond            INFO Hit x = 1930.12 y = 46.5449 z = -1856.17 detector = DummyHitDetector
 WriteCond            INFO registered all data
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #19, run #1 20 events processed so far  <<<===
-Domain[ROOT_All]     INFO ->  Deaccess DbDatabase   READ      [ROOT_All] ????
 Domain[ROOT_All]     INFO >   Deaccess DbDomain     READ      [ROOT_All] 
 MetaDataSvc         DEBUG handle() EndInputFile for FID:????
 MetaDataSvc         DEBUG handle() EndTagFile for SimplePoolFile1.root
@@ -1102,11 +1046,7 @@ WriteCond            INFO Pedestal x = 193136 y = 14420 z = -175208 string = <..
 MetaDataSvc         DEBUG  calling metaDataStop for ToolSvc.IOVDbMetaDataTool
 MetaDataSvc         DEBUG Releasing MetaDataTools
 ApplicationMgr       INFO Application Manager Stopped successfully
-IncidentProcAlg1     INFO Finalize
 Stream1              INFO Finalize: preparing to write conditions objects 
-DbSession            INFO     Open     DbSession    
-Domain[ROOT_All]     INFO >   Access   DbDomain     UPDATE    [ROOT_All] 
-Domain[ROOT_All]     INFO ->  Access   DbDatabase   CREATE    [ROOT_All] ????
 Domain[ROOT_All]     INFO                           SimplePoolFile4.root
 SimplePoolFile4...  DEBUG --> Access   DbContainer  CREATE    [ROOT_All] ##Shapes
 ##Shapes            DEBUG Opening
@@ -1166,21 +1106,12 @@ SimplePoolFile4...  DEBUG ---->[0]:DataHeader_p5 Typ:DataHeader_p5 [21] Size:0 O
 Stream1              INFO Written 1 objects to output stream
 Stream1              INFO Objects NOT registered in IOV database
 ReadData             INFO in finalize()
-IncidentProcAlg2     INFO Finalize
-Domain[ROOT_All]     INFO ->  Deaccess DbDatabase   CREATE    [ROOT_All] ????
 Domain[ROOT_All]     INFO >   Deaccess DbDomain     UPDATE    [ROOT_All] 
 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 ****************************************************************************************************
-commitOutput         INFO Time User   : Tot=    0 [us]                                             #=  1
-fRep_ALL             INFO Time User   : Tot=    0 [us] Ave/Min/Max=    0(+-    0)/    0/    0 [us] #=  2
-cRepR_ALL            INFO Time User   : Tot=    0 [us] Ave/Min/Max=    0(+-    0)/    0/    0 [us] #=  3
-cRep_ALL             INFO Time User   : Tot=   10 [ms] Ave/Min/Max=    5(+-    5)/    0/   10 [ms] #=  2
-cObjR_ALL            INFO Time User   : Tot=   20 [ms] Ave/Min/Max=0.303(+- 1.71)/    0/   10 [ms] #= 66
-cObj_ALL             INFO Time User   : Tot=   40 [ms] Ave/Min/Max=0.635(+- 3.02)/    0/   20 [ms] #= 63
-ChronoStatSvc        INFO Time User   : Tot= 0.96  [s]                                             #=  1
 *****Chrono*****     INFO ****************************************************************************************************
 ChronoStatSvc.f...   INFO  Service finalized successfully 
 ApplicationMgr       INFO Application Manager Finalized successfully
diff --git a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_WMeta.ref b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_WMeta.ref
index 06b5427764687168d2b559469e1005a51b00656b..9155a5154210987f59ab4414988e38de89ea6775 100644
--- a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_WMeta.ref
+++ b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_WMeta.ref
@@ -1,4 +1,4 @@
-Wed Dec 20 16:05:13 CST 2017
+Wed Jan 31 16:43:01 CST 2018
 Preloading tcmalloc_minimal.so
 Athena               INFO including file "AthenaCommon/Preparation.py"
 Athena               INFO including file "AthenaCommon/Bootstrap.py"
@@ -6,14 +6,14 @@ 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_WMetaJobOptions.py"
-Py:ConfigurableDb    INFO Read module info for 5439 configurables from 18 genConfDb files
+Py:ConfigurableDb    INFO Read module info for 5451 configurables from 54 genConfDb files
 Py:ConfigurableDb    INFO No duplicates have been found: that's good !
 Athena               INFO including file "AthenaCommon/runbatch.py"
-[?1034hApplicationMgr       INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0
+ApplicationMgr       INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0
 ApplicationMgr    SUCCESS 
 ====================================================================================================================================
-                                                   Welcome to ApplicationMgr (GaudiCoreSvc v30r0)
-                                          running on atlas2.hep.anl.gov on Wed Dec 20 16:05:23 2017
+                                                   Welcome to ApplicationMgr (GaudiCoreSvc v30r1)
+                                          running on hepd-0003 on Wed Jan 31 16:43:07 2018
 ====================================================================================================================================
 ApplicationMgr       INFO Successfully loaded modules : AthenaServices
 ApplicationMgr       INFO Application Manager Configured successfully
@@ -21,7 +21,7 @@ ApplicationMgr       INFO Updating Gaudi::PluginService::SetDebug(level) to leve
 StatusCodeSvc        INFO initialize
 AthDictLoaderSvc     INFO in initialize...
 AthDictLoaderSvc     INFO acquired Dso-registry
-ClassIDSvc           INFO  getRegistryEntries: read 2318 CLIDRegistry entries for module ALL
+ClassIDSvc           INFO  getRegistryEntries: read 2320 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
@@ -39,15 +39,15 @@ PoolSvc              INFO io_register[PoolSvc](xmlcatalog_file:Catalog2.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://lcgft-atlas.gridpp.rl.ac.uk:3128/frontierATLAS)(serverurl=http://frontier-atlas.lcg.triumf.ca:3128/ATLAS_frontier)(serverurl=http://ccfrontier.in2p3.fr:23128/ccin2p3-AtlasFrontier) will be considered for COOL data
-DBReplicaSvc         INFO Read replica configuration from /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2017-12-17T2303/Athena/22.0.0/InstallArea/x86_64-slc6-gcc62-opt/share/dbreplica.config
-DBReplicaSvc         INFO Total of 1 servers found for host atlas2.hep.anl.gov [ATLF ]
+DBReplicaSvc         INFO Read replica configuration from /home/gemmeren/workarea/build/x86_64-centos7-gcc62-opt/share/dbreplica.config
+DBReplicaSvc         INFO Total of 1 servers found for host hepd-0003.lcrc.anl.gov [ATLF ]
 PoolSvc              INFO Successfully setup replica sorting algorithm
 PoolSvc             DEBUG OutputLevel is 
 PoolSvc              INFO Setting up APR FileCatalog and Streams
 PoolSvc              INFO POOL WriteCatalog is xmlcatalog_file:Catalog2.xml
 DbSession            INFO     Open     DbSession    
 Domain[ROOT_All]     INFO >   Access   DbDomain     READ      [ROOT_All] 
-ClassIDSvc           INFO  getRegistryEntries: read 2282 CLIDRegistry entries for module ALL
+ClassIDSvc           INFO  getRegistryEntries: read 2271 CLIDRegistry entries for module ALL
 Stream1             DEBUG Property update for OutputLevel : new value = 2
 Stream1.Stream1...  DEBUG Property update for OutputLevel : new value = 2
 Stream1             DEBUG In initialize 
@@ -59,9 +59,7 @@ Stream1             DEBUG Found StoreGateSvc store.
 Stream1             DEBUG Found MetaDataStore store.
 OutputStreamSeq...   INFO Initializing OutputStreamSequencerSvc - package version AthenaServices-00-00-00
 Stream1.Stream1...  DEBUG Property update for OutputLevel : new value = 2
-ClassIDSvc           INFO  getRegistryEntries: read 402 CLIDRegistry entries for module ALL
-Stream1.Stream1...   INFO Initializing Stream1.Stream1Tool - package version OutputStreamAthenaPool-00-00-00
-Stream1.Stream1...   INFO streamProperty ProcessingTag = Stream1
+Stream1.Stream1...   INFO Initializing Stream1.Stream1Tool - package version AthenaServices-00-00-00
 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'])
@@ -72,7 +70,7 @@ 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 Adding private ToolHandle tool Stream1.Stream1Tool (AthenaOutputStreamTool)
 Stream1             DEBUG Data Deps for Stream1
 HistogramPersis...WARNING Histograms saving not required.
 EventSelector        INFO  Enter McEventSelector Initialization 
@@ -80,7 +78,7 @@ AthenaEventLoopMgr   INFO Setup EventSelector service EventSelector
 ApplicationMgr       INFO Application Manager Initialized successfully
 ApplicationMgr       INFO Application Manager Started successfully
 EventPersistenc...   INFO Added successfully Conversion service:McCnvSvc
-ClassIDSvc           INFO  getRegistryEntries: read 108 CLIDRegistry entries for module ALL
+ClassIDSvc           INFO  getRegistryEntries: read 456 CLIDRegistry entries for module ALL
 AthenaEventLoopMgr   INFO   ===>>>  start of run 0    <<<===
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #0, run #0 0 events processed so far  <<<===
 WriteData           DEBUG in execute()
@@ -180,16 +178,9 @@ SimplePoolFile5...  DEBUG ---->ClassID:????
 SimplePoolFile5...  DEBUG --->Adding Shape[3 , ????]:  [1 Column(s)] 
 SimplePoolFile5...  DEBUG ---->Class:DataHeader_p5
 SimplePoolFile5...  DEBUG ---->[0]:DataHeader_p5 Typ:DataHeader_p5 [21] Size:0 Offset:0 #Elements:1
-ClassIDSvc           INFO  getRegistryEntries: read 63 CLIDRegistry entries for module ALL
-SimplePoolFile5...  DEBUG --> Access   DbContainer  CREA/UPDA [ROOT_Tree] POOLContainer(basic/DataHeader)
-POOLContainer(b...  DEBUG Opening
-POOLContainer(b...  DEBUG    attributes# = 1
-POOLContainer(b...  DEBUG Branch container 'basic_DataHeader'
-POOLContainer(b...  DEBUG Opened container POOLContainer(basic/DataHeader) of type ROOT_Tree
-SimplePoolFile5...  DEBUG --->Adding Assoc :????/POOLContainer(basic/DataHeader) [202]  (7 , ffffffff)
-SimplePoolFile5...  DEBUG ---->ClassID:????
 AthenaPoolCnvSvc    DEBUG setAttribute BRANCH_BASKET_SIZE to 256000 for db: SimplePoolFile5.root and cont: POOLContainer(DataHeader)
 AthenaPoolCnvSvc    DEBUG setAttribute BRANCH_BASKET_SIZE to 1024000 for db: SimplePoolFile5.root and cont: POOLContainerForm(DataHeaderForm)
+ClassIDSvc           INFO  getRegistryEntries: read 68 CLIDRegistry entries for module ALL
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #0, run #0 1 events processed so far  <<<===
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #1, run #0 1 events processed so far  <<<===
 WriteData           DEBUG in execute()
@@ -683,7 +674,7 @@ MetaData(Exampl...  DEBUG Opening
 MetaData(Exampl...  DEBUG    attributes# = 1
 MetaData(Exampl...  DEBUG Branch container 'ExampleHitContainer_p1_PedestalWriteData'
 MetaData(Exampl...  DEBUG Opened container MetaData(ExampleHitContainer_p1/PedestalWriteData) of type ROOT_Tree
-SimplePoolFile5...  DEBUG --->Adding Assoc :????/MetaData(ExampleHitContainer_p1/PedestalWriteData) [202]  (8 , ffffffff)
+SimplePoolFile5...  DEBUG --->Adding Assoc :????/MetaData(ExampleHitContainer_p1/PedestalWriteData) [202]  (7 , ffffffff)
 SimplePoolFile5...  DEBUG ---->ClassID:????
 StorageSvc           INFO Building shape according to reflection information using shape ID for:
 StorageSvc           INFO EventStreamInfo_p3 [????]
@@ -692,7 +683,7 @@ MetaData(EventS...  DEBUG Opening
 MetaData(EventS...  DEBUG    attributes# = 1
 MetaData(EventS...  DEBUG Branch container 'EventStreamInfo_p3_Stream1'
 MetaData(EventS...  DEBUG Opened container MetaData(EventStreamInfo_p3/Stream1) of type ROOT_Tree
-SimplePoolFile5...  DEBUG --->Adding Assoc :????/MetaData(EventStreamInfo_p3/Stream1) [202]  (9 , ffffffff)
+SimplePoolFile5...  DEBUG --->Adding Assoc :????/MetaData(EventStreamInfo_p3/Stream1) [202]  (8 , ffffffff)
 SimplePoolFile5...  DEBUG ---->ClassID:????
 SimplePoolFile5...  DEBUG --->Adding Shape[4 , ????]:  [1 Column(s)] 
 SimplePoolFile5...  DEBUG ---->Class:EventStreamInfo_p3
@@ -702,14 +693,14 @@ MetaDataHdrForm...  DEBUG Opening
 MetaDataHdrForm...  DEBUG    attributes# = 1
 MetaDataHdrForm...  DEBUG Branch container 'DataHeaderForm'
 MetaDataHdrForm...  DEBUG Opened container MetaDataHdrForm(DataHeaderForm) of type ROOT_Tree
-SimplePoolFile5...  DEBUG --->Adding Assoc :????/MetaDataHdrForm(DataHeaderForm) [202]  (a , ffffffff)
+SimplePoolFile5...  DEBUG --->Adding Assoc :????/MetaDataHdrForm(DataHeaderForm) [202]  (9 , ffffffff)
 SimplePoolFile5...  DEBUG ---->ClassID:????
 SimplePoolFile5...  DEBUG --> Access   DbContainer  CREA/UPDA [ROOT_Tree] MetaDataHdr(DataHeader)
 MetaDataHdr(Dat...  DEBUG Opening
 MetaDataHdr(Dat...  DEBUG    attributes# = 1
 MetaDataHdr(Dat...  DEBUG Branch container 'DataHeader'
 MetaDataHdr(Dat...  DEBUG Opened container MetaDataHdr(DataHeader) of type ROOT_Tree
-SimplePoolFile5...  DEBUG --->Adding Assoc :????/MetaDataHdr(DataHeader) [202]  (b , ffffffff)
+SimplePoolFile5...  DEBUG --->Adding Assoc :????/MetaDataHdr(DataHeader) [202]  (a , ffffffff)
 SimplePoolFile5...  DEBUG ---->ClassID:????
 ClassIDSvc           INFO  getRegistryEntries: read 5 CLIDRegistry entries for module ALL
 Stream1              INFO Records written: 21
@@ -732,10 +723,10 @@ ToolSvc              INFO Removing all tools created by ToolSvc
 *****Chrono*****     INFO  The Final CPU consumption ( Chrono ) Table (ordered)
 *****Chrono*****     INFO ****************************************************************************************************
 commitOutput         INFO Time User   : Tot=    0 [us] Ave/Min/Max=    0(+-    0)/    0/    0 [us] #= 21
-fRep_ALL             INFO Time User   : Tot=    0 [us] Ave/Min/Max=    0(+-    0)/    0/    0 [us] #= 83
-cRepR_ALL            INFO Time User   : Tot=   30 [ms] Ave/Min/Max=0.242(+- 1.54)/    0/   10 [ms] #=124
-cRep_ALL             INFO Time User   : Tot=  120 [ms] Ave/Min/Max= 1.45(+- 6.61)/    0/   40 [ms] #= 83
-ChronoStatSvc        INFO Time User   : Tot= 0.93  [s]                                             #=  1
+fRep_ALL             INFO Time User   : Tot=   10 [ms] Ave/Min/Max=0.159(+- 1.25)/    0/   10 [ms] #= 63
+cRepR_ALL            INFO Time User   : Tot=    0 [us] Ave/Min/Max=    0(+-    0)/    0/    0 [us] #= 84
+cRep_ALL             INFO Time User   : Tot=   50 [ms] Ave/Min/Max=0.794(+-  3.7)/    0/   20 [ms] #= 63
+ChronoStatSvc        INFO Time User   : Tot= 0.53  [s]                                             #=  1
 *****Chrono*****     INFO ****************************************************************************************************
 ChronoStatSvc.f...   INFO  Service finalized successfully 
 ApplicationMgr       INFO Application Manager Finalized successfully
diff --git a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_Write.ref b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_Write.ref
index 18f328f2fc8472e43bacb98475eeb4ecbb058bc9..eebc7af20e8eadc3f6b2f323cada830e8aea15a9 100644
--- a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_Write.ref
+++ b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_Write.ref
@@ -1,82 +1,39 @@
-Fri Dec  8 04:06:17 CET 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_WriteJobOptions.py"
-Py:ConfigurableDb    INFO Read module info for 5436 configurables from 4 genConfDb files
-Py:ConfigurableDb    INFO No duplicates have been found: that's good !
 Athena               INFO including file "AthenaCommon/runbatch.py"
-[?1034hApplicationMgr       INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0
-ApplicationMgr    SUCCESS 
-====================================================================================================================================
-                                                   Welcome to ApplicationMgr (GaudiCoreSvc v29r0)
-                                          running on lxplus015.cern.ch on Fri Dec  8 04:06:26 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 2400 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
-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             DEBUG Property update for OutputLevel : new value = 2
-Stream1.Stream1...  DEBUG Property update for OutputLevel : new value = 2
-ClassIDSvc           INFO  getRegistryEntries: read 1763 CLIDRegistry entries for module ALL
 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 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-local.cern.ch:8000/atlr)(serverurl=http://atlasfrontier-ai.cern.ch:8000/atlr)(serverurl=http://lcgft-atlas.gridpp.rl.ac.uk:3128/frontierATLAS)(serverurl=http://ccfrontier.in2p3.fr:23128/ccin2p3-AtlasFrontier)(proxyurl=http://ca-proxy.cern.ch:3128)(proxyurl=http://ca-proxy-meyrin.cern.ch:3128)(proxyurl=http://ca-proxy-wigner.cern.ch:3128) will be considered for COOL data
-DBReplicaSvc         INFO Read replica configuration from /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2017-12-06T2304/Athena/22.0.0/InstallArea/x86_64-slc6-gcc62-opt/share/dbreplica.config
-DBReplicaSvc         INFO Total of 10 servers found for host lxplus015.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 
 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] 
 Stream1             DEBUG Found StoreGateSvc store.
 Stream1             DEBUG Found MetaDataStore store.
-OutputStreamSeq...   INFO Initializing OutputStreamSequencerSvc - package version AthenaServices-00-00-00
-Stream1.Stream1...  DEBUG Property update for OutputLevel : new value = 2
-ClassIDSvc           INFO  getRegistryEntries: read 1333 CLIDRegistry entries for module ALL
-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              INFO ../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             DEBUG Property update for OutputLevel : new value = 2
-Stream2.Stream2...  DEBUG Property update for OutputLevel : new value = 2
+Stream1             DEBUG Adding private ToolHandle tool Stream1.Stream1Tool (AthenaOutputStreamTool)
 Stream2             DEBUG In initialize 
 Stream2             DEBUG Found IDecisionSvc.
 DecisionSvc          INFO Inserting stream: Stream2 with no Algs
@@ -84,68 +41,43 @@ 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: SimplePoolFile2.root
-Stream2              INFO I/O reinitialization...
+Stream2              INFO ../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
+Stream2             DEBUG Adding private ToolHandle tool Stream2.Stream2Tool (AthenaOutputStreamTool)
 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          DEBUG Property update for OutputLevel : new value = 2
-RegStream1.RegS...  DEBUG Property update for OutputLevel : new value = 2
+Stream3              INFO ../O reinitialization...
 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          DEBUG Property update for OutputLevel : new value = 2
-RegStream2.RegS...  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          DEBUG Property update for OutputLevel : new value = 2
-RegStream3.RegS...  DEBUG Property update for OutputLevel : new value = 2
 RegStream3          DEBUG In initialize 
 RegStream3          DEBUG Found IDecisionSvc.
 DecisionSvc          INFO Inserting stream: RegStream3 with no Algs
@@ -153,22 +85,17 @@ RegStream3          DEBUG Trying to add PassNoneFilter of stream RegStream3 to R
 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 524 CLIDRegistry entries for module ALL
 ApplicationMgr       INFO Application Manager Started successfully
 EventPersistenc...   INFO Added successfully Conversion service:McCnvSvc
 AthenaEventLoopMgr   INFO   ===>>>  start of run 1    <<<===
@@ -180,13 +107,10 @@ 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...  DEBUG --> Access   DbContainer  CREATE    [ROOT_All] ##Shapes
 ##Shapes            DEBUG Opening
@@ -304,17 +228,8 @@ POOLCollectionT...  DEBUG Branch container 'MagicNumber'
 POOLCollectionT...  DEBUG Opened container POOLCollectionTree(MagicNumber) of type ROOT_Tree
 SimplePoolFile1...  DEBUG --->Adding Assoc :????/POOLCollectionTree(MagicNumber) [202]  (a , ffffffff)
 SimplePoolFile1...  DEBUG ---->ClassID:????
-ClassIDSvc           INFO  getRegistryEntries: read 66 CLIDRegistry entries for module ALL
-SimplePoolFile1...  DEBUG --> Access   DbContainer  CREA/UPDA [ROOT_Tree] POOLContainer(basic/DataHeader)
-POOLContainer(b...  DEBUG Opening
-POOLContainer(b...  DEBUG    attributes# = 1
-POOLContainer(b...  DEBUG Branch container 'basic_DataHeader'
-POOLContainer(b...  DEBUG Opened container POOLContainer(basic/DataHeader) of type ROOT_Tree
-SimplePoolFile1...  DEBUG --->Adding Assoc :????/POOLContainer(basic/DataHeader) [202]  (b , ffffffff)
-SimplePoolFile1...  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                           SimplePoolFile2.root
 SimplePoolFile2...  DEBUG --> Access   DbContainer  CREATE    [ROOT_All] ##Shapes
 ##Shapes            DEBUG Opening
@@ -405,13 +320,6 @@ POOLCollectionT...  DEBUG Branch container 'MagicNumber'
 POOLCollectionT...  DEBUG Opened container POOLCollectionTree(MagicNumber) of type ROOT_Tree
 SimplePoolFile2...  DEBUG --->Adding Assoc :????/POOLCollectionTree(MagicNumber) [202]  (9 , ffffffff)
 SimplePoolFile2...  DEBUG ---->ClassID:????
-SimplePoolFile2...  DEBUG --> Access   DbContainer  CREA/UPDA [ROOT_Tree] POOLContainer(basic/DataHeader)
-POOLContainer(b...  DEBUG Opening
-POOLContainer(b...  DEBUG    attributes# = 1
-POOLContainer(b...  DEBUG Branch container 'basic_DataHeader'
-POOLContainer(b...  DEBUG Opened container POOLContainer(basic/DataHeader) of type ROOT_Tree
-SimplePoolFile2...  DEBUG --->Adding Assoc :????/POOLContainer(basic/DataHeader) [202]  (a , ffffffff)
-SimplePoolFile2...  DEBUG ---->ClassID:????
 AthenaPoolCnvSvc    DEBUG setAttribute BRANCH_BASKET_SIZE to 256000 for db: SimplePoolFile2.root and cont: POOLContainer(DataHeader)
 AthenaPoolCnvSvc    DEBUG setAttribute BRANCH_BASKET_SIZE to 1024000 for db: SimplePoolFile2.root and cont: POOLContainerForm(DataHeaderForm)
 RegStream1          DEBUG RegistrationStream execute
@@ -1279,7 +1187,7 @@ MetaData(EventS...  DEBUG Opening
 MetaData(EventS...  DEBUG    attributes# = 1
 MetaData(EventS...  DEBUG Branch container 'EventStreamInfo_p3_Stream1'
 MetaData(EventS...  DEBUG Opened container MetaData(EventStreamInfo_p3/Stream1) of type ROOT_Tree
-SimplePoolFile1...  DEBUG --->Adding Assoc :????/MetaData(EventStreamInfo_p3/Stream1) [202]  (c , ffffffff)
+SimplePoolFile1...  DEBUG --->Adding Assoc :????/MetaData(EventStreamInfo_p3/Stream1) [202]  (b , ffffffff)
 SimplePoolFile1...  DEBUG ---->ClassID:????
 SimplePoolFile1...  DEBUG --->Adding Shape[6 , ????]:  [1 Column(s)] 
 SimplePoolFile1...  DEBUG ---->Class:EventStreamInfo_p3
@@ -1289,16 +1197,15 @@ MetaDataHdrForm...  DEBUG Opening
 MetaDataHdrForm...  DEBUG    attributes# = 1
 MetaDataHdrForm...  DEBUG Branch container 'DataHeaderForm'
 MetaDataHdrForm...  DEBUG Opened container MetaDataHdrForm(DataHeaderForm) of type ROOT_Tree
-SimplePoolFile1...  DEBUG --->Adding Assoc :????/MetaDataHdrForm(DataHeaderForm) [202]  (d , ffffffff)
+SimplePoolFile1...  DEBUG --->Adding Assoc :????/MetaDataHdrForm(DataHeaderForm) [202]  (c , ffffffff)
 SimplePoolFile1...  DEBUG ---->ClassID:????
 SimplePoolFile1...  DEBUG --> Access   DbContainer  CREA/UPDA [ROOT_Tree] MetaDataHdr(DataHeader)
 MetaDataHdr(Dat...  DEBUG Opening
 MetaDataHdr(Dat...  DEBUG    attributes# = 1
 MetaDataHdr(Dat...  DEBUG Branch container 'DataHeader'
 MetaDataHdr(Dat...  DEBUG Opened container MetaDataHdr(DataHeader) of type ROOT_Tree
-SimplePoolFile1...  DEBUG --->Adding Assoc :????/MetaDataHdr(DataHeader) [202]  (e , ffffffff)
+SimplePoolFile1...  DEBUG --->Adding Assoc :????/MetaDataHdr(DataHeader) [202]  (d , ffffffff)
 SimplePoolFile1...  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
@@ -1312,7 +1219,7 @@ MetaData(EventS...  DEBUG Opening
 MetaData(EventS...  DEBUG    attributes# = 1
 MetaData(EventS...  DEBUG Branch container 'EventStreamInfo_p3_Stream2'
 MetaData(EventS...  DEBUG Opened container MetaData(EventStreamInfo_p3/Stream2) of type ROOT_Tree
-SimplePoolFile2...  DEBUG --->Adding Assoc :????/MetaData(EventStreamInfo_p3/Stream2) [202]  (b , ffffffff)
+SimplePoolFile2...  DEBUG --->Adding Assoc :????/MetaData(EventStreamInfo_p3/Stream2) [202]  (a , ffffffff)
 SimplePoolFile2...  DEBUG ---->ClassID:????
 SimplePoolFile2...  DEBUG --->Adding Shape[5 , ????]:  [1 Column(s)] 
 SimplePoolFile2...  DEBUG ---->Class:EventStreamInfo_p3
@@ -1322,18 +1229,17 @@ MetaDataHdrForm...  DEBUG Opening
 MetaDataHdrForm...  DEBUG    attributes# = 1
 MetaDataHdrForm...  DEBUG Branch container 'DataHeaderForm'
 MetaDataHdrForm...  DEBUG Opened container MetaDataHdrForm(DataHeaderForm) of type ROOT_Tree
-SimplePoolFile2...  DEBUG --->Adding Assoc :????/MetaDataHdrForm(DataHeaderForm) [202]  (c , ffffffff)
+SimplePoolFile2...  DEBUG --->Adding Assoc :????/MetaDataHdrForm(DataHeaderForm) [202]  (b , ffffffff)
 SimplePoolFile2...  DEBUG ---->ClassID:????
 SimplePoolFile2...  DEBUG --> Access   DbContainer  CREA/UPDA [ROOT_Tree] MetaDataHdr(DataHeader)
 MetaDataHdr(Dat...  DEBUG Opening
 MetaDataHdr(Dat...  DEBUG    attributes# = 1
 MetaDataHdr(Dat...  DEBUG Branch container 'DataHeader'
 MetaDataHdr(Dat...  DEBUG Opened container MetaDataHdr(DataHeader) of type ROOT_Tree
-SimplePoolFile2...  DEBUG --->Adding Assoc :????/MetaDataHdr(DataHeader) [202]  (d , ffffffff)
+SimplePoolFile2...  DEBUG --->Adding Assoc :????/MetaDataHdr(DataHeader) [202]  (c , ffffffff)
 SimplePoolFile2...  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
@@ -1397,12 +1303,8 @@ RegStream3          DEBUG handle() incident type: MetaDataStop
 RegStream3.TagTool   INFO Collection Events output: 0
 PoolSvc              INFO Writing ExplicitROOT Collection - do not pass session pointer
 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
-IncidentProcAlg1     INFO Finalize
 WriteData            INFO in finalize()
 WriteTag             INFO in finalize()
 MagicWriteTag        INFO in finalize()
@@ -1413,7 +1315,6 @@ Stream2             DEBUG finalize: end optimize output
 RegStream1          DEBUG In finalize
 RegStream2          DEBUG In finalize
 RegStream3          DEBUG In finalize
-IncidentProcAlg2     INFO Finalize
 EventSelector        INFO finalize
 AthenaPoolCnvSvc    DEBUG releasing all workers
 DecisionSvc          INFO Finalized successfully.
@@ -1422,11 +1323,6 @@ 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=    0 [us] Ave/Min/Max=    0(+-    0)/    0/    0 [us] #= 43
-cRepR_ALL            INFO Time User   : Tot=   40 [ms] Ave/Min/Max=0.103(+- 1.01)/    0/   10 [ms] #=389
-cRep_ALL             INFO Time User   : Tot=  130 [ms] Ave/Min/Max= 0.89(+- 5.22)/    0/   50 [ms] #=146
-ChronoStatSvc        INFO Time User   : Tot= 0.84  [s]                                             #=  1
 *****Chrono*****     INFO ****************************************************************************************************
 ChronoStatSvc.f...   INFO  Service finalized successfully 
 ApplicationMgr       INFO Application Manager Finalized successfully
diff --git a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_WriteFast.ref b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_WriteFast.ref
deleted file mode 100644
index a88015d1462c06389ff6feecd6803edcc7f8a9c0..0000000000000000000000000000000000000000
--- a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_WriteFast.ref
+++ /dev/null
@@ -1,1434 +0,0 @@
-Fri Dec  8 04:10:25 CET 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 5436 configurables from 4 genConfDb files
-Py:ConfigurableDb    INFO No duplicates have been found: that's good !
-Athena               INFO including file "AthenaCommon/runbatch.py"
-[?1034hApplicationMgr       INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0
-ApplicationMgr    SUCCESS 
-====================================================================================================================================
-                                                   Welcome to ApplicationMgr (GaudiCoreSvc v29r0)
-                                          running on lxplus015.cern.ch on Fri Dec  8 04:10:32 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 2400 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
-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             DEBUG Property update for OutputLevel : new value = 2
-Stream1.Stream1...  DEBUG Property update for OutputLevel : new value = 2
-ClassIDSvc           INFO  getRegistryEntries: read 1763 CLIDRegistry entries for module ALL
-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 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-local.cern.ch:8000/atlr)(serverurl=http://atlasfrontier-ai.cern.ch:8000/atlr)(serverurl=http://lcgft-atlas.gridpp.rl.ac.uk:3128/frontierATLAS)(serverurl=http://ccfrontier.in2p3.fr:23128/ccin2p3-AtlasFrontier)(proxyurl=http://ca-proxy.cern.ch:3128)(proxyurl=http://ca-proxy-meyrin.cern.ch:3128)(proxyurl=http://ca-proxy-wigner.cern.ch:3128) will be considered for COOL data
-DBReplicaSvc         INFO Read replica configuration from /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2017-12-06T2304/Athena/22.0.0/InstallArea/x86_64-slc6-gcc62-opt/share/dbreplica.config
-DBReplicaSvc         INFO Total of 10 servers found for host lxplus015.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 
-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] 
-Stream1             DEBUG Found StoreGateSvc store.
-Stream1             DEBUG Found MetaDataStore store.
-OutputStreamSeq...   INFO Initializing OutputStreamSequencerSvc - package version AthenaServices-00-00-00
-Stream1.Stream1...  DEBUG Property update for OutputLevel : new value = 2
-ClassIDSvc           INFO  getRegistryEntries: read 1333 CLIDRegistry entries for module ALL
-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             DEBUG Property update for OutputLevel : new value = 2
-Stream2.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          DEBUG Property update for OutputLevel : new value = 2
-RegStream1.RegS...  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          DEBUG Property update for OutputLevel : new value = 2
-RegStream2.RegS...  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          DEBUG Property update for OutputLevel : new value = 2
-RegStream3.RegS...  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 524 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...  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...  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...  DEBUG --> Access   DbContainer  CREATE    [ROOT_All] ##Params
-##Params            DEBUG Opening
-##Params            DEBUG    attributes# = 1
-##Params            DEBUG Opened container ##Params of type ROOT_Tree
-SimplePoolFile1...  DEBUG --->Adding Assoc :????/##Params [200]  (2 , ffffffff)
-SimplePoolFile1...  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...  DEBUG --> Access   DbContainer  CREA/UPDA [ROOT_Tree] CollectionTree(EventInfo_p4/McEventInfo)
-CollectionTree(...  DEBUG Opening
-CollectionTree(...  DEBUG    attributes# = 1
-CollectionTree(...  DEBUG Branch container 'EventInfo_p4_McEventInfo'
-CollectionTree(...  DEBUG Opened container CollectionTree(EventInfo_p4/McEventInfo) of type ROOT_Tree
-SimplePoolFile1...  DEBUG --->Adding Assoc :????/CollectionTree(EventInfo_p4/McEventInfo) [202]  (3 , ffffffff)
-SimplePoolFile1...  DEBUG ---->ClassID:????
-SimplePoolFile1...  DEBUG --->Adding Shape[0 , ????]:  [1 Column(s)] 
-SimplePoolFile1...  DEBUG ---->Class:EventInfo_p4
-SimplePoolFile1...  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...  DEBUG --> Access   DbContainer  CREA/UPDA [ROOT_Tree] CollectionTree(ExampleHitContainer_p1/MyHits)
-CollectionTree(...  DEBUG Opening
-CollectionTree(...  DEBUG    attributes# = 1
-CollectionTree(...  DEBUG Branch container 'ExampleHitContainer_p1_MyHits'
-CollectionTree(...  DEBUG Opened container CollectionTree(ExampleHitContainer_p1/MyHits) of type ROOT_Tree
-SimplePoolFile1...  DEBUG --->Adding Assoc :????/CollectionTree(ExampleHitContainer_p1/MyHits) [202]  (4 , ffffffff)
-SimplePoolFile1...  DEBUG ---->ClassID:????
-SimplePoolFile1...  DEBUG --->Adding Shape[1 , ????]:  [1 Column(s)] 
-SimplePoolFile1...  DEBUG ---->Class:ExampleHitContainer_p1
-SimplePoolFile1...  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...  DEBUG --> Access   DbContainer  CREA/UPDA [ROOT_Tree] POOLContainerForm(DataHeaderForm)
-POOLContainerFo...  DEBUG Opening
-POOLContainerFo...  DEBUG    attributes# = 1
-POOLContainerFo...  DEBUG Branch container 'DataHeaderForm'
-POOLContainerFo...  DEBUG Opened container POOLContainerForm(DataHeaderForm) of type ROOT_Tree
-SimplePoolFile1...  DEBUG --->Adding Assoc :????/POOLContainerForm(DataHeaderForm) [202]  (5 , ffffffff)
-SimplePoolFile1...  DEBUG ---->ClassID:????
-SimplePoolFile1...  DEBUG --->Adding Shape[2 , ????]:  [1 Column(s)] 
-SimplePoolFile1...  DEBUG ---->Class:DataHeaderForm_p5
-SimplePoolFile1...  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...  DEBUG --> Access   DbContainer  CREA/UPDA [ROOT_Tree] POOLContainer(DataHeader)
-POOLContainer(D...  DEBUG Opening
-POOLContainer(D...  DEBUG    attributes# = 1
-POOLContainer(D...  DEBUG Branch container 'DataHeader'
-POOLContainer(D...  DEBUG Opened container POOLContainer(DataHeader) of type ROOT_Tree
-SimplePoolFile1...  DEBUG --->Adding Assoc :????/POOLContainer(DataHeader) [202]  (6 , ffffffff)
-SimplePoolFile1...  DEBUG ---->ClassID:????
-SimplePoolFile1...  DEBUG --->Adding Shape[3 , ????]:  [1 Column(s)] 
-SimplePoolFile1...  DEBUG ---->Class:DataHeader_p5
-SimplePoolFile1...  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...  DEBUG --> Access   DbContainer  CREA/UPDA [ROOT_Tree] POOLCollectionTree(Token)
-POOLCollectionT...  DEBUG Opening
-POOLCollectionT...  DEBUG    attributes# = 1
-POOLCollectionT...  DEBUG Branch container 'Token'
-POOLCollectionT...  DEBUG Opened container POOLCollectionTree(Token) of type ROOT_Tree
-SimplePoolFile1...  DEBUG --->Adding Assoc :????/POOLCollectionTree(Token) [202]  (7 , ffffffff)
-SimplePoolFile1...  DEBUG ---->ClassID:????
-SimplePoolFile1...  DEBUG --->Adding Shape[4 , ????]:  [1 Column(s)] 
-SimplePoolFile1...  DEBUG ---->Class:Token
-SimplePoolFile1...  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...  DEBUG --> Access   DbContainer  CREA/UPDA [ROOT_Tree] POOLCollectionTree(RunNumber)
-POOLCollectionT...  DEBUG Opening
-POOLCollectionT...  DEBUG    attributes# = 1
-POOLCollectionT...  DEBUG Branch container 'RunNumber'
-POOLCollectionT...  DEBUG Opened container POOLCollectionTree(RunNumber) of type ROOT_Tree
-SimplePoolFile1...  DEBUG --->Adding Assoc :????/POOLCollectionTree(RunNumber) [202]  (8 , ffffffff)
-SimplePoolFile1...  DEBUG ---->ClassID:????
-SimplePoolFile1...  DEBUG --->Adding Shape[5 , ????]:  [1 Column(s)] 
-SimplePoolFile1...  DEBUG ---->Class:unsigned int
-SimplePoolFile1...  DEBUG ---->[0]:unsigned int Typ:unsigned int [3] Size:0 Offset:0 #Elements:1
-SimplePoolFile1...  DEBUG --> Access   DbContainer  CREA/UPDA [ROOT_Tree] POOLCollectionTree(EventNumber)
-POOLCollectionT...  DEBUG Opening
-POOLCollectionT...  DEBUG    attributes# = 1
-POOLCollectionT...  DEBUG Branch container 'EventNumber'
-POOLCollectionT...  DEBUG Opened container POOLCollectionTree(EventNumber) of type ROOT_Tree
-SimplePoolFile1...  DEBUG --->Adding Assoc :????/POOLCollectionTree(EventNumber) [202]  (9 , ffffffff)
-SimplePoolFile1...  DEBUG ---->ClassID:????
-SimplePoolFile1...  DEBUG --> Access   DbContainer  CREA/UPDA [ROOT_Tree] POOLCollectionTree(MagicNumber)
-POOLCollectionT...  DEBUG Opening
-POOLCollectionT...  DEBUG    attributes# = 1
-POOLCollectionT...  DEBUG Branch container 'MagicNumber'
-POOLCollectionT...  DEBUG Opened container POOLCollectionTree(MagicNumber) of type ROOT_Tree
-SimplePoolFile1...  DEBUG --->Adding Assoc :????/POOLCollectionTree(MagicNumber) [202]  (a , ffffffff)
-SimplePoolFile1...  DEBUG ---->ClassID:????
-ClassIDSvc           INFO  getRegistryEntries: read 66 CLIDRegistry entries for module ALL
-SimplePoolFile1...  DEBUG --> Access   DbContainer  CREA/UPDA [ROOT_Tree] POOLContainer(basic/DataHeader)
-POOLContainer(b...  DEBUG Opening
-POOLContainer(b...  DEBUG    attributes# = 1
-POOLContainer(b...  DEBUG Branch container 'basic_DataHeader'
-POOLContainer(b...  DEBUG Opened container POOLContainer(basic/DataHeader) of type ROOT_Tree
-SimplePoolFile1...  DEBUG --->Adding Assoc :????/POOLContainer(basic/DataHeader) [202]  (b , ffffffff)
-SimplePoolFile1...  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...  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...  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...  DEBUG --> Access   DbContainer  CREATE    [ROOT_All] ##Params
-##Params            DEBUG Opening
-##Params            DEBUG    attributes# = 1
-##Params            DEBUG Opened container ##Params of type ROOT_Tree
-SimplePoolFileA...  DEBUG --->Adding Assoc :????/##Params [200]  (2 , ffffffff)
-SimplePoolFileA...  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...  DEBUG --> Access   DbContainer  CREA/UPDA [ROOT_Tree] CollectionTree(EventInfo_p4/McEventInfo)
-CollectionTree(...  DEBUG Opening
-CollectionTree(...  DEBUG    attributes# = 1
-CollectionTree(...  DEBUG Branch container 'EventInfo_p4_McEventInfo'
-CollectionTree(...  DEBUG Opened container CollectionTree(EventInfo_p4/McEventInfo) of type ROOT_Tree
-SimplePoolFileA...  DEBUG --->Adding Assoc :????/CollectionTree(EventInfo_p4/McEventInfo) [202]  (3 , ffffffff)
-SimplePoolFileA...  DEBUG ---->ClassID:????
-SimplePoolFileA...  DEBUG --->Adding Shape[0 , ????]:  [1 Column(s)] 
-SimplePoolFileA...  DEBUG ---->Class:EventInfo_p4
-SimplePoolFileA...  DEBUG ---->[0]:EventInfo_p4 Typ:EventInfo_p4 [21] Size:0 Offset:0 #Elements:1
-SimplePoolFileA...  DEBUG --> Access   DbContainer  CREA/UPDA [ROOT_Tree] POOLContainerForm(DataHeaderForm)
-POOLContainerFo...  DEBUG Opening
-POOLContainerFo...  DEBUG    attributes# = 1
-POOLContainerFo...  DEBUG Branch container 'DataHeaderForm'
-POOLContainerFo...  DEBUG Opened container POOLContainerForm(DataHeaderForm) of type ROOT_Tree
-SimplePoolFileA...  DEBUG --->Adding Assoc :????/POOLContainerForm(DataHeaderForm) [202]  (4 , ffffffff)
-SimplePoolFileA...  DEBUG ---->ClassID:????
-SimplePoolFileA...  DEBUG --->Adding Shape[1 , ????]:  [1 Column(s)] 
-SimplePoolFileA...  DEBUG ---->Class:DataHeaderForm_p5
-SimplePoolFileA...  DEBUG ---->[0]:DataHeaderForm_p5 Typ:DataHeaderForm_p5 [21] Size:0 Offset:0 #Elements:1
-SimplePoolFileA...  DEBUG --> Access   DbContainer  CREA/UPDA [ROOT_Tree] POOLContainer(DataHeader)
-POOLContainer(D...  DEBUG Opening
-POOLContainer(D...  DEBUG    attributes# = 1
-POOLContainer(D...  DEBUG Branch container 'DataHeader'
-POOLContainer(D...  DEBUG Opened container POOLContainer(DataHeader) of type ROOT_Tree
-SimplePoolFileA...  DEBUG --->Adding Assoc :????/POOLContainer(DataHeader) [202]  (5 , ffffffff)
-SimplePoolFileA...  DEBUG ---->ClassID:????
-SimplePoolFileA...  DEBUG --->Adding Shape[2 , ????]:  [1 Column(s)] 
-SimplePoolFileA...  DEBUG ---->Class:DataHeader_p5
-SimplePoolFileA...  DEBUG ---->[0]:DataHeader_p5 Typ:DataHeader_p5 [21] Size:0 Offset:0 #Elements:1
-SimplePoolFileA...  DEBUG --> Access   DbContainer  CREA/UPDA [ROOT_Tree] POOLCollectionTree(Token)
-POOLCollectionT...  DEBUG Opening
-POOLCollectionT...  DEBUG    attributes# = 1
-POOLCollectionT...  DEBUG Branch container 'Token'
-POOLCollectionT...  DEBUG Opened container POOLCollectionTree(Token) of type ROOT_Tree
-SimplePoolFileA...  DEBUG --->Adding Assoc :????/POOLCollectionTree(Token) [202]  (6 , ffffffff)
-SimplePoolFileA...  DEBUG ---->ClassID:????
-SimplePoolFileA...  DEBUG --->Adding Shape[3 , ????]:  [1 Column(s)] 
-SimplePoolFileA...  DEBUG ---->Class:Token
-SimplePoolFileA...  DEBUG ---->[0]:Token Typ:Token [18] Size:0 Offset:0 #Elements:1
-SimplePoolFileA...  DEBUG --> Access   DbContainer  CREA/UPDA [ROOT_Tree] POOLCollectionTree(RunNumber)
-POOLCollectionT...  DEBUG Opening
-POOLCollectionT...  DEBUG    attributes# = 1
-POOLCollectionT...  DEBUG Branch container 'RunNumber'
-POOLCollectionT...  DEBUG Opened container POOLCollectionTree(RunNumber) of type ROOT_Tree
-SimplePoolFileA...  DEBUG --->Adding Assoc :????/POOLCollectionTree(RunNumber) [202]  (7 , ffffffff)
-SimplePoolFileA...  DEBUG ---->ClassID:????
-SimplePoolFileA...  DEBUG --->Adding Shape[4 , ????]:  [1 Column(s)] 
-SimplePoolFileA...  DEBUG ---->Class:unsigned int
-SimplePoolFileA...  DEBUG ---->[0]:unsigned int Typ:unsigned int [3] Size:0 Offset:0 #Elements:1
-SimplePoolFileA...  DEBUG --> Access   DbContainer  CREA/UPDA [ROOT_Tree] POOLCollectionTree(EventNumber)
-POOLCollectionT...  DEBUG Opening
-POOLCollectionT...  DEBUG    attributes# = 1
-POOLCollectionT...  DEBUG Branch container 'EventNumber'
-POOLCollectionT...  DEBUG Opened container POOLCollectionTree(EventNumber) of type ROOT_Tree
-SimplePoolFileA...  DEBUG --->Adding Assoc :????/POOLCollectionTree(EventNumber) [202]  (8 , ffffffff)
-SimplePoolFileA...  DEBUG ---->ClassID:????
-SimplePoolFileA...  DEBUG --> Access   DbContainer  CREA/UPDA [ROOT_Tree] POOLCollectionTree(MagicNumber)
-POOLCollectionT...  DEBUG Opening
-POOLCollectionT...  DEBUG    attributes# = 1
-POOLCollectionT...  DEBUG Branch container 'MagicNumber'
-POOLCollectionT...  DEBUG Opened container POOLCollectionTree(MagicNumber) of type ROOT_Tree
-SimplePoolFileA...  DEBUG --->Adding Assoc :????/POOLCollectionTree(MagicNumber) [202]  (9 , ffffffff)
-SimplePoolFileA...  DEBUG ---->ClassID:????
-SimplePoolFileA...  DEBUG --> Access   DbContainer  CREA/UPDA [ROOT_Tree] POOLContainer(basic/DataHeader)
-POOLContainer(b...  DEBUG Opening
-POOLContainer(b...  DEBUG    attributes# = 1
-POOLContainer(b...  DEBUG Branch container 'basic_DataHeader'
-POOLContainer(b...  DEBUG Opened container POOLContainer(basic/DataHeader) of type ROOT_Tree
-SimplePoolFileA...  DEBUG --->Adding Assoc :????/POOLContainer(basic/DataHeader) [202]  (a , ffffffff)
-SimplePoolFileA...  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
-RegStream1.TagTool   INFO No Primary Key defined
-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
-RegStream2.TagTool   INFO No Primary Key defined
-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") 
-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") 
-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") 
-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") 
-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") 
-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") 
-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") 
-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") 
-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") 
-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") 
-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") 
-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") 
-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") 
-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") 
-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") 
-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") 
-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") 
-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") 
-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") 
-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") 
-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") 
-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") 
-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") 
-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") 
-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") 
-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") 
-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") 
-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") 
-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") 
-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") 
-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") 
-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") 
-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") 
-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") 
-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") 
-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") 
-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") 
-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") 
-RegStream3          DEBUG RegistrationStream execute
-RegStream3          DEBUG Event rejected by filtering
-AthenaEventLoopMgr   INFO   ===>>>  done processing event #19, run #1 20 events processed so far  <<<===
-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...  DEBUG --> Access   DbContainer  CREA/UPDA [ROOT_Tree] MetaData(EventStreamInfo_p3/Stream1)
-MetaData(EventS...  DEBUG Opening
-MetaData(EventS...  DEBUG    attributes# = 1
-MetaData(EventS...  DEBUG Branch container 'EventStreamInfo_p3_Stream1'
-MetaData(EventS...  DEBUG Opened container MetaData(EventStreamInfo_p3/Stream1) of type ROOT_Tree
-SimplePoolFile1...  DEBUG --->Adding Assoc :????/MetaData(EventStreamInfo_p3/Stream1) [202]  (c , ffffffff)
-SimplePoolFile1...  DEBUG ---->ClassID:????
-SimplePoolFile1...  DEBUG --->Adding Shape[6 , ????]:  [1 Column(s)] 
-SimplePoolFile1...  DEBUG ---->Class:EventStreamInfo_p3
-SimplePoolFile1...  DEBUG ---->[0]:EventStreamInfo_p3 Typ:EventStreamInfo_p3 [21] Size:0 Offset:0 #Elements:1
-SimplePoolFile1...  DEBUG --> Access   DbContainer  CREA/UPDA [ROOT_Tree] MetaDataHdrForm(DataHeaderForm)
-MetaDataHdrForm...  DEBUG Opening
-MetaDataHdrForm...  DEBUG    attributes# = 1
-MetaDataHdrForm...  DEBUG Branch container 'DataHeaderForm'
-MetaDataHdrForm...  DEBUG Opened container MetaDataHdrForm(DataHeaderForm) of type ROOT_Tree
-SimplePoolFile1...  DEBUG --->Adding Assoc :????/MetaDataHdrForm(DataHeaderForm) [202]  (d , ffffffff)
-SimplePoolFile1...  DEBUG ---->ClassID:????
-SimplePoolFile1...  DEBUG --> Access   DbContainer  CREA/UPDA [ROOT_Tree] MetaDataHdr(DataHeader)
-MetaDataHdr(Dat...  DEBUG Opening
-MetaDataHdr(Dat...  DEBUG    attributes# = 1
-MetaDataHdr(Dat...  DEBUG Branch container 'DataHeader'
-MetaDataHdr(Dat...  DEBUG Opened container MetaDataHdr(DataHeader) of type ROOT_Tree
-SimplePoolFile1...  DEBUG --->Adding Assoc :????/MetaDataHdr(DataHeader) [202]  (e , ffffffff)
-SimplePoolFile1...  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...  DEBUG --> Access   DbContainer  CREA/UPDA [ROOT_Tree] MetaData(EventStreamInfo_p3/Stream2)
-MetaData(EventS...  DEBUG Opening
-MetaData(EventS...  DEBUG    attributes# = 1
-MetaData(EventS...  DEBUG Branch container 'EventStreamInfo_p3_Stream2'
-MetaData(EventS...  DEBUG Opened container MetaData(EventStreamInfo_p3/Stream2) of type ROOT_Tree
-SimplePoolFileA...  DEBUG --->Adding Assoc :????/MetaData(EventStreamInfo_p3/Stream2) [202]  (b , ffffffff)
-SimplePoolFileA...  DEBUG ---->ClassID:????
-SimplePoolFileA...  DEBUG --->Adding Shape[5 , ????]:  [1 Column(s)] 
-SimplePoolFileA...  DEBUG ---->Class:EventStreamInfo_p3
-SimplePoolFileA...  DEBUG ---->[0]:EventStreamInfo_p3 Typ:EventStreamInfo_p3 [21] Size:0 Offset:0 #Elements:1
-SimplePoolFileA...  DEBUG --> Access   DbContainer  CREA/UPDA [ROOT_Tree] MetaDataHdrForm(DataHeaderForm)
-MetaDataHdrForm...  DEBUG Opening
-MetaDataHdrForm...  DEBUG    attributes# = 1
-MetaDataHdrForm...  DEBUG Branch container 'DataHeaderForm'
-MetaDataHdrForm...  DEBUG Opened container MetaDataHdrForm(DataHeaderForm) of type ROOT_Tree
-SimplePoolFileA...  DEBUG --->Adding Assoc :????/MetaDataHdrForm(DataHeaderForm) [202]  (c , ffffffff)
-SimplePoolFileA...  DEBUG ---->ClassID:????
-SimplePoolFileA...  DEBUG --> Access   DbContainer  CREA/UPDA [ROOT_Tree] MetaDataHdr(DataHeader)
-MetaDataHdr(Dat...  DEBUG Opening
-MetaDataHdr(Dat...  DEBUG    attributes# = 1
-MetaDataHdr(Dat...  DEBUG Branch container 'DataHeader'
-MetaDataHdr(Dat...  DEBUG Opened container MetaDataHdr(DataHeader) of type ROOT_Tree
-SimplePoolFileA...  DEBUG --->Adding Assoc :????/MetaDataHdr(DataHeader) [202]  (d , ffffffff)
-SimplePoolFileA...  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(EventS...  DEBUG Opening
-MetaData(EventS...  DEBUG    attributes# = 1
-MetaData(EventS...  DEBUG Branch container 'EventStreamInfo_p3_Stream3'
-MetaData(EventS...  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...  DEBUG Opening
-MetaDataHdrForm...  DEBUG    attributes# = 1
-MetaDataHdrForm...  DEBUG Branch container 'DataHeaderForm'
-MetaDataHdrForm...  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(Dat...  DEBUG Opening
-MetaDataHdr(Dat...  DEBUG    attributes# = 1
-MetaDataHdr(Dat...  DEBUG Branch container 'DataHeader'
-MetaDataHdr(Dat...  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 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 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
-RegStream2          DEBUG handle() incident type: MetaDataStop
-RegStream2.TagTool   INFO Collection Events output: 20
-RegStream3          DEBUG handle() incident type: MetaDataStop
-RegStream3.TagTool   INFO Collection Events output: 0
-PoolSvc              INFO Writing ExplicitROOT Collection - do not pass session pointer
-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
-IncidentProcAlg1     INFO Finalize
-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
-IncidentProcAlg2     INFO Finalize
-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 ****************************************************************************************************
-commitOutput         INFO Time User   : Tot=    0 [us] Ave/Min/Max=    0(+-    0)/    0/    0 [us] #= 43
-fRep_ALL             INFO Time User   : Tot=    0 [us] Ave/Min/Max=    0(+-    0)/    0/    0 [us] #=146
-cRepR_ALL            INFO Time User   : Tot=   30 [ms] Ave/Min/Max=0.0771(+-0.875)/    0/   10 [ms] #=389
-cRep_ALL             INFO Time User   : Tot=   90 [ms] Ave/Min/Max=0.616(+- 3.55)/    0/   30 [ms] #=146
-ChronoStatSvc        INFO Time User   : Tot= 0.81  [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"
diff --git a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_WriteFastJobOptions.py b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_WriteFastJobOptions.py
deleted file mode 100644
index b618da53153ee0536c3fdcae0ed854440d084aaa..0000000000000000000000000000000000000000
--- a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_WriteFastJobOptions.py
+++ /dev/null
@@ -1,179 +0,0 @@
-## @file AthenaPoolExample_WriteJobOptions.py
-## @brief Example job options file to illustrate how to write event data to Pool.
-## @author Peter van Gemmeren <gemmeren@anl.gov>
-## $Id: AthenaPoolExample_WriteJobOptions.py,v 1.34 2009-02-02 21:51:22 gemmeren Exp $
-###############################################################
-#
-# This Job option:
-# ----------------
-# 1. Writes a SimplePoolFile1.root file with ExampleHit DataObjects and in-file MetaData
-# 2. Writes another SimplePoolFileA.root file using the AthenaPool support for multiple OutputStreams.
-# 3. Writes TAG files SimplePoolCollection1.root and SimplePoolCollection2.root to point to the events.
-# 4. Writes an additional event-less file EmptyPoolFile.root and collection EmptyPoolCollection.root.
-# 5. Writes HDF5 TAG file SimplePoolCollection1.h5 with attribute list and primary event ref.
-# ------------------------------------------------------------
-# Expected output file (20 events):
-# -rw-r--r--  1 gemmeren zp 11283 Aug  5 16:56 EmptyPoolCollection.root
-# -rw-r--r--  1 gemmeren zp 16345 Aug  5 16:56 EmptyPoolFile.root
-# -rw-r--r--  1 gemmeren zp 10008 Aug  5 16:56 SimplePoolCollection1.h5
-# -rw-r--r--  1 gemmeren zp 11412 Aug  5 16:56 SimplePoolCollection1.root
-# -rw-r--r--  1 gemmeren zp 11407 Aug  5 16:56 SimplePoolCollection2.root
-# -rw-r--r--  1 gemmeren zp 25161 Aug  5 16:56 SimplePoolFile1.root
-# -rw-r--r--  1 gemmeren zp 20654 Aug  5 16:56 SimplePoolFileA.root
-# ------------------------------------------------------------
-# File:SimplePoolFile1.root
-# Size:       24.564 kb
-# Nbr Events: 20
-# 
-# ================================================================================
-#      Mem Size       Disk Size        Size/Evt      MissZip/Mem  items  (X) Container Name (X=Tree|Branch)
-# ================================================================================
-#       11.985 kb        1.420 kb        0.071 kb        0.000       20  (T) DataHeader
-# --------------------------------------------------------------------------------
-#        3.846 kb        0.313 kb        0.016 kb        0.288       20  (B) EventInfo_p3_McEventInfo
-#        3.001 kb        0.427 kb        0.021 kb        0.535        1  (T) MetaDataHdrDataHeaderForm
-#       10.312 kb        0.743 kb        0.037 kb        0.156       20  (T) POOLContainer_DataHeaderForm
-#       10.578 kb        0.902 kb        0.045 kb        0.379        1  (T) MetaDataHdrDataHeader
-#       18.451 kb        1.198 kb        0.060 kb        0.383        1  (B) EventStreamInfo_p2_Stream1
-#       18.785 kb        2.686 kb        0.134 kb        0.131       20  (B) ExampleHitContainer_p1_MyHits
-# ================================================================================
-#       76.958 kb        7.689 kb        0.384 kb        0.000       20  TOTAL (POOL containers)
-# ================================================================================
-#
-# File:SimplePoolFileA.root
-# Size:       20.269 kb
-# Nbr Events: 20
-# 
-# ================================================================================
-#      Mem Size       Disk Size        Size/Evt      MissZip/Mem  items  (X) Container Name (X=Tree|Branch)
-# ================================================================================
-#       11.634 kb        1.396 kb        0.070 kb        0.000       20  (T) DataHeader
-# --------------------------------------------------------------------------------
-#        3.846 kb        0.313 kb        0.016 kb        0.288       20  (B) EventInfo_p3_McEventInfo
-#        3.001 kb        0.428 kb        0.021 kb        0.535        1  (T) MetaDataHdrDataHeaderForm
-#        8.358 kb        0.646 kb        0.032 kb        0.192       20  (T) POOLContainer_DataHeaderForm
-#       10.578 kb        0.903 kb        0.045 kb        0.379        1  (T) MetaDataHdrDataHeader
-#       18.440 kb        1.188 kb        0.059 kb        0.383        1  (B) EventStreamInfo_p2_Stream2
-# ================================================================================
-#       55.857 kb        4.873 kb        0.244 kb        0.000       20  TOTAL (POOL containers)
-# ================================================================================
-#
-#==============================================================
-
-## basic job configuration (for generator)
-import AthenaCommon.AtlasUnixGeneratorJob
-
-from AthenaCommon.AlgSequence import AlgSequence
-topSequence = AlgSequence()
-
-#--------------------------------------------------------------
-# Event related parameters
-#--------------------------------------------------------------
-from AthenaCommon.AppMgr import theApp
-theApp.EvtMax = 20
-
-#--------------------------------------------------------------
-# Load POOL support
-#--------------------------------------------------------------
-import AthenaPoolCnvSvc.WriteAthenaPool
-
-## get a handle on the ServiceManager
-from AthenaCommon.AppMgr import ServiceMgr as svcMgr
-
-#Explicitly specify the output file catalog
-from PoolSvc.PoolSvcConf import PoolSvc
-svcMgr += PoolSvc()
-svcMgr.PoolSvc.WriteCatalog = "xmlcatalog_file:Catalog1.xml"
-
-from AthenaPoolCnvSvc.AthenaPoolCnvSvcConf import AthenaPoolCnvSvc
-svcMgr += AthenaPoolCnvSvc()
-svcMgr.AthenaPoolCnvSvc.CommitInterval = 10;
-
-svcMgr.EventSelector.RunNumber = 1
-
-#--------------------------------------------------------------
-# Private Application Configuration options
-#--------------------------------------------------------------
-# Load "user algorithm" top algorithms to be run, and the libraries that house them
-from AthenaPoolExampleAlgorithms.AthenaPoolExampleAlgorithmsConf import AthPoolEx__WriteData
-topSequence += AthPoolEx__WriteData( "WriteData" )
-
-from AthenaPoolExampleAlgorithms.AthenaPoolExampleAlgorithmsConf import AthPoolEx__WriteTag
-WriteTag = AthPoolEx__WriteTag( "WriteTag" )
-WriteTag.Magic = 1
-topSequence += WriteTag
-MagicWriteTag = AthPoolEx__WriteTag( "MagicWriteTag" )
-MagicWriteTag.Key = "MagicTag"
-MagicWriteTag.Magic = 24
-topSequence += MagicWriteTag
-
-from AthenaPoolCnvSvc.WriteAthenaPool import AthenaPoolOutputStream
-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, noTag=True )
-Stream2.ItemList += [ "ExampleHitContainer#*" ]
-Stream2.ExcludeList += [ "ExampleHitContainer#MyHits" ]
-Stream2.WritingTool.AttributeListKey = "RunEventTag"
-
-from AthenaPoolExampleAlgorithms.AthenaPoolExampleAlgorithmsConf import AthPoolEx__PassNoneFilter
-topSequence += AthPoolEx__PassNoneFilter( "PassNoneFilter" )
-
-Stream3 = AthenaPoolOutputStream( "Stream3" , "EmptyPoolFile.root" , True, noTag=True )
-Stream3.RequireAlgs = [ "PassNoneFilter" ]
-
-#--------------------------------------------------------------
-# Event Collection Registration
-#--------------------------------------------------------------
-from RegistrationServices.RegistrationServicesConf import RegistrationStreamTagTool
-TagTool = RegistrationStreamTagTool("TagTool")
-
-from RegistrationServices.RegistrationServicesConf import RegistrationStream
-RegStream1 = RegistrationStream( "RegStream1" , CollectionType="ExplicitROOT" , Tool=TagTool )
-RegStream1.WriteInputDataHeader = False
-RegStream1.OutputCollection = "SimplePoolCollection1.root"
-RegStream1.ItemList += [ "DataHeader#Stream1" ]
-RegStream1.ItemList += [ "TagAthenaAttributeList#" + MagicWriteTag.Key ]
-topSequence += RegStream1
-
-RegStream2 = RegistrationStream( "RegStream2" , CollectionType="ExplicitROOT" , Tool=TagTool )
-RegStream2.WriteInputDataHeader = False
-RegStream2.OutputCollection = "SimplePoolCollection2.root"
-RegStream2.ItemList += [ "DataHeader#Stream2" ]
-RegStream2.ItemList += [ "TagAthenaAttributeList#RunEventTag" ]
-topSequence += RegStream2
-
-RegStream3 = RegistrationStream( "RegStream3" , CollectionType="ExplicitROOT" , Tool=TagTool )
-RegStream3.WriteInputDataHeader = False
-RegStream3.OutputCollection = "EmptyPoolCollection.root"
-RegStream3.ItemList += [ "DataHeader#Stream2" ]
-RegStream3.ItemList += [ "TagAthenaAttributeList#" + MagicWriteTag.Key ]
-RegStream3.RequireAlgs = [ "PassNoneFilter" ]
-topSequence += RegStream3
-
-#--------------------------------------------------------------
-# Set output level threshold (2=DEBUG, 3=INFO, 4=WARNING, 5=ERROR, 6=FATAL)
-#--------------------------------------------------------------
-svcMgr.MessageSvc.OutputLevel = 3
-svcMgr.PoolSvc.OutputLevel = 2 
-svcMgr.AthenaPoolCnvSvc.OutputLevel = 2
-topSequence.WriteData.OutputLevel = 2
-Stream1.OutputLevel = 2
-Stream1.WritingTool.OutputLevel = 3
-Stream1.HelperTools[0].OutputLevel = 3
-Stream2.OutputLevel = 2
-Stream2.WritingTool.OutputLevel = 3
-Stream2.HelperTools[0].OutputLevel = 3
-RegStream1.OutputLevel = 2
-RegStream1.Tool.OutputLevel = 3
-RegStream2.OutputLevel = 2
-RegStream2.Tool.OutputLevel = 3
-RegStream3.OutputLevel = 2
-RegStream3.Tool.OutputLevel = 3
-
-#
-# End of job options file
-#
-###############################################################
diff --git a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/test/post_check.sh b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/test/post_check.sh
deleted file mode 100755
index 4b9f0d39ee9a016d92bb7cbd534e37888aee9c4d..0000000000000000000000000000000000000000
--- a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/test/post_check.sh
+++ /dev/null
@@ -1,268 +0,0 @@
-#!/bin/sh -xv
-#/** @file post.sh
-# @brief sh script that check the return code of an executable and compares
-# its output with a reference (if available).
-# @param test_name
-#
-# @author Paolo Calafiura <pcalafiura@lbl.gov> - ATLAS Collaboration.
-# $Id: post_check.sh,v 1.43 2009-05-20 18:02:25 gemmeren Exp $
-# **/
-status=${?}
-test=${1}
-ref=${2:-${test}}
-if [ -z "${status}" ]
-    then
-    echo " post.sh> Warning: athena exit status is not available "
-else
-    # check exit status
-    joblog=${test}.log
-    while [ ! -s ${joblog}.tmp ]; do
-    cat ${joblog} |\
-	# For now drop some configurable warnings, they are not mine...
-	grep -v "^Py:PropertyProxy " |\
-	grep -v "^removing: " |\
-	grep -v "using release" |\
-	grep -v "Warning in <TEnvRec::ChangeValue>:" |\
-	grep -v "Error in <TCint::AutoLoad>: failure loading library " |\
-	grep -v "Error in <TCint::AutoLoadCallback>: failure loading library " |\
-	grep -v "Welcome to ApplicationMgr " |\
-	grep -v "running on " |\
-	grep -v "Skipping" |\
-	# Py:Athena will be Athena
-	sed -e 's/^.*Py:Athena /Athena    /g' |\
-	# Pointer addresses (mark 0)
-	sed -e 's/0x0\{8\}/0x!!!!/g' |\
-	sed -e 's/0x[0-9a-f]\{8\}/0x????/g' |\
-	sed -e 's/0x0\{7\}/0x!!!!/g' |\
-	sed -e 's/0x[0-9a-f]\{7\}/0x????/g' |\
-	# Rounding error etc
-	#sed -e 's/\.\([0-9]\{2\}\)[0-9]*/.\1/g' |\
-	#sed -e 's/ nan / inf /g' |\
-	# POOL id
-	sed -e 's/0\{8\}-0\{4\}-0\{4\}-0\{4\}-0\{12\}/!!!!/g' |\
-	sed -e 's/[0-9A-F]\{8\}-[0-9A-F]\{4\}-[0-9A-F]\{4\}-[0-9A-F]\{4\}-[0-9A-F]\{12\}/????/g' |\
-	sed -e 's/TTree [0-9]\{3\}[0-9]*/TTree ????/g' |\
-	sed -e 's/Bytes: [0-9]\{3\}[0-9]*/Bytes: ????/g' |\
-	# 64 bit offsets
-	sed -e 's/fffffffff/f/g' |\
-	sed -e 's/000000000/0/g' |\
-        # package names e.g. Package-00-00-00
-        sed -e 's/-r[0-9]\{6\}/-r??????/g' |\
-        sed -e 's/-[0-9]\{2\}-[0-9]\{2\}-[0-9]\{2\}/-??-??-??/g' |\
-        # pool attributes values
-        sed -e 's/\[BYTES_READ\]: 0/\[BYTES_READ\]: !!!!/g' |\
-        sed -e 's/\[BYTES_READ\]: [1-9][0-9]*/\[BYTES_READ\]: ????/g' |\
-        # ignore UnixTimestamp printouts
-        egrep -a -v 'ReadData             INFO CollectionMetadata, key = UnixTimestamp, value = ' |\
-        # ignore cpu usage printouts
-        egrep -a -v 'ChronoStatSvc +INFO Time' |\
-        egrep -a -v 'Time left.+ Seconds' |\
-        egrep -a -v 'Timeleft.+ sec' |\
-        egrep -a -v 'INFO Time User' |\
-        # ignore date and release
-        egrep -a -v '[Mon|Tue|Wed|Thu|Fri|Sat|Sun] [[:alpha:]]{3} +[[:digit:]]+ [[:digit:]]{2}:[[:digit:]]{2}:[[:digit:]]{2}' |\
-	# Collection MetaData
-	sed -e 's/Metadata TTree 0/Metadata TTree !!!/g' |\
-	sed -e 's/Metadata TTree [0-9]\{3\}/Metadata TTree ???/g' |\
-	# Remove Archive Prefix
-	sed -e 's/root:\/\/castoratlas\/\/castor\/cern.ch\/user\/g\/gemmeren\/ArchiveFile.zip#EmptyPoolFile/EmptyPoolFile/g' |\
-	sed -e 's/root:\/\/castoratlas\/\/castor\/cern.ch\/user\/g\/gemmeren\/ArchiveFile.zip#SimplePoolFile/SimplePoolFile/g' |\
-	sed -e 's/ArchiveFile.zip#EmptyPoolFile/EmptyPoolFile/g' |\
-	sed -e 's/ArchiveFile.zip#SimplePoolFile/SimplePoolFile/g' |\
-	# Stream wildcard
-	sed -e 's/INFO CLID = 222376821, key = Stream[12]/INFO CLID = 222376821, key = StreamX/g' |\
-	grep -v "^Stream[1-9]             DEBUG Wild card in key: begining part -  ending part -" |\
-	grep -v "^PluginMgr            INFO loaded plugin info for [0-9]* components" |\
-	grep -v "^Py:PropertyProxy     INFO Read module info for [0-9]* configurables from [0-9]* rootmap files" |\
-	grep -v "^DllClassManager      INFO readPluginInfo: loaded plugin info for" |\
-        grep -v "^Py:ConfigurableDb    INFO Read module info for" |\
-	grep -v "^DetDescrCnvSvc       INFO " |\
-	grep -v "^EventPersistenc...   INFO Added successfully Conversion service:DetDescrCnvSvc" |\
-	sed -e "s/ 'DetDescrCnvSvc' ,//g" |\
-	# HistorySvc
-	grep -v "^HistorySvc" |\
-	# ExampleHit Streamer for new object.
-	grep -v "Found unknown streamer checksum" |\
-	# CLHEP Streamer.
-	grep -v "AthenaRootStrea...   INFO   - Streamer name:" |\
-	grep -v "AthenaRootStrea...   INFO ROOT Streamer for" |\
-	grep -v "AthenaRootStrea...   INFO Adopted streamer for class" |\
-        grep -v "DBReplicaSvc         INFO " |\
-	# lib maps
-	grep -v "^map " |\
-        grep -v "^value " |\
-	# ROOT file version
-	grep -v "Root file version:" |\
-	grep -v "File version:" |\
-	# ClassIDSvc and ServiceManager messages
-	grep -v "^ClassIDSvc" |\
-	grep -v "^ServiceManager" |\
-	grep -v "^CoreDumpSvc          INFO Handling signals" |\
-	# Strange Chars from ApplicationMgr
-	sed -e "s/^..*ApplicationMgr/ApplicationMgr/" |\
-	# Custom jobOptions
-	sed -e "s/.\/${test}.py/AthenaPoolExampleAlgorithms\/${ref}JobOptions.py/" |\
-	sed -e "s/${test}.py/AthenaPoolExampleAlgorithms\/${ref}JobOptions.py/" |\
-	sed -e "s/.\/AthenaPoolExample_ReadBsTag.py/AthenaPoolExampleAlgorithms\/AthenaPoolExample_ReadBsTagJobOptions.py/" |\
-	sed -e "s/AthenaPoolExample_ReWriteJobOptions.py/AthenaPoolExample_RWJobOptions.py/" |\
-	sed -e "s/AthenaPoolExample_ReadSkipJobOptions.py/AthenaPoolExample_ReadJobOptions.py/" |\
-	# Empty lines
-	grep -v '^$' \
-	> ${joblog}.tmp
-       if [ ! -s ${joblog}.tmp ]; then
-         # ??? Sometimes the filtered file is empty.  Not sure why.
-         #     It's not reproducible; running the filter again usually works.
-         sleep 1
-         echo Retry ${joblog}.tmp
-       fi
-    done
-    #cp ${joblog} ${joblog}-orig
-    mv ${joblog}.tmp ${joblog}
-    if [ "${test}" == "AthenaPoolExample_WriteFast" ]
-    then
-        cat ${joblog} |\
-        sed -e 's/SimplePoolFileA.root/SimplePoolFile2.root/g' > ${joblog}.tmp
-        mv ${joblog}.tmp ${joblog}
-    elif [ "${test}" == "AthenaPoolExample_ReadTagFast" ]
-    then
-        cat ${joblog} |\
-	sed -e 's/SimplePoolFile4.root/SimplePoolFile2.root/g' |\
-	sed -e 's/SimplePoolCollection4.root/SimplePoolCollection2.root/g' > ${joblog}.tmp
-        mv ${joblog}.tmp ${joblog}
-    elif [ "${test}" == "AthenaPoolExample_ReWriteAgain" ]
-    then
-        cat ${joblog} |\
-	sed -e 's/SimplePoolReplica1.root/SimplePoolFile1.root/g' > ${joblog}.tmp
-        mv ${joblog}.tmp ${joblog}
-    elif [ "${test}" == "AthenaPoolExample_ReWriteNext" ]
-    then
-        cat ${joblog} |\
-	sed -e 's/SimplePoolReplica1.root/SimplePoolFile1.root/g' > ${joblog}.tmp
-        mv ${joblog}.tmp ${joblog}
-    elif [ "${test}" == "AthenaPoolExample_ReadAgain" ]
-    then
-        cat ${joblog} |\
-        sed -e 's/4.root/3.root/g' |\
-	sed -e 's/SimplePoolReplica1.root/SimplePoolFile1.root/g' > ${joblog}.tmp
-        mv ${joblog}.tmp ${joblog}
-    elif [ "${test}" == "AthenaPoolExample_ReadBNzip" -o "${test}" == "AthenaPoolExample_ReadBNzipAgain" ]
-    then
-        cat ${joblog} |\
-	sed '/SimplePoolFile3.root/,/[)0]/ s/Stream2/Stream1/g' > ${joblog}.tmp
-        mv ${joblog}.tmp ${joblog}
-    elif [ "${test}" == "AthenaPoolExample_ReadConcat" ]
-    then
-        cat ${joblog} |\
-	sed 's/AthenaPoolExample_ReadJobOptions/AthenaPoolExample_ReadConcatJobOptions/g' |\
-	sed '/SimplePoolFile3.root/,/[)0]/ s/Stream2/Stream1/g' > ${joblog}.tmp
-        mv ${joblog}.tmp ${joblog}
-    fi
-
-    if [ -e ../test/${test}.pattern ]
-    then
-        cat ../test/empty.pattern ../test/${test}.pattern > ../run/${test}.pattern
-	pattern=../run/${test}.pattern
-    else
-	pattern=../test/empty.pattern
-    fi
-    if [ "${status}" = 0 ]
-	then
-	echo " post.sh> OK: ${test} exited normally. Output is in ${joblog} "
-	reflog=../share/${ref}.ref
-	if [ -r ${reflog} ]
-	    then
-#	    echo " post.sh> Now comparing output with reference"
-	    diff -a -b -B  ${joblog} ${reflog} |\
-                # ignore diff annotations
-	        egrep -a -v '^---|^[[:digit:]]+[acd,][[:digit:]]+' |\
-                # ignore package names e.g. Package-00-00-00
-		egrep -a -v '\w+-r[[:digit:]]{6}' |\
-		egrep -a -v '\w+-[[:digit:]]{2}-[[:digit:]]{2}-[[:digit:]]{2}' |\
-                # ignore ROOT version details
-		egrep -a -v 'File version:53[[:digit:]]{3}' |\
-		# for now ignore IProxyDict dictionary warning
-		egrep -a -v 'Warning in <TClass::TClass>: no dictionary for class IProxyDict is available' |\
-		# ignore cpu usage printouts
-		egrep -a -v 'ChronoStatSvc +INFO Time' |\
-		egrep -a -v 'Time left.+ Seconds' |\
-		egrep -a -v 'Timeleft.+ sec' |\
-		egrep -a -v 'INFO Time User' |\
-		# ignore date and release
-		egrep -a -v '[Mon|Tue|Wed|Thu|Fri|Sat|Sun] [[:alpha:]]{3} +[[:digit:]]+ [[:digit:]]{2}:[[:digit:]]{2}:[[:digit:]]{2}' |\
-		egrep -a -v 'Athena               INFO using release' |\
-		# ignore clid db file name
-		egrep -a -v 'from CLIDDB file'  |\
-		# ignore slug machine printout
-		egrep -a -v ' Machine: .* System and Processor Info'  |\
-		egrep -a -v ' Jobname = .* Machine =' |\
-		# ignore slug pid printout
-		egrep -a -v 'Atlas Detector Simulation, Reconstruction and Analysis Running on'  |\
-		egrep -a -v 'Program:  Slug-Dice-Arecon .+ pid +[[:digit:]]+'  |\
-		#ignore DllClassManager DEBUG messages
-		egrep -a -v 'DllClassManager     DEBUG' |\
-		# ignore slug Library printout
-		egrep -a -v 'Library of +[[:digit:]]+ at +[[:digit:]]+'  |\
-		egrep -a -v 'Library compiled on +[[:digit:]]'  |\
-		# ignore rcs version comments
-		egrep -a -v 'Id: .+ Exp \$'  |\
-		# ignore listings
-		egrep -a -v 'athena.*listing'  |\
-		# ignore ptr values for LArCell
-		#egrep -a -v 'Found elem'  |\
-		# ignore file names
-		egrep -a -v 'Reading file'  |\
-		# ignore AthenaSealSvc checks
-		egrep -a -v 'AthenaSealSvc'  |\
-		# ignore DataHeader GUID changes
-		egrep -a -v '\[CNT=POOLContainer_DataHeader\]'  |\
-		egrep -a -v '\[CNT=POOLContainer\(DataHeader\)\]'  |\
-		# ignore Appmgr msgs
-		egrep -a -v 'ApplicationMgr       INFO Successfully loaded modules' |\
-		egrep -a -v 'EventPersistenc...   INFO "CnvServices"'  |\
-		egrep -a -v 'ClassIDSvc' |\
-		egrep -a -v 'bmagatlas' |\
-		egrep -a -v 'GeoModel' |\
-		egrep -a -v 'LArNumberHelper' |\
-		egrep -a -v 'including file' |\
-		egrep -a -v 'Store +INFO' |\
-		egrep -a -v 'StoreGateSvc +INFO' |\
-		egrep -a -v 'Py:ConfigurableDb WARNING' |\
-		egrep -v -f ${pattern} \
-	    > ${joblog}.tmp
-	    grep "^< " ${joblog}.tmp | cut -d' ' -f2-99 > ${joblog}.tmp1
-	    grep "^> " ${joblog}.tmp | cut -d' ' -f2-99 > ${joblog}.tmp2
-	    diff ${joblog}.tmp1 ${joblog}.tmp2
-	    diffStatus=${?}
-	    rm ${joblog}.tmp*
-	    if [ ${diffStatus} != 0 ]
-		then
-		echo " post.sh> ERROR: ${joblog} and ${reflog} differ "
-#		exit 1
-	    else
-		echo " post.sh> OK: ${joblog} and ${reflog} identical "
-	    fi
-	else
-	    tail ${joblog}
-	    echo " post.sh> WARNING: reference output ${reflog} not available "
-	    echo  " post.sh> Please check ${PWD}/${joblog}"
-	fi
-    else
-	tail ${joblog}
-	echo  " post.sh> ERROR: Athena exited abnormally! Exit code: ${status} "
-	echo  " post.sh> Please check ${PWD}/${joblog}"
-	exit 1
-    fi
-    if [ "${test}" == "AthenaPoolExample_AppendFast" ]
-    then
-	mergePOOL.exe -o SimplePoolFile2.root -i SimplePoolFileA.root -i SimplePoolFileB.root
-	mv Catalog1.xml Catalog1.xml.old
-	rm SimplePoolFileA.root SimplePoolFileB.root
-	pool_insertFileToCatalog -u xmlcatalog_file:Catalog1.xml EmptyPoolFile.root SimplePoolFile1.root SimplePoolFile2.root
-    fi
-fi
-
-# Check output for ERROR/FATAL
-joblog=${test}.log
-echo
-
-exit ${status}
diff --git a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/test/pre_check.sh b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/test/pre_check.sh
index 8ab762e986be9666bc67e9f97e586aec208653e5..ec66eab8e73095e69d269ae338a2cb8e15fa6fcc 100755
--- a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/test/pre_check.sh
+++ b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/test/pre_check.sh
@@ -11,13 +11,7 @@ then
 	/bin/rm -f SimplePoolFile[13].root
 elif [ "${test}" = "AthenaPoolExample_WMeta" ]
 then
-	/bin/rm -f Catalog1.xml* SimplePool*1.root SimplePool*2.root SimplePool*3.root SimplePool*4.root
-	/bin/rm -f *.root *.xml* *.h5
-elif [ "${test}" == "AthenaPoolExample_RWcBs" ]
-then
-	cat ../share/AthenaPoolExample_RWBsJobOptions.py | \
-	sed -e 's/^#svcMgr.ByteStreamInputSvc.FullFileName/svcMgr.ByteStreamInputSvc.FullFileName/g' > ${test}.py
-	AtlCopyBSEvent.exe -d -e 14350,14356,14382 -o test_defl.data /afs/cern.ch/atlas/offline/test/daq.m4_combined.0020720.extract.L1TT-b00000010._0001.data
+	/bin/rm -f *.root *.xml*
 fi
 # Turn off pool verbose printing
 export POOL_OUTMSG_LEVEL=4
diff --git a/Database/AthenaPOOL/EventSelectorAthenaPool/src/EventSelectorAthenaPool.cxx b/Database/AthenaPOOL/EventSelectorAthenaPool/src/EventSelectorAthenaPool.cxx
index 6b3b9a0f8c1dbfb7d4d8a4d1df9f13e1a7325320..5711f88a4a44b483a3e9943082478f29227e668a 100755
--- a/Database/AthenaPOOL/EventSelectorAthenaPool/src/EventSelectorAthenaPool.cxx
+++ b/Database/AthenaPOOL/EventSelectorAthenaPool/src/EventSelectorAthenaPool.cxx
@@ -52,7 +52,6 @@ EventSelectorAthenaPool::EventSelectorAthenaPool(const std::string& name, ISvcLo
 	m_poolCollectionConverter(0),
 	m_headerIterator(0),
 	m_guid(),
-	m_satelliteOid1(0LL),
 	m_athenaPoolCnvSvc("AthenaPoolCnvSvc", name),
 	m_incidentSvc("IncidentSvc", name),
 	m_helperTools(this),
@@ -142,9 +141,7 @@ StatusCode EventSelectorAthenaPool::initialize() {
    std::sort(m_skipEventSequence.begin(), m_skipEventSequence.end());
 
    // CollectionType must be one of:
-   //   ExplicitROOT, ExplicitMySQL, ExplicitMySQLlt, ExplicitRAL, ImplicitROOT
-   if (m_collectionType.value() != "ExplicitROOT" &&
-	   m_collectionType.value() != "ImplicitROOT") {
+   if (m_collectionType.value() != "ExplicitROOT" && m_collectionType.value() != "ImplicitROOT") {
       ATH_MSG_FATAL("EventSelector.CollectionType must be one of: ExplicitROOT, ImplicitROOT (default)");
       return(StatusCode::FAILURE);
    }
@@ -416,23 +413,23 @@ StatusCode EventSelectorAthenaPool::stop() {
    return(StatusCode::SUCCESS);
 }
 
-
+//________________________________________________________________________________
 void EventSelectorAthenaPool::fireEndFileIncidents(bool isLastFile, bool fireEndTagIncident) const {
    if (m_processMetadata.value()) {
       if (m_evtCount >= 0) {
-            // Assume that the end of collection file indicates the end of payload file.
-            if (m_guid != Guid::null()) {
-               // Fire EndInputFile incident
-               FileIncident endInputFileIncident(name(), "EndInputFile", "FID:" + m_guid.toString());
-               m_incidentSvc->fireIncident(endInputFileIncident);
-            }
-            // Fire EndTagFile incident if not out of files (maybe we should make it fire then as well?)
-            if(fireEndTagIncident) {
-               if(m_inputCollectionsIterator!=m_inputCollectionsProp.value().end()) {
-                  FileIncident endTagFileIncident(name(), "EndTagFile", *m_inputCollectionsIterator);
-                  m_incidentSvc->fireIncident(endTagFileIncident);
-               }
+         // Assume that the end of collection file indicates the end of payload file.
+         if (m_guid != Guid::null()) {
+            // Fire EndInputFile incident
+            FileIncident endInputFileIncident(name(), "EndInputFile", "FID:" + m_guid.toString());
+            m_incidentSvc->fireIncident(endInputFileIncident);
+         }
+         // Fire EndTagFile incident if not out of files (maybe we should make it fire then as well?)
+         if (fireEndTagIncident) {
+            if (m_inputCollectionsIterator != m_inputCollectionsProp.value().end()) {
+               FileIncident endTagFileIncident(name(), "EndTagFile", *m_inputCollectionsIterator);
+               m_incidentSvc->fireIncident(endTagFileIncident);
             }
+         }
       }
       // Fire LastInputFile incident
       if (isLastFile && m_firedIncident) {
@@ -443,7 +440,6 @@ void EventSelectorAthenaPool::fireEndFileIncidents(bool isLastFile, bool fireEnd
    }
 }
 
-
 //________________________________________________________________________________
 StatusCode EventSelectorAthenaPool::finalize() {
    if (m_eventStreamingTool.empty() || !m_eventStreamingTool->isClient()) {
@@ -641,21 +637,6 @@ StatusCode EventSelectorAthenaPool::next(IEvtSelector::Context& ctxt) const {
                m_incidentSvc->fireIncident(beginInputFileIncident);
             }
          }
-         // Using Satellite DataHeader?
-         std::string::size_type p_slash = m_collectionTree.value().find('/');
-         if (p_slash != std::string::npos) {
-            const std::string tree = m_collectionTree.value().substr(0, p_slash);
-            const std::string satellite = m_collectionTree.value().substr(p_slash + 1);
-            const Token* satelliteToken = m_athenaPoolCnvSvc->getPoolSvc()->getToken("FID:" + m_headerIterator->eventRef().dbID().toString(), tree + "(" + satellite + "/DataHeader)", 0);
-            if (satelliteToken != 0) {
-               m_satelliteOid1 = satelliteToken->oid().first;
-            } else {
-               m_satelliteOid1 = 0;
-            }
-            delete satelliteToken; satelliteToken = 0;
-         } else {
-            m_satelliteOid1 = 0;
-         }
       }  // end if (guid != m_guid)
       ++m_evtCount;
       if (!m_counterTool.empty() && !m_counterTool->preNext().isSuccess()) {
@@ -1090,15 +1071,7 @@ StatusCode EventSelectorAthenaPool::recordAttributeList() const {
       ATH_MSG_DEBUG("record AthenaAttribute, name = " << iter.tokenName() << " = " << iter->toString() << ".");
    }
    athAttrList->extend("eventRef", "string");
-   // Using Satellite DataHeader?
-   if (m_satelliteOid1 > 0) {
-      Token satelliteToken;
-      m_headerIterator->eventRef().set(&satelliteToken);
-      satelliteToken.setOid(Token::OID_t(m_satelliteOid1, m_headerIterator->eventRef().oid().second));
-      (*athAttrList)["eventRef"].data<std::string>() = satelliteToken.toString();
-   } else {
-      (*athAttrList)["eventRef"].data<std::string>() = m_headerIterator->eventRef().toString();
-   }
+   (*athAttrList)["eventRef"].data<std::string>() = m_headerIterator->eventRef().toString();
    ATH_MSG_DEBUG("record AthenaAttribute, name = eventRef = " << m_headerIterator->eventRef().toString() << ".");
    return(StatusCode::SUCCESS);
 }
diff --git a/Database/AthenaPOOL/EventSelectorAthenaPool/src/EventSelectorAthenaPool.h b/Database/AthenaPOOL/EventSelectorAthenaPool/src/EventSelectorAthenaPool.h
index 7f89275cfb59abdbe2d3701aeddfc6d9b5249cf1..e3801bbb53b9c55f5d2de646d0811fa969a3770d 100755
--- a/Database/AthenaPOOL/EventSelectorAthenaPool/src/EventSelectorAthenaPool.h
+++ b/Database/AthenaPOOL/EventSelectorAthenaPool/src/EventSelectorAthenaPool.h
@@ -150,7 +150,6 @@ private: // data
    mutable PoolCollectionConverter* m_poolCollectionConverter;
    mutable pool::ICollectionCursor* m_headerIterator;
    mutable Guid m_guid;
-   mutable long long int m_satelliteOid1;
 
    ServiceHandle<IAthenaPoolCnvSvc> m_athenaPoolCnvSvc;
    ServiceHandle<IIncidentSvc> m_incidentSvc;
diff --git a/Database/AthenaPOOL/OutputStreamAthenaPool/python/OutputStreamAthenaPool.py b/Database/AthenaPOOL/OutputStreamAthenaPool/python/OutputStreamAthenaPool.py
index ca7c0f46e0d3c5c2a8cb62d4acda06e9a3c2abc6..50863acbc4caf81c1707e02ae542e6c90bf78490 100644
--- a/Database/AthenaPOOL/OutputStreamAthenaPool/python/OutputStreamAthenaPool.py
+++ b/Database/AthenaPOOL/OutputStreamAthenaPool/python/OutputStreamAthenaPool.py
@@ -9,12 +9,11 @@
 from AthenaCommon.AppMgr import theApp
 from AthenaCommon.AppMgr import ServiceMgr as svcMgr
 from AthenaServices.AthenaServicesConf import AthenaOutputStream
-from OutputStreamAthenaPoolConf import AthenaPoolOutputStreamTool
+from AthenaServices.AthenaServicesConf import AthenaOutputStreamTool
 
 def createOutputStream( streamName, fileName = "", asAlg = False, noTag = True ):
    # define athena output stream
-   writingTool = AthenaPoolOutputStreamTool( streamName + "Tool" )
-   writingTool.DataHeaderSatellites = [ "basic/:EventInfo#*" ]
+   writingTool = AthenaOutputStreamTool( streamName + "Tool" )
    outputStream = AthenaOutputStream(
       streamName,
       WritingTool = writingTool,
diff --git a/Database/AthenaPOOL/OutputStreamAthenaPool/share/OutputStreamAthenaPool_jobOptions.py b/Database/AthenaPOOL/OutputStreamAthenaPool/share/OutputStreamAthenaPool_jobOptions.py
index bb255d3a63bc6e3749b6b3b59c11203cc5189e2c..634aa71ac7747ca96f4d590bd372d0177b6b6d19 100755
--- a/Database/AthenaPOOL/OutputStreamAthenaPool/share/OutputStreamAthenaPool_jobOptions.py
+++ b/Database/AthenaPOOL/OutputStreamAthenaPool/share/OutputStreamAthenaPool_jobOptions.py
@@ -7,11 +7,11 @@
 # Principally for documentation, to illustrate available OutputStreamAthenaPool properties
 #
 #==============================================================
-# The next lines tell Athena to load the OutputStreamAthenaPool, and also where to find it.
+# The next lines tell Athena to load the AthenaOutputStreamTool, and also where to find it.
 
-from OutputStreamAthenaPool.OutputStreamAthenaPool import *
+from AthenaServices.AthenaServices import AthenaOutputStreamTool
 
-WritingTool = AthenaPoolOutputStreamTool( "StreamTool" )
+WritingTool = AthenaOutputStreamTool( "StreamTool" )
 
 # List of additional DataHeader, which point to subset of DataObjects only
 # - "<SatelliteName>:<Type>[#<Key>],...",
diff --git a/Database/AthenaPOOL/OutputStreamAthenaPool/src/AthenaPoolOutputStreamTool.cxx b/Database/AthenaPOOL/OutputStreamAthenaPool/src/AthenaPoolOutputStreamTool.cxx
deleted file mode 100644
index f0702cd3e24e6b4dcbdb92068b3fcba0c91da751..0000000000000000000000000000000000000000
--- a/Database/AthenaPOOL/OutputStreamAthenaPool/src/AthenaPoolOutputStreamTool.cxx
+++ /dev/null
@@ -1,565 +0,0 @@
-/*
-  Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
-*/
-
-/** @file AthenaPoolOutputStreamTool.cxx
- *  @brief This file contains the implementation for the AthenaPoolOutputStreamTool class.
- *  @author Peter van Gemmeren <gemmeren@anl.gov>
- **/
-
-#include "AthenaPoolOutputStreamTool.h"
-
-// Gaudi
-#include "GaudiKernel/IConversionSvc.h"
-#include "GaudiKernel/IOpaqueAddress.h"
-#include "GaudiKernel/INamedInterface.h"
-
-// Athena
-#include "AthenaKernel/IClassIDSvc.h"
-#include "StoreGate/StoreGateSvc.h"
-#include "SGTools/DataProxy.h"
-#include "SGTools/SGIFolder.h"
-#include "PersistentDataModel/DataHeader.h"
-#include "AthenaPoolCnvSvc/IAthenaPoolCnvSvc.h"
-//#include "AthenaPoolUtilities/TagAthenaAttributeList.h"
-#include "PersistentDataModel/AthenaAttributeList.h"
-
-/// Constructor
-AthenaPoolOutputStreamTool::AthenaPoolOutputStreamTool(const std::string& type,
-		const std::string& name,
-		const IInterface* parent) : ::AthAlgTool(type, name, parent),
-	m_provTagList(),
-	m_satDhClidMap(),
-	m_store("DetectorStore", name),
-	m_conversionSvc("AthenaPoolCnvSvc", name),
-	m_clidSvc("ClassIDSvc", name),
-	m_dataHeader(0),
-	m_dataHeaderKey(name),
-	m_connectionOpen(false),
-	m_extendProvenanceRecord(false) {
-   // Declare IAthenaOutputStreamTool interface
-   declareInterface<IAthenaOutputStreamTool>(this);
-
-   // Remove "ToolSvc." from m_dataHeaderKey.
-   if (m_dataHeaderKey.find("ToolSvc.") == 0) {
-      m_dataHeaderKey = m_dataHeaderKey.substr(8);
-      // Remove "Tool" from m_dataHeaderKey.
-      if (m_dataHeaderKey.find("Tool") == m_dataHeaderKey.size() - 4) {
-         m_dataHeaderKey = m_dataHeaderKey.substr(0, m_dataHeaderKey.size() - 4);
-      }
-   } else {
-      const INamedInterface* parentAlg = dynamic_cast<const INamedInterface*>(parent);
-      if (parentAlg != 0) {
-         m_dataHeaderKey = parentAlg->name();
-      }
-   }
-   // Properties
-   declareProperty("OutputFile",            m_outputName = std::string());
-   declareProperty("Store",                 m_store = ServiceHandle<StoreGateSvc>("DetectorStore", name),
-	   "Handle to the StoreGateSvc instance from which to read data (to be written out)");
-   declareProperty("ProcessingTag",         m_processTag = m_dataHeaderKey);
-   declareProperty("ProvenanceTags",        m_provenanceTags = std::vector<std::string>(1, "*"));
-   declareProperty("DataHeaderSatellites",  m_dataHeaderSatellites = std::vector<std::string>());
-   declareProperty("OutputCollection",      m_outputCollection = std::string());
-   declareProperty("PoolContainerPrefix",   m_containerPrefix = std::string());
-   declareProperty("TopLevelContainerName", m_containerNameHint = "0");
-   declareProperty("SubLevelBranchName",    m_branchNameHint = "0");
-   declareProperty("AttributeListKey",      m_attrListKey = std::string());
-   m_dataHeaderSatellites.declareUpdateHandler(&AthenaPoolOutputStreamTool::dataHeaderSatellitesHandler, this);
-}
-//__________________________________________________________________________
-AthenaPoolOutputStreamTool::~AthenaPoolOutputStreamTool() {
-}
-//__________________________________________________________________________
-StatusCode AthenaPoolOutputStreamTool::initialize() {
-   ATH_MSG_INFO("Initializing " << name() << " - package version " << PACKAGE_VERSION);
-   // Get the ClassIDSvc - to get typename for clid
-   if (m_clidSvc.retrieve().isFailure()) {
-      ATH_MSG_FATAL("Cannot get IClassIDSvc interface of the CLIDSvc");
-      return(StatusCode::FAILURE);
-   }
-   // Find the conversion service
-   if (m_conversionSvc.retrieve().isFailure()) {
-      ATH_MSG_FATAL("Unable to locate IConversionSvc interface of AthenaPoolCnvSvc");
-      return(StatusCode::FAILURE);
-   }
-   // Get Processing Tag property from Stream
-   if (m_processTag.value() == m_dataHeaderKey) {
-      const IProperty* propertyServer = dynamic_cast<const IProperty*>(this->parent());
-      if (propertyServer != 0) {
-         StringProperty streamProperty("ProcessingTag", "");
-         if (propertyServer->getProperty(&streamProperty).isSuccess() && !streamProperty.value().empty()) {
-            ATH_MSG_INFO("streamProperty ProcessingTag = " << streamProperty.value());
-            m_processTag = streamProperty.value();
-         }
-      }
-   }
-   if (m_provenanceTags.value().empty()) {
-      m_provTagList.clear();
-   } else {
-      m_provTagList = ",";
-      for (std::vector<std::string>::const_iterator iter = m_provenanceTags.value().begin(),
-	      iterEnd = m_provenanceTags.value().end(); iter != iterEnd; iter++) {
-         if (*iter == "*") {
-            m_provTagList = "*";
-            break;
-         }
-         m_provTagList += *iter;
-         m_provTagList += ",";
-      }
-   }
-   return(StatusCode::SUCCESS);
-}
-//__________________________________________________________________________
-StatusCode AthenaPoolOutputStreamTool::finalize() {
-   if (m_conversionSvc.release().isFailure()) {
-      ATH_MSG_WARNING("Cannot release AthenaPoolCnvSvc");
-   }
-   if (m_clidSvc.release().isFailure()) {
-      ATH_MSG_WARNING("Cannot release the CLIDSvc");
-   }
-   return(StatusCode::SUCCESS);
-}
-//__________________________________________________________________________
-StatusCode AthenaPoolOutputStreamTool::connectServices(const std::string& dataStore,
-	const std::string& /*cnvSvc*/,
-	bool extendProvenenceRecord) {
-   ATH_MSG_DEBUG("In connectServices");
-   // Release old data store
-   if (m_store != 0) {
-      if (m_store.release().isFailure()) {
-         ATH_MSG_ERROR("Could not release " << m_store.type() << " store");
-      }
-   }
-   m_store = ServiceHandle<StoreGateSvc>(dataStore, this->name());
-   m_extendProvenanceRecord = extendProvenenceRecord;
-   return(connectServices());
-}
-//__________________________________________________________________________
-StatusCode AthenaPoolOutputStreamTool::connectServices() {
-   // Find the data store
-   if (m_store.retrieve().isFailure() || m_store == 0) {
-      ATH_MSG_ERROR("Could not locate " << m_store.type() << " store");
-      return(StatusCode::FAILURE);
-   }
-   return(StatusCode::SUCCESS);
-}
-//__________________________________________________________________________
-StatusCode AthenaPoolOutputStreamTool::connectOutput(const std::string& outputName) {
-   ATH_MSG_DEBUG("In connectOutput");
-
-   // Use arg if not empty, save the output name
-   if (!outputName.empty()) {
-      m_outputName.setValue(outputName);
-   }
-   if (m_outputName.value().empty()) {
-      ATH_MSG_ERROR("No OutputName provided");
-      return(StatusCode::FAILURE);
-   }
-   // Connect services if not already available
-   if (m_store == 0) {
-      if (connectServices().isFailure()) {
-         ATH_MSG_ERROR("Unable to connect services");
-         return(StatusCode::FAILURE);
-      }
-   }
-   // Connect the output file to the service
-   std::string outputConnectionString = m_outputName.value();
-   if (!m_outputCollection.value().empty() && outputConnectionString.find("[OutputCollection=") == std::string::npos) {
-      outputConnectionString += "[OutputCollection=" + m_outputCollection.value() + "]";
-   }
-   if (!m_containerPrefix.value().empty() && outputConnectionString.find("[PoolContainerPrefix=") == std::string::npos) {
-      outputConnectionString += "[PoolContainerPrefix=" + m_containerPrefix.value() + "]";
-   }
-   if (m_containerNameHint.value() != "0" && outputConnectionString.find("[TopLevelContainerName=") == std::string::npos) {
-      outputConnectionString += "[TopLevelContainerName=" + m_containerNameHint.value() + "]";
-   }
-   if (m_branchNameHint.value() != "0" && outputConnectionString.find("[SubLevelBranchName=") == std::string::npos) {
-      outputConnectionString += "[SubLevelBranchName=" + m_branchNameHint.value() + "]";
-   }
-   if (m_conversionSvc->connectOutput(outputConnectionString).isFailure()) {
-      ATH_MSG_ERROR("Unable to connect output " << m_outputName.value());
-      return(StatusCode::FAILURE);
-   } else {
-      ATH_MSG_DEBUG("Connected to " << m_outputName.value().substr(0, m_outputName.value().find("[")));
-   }
-
-   // Remove DataHeader with same key if it exists
-   if (m_store->contains<DataHeader>(m_dataHeaderKey)) {
-      const DataHandle<DataHeader> preDh;
-      if (m_store->retrieve(preDh, m_dataHeaderKey).isSuccess()) {
-         if (m_store->removeDataAndProxy(preDh.cptr()).isFailure()) {
-            ATH_MSG_ERROR("Unable to get proxy for the DataHeader with key " << m_dataHeaderKey);
-            return(StatusCode::FAILURE);
-         }
-         ATH_MSG_DEBUG("Released DataHeader with key " << m_dataHeaderKey);
-      }
-   }
-
-   // Create new DataHeader
-   m_dataHeader = new DataHeader();
-   m_dataHeader->setProcessTag(m_processTag);
-
-   // Retrieve all existing DataHeaders from StroreGate
-   const DataHandle<DataHeader> dh;
-   std::vector<std::string> dhKeys;
-   m_store->keys<DataHeader>(dhKeys);
-   for (std::vector<std::string>::const_iterator dhKey = dhKeys.begin(), dhKeyEnd = dhKeys.end();
-	   dhKey != dhKeyEnd; dhKey++) {
-      if (!m_store->transientContains<DataHeader>(*dhKey)) { // Do not retrieve BackNavigation DataHeader
-         continue;
-      }
-      if (m_store->retrieve(dh, *dhKey).isFailure()) {
-         ATH_MSG_DEBUG("Unable to retrieve the DataHeader with key " << *dhKey);
-      }
-      if (dh->checkStatus(DataHeader::Primary)) {
-         // Add DataHeader token to new DataHeader
-         if (m_extendProvenanceRecord) {
-            std::string pTag;
-            SG::TransientAddress* dhTransAddr = 0;
-            for (std::vector<DataHeaderElement>::const_iterator i = dh->begin(), iEnd = dh->end();
-                i != iEnd; i++) {
-               if (i->getPrimaryClassID() == ClassID_traits<DataHeader>::ID()) {
-                  pTag = i->getKey();
-                  delete dhTransAddr; dhTransAddr = i->getAddress(0);
-               }
-            }
-            // Update dhTransAddr to handle fast merged files.
-            SG::DataProxy* dhProxy = m_store->proxy(dh.operator->());
-            if (dhProxy != 0 && dhProxy->address() != 0) {
-              delete dhTransAddr;
-              m_dataHeader->insertProvenance(DataHeaderElement(dhProxy,
-                                                               dhProxy->address(),
-                                                               pTag));
-            }
-            else {
-              m_dataHeader->insertProvenance(DataHeaderElement(dhTransAddr,
-                                                               dhTransAddr->address(),
-                                                               pTag));
-              delete dhTransAddr;
-            }
-         }
-         if (!m_provTagList.empty()) {
-            for (std::vector<DataHeaderElement>::const_iterator i = dh->beginProvenance(),
-	            iEnd = dh->endProvenance(); i != iEnd; i++) {
-               if (m_provTagList == "*" || m_provTagList.find("," + i->getKey() + ",") != std::string::npos) {
-                  m_dataHeader->insertProvenance(*i);
-               }
-            }
-         }
-      }
-   }
-   std::string attrListKey = m_attrListKey.value();
-   std::string::size_type pos = outputConnectionString.find("[AttributeListKey=");
-   if (pos != std::string::npos) {
-      attrListKey = outputConnectionString.substr(pos + 18, outputConnectionString.find("]", pos + 18) - pos - 18);
-      attrListKey = outputConnectionString.substr(pos + 18, outputConnectionString.find("]", pos + 18) - pos - 18);
-   }
-   if (!attrListKey.empty()) {
-      const DataHandle<AthenaAttributeList> attrList;
-      if (m_store->retrieve(attrList, attrListKey).isFailure()) {
-         ATH_MSG_WARNING("Unable to retrieve AttributeList with key " << attrListKey);
-      } else {
-         m_dataHeader->setAttributeList(attrList);
-      }
-   }
-   // Record DataHeader in StoreGate
-   if (m_store->record(m_dataHeader, m_dataHeaderKey).isFailure()) {
-      ATH_MSG_ERROR("Unable to record DataHeader with key " << m_dataHeaderKey);
-      return(StatusCode::FAILURE);
-   } else {
-      ATH_MSG_DEBUG("Recorded DataHeader with key " << m_dataHeaderKey);
-   }
-   m_dataHeader->setStatus(DataHeader::Output);
-   if (m_outputName.value().find("[DataHeaderSatellites=]") != std::string::npos) {
-      m_satDhClidMap.clear();
-   }
-   // Set flag that connection is open
-   m_connectionOpen = true;
-   return(StatusCode::SUCCESS);
-}
-//__________________________________________________________________________
-StatusCode AthenaPoolOutputStreamTool::commitOutput() {
-   ATH_MSG_DEBUG("In commitOutput");
-
-   if (m_outputName.value().find("[DataHeaderSatellites=]") != std::string::npos) {
-      this->dataHeaderSatellitesHandler(m_dataHeaderSatellites);
-   }
-   m_outputName.setValue(m_outputName.value().substr(0, m_outputName.value().find("[")));
-   // Connect the output file to the service
-   if (m_conversionSvc->commitOutput(m_outputName.value(), false).isFailure()) {
-      ATH_MSG_ERROR("Unable to commit output " << m_outputName.value());
-      return(StatusCode::FAILURE);
-   }
-   // Set flag that connection is closed
-   m_connectionOpen = false;
-   return(StatusCode::SUCCESS);
-}
-//__________________________________________________________________________
-StatusCode AthenaPoolOutputStreamTool::finalizeOutput() {
-   if (m_conversionSvc->disconnectOutput().isFailure()) {
-      ATH_MSG_ERROR("Unable to finalize output ");
-      return(StatusCode::FAILURE);
-   }
-   return(StatusCode::SUCCESS);
-}
-//__________________________________________________________________________
-StatusCode AthenaPoolOutputStreamTool::streamObjects(const TypeKeyPairs& typeKeys) {
-   ATH_MSG_DEBUG("In streamObjects");
-   // Check that a connection has been opened
-   if (!m_connectionOpen) {
-      ATH_MSG_ERROR("Connection NOT open. Please open a connection before streaming out objects.");
-      return(StatusCode::FAILURE);
-   }
-   // Now iterate over the type/key pairs and stream out each object
-   std::vector<DataObject*> dataObjects;
-   for (TypeKeyPairs::const_iterator first = typeKeys.begin(), last = typeKeys.end();
-	   first != last; ++first) {
-      const std::string& type = (*first).first;
-      const std::string& key  = (*first).second;
-      // Find the clid for type name from the CLIDSvc
-      CLID clid;
-      if (m_clidSvc->getIDOfTypeName(type, clid).isFailure()) {
-         ATH_MSG_ERROR("Could not get clid for typeName " << type);
-         return(StatusCode::FAILURE);
-      }
-      DataObject* dObj = 0;
-      // Two options: no key or explicit key
-      if (key.empty()) {
-         ATH_MSG_DEBUG("Get data object with no key");
-         // Get DataObject without key
-         dObj = m_store->accessData(clid);
-      } else {
-         ATH_MSG_DEBUG("Get data object with key");
-         // Get DataObjects with key
-         dObj = m_store->accessData(clid, key);
-      }
-      if (dObj == 0) {
-         // No object - print warning and return
-         ATH_MSG_DEBUG("No object found for type " << type << " key " << key);
-         return(StatusCode::SUCCESS);
-      } else {
-         ATH_MSG_DEBUG("Found object for type " << type << " key " << key);
-      }
-      // Save the dObj
-      dataObjects.push_back(dObj);
-   }
-   // Stream out objects
-   if (dataObjects.size() == 0) {
-      ATH_MSG_DEBUG("No data objects found");
-      return(StatusCode::SUCCESS);
-   }
-   StatusCode status = streamObjects(dataObjects);
-   if (!status.isSuccess()) {
-      ATH_MSG_ERROR("Could not stream out objects");
-      return(status);
-   }
-   return(StatusCode::SUCCESS);
-}
-//__________________________________________________________________________
-StatusCode AthenaPoolOutputStreamTool::streamObjects(const DataObjectVec& dataObjects) {
-   // Check that a connection has been opened
-   if (!m_connectionOpen) {
-      ATH_MSG_ERROR("Connection NOT open. Please open a connection before streaming out objects.");
-      return(StatusCode::FAILURE);
-   }
-   // Check that the DataHeader is still valid
-   DataObject* dataHeaderObj = m_store->accessData(ClassID_traits<DataHeader>::ID(), m_dataHeaderKey);
-   StatusCode status(StatusCode::SUCCESS);
-   std::set<DataObject*> written;
-   for (std::vector<DataObject*>::const_iterator doIter = dataObjects.begin(), doLast = dataObjects.end();
-	   doIter != doLast; doIter++) {
-      // Do not write the DataHeader via the explicit list
-      if ((*doIter)->clID() == ClassID_traits<DataHeader>::ID()) {
-         ATH_MSG_DEBUG("Explicit request to write DataHeader: " << (*doIter)->name() << " - skipping it.");
-      // Do not stream out same object twice
-      } else if (written.find(*doIter) != written.end()) {
-         // Print warning and skip
-         ATH_MSG_DEBUG("Trying to write DataObject twice (clid/key): " << (*doIter)->clID() << " " << (*doIter)->name());
-         ATH_MSG_DEBUG("    Skipping this one.");
-      } else {
-         written.insert(*doIter);
-         // Write object
-         IOpaqueAddress* addr(0);
-         if ((m_conversionSvc->createRep(*doIter, addr)).isSuccess()) {
-            if ((*doIter)->clID() != 1) {
-               SG::DataProxy* proxy = dynamic_cast<SG::DataProxy*>((*doIter)->registry());
-               if (proxy != 0) {
-                  m_dataHeader->insert(proxy, addr);
-                  if (proxy->address() == 0) {
-                     proxy->setAddress(addr);
-                  } else {
-                     delete addr; addr = 0;
-                  }
-               } else {
-                  ATH_MSG_WARNING("Could cast DataObject " << (*doIter)->clID() << " " << (*doIter)->name());
-               }
-            } else if (addr->par()[0] != "\n") {
-               ATH_MSG_DEBUG("Pers to Pers copy for " << (*doIter)->clID() << " " << (*doIter)->name());
-               SG::DataProxy* proxy = dynamic_cast<SG::DataProxy*>((*doIter)->registry());
-               if (proxy != 0) {
-                  m_dataHeader->insert(proxy, addr);
-                  if (proxy->address() == 0) {
-                     proxy->setAddress(addr);
-                  } else {
-                     delete addr; addr = 0;
-                  }
-               } else {
-                  ATH_MSG_WARNING("Could cast DataObject " << (*doIter)->clID() << " " << (*doIter)->name());
-               }
-            } else {
-               ATH_MSG_WARNING("Could not find DataObject, created default for " << (*doIter)->clID() << " " << (*doIter)->name());
-            }
-         } else {
-            ATH_MSG_ERROR("Could not create Rep for DataObject (clid/key):" << (*doIter)->clID() << " " << (*doIter)->name());
-            status = StatusCode::FAILURE;
-         }
-      }
-   }
-   m_dataHeader->addHash(&*m_store);
-   // End of loop over DataObjects, write DataHeader
-   IOpaqueAddress* addr(0);
-   if ((m_conversionSvc->createRep(dataHeaderObj, addr)).isSuccess()) {
-      SG::DataProxy* proxy = dynamic_cast<SG::DataProxy*>(dataHeaderObj->registry());
-      if (proxy != 0) {
-         m_dataHeader->insert(proxy, addr, m_processTag);
-         if (proxy->address() == 0) {
-            proxy->setAddress(addr);
-         } else {
-            delete addr; addr = 0;
-         }
-      } else {
-         ATH_MSG_WARNING("Could cast DataHeader");
-         status = StatusCode::FAILURE;
-      }
-   } else {
-      ATH_MSG_ERROR("Could not create Rep for DataHeader");
-      status = StatusCode::FAILURE;
-   }
-   DataObjectVec dataHeaderObjVec;
-   dataHeaderObjVec.push_back(dataHeaderObj);
-   std::vector<DataHeader*> satDataHeaderVec;
-   // Create and write satelite DataHeader
-   for (std::map<std::string, std::set<CLID> >::const_iterator iter = m_satDhClidMap.begin(),
-		   iterEnd = m_satDhClidMap.end(); iter != iterEnd; iter++) {
-      DataHeader* satDataHeader = new DataHeader();
-      if (!m_store->record(satDataHeader, iter->first).isSuccess()) {
-         ATH_MSG_ERROR("Unable to record satelite DataHeader with key " << iter->first);
-         return(StatusCode::FAILURE);
-      }
-      for (std::vector<DataHeaderElement>::const_iterator thisToken = m_dataHeader->begin(),
-		      endToken = m_dataHeader->end(); thisToken != endToken; thisToken++) {
-         if (thisToken->getPrimaryClassID() == ClassID_traits<DataHeader>::ID()) {
-            satDataHeader->insertProvenance(*thisToken);
-         } else {
-            std::set<CLID> symLinks = thisToken->getClassIDs();
-            for (std::set<CLID>::const_iterator symIter = symLinks.begin(),
-		            symIterEnd = symLinks.end(); symIter != symIterEnd; symIter++) {
-               if (iter->second.find(*symIter) != iter->second.end()) {
-                  satDataHeader->insert(*thisToken);
-                  break;
-               }
-            }
-         }
-      }
-      DataObject* satDataHeaderObj = m_store->accessData(ClassID_traits<DataHeader>::ID(), iter->first);
-      IOpaqueAddress* addr_0(0);
-      if (!(m_conversionSvc->createRep(satDataHeaderObj, addr_0)).isSuccess()) {
-         status = StatusCode::FAILURE;
-      }
-      dataHeaderObjVec.push_back(satDataHeaderObj);
-      satDataHeaderVec.push_back(satDataHeader);
-      delete addr_0 ; addr_0 = 0;
-   }
-   if (!fillObjectRefs(dataObjects).isSuccess()) {
-      status = StatusCode::FAILURE;
-   }
-   // End of DataObjects, fill refs for DataHeader
-   if (!fillObjectRefs(dataHeaderObjVec).isSuccess()) {
-      status = StatusCode::FAILURE;
-   }
-   for (std::vector<DataHeader*>::const_iterator satDataHeader = satDataHeaderVec.begin(),
-		   satEnd = satDataHeaderVec.end(); satDataHeader != satEnd; satDataHeader++) {
-      m_store->remove(*satDataHeader).ignore();
-   }
-   return(status);
-}
-//__________________________________________________________________________
-StatusCode AthenaPoolOutputStreamTool::fillObjectRefs(const DataObjectVec& dataObjects) {
-   StatusCode status = StatusCode::SUCCESS;
-   for (std::vector<DataObject*>::const_iterator doIter = dataObjects.begin(), doLast = dataObjects.end();
-	   doIter != doLast; doIter++) {
-      // call fillRepRefs of persistency service
-      if (!(m_conversionSvc->fillRepRefs((*doIter)->registry()->address(), *doIter)).isSuccess()) {
-         status = StatusCode::FAILURE;
-      }
-   }
-   return(status);
-}
-//__________________________________________________________________________
-StatusCode AthenaPoolOutputStreamTool::getInputItemList(SG::IFolder* p2BWrittenFromTool) {
-   const std::string hltKey = "HLTAutoKey";
-   const DataHandle<DataHeader> beg, ending;
-   if (m_store->retrieve(beg, ending).isFailure() || beg == ending) {
-      ATH_MSG_DEBUG("No DataHeaders present in StoreGate");
-   } else {
-      for ( ; beg != ending; ++beg) {
-         if (m_store->transientContains<DataHeader>(beg.key()) && beg->isInput()) {
-            for (std::vector<DataHeaderElement>::const_iterator it = beg->begin(), itLast = beg->end();
-	            it != itLast; ++it) {
-               // Only insert the primary clid, not the ones for the symlinks!
-               CLID clid = it->getPrimaryClassID();
-                  std::string typeName;
-                  if (clid != ClassID_traits<DataHeader>::ID()) {
-                  //check the typename is known ... we make an exception if the key contains 'Aux.' ... aux containers may not have their keys known yet in some cases
-		  //see https://its.cern.ch/jira/browse/ATLASG-59 for the solution
-                  std::string typeName;
-                  if( m_clidSvc->getTypeNameOfID(clid,typeName).isFailure() && it->getKey().find("Aux.") == std::string::npos) {
-		    if(m_skippedItems.find(it->getKey()) == m_skippedItems.end()) {
-		      ATH_MSG_WARNING("Skipping " << it->getKey() << " with unknown clid " << clid << " . Further warnings for this item are suppressed" ); 
-		      m_skippedItems.insert(it->getKey()); 
-		    }
-                    continue;
-                  }
-                  ATH_MSG_DEBUG("Adding " << typeName << "#" << it->getKey() << " (clid " << clid << ") to itemlist");
-                  const std::string keyName = it->getKey();
-                  if (keyName.size() > 10 && keyName.substr(0, 10) == hltKey) {
-                     p2BWrittenFromTool->add(clid, hltKey + "*").ignore();
-                  } else if (keyName.size() > 10 && keyName.substr(keyName.size() - 10, 10) == hltKey) {
-                     p2BWrittenFromTool->add(clid, "*" + hltKey).ignore();
-                  } else {
-                     p2BWrittenFromTool->add(clid, keyName).ignore();
-                  }
-               }
-            }
-         }
-      }
-   }
-   ATH_MSG_DEBUG("Adding DataHeader for stream " << name());
-   return(StatusCode::SUCCESS);
-}
-//__________________________________________________________________________
-void AthenaPoolOutputStreamTool::dataHeaderSatellitesHandler(Property& /* theProp */) {
-   m_satDhClidMap.clear();
-   std::string dataHeaderSatProp;
-   for (std::vector<std::string>::const_iterator iter = m_dataHeaderSatellites.value().begin(),
-	   iterEnd = m_dataHeaderSatellites.value().end(); iter != iterEnd; iter++) {
-      dataHeaderSatProp = *iter;
-      const std::string dhKey = dataHeaderSatProp.substr(0, dataHeaderSatProp.find(":"));
-      dataHeaderSatProp.erase(0, dhKey.size() + 1);
-      while (!dataHeaderSatProp.empty()) {
-         const std::string type = dataHeaderSatProp.substr(0, dataHeaderSatProp.find_first_of(",#"));
-         CLID clid;
-         if (!m_clidSvc->getIDOfTypeName(type, clid).isSuccess()) {
-            ATH_MSG_WARNING("Could not get clid for typeName " << type);
-         } else {
-            m_satDhClidMap[dhKey].insert(clid);
-         }
-         if (dataHeaderSatProp.find(",") != std::string::npos) {
-            dataHeaderSatProp.erase(0, dataHeaderSatProp.find(",") + 1);
-         } else {
-            dataHeaderSatProp.clear();
-         }
-      }
-   }
-}
diff --git a/Database/AthenaPOOL/OutputStreamAthenaPool/src/AthenaPoolOutputStreamTool.h b/Database/AthenaPOOL/OutputStreamAthenaPool/src/AthenaPoolOutputStreamTool.h
deleted file mode 100644
index b50840fef6a76a9c5383ba254bc628bab0693ded..0000000000000000000000000000000000000000
--- a/Database/AthenaPOOL/OutputStreamAthenaPool/src/AthenaPoolOutputStreamTool.h
+++ /dev/null
@@ -1,135 +0,0 @@
-/*
-  Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
-*/
-
-#ifndef ATHENAPOOLOUTPUTSTREAMTOOL_H
-#define ATHENAPOOLOUTPUTSTREAMTOOL_H
-/** @file AthenaPoolOutputStreamTool.h
- *  @brief This is the AthenaPool version of AthenaOutputStreamTool.
- *  @author Peter van Gemmeren <gemmeren@anl.gov>
- **/
-
-#include "AthenaKernel/IAthenaOutputStreamTool.h"
-
-#include "AthenaBaseComps/AthAlgTool.h"
-#include "GaudiKernel/ServiceHandle.h"
-#include "GaudiKernel/ToolHandle.h"
-
-#include <string>
-
-class IAthenaPoolCnvSvc;
-class IClassIDSvc;
-class StoreGateSvc;
-class DataHeader;
-namespace SG {
-   class IFolder;
-}
-
-/** @class AthenaPoolOutputStreamTool
- *  @brief This is the AthenaPool version of AthenaServices/AthenaOutputStreamTool.
- **/
-class AthenaPoolOutputStreamTool : public ::AthAlgTool, virtual public IAthenaOutputStreamTool {
-public:
-   /// Standard AlgTool Constructor
-   AthenaPoolOutputStreamTool(const std::string& type,
-	   const std::string& name,
-	   const IInterface* parent);
-   /// Destructor
-   virtual ~AthenaPoolOutputStreamTool();
-
-   /// AthAlgTool Interface method implementations:
-   StatusCode initialize();
-   StatusCode finalize();
-
-   /// Specify which data store and conversion service to use
-   /// and whether to extend provenence
-   ///   Only use if one wants to override jobOptions
-   StatusCode connectServices(const std::string& dataStore,
-	   const std::string& cnvSvc,
-	   bool extendProvenenceRecord);
-
-   /// Connect to the output stream
-   ///   Must connectOutput BEFORE streaming
-   ///   Only specify "outputName" if one wants to override jobOptions
-   StatusCode connectOutput(const std::string& outputName);
-
-   /// Commit the output stream after having streamed out objects
-   ///   Must commitOutput AFTER streaming
-   StatusCode commitOutput();
-
-   /// Finalize the output stream after the last commit, e.g. in
-   /// finalize
-   StatusCode finalizeOutput();
-
-   /// Stream out objects. Provide vector of typeName/key pairs.
-   ///   If key is empty, assumes only one object and this
-   ///   will fail if there is more than one
-   typedef std::pair<std::string, std::string> TypeKeyPair;
-   typedef std::vector<TypeKeyPair>            TypeKeyPairs;
-   virtual StatusCode streamObjects(const TypeKeyPairs& typeKeys);
-
-   /// Stream out a vector of objects
-   ///   Must convert to DataObject, e.g.
-   ///   #include "SGTools/StorableConversions.h"
-   ///     T* obj = xxx;
-   ///     DataObject* dataObject = SG::asStorable(obj);
-   typedef std::vector<DataObject*> DataObjectVec;
-   virtual StatusCode streamObjects(const DataObjectVec& dataObjects);
-
-   /// Fill refs of an object - done as second iteration over
-   /// objects, after streamObject
-   virtual StatusCode fillObjectRefs(const DataObjectVec& dataObjects);
-
-   virtual StatusCode getInputItemList(SG::IFolder* m_p2BWrittenFromTool);
-
-   virtual void dataHeaderSatellitesHandler(Property& /* theProp */);
-
-private:
-   /// Do the real connection to services
-   virtual StatusCode connectServices();
-
-private:
-   /// OutputFile, name of the output db name
-   StringProperty  m_outputName;
-   /// ProcessTag, tag of processing stage: default to SG key of DataHeader (Stream name)
-   StringProperty  m_processTag;
-   /// ProvenanceTags, list of processing tags to propagate in DataHeader, to enable BackNavigation
-   /// default = ['*'] (will propagate all entries)
-   StringArrayProperty m_provenanceTags; 
-   std::string m_provTagList;
-   /// DataHeaderSatellites, list of additional DataHeader, which point to subset of DataObjects only
-   /// default = [], example: ['basic/:EventInfo']
-   StringArrayProperty m_dataHeaderSatellites;
-   std::map<std::string, std::set<CLID> > m_satDhClidMap;
-   /// OutputCollection, custom container name prefix for DataHeader: default = "" (will result in "POOLContainer_")
-   StringProperty  m_outputCollection;
-   /// PoolContainerPrefix, prefix for top level POOL container: default = "CollectionTree"
-   StringProperty  m_containerPrefix;
-   /// TopLevelContainerName, naming hint policy for top level POOL container: default = ""
-   StringProperty  m_containerNameHint;
-   /// SubLevelBranchName, naming hint policy for POOL branching: default = "<type>/<key>"
-   StringProperty  m_branchNameHint;
-   /// AttributeListKey, optional key for AttributeList to be written as part of the DataHeader: default = ""
-   StringProperty  m_attrListKey;
-
-   /// Pointer to the data store
-   ServiceHandle<StoreGateSvc>   m_store;
-   /// Keep reference to the data conversion service
-   ServiceHandle<IAthenaPoolCnvSvc> m_conversionSvc;
-   /// Ref to ClassIDSvc to convert type name to clid
-   ServiceHandle<IClassIDSvc>    m_clidSvc;
-   /// Current DataHeader for streamed objects
-   DataHeader*     m_dataHeader;
-   /// Name of DataHeader key
-   std::string     m_dataHeaderKey;
-   /// Flag to tell whether connectOutput has been called
-   bool            m_connectionOpen;
-   /// Flag as to whether to extend provenance via the DataHeader
-   bool            m_extendProvenanceRecord;
-
-   /// set of skipped item keys, because of missing CLID
-   std::set<std::string> m_skippedItems;
-
-};
-
-#endif
diff --git a/Database/AthenaPOOL/OutputStreamAthenaPool/src/components/OutputStreamAthenaPool_entries.cxx b/Database/AthenaPOOL/OutputStreamAthenaPool/src/components/OutputStreamAthenaPool_entries.cxx
index b56a3778a5049a0ec6b47a255599978f0570d9f4..bebf027d5f8be31b241ac3a191705fc1fee56c8c 100644
--- a/Database/AthenaPOOL/OutputStreamAthenaPool/src/components/OutputStreamAthenaPool_entries.cxx
+++ b/Database/AthenaPOOL/OutputStreamAthenaPool/src/components/OutputStreamAthenaPool_entries.cxx
@@ -1,11 +1,9 @@
-#include "../AthenaPoolOutputStreamTool.h"
 #include "../MakeInputDataHeader.h"
 #include "../MakeEventStreamInfo.h"
 #include "../CopyEventStreamInfo.h"
 #include "../EventInfoAttListTool.h"
 #include "../EventInfoTagBuilder.h"
 
-DECLARE_COMPONENT( AthenaPoolOutputStreamTool )
 DECLARE_COMPONENT( MakeEventStreamInfo )
 DECLARE_COMPONENT( CopyEventStreamInfo )
 DECLARE_COMPONENT( EventInfoAttListTool )
diff --git a/Database/RegistrationServices/python/OutputConditionsAlg.py b/Database/RegistrationServices/python/OutputConditionsAlg.py
index ae3d1b7a2a6b353121b7633585f4471c35634a8b..ec55f1f0375f50016e003839f12984551229ece0 100644
--- a/Database/RegistrationServices/python/OutputConditionsAlg.py
+++ b/Database/RegistrationServices/python/OutputConditionsAlg.py
@@ -27,10 +27,10 @@ def OutputConditionsAlg(name='OutputConditionsAlg',outputFile='condobjs.root',
     topSequence += myAlg
 
     # create outputStream tool with given filename and pass to myOCA
-    from OutputStreamAthenaPool.OutputStreamAthenaPoolConf import AthenaPoolOutputStreamTool
+    from AthenaServices.AthenaServicesConf import AthenaOutputStreamTool
     toolname=name+"Tool"
     myAlg.StreamName=toolname
-    condstream=AthenaPoolOutputStreamTool(toolname)
+    condstream=AthenaOutputStreamTool(toolname)
     condstream.OutputFile=outputFile
     condstream.PoolContainerPrefix="ConditionsContainer"
     from AthenaCommon.AppMgr import ToolSvc
diff --git a/Database/RegistrationServices/src/OutputConditionsAlg.cxx b/Database/RegistrationServices/src/OutputConditionsAlg.cxx
index 92e5c3154841152e1988372d6631bcfa5c803c89..847aa8f3d17a4137264f91fe0c8e6a795479ba7b 100755
--- a/Database/RegistrationServices/src/OutputConditionsAlg.cxx
+++ b/Database/RegistrationServices/src/OutputConditionsAlg.cxx
@@ -63,11 +63,11 @@ StatusCode OutputConditionsAlg::initialize() {
       return StatusCode::FAILURE;
     }
   }
-  m_streamer = IAthenaOutputStreamTool_t("AthenaPoolOutputStreamTool/"+
+  m_streamer = IAthenaOutputStreamTool_t("AthenaOutputStreamTool/"+
 					 m_streamName);
   StatusCode sc = m_streamer.retrieve();
   if (sc.isFailure()) {
-    ATH_MSG_ERROR ("Unable to find AthenaPoolOutputStreamTool with name " << 
+    ATH_MSG_ERROR ("Unable to find AthenaOutputStreamTool with name " << 
                    m_streamName);
     return StatusCode::FAILURE;
   }  
diff --git a/Generators/Epos_i/share/jobOptions.crmc.py b/Generators/Epos_i/share/jobOptions.crmc.py
index 7457fe26601afce9ec4fa84df035e0123cbb4afd..d2a93c2b91080ca9716f1f6bf5b4cea68f4dcb17 100644
--- a/Generators/Epos_i/share/jobOptions.crmc.py
+++ b/Generators/Epos_i/share/jobOptions.crmc.py
@@ -86,7 +86,7 @@ import AthenaPoolCnvSvc.WriteAthenaPool
 from AthenaPoolCnvSvc.WriteAthenaPool import AthenaPoolOutputStream
 
 stream1 = AthenaPoolOutputStream( "StreamEVGEN" )
-stream1.WritingTool = "AthenaPoolOutputStreamTool"
+stream1.WritingTool = "AthenaOutputStreamTool"
 stream1.OutputFile = "epos_events.pool.root"
 stream1.ForceRead = TRUE;
 stream1.TakeItemsFromInput = True
diff --git a/Generators/GeneratorObjectsAthenaPool/share/readGenEventFromPool.py b/Generators/GeneratorObjectsAthenaPool/share/readGenEventFromPool.py
index a367605d67d67f459fc6d6382ff5cb8c30b651bb..0ef586ccf06fb397f08831eab3964e23beb029e7 100755
--- a/Generators/GeneratorObjectsAthenaPool/share/readGenEventFromPool.py
+++ b/Generators/GeneratorObjectsAthenaPool/share/readGenEventFromPool.py
@@ -28,7 +28,7 @@ job += CfgMgr.DumpMC("DumpMC")
 import AthenaPoolCnvSvc.WriteAthenaPool
 job += CfgMgr.AthenaOutputStream(
     "OutStream",
-    WritingTool = "AthenaPoolOutputStreamTool"
+    WritingTool = "AthenaOutputStreamTool"
     )
 job.OutStream.ItemList += [
     "EventInfo#*",
diff --git a/Generators/GeneratorObjectsAthenaPool/share/writeGenEventToPool.py b/Generators/GeneratorObjectsAthenaPool/share/writeGenEventToPool.py
index 7df3a3ff7f16a05779d7a1525a7f36184e368d05..426d095aa5825a0e6e0bed258d193739d20ce1b8 100755
--- a/Generators/GeneratorObjectsAthenaPool/share/writeGenEventToPool.py
+++ b/Generators/GeneratorObjectsAthenaPool/share/writeGenEventToPool.py
@@ -46,7 +46,7 @@ theApp.EvtMax = 5
 import AthenaPoolCnvSvc.WriteAthenaPool
 job += CfgMgr.AthenaOutputStream(
     "OutStream",
-    WritingTool = "AthenaPoolOutputStreamTool"
+    WritingTool = "AthenaOutputStreamTool"
     )
 job.OutStream.ItemList += [
     "EventInfo#*",
diff --git a/InnerDetector/InDetAlignAlgs/InDetAlignGenAlgs/share/CreateMisalignment.py b/InnerDetector/InDetAlignAlgs/InDetAlignGenAlgs/share/CreateMisalignment.py
index 7139fd1ac105b3dbd328efb5de7fad84984e8587..e6e79fef2bc9d8a73bd58e75e145ee98037abfa9 100644
--- a/InnerDetector/InDetAlignAlgs/InDetAlignGenAlgs/share/CreateMisalignment.py
+++ b/InnerDetector/InDetAlignAlgs/InDetAlignGenAlgs/share/CreateMisalignment.py
@@ -179,8 +179,8 @@ else:
     pass
     
 if WriteDBPoolFile:
-    from OutputStreamAthenaPool.OutputStreamAthenaPoolConf import AthenaPoolOutputStreamTool
-    InDetCondStream=AthenaPoolOutputStreamTool(name="CondStream1", OutputFile = AlignmentOutFilename)
+    from AthenaServices.AthenaServicesConf import AthenaOutputStreamTool
+    InDetCondStream=AthenaOutputStreamTool(name="CondStream1", OutputFile = AlignmentOutFilename)
     ToolSvc += InDetCondStream
     print InDetCondStream
     
diff --git a/InnerDetector/InDetAlignTools/InDetAlignGenTools/src/InDetAlignDBTool.cxx b/InnerDetector/InDetAlignTools/InDetAlignGenTools/src/InDetAlignDBTool.cxx
index 82952c054e593947dc0839edea7a26edaea8f726..d248036b89291516b03a43055320a1213f6865b0 100755
--- a/InnerDetector/InDetAlignTools/InDetAlignGenTools/src/InDetAlignDBTool.cxx
+++ b/InnerDetector/InDetAlignTools/InDetAlignGenTools/src/InDetAlignDBTool.cxx
@@ -1283,7 +1283,7 @@ StatusCode InDetAlignDBTool::outputObjs() const {
   // get the AthenaOutputStream tool
   IAthenaOutputStreamTool* optool;
 
-  if (StatusCode::SUCCESS!=p_toolsvc->retrieveTool("AthenaPoolOutputStreamTool",m_par_condstream,optool)) {
+  if (StatusCode::SUCCESS!=p_toolsvc->retrieveTool("AthenaOutputStreamTool",m_par_condstream,optool)) {
     ATH_MSG_ERROR("Cannot get AthenaPoolOutputStream tool" );
     return StatusCode::FAILURE;
   }
diff --git a/InnerDetector/InDetCalibAlgs/SCT_CalibAlgs/src/SCTCalibWriteSvc.cxx b/InnerDetector/InDetCalibAlgs/SCT_CalibAlgs/src/SCTCalibWriteSvc.cxx
index 35b3a7587f491645eb611bc4ac3a71d0e52ff9b0..23184de88e68dfb729a4aed83281316cf6ba36c0 100644
--- a/InnerDetector/InDetCalibAlgs/SCT_CalibAlgs/src/SCTCalibWriteSvc.cxx
+++ b/InnerDetector/InDetCalibAlgs/SCT_CalibAlgs/src/SCTCalibWriteSvc.cxx
@@ -85,7 +85,7 @@ SCTCalibWriteSvc::SCTCalibWriteSvc(const std::string& name, ISvcLocator* pSvcLoc
 
   m_regSvc(0),
   //m_streamer(0),
-  m_streamer(((m_version == 0) ? "AthenaOutputStreamTool" : "AthenaPoolOutputStreamTool"), this),
+  m_streamer(((m_version == 0) ? "AthenaOutputStreamTool" : "AthenaOutputStreamTool"), this),
   m_badIds(),
   
   m_defectRecorded(false),
@@ -148,18 +148,6 @@ StatusCode SCTCalibWriteSvc::initialize(){
   m_attrListColl_BSErr = new CondAttrListCollection(true);
   m_attrListColl_LA = new CondAttrListCollection(true);
 
-  // Get Output Stream tool for writing
-  /* if (m_writeCondObjs) {
-    IToolSvc* toolSvc(0);// Pointer to Tool Service
-    if (service("ToolSvc", toolSvc).isFailure()) return msg(MSG:: ERROR)<< " Tool Service not found "<< endmsg,StatusCode::FAILURE;
-    if (m_version == 0) {
-      sc = toolSvc->retrieveTool("AthenaOutputStreamTool",m_streamName, m_streamer);
-    } else {
-      sc = toolSvc->retrieveTool("AthenaPoolOutputStreamTool",m_streamName, m_streamer);
-    }
-    if (sc.isFailure()) return msg(MSG:: ERROR)<< "Unable to find Athena(Pool)OutputStreamTool" << endmsg, StatusCode::FAILURE;
-  } */
-    
   // Get the IOVRegistrationSvc when needed
   if (m_regIOV) {
     if (service("IOVRegistrationSvc", m_regSvc).isFailure()) return msg(MSG:: ERROR)<< "Unable to find IOVRegistrationSvc "<< endmsg, StatusCode::FAILURE;
diff --git a/InnerDetector/InDetCalibAlgs/TRT_CalibAlgs/share/CollisionCalibTemplate.py b/InnerDetector/InDetCalibAlgs/TRT_CalibAlgs/share/CollisionCalibTemplate.py
index b320e2a8ea750fa0baf4f612f842a2ea0e233b91..fa869c0baab72fcc8125d45ee8fbadc5e1e52553 100644
--- a/InnerDetector/InDetCalibAlgs/TRT_CalibAlgs/share/CollisionCalibTemplate.py
+++ b/InnerDetector/InDetCalibAlgs/TRT_CalibAlgs/share/CollisionCalibTemplate.py
@@ -236,8 +236,8 @@ TRTCalFitTool = FitTool (name = 'TRTCalFitTool')
 ToolSvc += TRTCalFitTool
 print      TRTCalFitTool
 
-from OutputStreamAthenaPool.OutputStreamAthenaPoolConf import AthenaPoolOutputStreamTool
-TRTCondStream=AthenaPoolOutputStreamTool(name="CondStream1",OutputFile="trtcalibout.pool.root")
+from AthenaServices.AthenaServicesConf import AthenaOutputStreamTool
+TRTCondStream=AthenaOutputStreamTool(name="CondStream1",OutputFile="trtcalibout.pool.root")
 
 ToolSvc += TRTCondStream
 print TRTCondStream
diff --git a/InnerDetector/InDetCalibAlgs/TRT_CalibAlgs/share/CollisionTemplate.py b/InnerDetector/InDetCalibAlgs/TRT_CalibAlgs/share/CollisionTemplate.py
index da709c1a861a23bf561e23b3d9761164eeec995f..9ecf0a2894b3232679faf0a718c2d6d2e2ca1dbf 100644
--- a/InnerDetector/InDetCalibAlgs/TRT_CalibAlgs/share/CollisionTemplate.py
+++ b/InnerDetector/InDetCalibAlgs/TRT_CalibAlgs/share/CollisionTemplate.py
@@ -239,8 +239,8 @@ ToolSvc += TRTCalFitTool
 print      TRTCalFitTool
 
 
-from OutputStreamAthenaPool.OutputStreamAthenaPoolConf import AthenaPoolOutputStreamTool
-TRTCondStream=AthenaPoolOutputStreamTool(name="CondStream1",OutputFile="trtcalibout.pool.root")
+from AthenaServices.AthenaServicesConf import AthenaOutputStreamTool
+TRTCondStream=AthenaOutputStreamTool(name="CondStream1",OutputFile="trtcalibout.pool.root")
 
 ToolSvc += TRTCondStream
 print TRTCondStream
diff --git a/InnerDetector/InDetCalibAlgs/TRT_CalibAlgs/share/ConvertTemplate.py b/InnerDetector/InDetCalibAlgs/TRT_CalibAlgs/share/ConvertTemplate.py
index c973d390cf289e28ac89327c5d9f40ca7fc9b855..0ce60e7b536d48dcb42b754266f290816b17dac3 100644
--- a/InnerDetector/InDetCalibAlgs/TRT_CalibAlgs/share/ConvertTemplate.py
+++ b/InnerDetector/InDetCalibAlgs/TRT_CalibAlgs/share/ConvertTemplate.py
@@ -34,8 +34,8 @@ topSequence = AlgSequence()
 
 svcMgr.IOVDbSvc.forceRunNumber=%d
 
-from OutputStreamAthenaPool.OutputStreamAthenaPoolConf import AthenaPoolOutputStreamTool
-TRTCondStream=AthenaPoolOutputStreamTool(name="CondStream1",OutputFile="trtcalibout.pool.root")
+from AthenaServices.AthenaServicesConf import AthenaOutputStreamTool
+TRTCondStream=AthenaOutputStreamTool(name="CondStream1",OutputFile="trtcalibout.pool.root")
 ToolSvc += TRTCondStream
 print TRTCondStream
 
@@ -111,8 +111,8 @@ topSequence = AlgSequence()
 
 svcMgr.IOVDbSvc.forceRunNumber=%d
 
-from OutputStreamAthenaPool.OutputStreamAthenaPoolConf import AthenaPoolOutputStreamTool
-TRTCondStream=AthenaPoolOutputStreamTool(name="CondStream1",OutputFile="trtcalibout.pool.root")
+from OutputStreamAthenaPool.OutputStreamAthenaPoolConf import AthenaOutputStreamTool
+TRTCondStream=AthenaOutputStreamTool(name="CondStream1",OutputFile="trtcalibout.pool.root")
 ToolSvc += TRTCondStream
 print TRTCondStream
 
diff --git a/InnerDetector/InDetCalibAlgs/TRT_CalibAlgs/share/CosmicCalibTemplate.py b/InnerDetector/InDetCalibAlgs/TRT_CalibAlgs/share/CosmicCalibTemplate.py
index be5083a99ef1ff06873ef157508156f3e8832a32..4035684fcbe3930de0eaf16324cb65fcee48541a 100644
--- a/InnerDetector/InDetCalibAlgs/TRT_CalibAlgs/share/CosmicCalibTemplate.py
+++ b/InnerDetector/InDetCalibAlgs/TRT_CalibAlgs/share/CosmicCalibTemplate.py
@@ -232,8 +232,8 @@ TRTCalFitTool = FitTool (name = 'TRTCalFitTool')
 ToolSvc += TRTCalFitTool
 print      TRTCalFitTool
 
-from OutputStreamAthenaPool.OutputStreamAthenaPoolConf import AthenaPoolOutputStreamTool
-TRTCondStream=AthenaPoolOutputStreamTool(name="CondStream1",OutputFile="trtcalibout.pool.root")
+from AthenaServices.AthenaServicesConf import AthenaOutputStreamTool
+TRTCondStream=AthenaOutputStreamTool(name="CondStream1",OutputFile="trtcalibout.pool.root")
 
 ToolSvc += TRTCondStream
 print TRTCondStream
diff --git a/InnerDetector/InDetCalibAlgs/TRT_CalibAlgs/share/CosmicMCCalibTemplate.py b/InnerDetector/InDetCalibAlgs/TRT_CalibAlgs/share/CosmicMCCalibTemplate.py
index 9f2506b96343d1a46fd9026046a0c64b474b17e9..e431010ad87da18219f39280bf2cfb9d9b791854 100644
--- a/InnerDetector/InDetCalibAlgs/TRT_CalibAlgs/share/CosmicMCCalibTemplate.py
+++ b/InnerDetector/InDetCalibAlgs/TRT_CalibAlgs/share/CosmicMCCalibTemplate.py
@@ -227,8 +227,8 @@ TRTCalFitTool = FitTool (name = 'TRTCalFitTool')
 ToolSvc += TRTCalFitTool
 print      TRTCalFitTool
 
-from OutputStreamAthenaPool.OutputStreamAthenaPoolConf import AthenaPoolOutputStreamTool
-TRTCondStream=AthenaPoolOutputStreamTool(name="CondStream1",OutputFile="trtcalibout.pool.root")
+from AthenaServices.AthenaServicesConf import AthenaOutputStreamTool
+TRTCondStream=AthenaOutputStreamTool(name="CondStream1",OutputFile="trtcalibout.pool.root")
 
 ToolSvc += TRTCondStream
 print TRTCondStream
diff --git a/InnerDetector/InDetCalibAlgs/TRT_CalibAlgs/share/CosmicMCTemplate.py b/InnerDetector/InDetCalibAlgs/TRT_CalibAlgs/share/CosmicMCTemplate.py
index 15852049890b76ac6eefc76a90aa140d1427d526..01d9eea4538dd0914b718e49cbbf7d413cb90b94 100644
--- a/InnerDetector/InDetCalibAlgs/TRT_CalibAlgs/share/CosmicMCTemplate.py
+++ b/InnerDetector/InDetCalibAlgs/TRT_CalibAlgs/share/CosmicMCTemplate.py
@@ -231,8 +231,8 @@ TRTCalFitTool = FitTool (name = 'TRTCalFitTool')
 ToolSvc += TRTCalFitTool
 print      TRTCalFitTool
 
-from OutputStreamAthenaPool.OutputStreamAthenaPoolConf import AthenaPoolOutputStreamTool
-TRTCondStream=AthenaPoolOutputStreamTool(name="CondStream1",OutputFile="trtcalibout.pool.root")
+from AthenaServices.AthenaServicesConf import AthenaOutputStreamTool
+TRTCondStream=AthenaOutputStreamTool(name="CondStream1",OutputFile="trtcalibout.pool.root")
 
 ToolSvc += TRTCondStream
 print TRTCondStream
diff --git a/InnerDetector/InDetCalibAlgs/TRT_CalibAlgs/share/CosmicTemplate.py b/InnerDetector/InDetCalibAlgs/TRT_CalibAlgs/share/CosmicTemplate.py
index f4b661d935bdbf5d1ce7605256069f7bea5f7c10..edfb1947d9223e8bf650ec16b17712ad798ee6e4 100644
--- a/InnerDetector/InDetCalibAlgs/TRT_CalibAlgs/share/CosmicTemplate.py
+++ b/InnerDetector/InDetCalibAlgs/TRT_CalibAlgs/share/CosmicTemplate.py
@@ -240,8 +240,8 @@ TRTCalFitTool = FitTool (name = 'TRTCalFitTool')
 ToolSvc += TRTCalFitTool
 print      TRTCalFitTool
 
-from OutputStreamAthenaPool.OutputStreamAthenaPoolConf import AthenaPoolOutputStreamTool
-TRTCondStream=AthenaPoolOutputStreamTool(name="CondStream1",OutputFile="trtcalibout.pool.root")
+from AthenaServices.AthenaServicesConf import AthenaOutputStreamTool
+TRTCondStream=AthenaOutputStreamTool(name="CondStream1",OutputFile="trtcalibout.pool.root")
 
 ToolSvc += TRTCondStream
 print TRTCondStream
diff --git a/InnerDetector/InDetCalibAlgs/TRT_CalibAlgs/share/ESDCalibTemplate.py b/InnerDetector/InDetCalibAlgs/TRT_CalibAlgs/share/ESDCalibTemplate.py
index ed37872288f3f32f53b439b18951ad3cea0bea76..0f6b04163ff3314d32b493ff99038e0154b571c7 100644
--- a/InnerDetector/InDetCalibAlgs/TRT_CalibAlgs/share/ESDCalibTemplate.py
+++ b/InnerDetector/InDetCalibAlgs/TRT_CalibAlgs/share/ESDCalibTemplate.py
@@ -224,8 +224,8 @@ ServiceMgr.EventSelector.InputCollections = [ """
 #--------------------------------------------------------------
 #  TRT Calibration Stuff
 #--------------------------------------------------------------
-from OutputStreamAthenaPool.OutputStreamAthenaPoolConf import AthenaPoolOutputStreamTool
-TRTCondStream=AthenaPoolOutputStreamTool(name="CondStream1",OutputFile="trtcalibout.pool.root")
+from AthenaServices.AthenaServicesConf import AthenaOutputStreamTool
+TRTCondStream=AthenaOutputStreamTool(name="CondStream1",OutputFile="trtcalibout.pool.root")
 ToolSvc += TRTCondStream
 print TRTCondStream
 
diff --git a/InnerDetector/InDetCalibAlgs/TRT_CalibAlgs/share/ESDTemplate.py b/InnerDetector/InDetCalibAlgs/TRT_CalibAlgs/share/ESDTemplate.py
index 0b2b9d9a91207a7a2c6d617ce7c141411b3b889a..1c77bf70406e333b021cd163f51395e482c9fd8d 100644
--- a/InnerDetector/InDetCalibAlgs/TRT_CalibAlgs/share/ESDTemplate.py
+++ b/InnerDetector/InDetCalibAlgs/TRT_CalibAlgs/share/ESDTemplate.py
@@ -254,8 +254,8 @@ ServiceMgr.EventSelector.InputCollections = [ """
 #--------------------------------------------------------------
 #  TRT Calibration Stuff
 #--------------------------------------------------------------
-from OutputStreamAthenaPool.OutputStreamAthenaPoolConf import AthenaPoolOutputStreamTool
-TRTCondStream=AthenaPoolOutputStreamTool(name="CondStream1",OutputFile="trtcalibout.pool.root")
+from AthenaServices.AthenaServicesConf import AthenaOutputStreamTool
+TRTCondStream=AthenaOutputStreamTool(name="CondStream1",OutputFile="trtcalibout.pool.root")
 ToolSvc += TRTCondStream
 print TRTCondStream
 """ 
diff --git a/InnerDetector/InDetCalibAlgs/TRT_CalibAlgs/share/RAWCalibTemplate.py b/InnerDetector/InDetCalibAlgs/TRT_CalibAlgs/share/RAWCalibTemplate.py
index 962f4a8590f7e30fffec8b6d7f1491f90aa2ecbe..371c28d17808277fee10433e2deb65d61130a78f 100644
--- a/InnerDetector/InDetCalibAlgs/TRT_CalibAlgs/share/RAWCalibTemplate.py
+++ b/InnerDetector/InDetCalibAlgs/TRT_CalibAlgs/share/RAWCalibTemplate.py
@@ -29,8 +29,8 @@ TRTCalFitTool = FitTool (name = 'TRTCalFitTool')
 ToolSvc += TRTCalFitTool
 print      TRTCalFitTool
 
-from OutputStreamAthenaPool.OutputStreamAthenaPoolConf import AthenaPoolOutputStreamTool
-TRTCondStream=AthenaPoolOutputStreamTool(name="CondStream1",OutputFile="trtcalibout.pool.root")
+from AthenaServices.AthenaServicesConf import AthenaOutputStreamTool
+TRTCondStream=AthenaOutputStreamTool(name="CondStream1",OutputFile="trtcalibout.pool.root")
 
 ToolSvc += TRTCondStream
 print TRTCondStream
diff --git a/InnerDetector/InDetCalibAlgs/TRT_CalibAlgs/share/RAWHITemplate.py b/InnerDetector/InDetCalibAlgs/TRT_CalibAlgs/share/RAWHITemplate.py
index 3dee72da556e9ed55fdec38eb2708517991fa0c7..b84db4fe807a80a7cfc55bd756c501610b375f2b 100644
--- a/InnerDetector/InDetCalibAlgs/TRT_CalibAlgs/share/RAWHITemplate.py
+++ b/InnerDetector/InDetCalibAlgs/TRT_CalibAlgs/share/RAWHITemplate.py
@@ -295,8 +295,8 @@ ToolSvc += TRTCalFitTool
 print      TRTCalFitTool
 
 
-from OutputStreamAthenaPool.OutputStreamAthenaPoolConf import AthenaPoolOutputStreamTool
-TRTCondStream=AthenaPoolOutputStreamTool(name="CondStream1",OutputFile="trtcalibout.pool.root")
+from AthenaServices.AthenaServicesConf import AthenaOutputStreamTool
+TRTCondStream=AthenaOutputStreamTool(name="CondStream1",OutputFile="trtcalibout.pool.root")
 
 ToolSvc += TRTCondStream
 print TRTCondStream
diff --git a/InnerDetector/InDetCalibAlgs/TRT_CalibAlgs/share/RAWTemplate.py b/InnerDetector/InDetCalibAlgs/TRT_CalibAlgs/share/RAWTemplate.py
index 8bda9e2882ab74edcb032797d26f950d857eb1d5..dc9f739953592d1e47c5b836936f9ef61c753785 100644
--- a/InnerDetector/InDetCalibAlgs/TRT_CalibAlgs/share/RAWTemplate.py
+++ b/InnerDetector/InDetCalibAlgs/TRT_CalibAlgs/share/RAWTemplate.py
@@ -21,8 +21,8 @@ ToolSvc += TRTCalFitTool
 print      TRTCalFitTool
 
 
-from OutputStreamAthenaPool.OutputStreamAthenaPoolConf import AthenaPoolOutputStreamTool
-TRTCondStream=AthenaPoolOutputStreamTool(name="CondStream1",OutputFile="trtcalibout.pool.root")
+from AthenaServices.AthenaServicesConf import AthenaOutputStreamTool
+TRTCondStream=AthenaOutputStreamTool(name="CondStream1",OutputFile="trtcalibout.pool.root")
 
 ToolSvc += TRTCondStream
 print TRTCondStream
diff --git a/InnerDetector/InDetCalibAlgs/TRT_CalibAlgs/share/SingleBeamTemplate.py b/InnerDetector/InDetCalibAlgs/TRT_CalibAlgs/share/SingleBeamTemplate.py
index b19dc2a2e3617a696fbbf9b54e4d74bac44b7bd1..4e6e6e4fa664543d5ec9a050b4db1fe52bb5182d 100644
--- a/InnerDetector/InDetCalibAlgs/TRT_CalibAlgs/share/SingleBeamTemplate.py
+++ b/InnerDetector/InDetCalibAlgs/TRT_CalibAlgs/share/SingleBeamTemplate.py
@@ -202,8 +202,8 @@ ToolSvc += TRTCalFitTool
 print      TRTCalFitTool
 
 
-from OutputStreamAthenaPool.OutputStreamAthenaPoolConf import AthenaPoolOutputStreamTool
-TRTCondStream=AthenaPoolOutputStreamTool(name="CondStream1",OutputFile="trtcalibout.pool.root")
+from AthenaServices.AthenaServicesConf import AthenaOutputStreamTool
+TRTCondStream=AthenaOutputStreamTool(name="CondStream1",OutputFile="trtcalibout.pool.root")
 
 ToolSvc += TRTCondStream
 print TRTCondStream
diff --git a/InnerDetector/InDetCalibAlgs/TRT_CalibAlgs/share/joboptionsFullReco.py b/InnerDetector/InDetCalibAlgs/TRT_CalibAlgs/share/joboptionsFullReco.py
index 276d3251b158eff7d3541e9de83633d2e0d9b620..fa7162ef2103b8155dbb2d5868838e55f031e3f9 100755
--- a/InnerDetector/InDetCalibAlgs/TRT_CalibAlgs/share/joboptionsFullReco.py
+++ b/InnerDetector/InDetCalibAlgs/TRT_CalibAlgs/share/joboptionsFullReco.py
@@ -222,8 +222,8 @@ ToolSvc += TRTCalFitTool
 print      TRTCalFitTool
 
 
-from OutputStreamAthenaPool.OutputStreamAthenaPoolConf import AthenaPoolOutputStreamTool
-TRTCondStream=AthenaPoolOutputStreamTool(name="CondStream1",OutputFile="trtcalibout.pool.root")
+from AthenaServices.AthenaServicesConf import AthenaOutputStreamTool
+TRTCondStream=AthenaOutputStreamTool(name="CondStream1",OutputFile="trtcalibout.pool.root")
 
 ToolSvc += TRTCondStream
 print TRTCondStream
diff --git a/InnerDetector/InDetCalibAlgs/TRT_CalibAlgs/share/joboptionsRefitting.py b/InnerDetector/InDetCalibAlgs/TRT_CalibAlgs/share/joboptionsRefitting.py
index fe76aa8e13884a9fbc06f2b096b1e1e6becd6a1b..4de2facdd7dfe6e2e6bc3c22a630141b3a358db0 100644
--- a/InnerDetector/InDetCalibAlgs/TRT_CalibAlgs/share/joboptionsRefitting.py
+++ b/InnerDetector/InDetCalibAlgs/TRT_CalibAlgs/share/joboptionsRefitting.py
@@ -223,8 +223,8 @@ ToolSvc += TRTCalFitTool
 print      TRTCalFitTool
 
 
-from OutputStreamAthenaPool.OutputStreamAthenaPoolConf import AthenaPoolOutputStreamTool
-TRTCondStream=AthenaPoolOutputStreamTool(name="CondStream1",OutputFile="trtcalibout.pool.root")
+from AthenaServices.AthenaServicesConf import AthenaOutputStreamTool
+TRTCondStream=AthenaOutputStreamTool(name="CondStream1",OutputFile="trtcalibout.pool.root")
 
 ToolSvc += TRTCondStream
 print TRTCondStream
diff --git a/InnerDetector/InDetConditions/PixelConditionsTools/share/PixelDCSTestWrite.py b/InnerDetector/InDetConditions/PixelConditionsTools/share/PixelDCSTestWrite.py
index 72847fc7933cb30aa0033c454fde312df0c2f31d..0bd9c59152c874e30b39866c1d680b2fe6247006 100644
--- a/InnerDetector/InDetConditions/PixelConditionsTools/share/PixelDCSTestWrite.py
+++ b/InnerDetector/InDetConditions/PixelConditionsTools/share/PixelDCSTestWrite.py
@@ -74,11 +74,8 @@ from PoolSvc.PoolSvcConf import PoolSvc
 ServiceMgr += PoolSvc( DbOpen = "update" )
 
 
-#from OutputStreamAthenaPool.OutputStreamAthenaPoolConf import AthenaPoolOutputStreamTool
-#CondStreamPixelDCSTest = AthenaPoolOutputStreamTool("CondStreamPixelDCSTest",OutputFile = "SimplePoolFile.root",OutputLevel = DEBUG)
-
 from AthenaServices.AthenaServicesConf import AthenaOutputStreamTool
-CondStreamPixelDCSTest = AthenaOutputStreamTool("CondStreamPixelDCSTest",OutputFile = "SimplePoolFile.root",OutputLevel = MyOutPut)
+CondStreamPixelDCSTest = AthenaOutputStreamTool("CondStreamPixelDCSTest",OutputFile = "SimplePoolFile.root",OutputLevel = DEBUG)
 
 ToolSvc += CondStreamPixelDCSTest
 
diff --git a/InnerDetector/InDetConditions/PixelConditionsTools/src/PixelDCSTool.cxx b/InnerDetector/InDetConditions/PixelConditionsTools/src/PixelDCSTool.cxx
index 6ecd8153b201325b01333b5abe8ba80ea5d35ca9..44108eaab6c6bd56c924ff4b8d241e32bff1826d 100644
--- a/InnerDetector/InDetConditions/PixelConditionsTools/src/PixelDCSTool.cxx
+++ b/InnerDetector/InDetConditions/PixelConditionsTools/src/PixelDCSTool.cxx
@@ -41,7 +41,7 @@ PixelDCSTool::PixelDCSTool(const std::string& type, const std::string& name, con
   // m_IOVRegistrationSvc(0),
   m_IOVRegistrationSvc("IOVRegistrationSvc",name),
   //m_streamer(0),
-  // m_streamer("AthenaPoolOutputStreamTool/CondStreamPixelDCSTest"),
+  // m_streamer("AthenaOutputStreamTool/CondStreamPixelDCSTest"),
   m_streamer("AthenaOutputStreamTool/CondStreamPixelDCSTest"),
   m_pixman(0),
   m_pixid(0),
@@ -153,10 +153,10 @@ StatusCode PixelDCSTool::initialize()
   //sc = m_toolsvc->retrieveTool("AthenaOutputStreamTool","CondStreamPixelDCSTest", m_streamer);
   sc = m_streamer.retrieve();
   if(sc.isFailure()){ 
-    if (msgLvl(MSG::FATAL))msg(MSG::FATAL) << "Unable to retrieve AthenaPoolOutputStreamTool" << endmsg;
+    if (msgLvl(MSG::FATAL))msg(MSG::FATAL) << "Unable to retrieve AthenaOutputStreamTool" << endmsg;
     return StatusCode::FAILURE; 
   }
-  if (msgLvl(MSG::DEBUG))msg(MSG::DEBUG) << "AthenaPoolOutputStreamTool retrieved" << endmsg;
+  if (msgLvl(MSG::DEBUG))msg(MSG::DEBUG) << "AthenaOutputStreamTool retrieved" << endmsg;
 
 
 
diff --git a/InnerDetector/InDetConditions/SCT_ConditionsServices/share/testMonRead.py b/InnerDetector/InDetConditions/SCT_ConditionsServices/share/testMonRead.py
index 91bcf145df26c5967c6e703ce6fcfeea1a91a561..b72f359473c8d86892a22932449b998863bc3297 100644
--- a/InnerDetector/InDetConditions/SCT_ConditionsServices/share/testMonRead.py
+++ b/InnerDetector/InDetConditions/SCT_ConditionsServices/share/testMonRead.py
@@ -150,7 +150,7 @@ theApp.EvtMax                       = 10
 
 from AthenaCommon.AppMgr import ToolSvc
 SCT_MonitorConditions.StreamName = "CondStream2"
-from OutputStreamAthenaPool.OutputStreamAthenaPoolConf import AthenaPoolOutputStreamTool
-ToolSvc += AthenaPoolOutputStreamTool("CondStream2",OutputFile = "SimplePoolFile.root")
+from AthenaServices.AthenaServicesConf import AthenaOutputStreamTool
+ToolSvc += AthenaOutputStreamTool("CondStream2",OutputFile = "SimplePoolFile.root")
 
 MessageSvc.OutputLevel = INFO
diff --git a/InnerDetector/InDetConditions/SCT_ConditionsServices/share/testMonWrite.py b/InnerDetector/InDetConditions/SCT_ConditionsServices/share/testMonWrite.py
index 7080ad4241fbcebda700e3975e26326faa798344..2821b9bbc9ed4b6012f0b126516d8a7fa231a407 100644
--- a/InnerDetector/InDetConditions/SCT_ConditionsServices/share/testMonWrite.py
+++ b/InnerDetector/InDetConditions/SCT_ConditionsServices/share/testMonWrite.py
@@ -143,7 +143,7 @@ theApp.EvtMax                       = 10
 
 from AthenaCommon.AppMgr import ToolSvc
 SCT_MonitorConditions.StreamName = "CondStream2"
-from OutputStreamAthenaPool.OutputStreamAthenaPoolConf import AthenaPoolOutputStreamTool
-ToolSvc += AthenaPoolOutputStreamTool("CondStream2",OutputFile = "SimplePoolFile.root")
+from AthenaServices.AthenaServicesConf import AthenaOutputStreamTool
+ToolSvc += AthenaOutputStreamTool("CondStream2",OutputFile = "SimplePoolFile.root")
 
 MessageSvc.OutputLevel = DEBUG
diff --git a/InnerDetector/InDetConditions/TRT_ConditionsServices/src/TRT_AlignDbSvc.cxx b/InnerDetector/InDetConditions/TRT_ConditionsServices/src/TRT_AlignDbSvc.cxx
index 20545c2c027415c3f941ad2b0f4a4e467c5c4d52..8e116c54d972746a5210d0c048c84aa9ee4cc576 100755
--- a/InnerDetector/InDetConditions/TRT_ConditionsServices/src/TRT_AlignDbSvc.cxx
+++ b/InnerDetector/InDetConditions/TRT_ConditionsServices/src/TRT_AlignDbSvc.cxx
@@ -42,7 +42,7 @@ TRT_AlignDbSvc::TRT_AlignDbSvc( const std::string& name, ISvcLocator* pSvcLocato
     m_alignroot("/TRT/Align"),
     m_alignString("AL"),
     m_par_alitextfile(""),
-    m_streamer("AthenaPoolOutputStreamTool/CondStream1"),
+    m_streamer("AthenaOutputStreamTool/CondStream1"),
     m_alignDBprefix("/TRT/Align/"),
     m_dynamicDB(false),
     m_forceUserDBConfig(false)
diff --git a/InnerDetector/InDetConditions/TRT_ConditionsServices/src/TRT_CalDbSvc.cxx b/InnerDetector/InDetConditions/TRT_ConditionsServices/src/TRT_CalDbSvc.cxx
index 08906238283de2d606ec2db350017ab9cb4105d1..29053d0b4b0b1d463481903426b442ce304328ac 100644
--- a/InnerDetector/InDetConditions/TRT_ConditionsServices/src/TRT_CalDbSvc.cxx
+++ b/InnerDetector/InDetConditions/TRT_ConditionsServices/src/TRT_CalDbSvc.cxx
@@ -33,7 +33,7 @@ TRT_CalDbSvc::TRT_CalDbSvc( const std::string& name, ISvcLocator* pSvcLocator )
     m_par_t0containerkey("/TRT/Calib/T0"),
     m_par_caltextfile(""),
     m_trtid(0),
-    m_streamer("AthenaPoolOutputStreamTool/CondStream1"),
+    m_streamer("AthenaOutputStreamTool/CondStream1"),
     m_detstore("DetectorStore",name),
     m_condSvc("CondSvc",name),
     m_useCachedPtr(false)
diff --git a/InnerDetector/InDetConditions/TRT_ConditionsServices/src/TRT_StrawAlignDbSvc.cxx b/InnerDetector/InDetConditions/TRT_ConditionsServices/src/TRT_StrawAlignDbSvc.cxx
index 6570e6dea2866233f820905d6b74e940d2468e15..2cbafaec79374bfe23ab0c291a9ff9fea7c14936 100755
--- a/InnerDetector/InDetConditions/TRT_ConditionsServices/src/TRT_StrawAlignDbSvc.cxx
+++ b/InnerDetector/InDetConditions/TRT_ConditionsServices/src/TRT_StrawAlignDbSvc.cxx
@@ -32,7 +32,7 @@ TRT_StrawAlignDbSvc::TRT_StrawAlignDbSvc( const std::string& name,
     m_par_forcecallback(false),
     m_trtid(0),
     m_trtman(0),
-    m_streamer("AthenaPoolOutputStreamTool/CondStream1")
+    m_streamer("AthenaOutputStreamTool/CondStream1")
 {
   declareProperty("StrawTextFile",m_par_strawtextfile);
   declareProperty("ForceCallback",m_par_forcecallback);
diff --git a/InnerDetector/InDetExample/InDetAlignExample/share/InDetAlignCog.py b/InnerDetector/InDetExample/InDetAlignExample/share/InDetAlignCog.py
index ed2efe8266418c0055e4a86aea353b5833ee2370..f796a570966f969b4ddb6d1baad510b7cffffa9c 100644
--- a/InnerDetector/InDetExample/InDetAlignExample/share/InDetAlignCog.py
+++ b/InnerDetector/InDetExample/InDetAlignExample/share/InDetAlignCog.py
@@ -93,8 +93,8 @@ ServiceMgr += TRT_AlignDbSvc()
 
 # Needed for database-, Pool- and AlignableTransforms-Handling
 include ( "DetDescrCondAthenaPool/DetDescrCondAthenaPool_joboptions.py" )
-from OutputStreamAthenaPool.OutputStreamAthenaPoolConf import AthenaPoolOutputStreamTool
-InDetCondStream = AthenaPoolOutputStreamTool( name="CondStream1",OutputFile=outFilename )
+from AthenaServices.AthenaServicesConf import AthenaOutputStreamTool
+InDetCondStream = AthenaOutputStreamTool( name="CondStream1",OutputFile=outFilename )
 ToolSvc += InDetCondStream
 print InDetCondStream
 
diff --git a/InnerDetector/InDetRecTools/PixelToTPIDTool/share/PixeldEdxWriteCool.py b/InnerDetector/InDetRecTools/PixelToTPIDTool/share/PixeldEdxWriteCool.py
index 4a655816a845f456378a6b4de142381f26f30258..d8f6a3b29ab1d86e51734b3564247a69172b8ac0 100755
--- a/InnerDetector/InDetRecTools/PixelToTPIDTool/share/PixeldEdxWriteCool.py
+++ b/InnerDetector/InDetRecTools/PixelToTPIDTool/share/PixeldEdxWriteCool.py
@@ -132,6 +132,6 @@ svcMgr.AthenaSealSvc.CheckDictionary = TRUE
 theApp.OutStream = []
 
 from AthenaCommon.AppMgr import ToolSvc
-mytestalg.StreamName = "AthenaPoolOutputStreamTool/CondStream2"
-from OutputStreamAthenaPool.OutputStreamAthenaPoolConf import AthenaPoolOutputStreamTool
-ToolSvc += AthenaPoolOutputStreamTool("CondStream2",OutputFile = "SimplePoolFile.root")
+mytestalg.StreamName = "AthenaOutputStreamTool/CondStream2"
+from AthenaServices.AthenaServicesConf import AthenaOutputStreamTool
+ToolSvc += AthenaOutputStreamTool("CondStream2",OutputFile = "SimplePoolFile.root")
diff --git a/LArCalorimeter/LArAlignment/LArAlignmentAlgs/src/LArAlignDbAlg.cxx b/LArCalorimeter/LArAlignment/LArAlignmentAlgs/src/LArAlignDbAlg.cxx
index beb2619fd972d248f8e0b200f0b21c9cfd46e3c6..c3eb726a91fa74ddacacd33c681d0f2354df290c 100755
--- a/LArCalorimeter/LArAlignment/LArAlignmentAlgs/src/LArAlignDbAlg.cxx
+++ b/LArCalorimeter/LArAlignment/LArAlignmentAlgs/src/LArAlignDbAlg.cxx
@@ -29,7 +29,7 @@ LArAlignDbAlg::LArAlignDbAlg(const std::string& name, ISvcLocator* pSvcLocator)
     m_outpTag("LARAlign-TEST"),
     m_evt(0),
     m_regSvc("IOVRegistrationSvc",name),
-    m_streamer("AthenaPoolOutputStreamTool")
+    m_streamer("AthenaOutputStreamTool")
 {
     declareProperty("WriteCondObjs",     m_writeCondObjs);
     declareProperty("RegisterIOV",       m_regIOV);
diff --git a/LArCalorimeter/LArExample/TestLArHardwareID/share/reinitTTMap_poolTestWrite_jobOptions.py b/LArCalorimeter/LArExample/TestLArHardwareID/share/reinitTTMap_poolTestWrite_jobOptions.py
index 77dec33e3a31f4014e5c5dfee56fdfd4296463bf..735a58642933e45cc36a0159d399534c2fac86fe 100755
--- a/LArCalorimeter/LArExample/TestLArHardwareID/share/reinitTTMap_poolTestWrite_jobOptions.py
+++ b/LArCalorimeter/LArExample/TestLArHardwareID/share/reinitTTMap_poolTestWrite_jobOptions.py
@@ -65,8 +65,8 @@ import AthenaPoolCnvSvc.WriteAthenaPool
 theApp.OutStream = []
 
 #from AthenaCommon.AppMgr import ToolSvc
-from OutputStreamAthenaPool.OutputStreamAthenaPoolConf import AthenaPoolOutputStreamTool
-ToolSvc += AthenaPoolOutputStreamTool("CondStream1", OutputFile = "LArTTCellMap-HadFcalFix.pool.root")
+from AthenaServices.AthenaServicesConf import AthenaOutputStreamTool
+ToolSvc += AthenaOutputStreamTool("CondStream1", OutputFile = "LArTTCellMap-HadFcalFix.pool.root")
 
 #--------------------------------------------------------------
 # Set output level threshold (2=DEBUG, 3=INFO, 4=WARNING, 5=ERROR, 6=FATAL )
diff --git a/LArCalorimeter/LArExample/TestLArHardwareID/src/reinitTTMap_Algo.cxx b/LArCalorimeter/LArExample/TestLArHardwareID/src/reinitTTMap_Algo.cxx
index 18da32ab53f171a9ae5e5051becc1fe95e360118..d4f382120608b0c87acd6e0358f091813aa5b97b 100644
--- a/LArCalorimeter/LArExample/TestLArHardwareID/src/reinitTTMap_Algo.cxx
+++ b/LArCalorimeter/LArExample/TestLArHardwareID/src/reinitTTMap_Algo.cxx
@@ -85,7 +85,7 @@ StatusCode reinitTTMap_Algo::initialize(){
   // get the output stream tool for writing
   IToolSvc* toolSvc = nullptr;
   ATH_CHECK( service("ToolSvc", toolSvc) );
-  ATH_CHECK( toolSvc->retrieveTool("AthenaPoolOutputStreamTool", m_streamName, m_streamer) );
+  ATH_CHECK( toolSvc->retrieveTool("AthenaOutputStreamTool", m_streamName, m_streamer) );
   
   return StatusCode::SUCCESS;
 }
diff --git a/PhysicsAnalysis/DPDUtils/share/AODtoDPDZeeFilter.py b/PhysicsAnalysis/DPDUtils/share/AODtoDPDZeeFilter.py
index 0438941929f8d29508278d121190d147ba6d63e1..9afd072bb768adeb4647959f729b166db7d1c0bf 100644
--- a/PhysicsAnalysis/DPDUtils/share/AODtoDPDZeeFilter.py
+++ b/PhysicsAnalysis/DPDUtils/share/AODtoDPDZeeFilter.py
@@ -60,8 +60,6 @@ include( "DPDUtils/ThinningSvcWrapper_jobOptions.py" )
 #--------------------------------------------------------------
 ###############################################################
 
-from AthenaPoolCnvSvc.WriteAthenaPool import AthenaPoolOutputStream
-from OutputStreamAthenaPool.OutputStreamAthenaPoolConf import AthenaPoolOutputStreamTool
 from OutputStreamAthenaPool.MultipleStreamManager import MSMgr
 StreamDPD = MSMgr.NewStream("StreamDPD","SkimmedThin.AOD.pool.root")
 
diff --git a/PhysicsAnalysis/DPDUtils/share/AODtoDPD_PhotonFilter.py b/PhysicsAnalysis/DPDUtils/share/AODtoDPD_PhotonFilter.py
index 89f9dff11564ef2736446ab724ad5986ba3e04d9..ecb16d9aa2898046c5f2c2dc08610d7ffc1e9055 100644
--- a/PhysicsAnalysis/DPDUtils/share/AODtoDPD_PhotonFilter.py
+++ b/PhysicsAnalysis/DPDUtils/share/AODtoDPD_PhotonFilter.py
@@ -81,8 +81,6 @@ include( "DPDUtils/ThinningSvcWrapper_jobOptions.py" )
 #--------------------------------------------------------------
 ###############################################################
 
-from AthenaPoolCnvSvc.WriteAthenaPool import AthenaPoolOutputStream
-from OutputStreamAthenaPool.OutputStreamAthenaPoolConf import AthenaPoolOutputStreamTool
 from OutputStreamAthenaPool.MultipleStreamManager import MSMgr
 StreamDPD = MSMgr.NewStream("StreamDPD","SkimmedThin.AOD.pool.root")
 
diff --git a/PhysicsAnalysis/DPDUtils/share/AODtoDPD_jobOptions.py b/PhysicsAnalysis/DPDUtils/share/AODtoDPD_jobOptions.py
index 8fea8f222549141509609ed46466e19dbda574b4..18ec2e37dca049dbf76111830f6331a52d5260d8 100644
--- a/PhysicsAnalysis/DPDUtils/share/AODtoDPD_jobOptions.py
+++ b/PhysicsAnalysis/DPDUtils/share/AODtoDPD_jobOptions.py
@@ -26,7 +26,7 @@ StreamDPD.ItemList += ['Rec::TrackParticleContainer#StacoTrackParticles']
 StreamDPD.ItemList += ['TruthParticleContainer#SpclMC']
 StreamDPD.ItemList += ['McEventCollection#GEN_AOD']
 
-StreamDPD.WritingTool = "AthenaPoolOutputStreamTool" 
+StreamDPD.WritingTool = "AthenaOutputStreamTool" 
 StreamDPD.ForceRead = True
 StreamDPD.OutputFile = "DPD.pool.root"
 
diff --git a/PhysicsAnalysis/DPDUtils/share/ESDtoDPD_PhotonFilter.py b/PhysicsAnalysis/DPDUtils/share/ESDtoDPD_PhotonFilter.py
index f28b0cb93b8d53c6309807561aa16d7661ae44f9..a1fc5402a45f4786d1979c03ccfba80caa596103 100644
--- a/PhysicsAnalysis/DPDUtils/share/ESDtoDPD_PhotonFilter.py
+++ b/PhysicsAnalysis/DPDUtils/share/ESDtoDPD_PhotonFilter.py
@@ -140,8 +140,6 @@ include( "DPDUtils/ThinningSvcWrapper_jobOptions.py" )
 #--------------------------------------------------------------
 ###############################################################
 
-from AthenaPoolCnvSvc.WriteAthenaPool import AthenaPoolOutputStream
-from OutputStreamAthenaPool.OutputStreamAthenaPoolConf import AthenaPoolOutputStreamTool
 from OutputStreamAthenaPool.MultipleStreamManager import MSMgr
 StreamDPD = MSMgr.NewStream("StreamESD","SkimmedThin.ESD.pool.root")
 
diff --git a/Reconstruction/RecExample/RecExCommon/share/RecExCommon_topOptions.py b/Reconstruction/RecExample/RecExCommon/share/RecExCommon_topOptions.py
old mode 100644
new mode 100755
index f447960d93542810e59bb46b146028af4e984e4c..d59cba6d3e74165f99a8a019ca117a345a391c82
--- a/Reconstruction/RecExample/RecExCommon/share/RecExCommon_topOptions.py
+++ b/Reconstruction/RecExample/RecExCommon/share/RecExCommon_topOptions.py
@@ -944,14 +944,6 @@ if rec.doWriteRDO():
     from OutputStreamAthenaPool.MultipleStreamManager import MSMgr
     StreamRDO_Augmented=MSMgr.NewPoolStream("StreamRDO",athenaCommonFlags.PoolRDOOutput(),asAlg=True)
 
-    #topSequence+=AthenaOutputStream("StreamRDO",
-                                 #>=12.3.0 StreamAOD.EvtConversionSvc = "AthenaPoolCnvSvc"
-    #                             WritingTool = "AthenaPoolOutputStreamTool",
-                                 #force read of input data to write in output data
-    #                             ForceRead = True,
-                                 # Define the output file name
-    #                             OutputFile    = athenaCommonFlags.PoolRDOOutput())
-
     if rec.doFileMetaData():
         StreamRDO_Augmented.AddMetaDataItem(recoMetadataItemList())
 
diff --git a/Reconstruction/RecExample/RecExTB/share/RecExTB_H6_jobOptions.py b/Reconstruction/RecExample/RecExTB/share/RecExTB_H6_jobOptions.py
index e0517e407d1752467af40b5fd942cea5dc49a2c0..958c19e415a8d285e72a9c32c36a2d4acce25167 100755
--- a/Reconstruction/RecExample/RecExTB/share/RecExTB_H6_jobOptions.py
+++ b/Reconstruction/RecExample/RecExTB/share/RecExTB_H6_jobOptions.py
@@ -1056,7 +1056,7 @@ if doTBNoiseWrite:
 #--------------------------------------------------------------
 if doWriteESD:
     import AthenaPoolCnvSvc.WriteAthenaPool
-    topSequence += CfgMgr.AthenaOutputStream("OutStream", WritingTool="AthenaPoolOutputStreamTool")
+    topSequence += CfgMgr.AthenaOutputStream("OutStream", WritingTool="AthenaOutputStreamTool")
     Stream1 = topSequence.OutStream
     Stream1.OutputFile    = ESDOutputFileName
     svcMgr.AthenaSealSvc.CheckDictionary = True
diff --git a/Trigger/TrigT1/TrigT1CaloCalibUtils/share/L1CaloPedestalMaker_jobOptions.py b/Trigger/TrigT1/TrigT1CaloCalibUtils/share/L1CaloPedestalMaker_jobOptions.py
index 6ac5dce5fa67762ec4c11476f7d02a4e15b06729..a939914a7c0cd48f5c5d2730aedd90db823277ad 100755
--- a/Trigger/TrigT1/TrigT1CaloCalibUtils/share/L1CaloPedestalMaker_jobOptions.py
+++ b/Trigger/TrigT1/TrigT1CaloCalibUtils/share/L1CaloPedestalMaker_jobOptions.py
@@ -95,8 +95,8 @@ if L1CaloPedestalsMaker_Store2COOL:
 	theApp.OutStream = []
 
 	from AthenaCommon.AppMgr import ToolSvc
-	from OutputStreamAthenaPool.OutputStreamAthenaPoolConf import AthenaPoolOutputStreamTool
-	ToolSvc += AthenaPoolOutputStreamTool("COOLStream", OutputFile = "cool.pool.root")
+	from AthenaServices.AthenaServicesConf import AthenaOutputStreamTool
+	ToolSvc += AthenaOutputStreamTool("COOLStream", OutputFile = "cool.pool.root")
 
 
 #--------------------------------------------------------------
diff --git a/Trigger/TrigT1/TrigT1CaloCalibUtils/src/L1CaloPedestalMaker.cxx b/Trigger/TrigT1/TrigT1CaloCalibUtils/src/L1CaloPedestalMaker.cxx
index 72cc6b84a7525172df09bdb10295b253d971c772..2d047d787456ea382fdc5ad83edd971c612033df 100755
--- a/Trigger/TrigT1/TrigT1CaloCalibUtils/src/L1CaloPedestalMaker.cxx
+++ b/Trigger/TrigT1/TrigT1CaloCalibUtils/src/L1CaloPedestalMaker.cxx
@@ -109,7 +109,7 @@ StatusCode L1CaloPedestalMaker::initialize()
 	 	}
 
 	 	if (m_bStore2POOL) {
-	 		sc = toolSvc->retrieveTool("AthenaPoolOutputStreamTool", m_streamName, m_streamer);
+	 		sc = toolSvc->retrieveTool("AthenaOutputStreamTool", m_streamName, m_streamer);
 			if (sc.isFailure()) {
 			    ATH_MSG_INFO( "Unable to find AthenaOutputStreamTool" );
 			    return StatusCode::FAILURE;
diff --git a/Trigger/TriggerSimulation/TrigSimTransforms/share/MergingEventLoopMgr_TriggerBSandRDOtoRDO.py b/Trigger/TriggerSimulation/TrigSimTransforms/share/MergingEventLoopMgr_TriggerBSandRDOtoRDO.py
index fb4e927b5570bca0866a20d2cd7cd6c195b18feb..8dbadf38c4e7af3134f0ffebd6c91913e59310b4 100644
--- a/Trigger/TriggerSimulation/TrigSimTransforms/share/MergingEventLoopMgr_TriggerBSandRDOtoRDO.py
+++ b/Trigger/TriggerSimulation/TrigSimTransforms/share/MergingEventLoopMgr_TriggerBSandRDOtoRDO.py
@@ -174,7 +174,7 @@ svcMgr.MergingEventLoopMgr.ShareSecondaryProxies = True
 
 
 #-------------------------------------------------------------------------------
-# AthenaPoolOutputStreamTool
+# AthenaOutputStreamTool
 #-------------------------------------------------------------------------------
 #http://acode-browser.usatlas.bnl.gov/lxr/source/atlas/Control/AthenaExamples/AthExThinning/share/WriteSlimmedData_jobOptions.py
 #import AthenaPoolCnvSvc.WriteAthenaPool