diff --git a/Control/AthenaMP/python/PyComps.py b/Control/AthenaMP/python/PyComps.py
index e4be8e6d52b566f2b33f77f695ac896536708b33..0fa82b65e82827588b7fa55a64b62ae7aca1e4e6 100644
--- a/Control/AthenaMP/python/PyComps.py
+++ b/Control/AthenaMP/python/PyComps.py
@@ -163,12 +163,8 @@ def setupEvtSelForSeekOps():
    collectionType = svcMgr.EventSelector.properties()["CollectionType"]
 
    if collectionType in ( "ImplicitROOT", Configurable.propertyNoValue, ):
-      svcMgr.EventSelector.CollectionType = "SeekableROOT"
       msg.info   ( "=> Seeking enabled." )
 
-   elif collectionType in ( "SeekableROOT", ):
-      msg.verbose( "=> Seeking already enabled." )
-
    else:
       msg.warning( "Input seeking is not compatible with collection type of %s",
                    svcMgr.EventSelector.properties()["CollectionType"] )
diff --git a/Control/AthenaServices/python/PyAthenaEventLoopMgr.py b/Control/AthenaServices/python/PyAthenaEventLoopMgr.py
index 922a536f6276df9fd341a8a942ecb0b6966b1b84..ec08cccd8c0ace2425005d2a5d5b5926fcf3f904 100644
--- a/Control/AthenaServices/python/PyAthenaEventLoopMgr.py
+++ b/Control/AthenaServices/python/PyAthenaEventLoopMgr.py
@@ -40,12 +40,8 @@ def enable_seeking(silent=False):
    collectionType = svcMgr.EventSelector.properties()["CollectionType"]
 
    if collectionType in ( "ImplicitROOT", Configurable.propertyNoValue, ):
-      svcMgr.EventSelector.CollectionType = "SeekableROOT"
       msg.info   ( "=> Seeking enabled." )
 
-   elif collectionType in ( "SeekableROOT", ):
-      msg.verbose( "=> Seeking already enabled." )
-
    else:
       msg.warning( "Input seeking is not compatible with collection type of %s",
                    svcMgr.EventSelector.properties()["CollectionType"] )
diff --git a/Control/AthenaServices/share/MultiplePassWithAlgFilter_test.py b/Control/AthenaServices/share/MultiplePassWithAlgFilter_test.py
index 3c8fd8e1f734897d772c9c0b62f5c23181516ed6..77f66d911034ad3cf0d0f14b9de89db931acc75d 100644
--- a/Control/AthenaServices/share/MultiplePassWithAlgFilter_test.py
+++ b/Control/AthenaServices/share/MultiplePassWithAlgFilter_test.py
@@ -40,8 +40,6 @@ ServiceMgr.MultipleEventLoopMgr.ToBeReinitialized = ["StoreGateSvc", "DetectorSt
 #
 ServiceMgr.EventSelector.InputCollections = [
     "root://eosatlas.cern.ch//eos/atlas/atlascerngroupdisk/proj-sit/digitization/RTT/mc10/mc10_7TeV.005008.CavernInput.merge.HITS.e4_e607_s951_s952_tid170551_00/HITS.170551._000011.pool.root.1" ]
-# Set up for seeking.
-ServiceMgr.EventSelector.CollectionType = "SeekableROOT"
 
 include( "AthenaPoolCnvSvc/WriteAthenaPool_jobOptions.py" )
 from AthenaPoolCnvSvc.WriteAthenaPool import AthenaPoolOutputStream
diff --git a/Control/AthenaServices/share/MultiplePass_test.py b/Control/AthenaServices/share/MultiplePass_test.py
index 28634596c971c951ff6168b36830aa6e6a522d3d..7764d950bcdfa0ab37ca817f7b332fcb221ae389 100644
--- a/Control/AthenaServices/share/MultiplePass_test.py
+++ b/Control/AthenaServices/share/MultiplePass_test.py
@@ -36,9 +36,6 @@ ServiceMgr.MultipleEventLoopMgr.ToBeReinitialized = ["StoreGateSvc", "DetectorSt
 ServiceMgr.EventSelector.InputCollections = [     
     "root://eosatlas.cern.ch//eos/atlas/atlascerngroupdisk/proj-sit/digitization/RTT/mc10/mc10_7TeV.005008.CavernInput.merge.HITS.e4_e607_s951_s952_tid170551_00/HITS.170551._000011.pool.root.1" ]
 
-# Set up for seeking.
-ServiceMgr.EventSelector.CollectionType = "SeekableROOT"
-
 include( "AthenaPoolCnvSvc/WriteAthenaPool_jobOptions.py" )
 from AthenaPoolCnvSvc.WriteAthenaPool import AthenaPoolOutputStream
 Stream1 = AthenaPoolOutputStream( "Stream1" )
diff --git a/Control/AthenaServices/share/ReadAthenaPoolSeek_jobOptions.py b/Control/AthenaServices/share/ReadAthenaPoolSeek_jobOptions.py
index b8b897da66a2abb8492afa90a79216f01d2ab866..d5d796389268ba2955768eaef39e2aad96b09344 100644
--- a/Control/AthenaServices/share/ReadAthenaPoolSeek_jobOptions.py
+++ b/Control/AthenaServices/share/ReadAthenaPoolSeek_jobOptions.py
@@ -14,14 +14,3 @@ include.block( "AthenaServices/ReadAthenaPoolSeek_jobOptions.py" )
 
 # Make sure that this has been read.
 include( "AthenaPoolCnvSvc/ReadAthenaPool_jobOptions.py" )
-
-# Set up for seeking.
-# Seeking only works with ImplicitROOT.
-if (ServiceMgr.EventSelector.properties()["CollectionType"] in
-    ["ImplicitROOT", Configurable.propertyNoValue]):
-    ServiceMgr.EventSelector.CollectionType = "SeekableROOT"
-else:
-    print "WARNING: Input seeking is not compatible", \
-          "with collection type of", \
-          ServiceMgr.EventSelector.properties()["CollectionType"]
-    print "  Seeking disabled."
diff --git a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/CMakeLists.txt b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/CMakeLists.txt
index 848da895db06a1790afb21cf8b6be2400aaeea2f..f196c23be7a6008c206d69ebf9468be514d85a8e 100644
--- a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/CMakeLists.txt
+++ b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/CMakeLists.txt
@@ -155,38 +155,24 @@ _add_test( AthenaPoolExample_RWBs
 _add_test( AthenaPoolExample_ReadBs
    "athena.py AthenaPoolExampleAlgorithms/AthenaPoolExample_ReadBsJobOptions.py"
    DEPENDS AthenaPoolExampleAlgorithms_AthenaPoolExample_RWBs_ctest )
-# Read ByteStream via TAGs
-#_add_test( AthenaPoolExample_ReadBsTag
-#   "athena.py AthenaPoolExampleAlgorithms/AthenaPoolExample_ReadBsTagJobOptions.py"
-#   DEPENDS AthenaPoolExampleAlgorithms_AthenaPoolExample_ReadBs_ctest
-#   PRE_EXEC test/pre_check.sh )
 
 # Read compressed ByteStream and write to APR/POOL
 _add_test( AthenaPoolExample_RWcBs
    "athena.py AthenaPoolExampleAlgorithms/AthenaPoolExample_RWcBsJobOptions.py"
-#   DEPENDS AthenaPoolExampleAlgorithms_AthenaPoolExample_ReadBsTag_ctest
    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 )
-# Read compressed ByteStream via TAGs
-#_add_test( AthenaPoolExample_ReadcBsTag
-#   "athena.py AthenaPoolExampleAlgorithms/AthenaPoolExample_ReadBsTagJobOptions.py"
-#   DEPENDS AthenaPoolExampleAlgorithms_AthenaPoolExample_ReadcBs_ctest
-#   POST_EXEC test/post_check.sh )
 
 # Testing 'Conditions' I/O
 _add_test( AthenaPoolExample_WCond
    "athena.py AthenaPoolExampleAlgorithms/AthenaPoolExample_WCondJobOptions.py"
    DEPENDS AthenaPoolExampleAlgorithms_AthenaPoolExample_ReadcBs_ctest )
-_add_test( AthenaPoolExample_ACond
-   "athena.py AthenaPoolExampleAlgorithms/AthenaPoolExample_ACondJobOptions.py"
-   DEPENDS AthenaPoolExampleAlgorithms_AthenaPoolExample_WCond_ctest )
 _add_test( AthenaPoolExample_RCond
    "athena.py AthenaPoolExampleAlgorithms/AthenaPoolExample_RCondJobOptions.py"
-   DEPENDS AthenaPoolExampleAlgorithms_AthenaPoolExample_ACond_ctest )
+   DEPENDS AthenaPoolExampleAlgorithms_AthenaPoolExample_WCond_ctest )
 
 # Testing 'Metadata' I/O
 _add_test( AthenaPoolExample_WMeta
@@ -210,16 +196,3 @@ _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 )
-#_add_test( AthenaPoolExample_ReWriteFast
-#   "athena.py AthenaPoolExampleAlgorithms/AthenaPoolExample_RWJobOptions.py"
-#   DEPENDS AthenaPoolExampleAlgorithms_AthenaPoolExample_AppendFast_ctest )
-#_add_test( AthenaPoolExample_ReadFast
-#   "athena.py AthenaPoolExampleAlgorithms/AthenaPoolExample_ReadJobOptions.py"
-#   DEPENDS AthenaPoolExampleAlgorithms_AthenaPoolExample_ReWriteFast_ctest )
-#_add_test( AthenaPoolExample_ReWriteTagFast
-#   "athena.py ./AthenaPoolExample_ReWriteTagFast.py"
-#   POST_EXEC test/post_check.sh )
-#_add_test( AthenaPoolExample_ReadTagFast
-#   "athena.py ./AthenaPoolExample_ReadTagFast.py"
-#   POST_EXEC test/post_check.sh )
-
diff --git a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_ACond.ref b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_ACond.ref
deleted file mode 100644
index 03a18402e42f332f23f0515653adfc91ce11b788..0000000000000000000000000000000000000000
--- a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_ACond.ref
+++ /dev/null
@@ -1,1185 +0,0 @@
-Wed Dec 20 16:04:39 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_ACondJobOptions.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:53 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
-##Shapes            DEBUG    attributes# = 1
-##Shapes            DEBUG Opened container ##Shapes of type ROOT_Tree
-SimplePoolFile1...  DEBUG --->Reading Shape[0 , ????]: [1 Column(s)]
-SimplePoolFile1...  DEBUG ---->[0]:EventInfo_p4 Typ:EventInfo_p4 [21] Size:0 Offset:0 #Elements:1
-SimplePoolFile1...  DEBUG --->Reading Shape[1 , ????]: [1 Column(s)]
-SimplePoolFile1...  DEBUG ---->[0]:ExampleHitContainer_p1 Typ:ExampleHitContainer_p1 [21] Size:0 Offset:0 #Elements:1
-SimplePoolFile1...  DEBUG --->Reading Shape[2 , ????]: [1 Column(s)]
-SimplePoolFile1...  DEBUG ---->[0]:DataHeaderForm_p5 Typ:DataHeaderForm_p5 [21] Size:0 Offset:0 #Elements:1
-SimplePoolFile1...  DEBUG --->Reading Shape[3 , ????]: [1 Column(s)]
-SimplePoolFile1...  DEBUG ---->[0]:DataHeader_p5 Typ:DataHeader_p5 [21] Size:0 Offset:0 #Elements:1
-SimplePoolFile1...  DEBUG --->Reading Shape[4 , ????]: [1 Column(s)]
-SimplePoolFile1...  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.
-SimplePoolFile1...  DEBUG --> Access   DbContainer  READ      [ROOT_All] ##Links
-##Links             DEBUG Opening
-##Links             DEBUG    attributes# = 1
-##Links             DEBUG Opened container ##Links of type ROOT_Tree
-SimplePoolFile1...  DEBUG --->Reading Assoc:????/##Params [200]  (2 , ffffffff)
-SimplePoolFile1...  DEBUG ---->ClassID:????
-SimplePoolFile1...  DEBUG --->Reading Assoc:????/CollectionTree(EventInfo_p4/McEventInfo) [202]  (3 , ffffffff)
-SimplePoolFile1...  DEBUG ---->ClassID:????
-SimplePoolFile1...  DEBUG --->Reading Assoc:????/CollectionTree(ExampleHitContainer_p1/MyHits) [202]  (4 , ffffffff)
-SimplePoolFile1...  DEBUG ---->ClassID:????
-SimplePoolFile1...  DEBUG --->Reading Assoc:????/POOLContainerForm(DataHeaderForm) [202]  (5 , ffffffff)
-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 ---->ClassID:????
-SimplePoolFile1...  DEBUG --->Reading Assoc:????/MetaDataHdrForm(DataHeaderForm) [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.
-SimplePoolFile1...  DEBUG --> Access   DbContainer  READ      [ROOT_All] ##Params
-##Params            DEBUG Opening
-##Params            DEBUG    attributes# = 1
-##Params            DEBUG Opened container ##Params of type ROOT_Tree
-SimplePoolFile1...  DEBUG --->Reading Param:FID=[????]
-SimplePoolFile1...  DEBUG --->Reading Param:PFN=[SimplePoolFile1.root]
-SimplePoolFile1...  DEBUG --->Reading Param:POOL_VSN=[1.1]
-SimplePoolFile1...  DEBUG --->Reading Param:FORMAT_VSN=[1.1]
-##Params            DEBUG No objects passing selection criteria... Container has 4 Entries in total.
-SimplePoolFile1...  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:????
-SimplePoolFile1...  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
-SimplePoolFile1...  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 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 retrieve DataHeader from DetectorStore.
-ClassIDSvc           INFO  getRegistryEntries: read 3506 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
-##Shapes            DEBUG    attributes# = 1
-##Shapes            DEBUG Opened container ##Shapes of type ROOT_Tree
-SimplePoolFile1...  DEBUG --->Reading Shape[0 , ????]: [1 Column(s)]
-SimplePoolFile1...  DEBUG ---->[0]:EventInfo_p4 Typ:EventInfo_p4 [21] Size:0 Offset:0 #Elements:1
-SimplePoolFile1...  DEBUG --->Reading Shape[1 , ????]: [1 Column(s)]
-SimplePoolFile1...  DEBUG ---->[0]:ExampleHitContainer_p1 Typ:ExampleHitContainer_p1 [21] Size:0 Offset:0 #Elements:1
-SimplePoolFile1...  DEBUG --->Reading Shape[2 , ????]: [1 Column(s)]
-SimplePoolFile1...  DEBUG ---->[0]:DataHeaderForm_p5 Typ:DataHeaderForm_p5 [21] Size:0 Offset:0 #Elements:1
-SimplePoolFile1...  DEBUG --->Reading Shape[3 , ????]: [1 Column(s)]
-SimplePoolFile1...  DEBUG ---->[0]:DataHeader_p5 Typ:DataHeader_p5 [21] Size:0 Offset:0 #Elements:1
-SimplePoolFile1...  DEBUG --->Reading Shape[4 , ????]: [1 Column(s)]
-SimplePoolFile1...  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.
-SimplePoolFile1...  DEBUG --> Access   DbContainer  READ      [ROOT_All] ##Links
-##Links             DEBUG Opening
-##Links             DEBUG    attributes# = 1
-##Links             DEBUG Opened container ##Links of type ROOT_Tree
-SimplePoolFile1...  DEBUG --->Reading Assoc:????/##Params [200]  (2 , ffffffff)
-SimplePoolFile1...  DEBUG ---->ClassID:????
-SimplePoolFile1...  DEBUG --->Reading Assoc:????/CollectionTree(EventInfo_p4/McEventInfo) [202]  (3 , ffffffff)
-SimplePoolFile1...  DEBUG ---->ClassID:????
-SimplePoolFile1...  DEBUG --->Reading Assoc:????/CollectionTree(ExampleHitContainer_p1/MyHits) [202]  (4 , ffffffff)
-SimplePoolFile1...  DEBUG ---->ClassID:????
-SimplePoolFile1...  DEBUG --->Reading Assoc:????/POOLContainerForm(DataHeaderForm) [202]  (5 , ffffffff)
-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 ---->ClassID:????
-SimplePoolFile1...  DEBUG --->Reading Assoc:????/MetaDataHdrForm(DataHeaderForm) [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.
-SimplePoolFile1...  DEBUG --> Access   DbContainer  READ      [ROOT_All] ##Params
-##Params            DEBUG Opening
-##Params            DEBUG    attributes# = 1
-##Params            DEBUG Opened container ##Params of type ROOT_Tree
-SimplePoolFile1...  DEBUG --->Reading Param:FID=[????]
-SimplePoolFile1...  DEBUG --->Reading Param:PFN=[SimplePoolFile1.root]
-SimplePoolFile1...  DEBUG --->Reading Param:POOL_VSN=[1.1]
-SimplePoolFile1...  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 SimplePoolFile1.root
-SimplePoolFile1...  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 SimplePoolFile1.root
-MetaDataSvc         DEBUG initInputMetaDataStore: file name SimplePoolFile1.root
-SimplePoolFile1...  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
-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].
-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]
-SimplePoolFile1...  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: 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()
-SimplePoolFile1...  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 = 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: 1
-ReadData             INFO Get Smart data ptr 1
-ReadData             INFO Could not find ExampleTrackContainer/MyTracks
-SimplePoolFile1...  DEBUG --> Access   DbContainer  READ      [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
-ReadData             INFO Hit x = 1.2345 y = 97.655 z = 226.672 detector = DummyHitDetector
-ReadData             INFO Hit x = 4.4445 y = 91.9761 z = 94.7318 detector = DummyHitDetector
-ReadData             INFO Hit x = 7.6545 y = 86.2972 z = 70.2348 detector = DummyHitDetector
-ReadData             INFO Hit x = 10.8645 y = 80.6183 z = 59.9142 detector = DummyHitDetector
-ReadData             INFO Hit x = 14.0745 y = 74.9394 z = 54.2259 detector = DummyHitDetector
-ReadData             INFO Hit x = 17.2845 y = 69.2605 z = 50.6227 detector = DummyHitDetector
-ReadData             INFO Hit x = 20.4945 y = 63.5816 z = 48.1358 detector = DummyHitDetector
-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
-WriteCond            INFO Hit x = 7.6545 y = 86.2972 z = 70.2348 detector = DummyHitDetector
-WriteCond            INFO Hit x = 10.8645 y = 80.6183 z = 59.9142 detector = DummyHitDetector
-WriteCond            INFO Hit x = 14.0745 y = 74.9394 z = 54.2259 detector = DummyHitDetector
-WriteCond            INFO Hit x = 17.2845 y = 69.2605 z = 50.6227 detector = DummyHitDetector
-WriteCond            INFO Hit x = 20.4945 y = 63.5816 z = 48.1358 detector = DummyHitDetector
-WriteCond            INFO Hit x = 23.7045 y = 57.9027 z = 46.3159 detector = DummyHitDetector
-WriteCond            INFO Hit x = 26.9145 y = 52.2238 z = 44.9265 detector = DummyHitDetector
-WriteCond            INFO Hit x = 30.1245 y = 46.5449 z = 43.831 detector = DummyHitDetector
-WriteCond            INFO registered all data
-AthenaEventLoopMgr   INFO   ===>>>  done processing event #0, run #1 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=00000006-00000001].
-EventSelector       DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000001].
-EventSelector       DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000001]
-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 #1, run #1 1 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 EventInfo event: 1 run: 1
-ReadData             INFO Get Smart data ptr 1
-ReadData             INFO Could not find ExampleTrackContainer/MyTracks
-ReadData             INFO Hit x = 101.234 y = 97.655 z = 126.672 detector = DummyHitDetector
-ReadData             INFO Hit x = 104.444 y = 91.9761 z = -5.26816 detector = DummyHitDetector
-ReadData             INFO Hit x = 107.654 y = 86.2972 z = -29.7652 detector = DummyHitDetector
-ReadData             INFO Hit x = 110.864 y = 80.6183 z = -40.0858 detector = DummyHitDetector
-ReadData             INFO Hit x = 114.075 y = 74.9394 z = -45.7741 detector = DummyHitDetector
-ReadData             INFO Hit x = 117.284 y = 69.2605 z = -49.3773 detector = DummyHitDetector
-ReadData             INFO Hit x = 120.494 y = 63.5816 z = -51.8642 detector = DummyHitDetector
-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
-WriteCond           DEBUG in execute()
-WriteCond            INFO Hit x = 101.234 y = 97.655 z = 126.672 detector = DummyHitDetector
-WriteCond            INFO Hit x = 104.444 y = 91.9761 z = -5.26816 detector = DummyHitDetector
-WriteCond            INFO Hit x = 107.654 y = 86.2972 z = -29.7652 detector = DummyHitDetector
-WriteCond            INFO Hit x = 110.864 y = 80.6183 z = -40.0858 detector = DummyHitDetector
-WriteCond            INFO Hit x = 114.075 y = 74.9394 z = -45.7741 detector = DummyHitDetector
-WriteCond            INFO Hit x = 117.284 y = 69.2605 z = -49.3773 detector = DummyHitDetector
-WriteCond            INFO Hit x = 120.494 y = 63.5816 z = -51.8642 detector = DummyHitDetector
-WriteCond            INFO Hit x = 123.704 y = 57.9027 z = -53.6841 detector = DummyHitDetector
-WriteCond            INFO Hit x = 126.915 y = 52.2238 z = -55.0735 detector = DummyHitDetector
-WriteCond            INFO Hit x = 130.125 y = 46.5449 z = -56.169 detector = DummyHitDetector
-WriteCond            INFO registered all data
-AthenaEventLoopMgr   INFO   ===>>>  done processing event #1, run #1 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=00000006-00000002].
-EventSelector       DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000002].
-EventSelector       DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000002]
-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 #2, run #1 2 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 EventInfo event: 2 run: 1
-ReadData             INFO Get Smart data ptr 1
-ReadData             INFO Could not find ExampleTrackContainer/MyTracks
-ReadData             INFO Hit x = 201.234 y = 97.655 z = 26.6723 detector = DummyHitDetector
-ReadData             INFO Hit x = 204.445 y = 91.9761 z = -105.268 detector = DummyHitDetector
-ReadData             INFO Hit x = 207.654 y = 86.2972 z = -129.765 detector = DummyHitDetector
-ReadData             INFO Hit x = 210.864 y = 80.6183 z = -140.086 detector = DummyHitDetector
-ReadData             INFO Hit x = 214.075 y = 74.9394 z = -145.774 detector = DummyHitDetector
-ReadData             INFO Hit x = 217.285 y = 69.2605 z = -149.377 detector = DummyHitDetector
-ReadData             INFO Hit x = 220.494 y = 63.5816 z = -151.864 detector = DummyHitDetector
-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
-WriteCond           DEBUG in execute()
-WriteCond            INFO Hit x = 201.234 y = 97.655 z = 26.6723 detector = DummyHitDetector
-WriteCond            INFO Hit x = 204.445 y = 91.9761 z = -105.268 detector = DummyHitDetector
-WriteCond            INFO Hit x = 207.654 y = 86.2972 z = -129.765 detector = DummyHitDetector
-WriteCond            INFO Hit x = 210.864 y = 80.6183 z = -140.086 detector = DummyHitDetector
-WriteCond            INFO Hit x = 214.075 y = 74.9394 z = -145.774 detector = DummyHitDetector
-WriteCond            INFO Hit x = 217.285 y = 69.2605 z = -149.377 detector = DummyHitDetector
-WriteCond            INFO Hit x = 220.494 y = 63.5816 z = -151.864 detector = DummyHitDetector
-WriteCond            INFO Hit x = 223.704 y = 57.9027 z = -153.684 detector = DummyHitDetector
-WriteCond            INFO Hit x = 226.915 y = 52.2238 z = -155.073 detector = DummyHitDetector
-WriteCond            INFO Hit x = 230.125 y = 46.5449 z = -156.169 detector = DummyHitDetector
-WriteCond            INFO registered all data
-AthenaEventLoopMgr   INFO   ===>>>  done processing event #2, run #1 3 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-00000003].
-EventSelector       DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000003].
-EventSelector       DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000003]
-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 #3, run #1 3 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 EventInfo event: 3 run: 1
-ReadData             INFO Get Smart data ptr 1
-ReadData             INFO Could not find ExampleTrackContainer/MyTracks
-ReadData             INFO Hit x = 301.235 y = 97.655 z = -73.3277 detector = DummyHitDetector
-ReadData             INFO Hit x = 304.445 y = 91.9761 z = -205.268 detector = DummyHitDetector
-ReadData             INFO Hit x = 307.655 y = 86.2972 z = -229.765 detector = DummyHitDetector
-ReadData             INFO Hit x = 310.865 y = 80.6183 z = -240.086 detector = DummyHitDetector
-ReadData             INFO Hit x = 314.075 y = 74.9394 z = -245.774 detector = DummyHitDetector
-ReadData             INFO Hit x = 317.285 y = 69.2605 z = -249.377 detector = DummyHitDetector
-ReadData             INFO Hit x = 320.495 y = 63.5816 z = -251.864 detector = DummyHitDetector
-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
-WriteCond           DEBUG in execute()
-WriteCond            INFO Hit x = 301.235 y = 97.655 z = -73.3277 detector = DummyHitDetector
-WriteCond            INFO Hit x = 304.445 y = 91.9761 z = -205.268 detector = DummyHitDetector
-WriteCond            INFO Hit x = 307.655 y = 86.2972 z = -229.765 detector = DummyHitDetector
-WriteCond            INFO Hit x = 310.865 y = 80.6183 z = -240.086 detector = DummyHitDetector
-WriteCond            INFO Hit x = 314.075 y = 74.9394 z = -245.774 detector = DummyHitDetector
-WriteCond            INFO Hit x = 317.285 y = 69.2605 z = -249.377 detector = DummyHitDetector
-WriteCond            INFO Hit x = 320.495 y = 63.5816 z = -251.864 detector = DummyHitDetector
-WriteCond            INFO Hit x = 323.705 y = 57.9027 z = -253.684 detector = DummyHitDetector
-WriteCond            INFO Hit x = 326.915 y = 52.2238 z = -255.073 detector = DummyHitDetector
-WriteCond            INFO Hit x = 330.125 y = 46.5449 z = -256.169 detector = DummyHitDetector
-WriteCond            INFO registered all data
-AthenaEventLoopMgr   INFO   ===>>>  done processing event #3, run #1 4 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-00000004].
-EventSelector       DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000004].
-EventSelector       DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000004]
-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 #4, run #1 4 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 EventInfo event: 4 run: 1
-ReadData             INFO Get Smart data ptr 1
-ReadData             INFO Could not find ExampleTrackContainer/MyTracks
-ReadData             INFO Hit x = 401.235 y = 97.655 z = -173.328 detector = DummyHitDetector
-ReadData             INFO Hit x = 404.445 y = 91.9761 z = -305.268 detector = DummyHitDetector
-ReadData             INFO Hit x = 407.655 y = 86.2972 z = -329.765 detector = DummyHitDetector
-ReadData             INFO Hit x = 410.865 y = 80.6183 z = -340.086 detector = DummyHitDetector
-ReadData             INFO Hit x = 414.075 y = 74.9394 z = -345.774 detector = DummyHitDetector
-ReadData             INFO Hit x = 417.285 y = 69.2605 z = -349.377 detector = DummyHitDetector
-ReadData             INFO Hit x = 420.495 y = 63.5816 z = -351.864 detector = DummyHitDetector
-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
-WriteCond           DEBUG in execute()
-WriteCond            INFO Hit x = 401.235 y = 97.655 z = -173.328 detector = DummyHitDetector
-WriteCond            INFO Hit x = 404.445 y = 91.9761 z = -305.268 detector = DummyHitDetector
-WriteCond            INFO Hit x = 407.655 y = 86.2972 z = -329.765 detector = DummyHitDetector
-WriteCond            INFO Hit x = 410.865 y = 80.6183 z = -340.086 detector = DummyHitDetector
-WriteCond            INFO Hit x = 414.075 y = 74.9394 z = -345.774 detector = DummyHitDetector
-WriteCond            INFO Hit x = 417.285 y = 69.2605 z = -349.377 detector = DummyHitDetector
-WriteCond            INFO Hit x = 420.495 y = 63.5816 z = -351.864 detector = DummyHitDetector
-WriteCond            INFO Hit x = 423.705 y = 57.9027 z = -353.684 detector = DummyHitDetector
-WriteCond            INFO Hit x = 426.915 y = 52.2238 z = -355.073 detector = DummyHitDetector
-WriteCond            INFO Hit x = 430.125 y = 46.5449 z = -356.169 detector = DummyHitDetector
-WriteCond            INFO registered all data
-AthenaEventLoopMgr   INFO   ===>>>  done processing event #4, run #1 5 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-00000005].
-EventSelector       DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000005].
-EventSelector       DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000005]
-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 #5, run #1 5 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 EventInfo event: 5 run: 1
-ReadData             INFO Get Smart data ptr 1
-ReadData             INFO Could not find ExampleTrackContainer/MyTracks
-ReadData             INFO Hit x = 501.235 y = 97.655 z = -273.328 detector = DummyHitDetector
-ReadData             INFO Hit x = 504.445 y = 91.9761 z = -405.268 detector = DummyHitDetector
-ReadData             INFO Hit x = 507.655 y = 86.2972 z = -429.765 detector = DummyHitDetector
-ReadData             INFO Hit x = 510.865 y = 80.6183 z = -440.086 detector = DummyHitDetector
-ReadData             INFO Hit x = 514.075 y = 74.9394 z = -445.774 detector = DummyHitDetector
-ReadData             INFO Hit x = 517.284 y = 69.2605 z = -449.377 detector = DummyHitDetector
-ReadData             INFO Hit x = 520.495 y = 63.5816 z = -451.864 detector = DummyHitDetector
-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
-WriteCond           DEBUG in execute()
-WriteCond            INFO Hit x = 501.235 y = 97.655 z = -273.328 detector = DummyHitDetector
-WriteCond            INFO Hit x = 504.445 y = 91.9761 z = -405.268 detector = DummyHitDetector
-WriteCond            INFO Hit x = 507.655 y = 86.2972 z = -429.765 detector = DummyHitDetector
-WriteCond            INFO Hit x = 510.865 y = 80.6183 z = -440.086 detector = DummyHitDetector
-WriteCond            INFO Hit x = 514.075 y = 74.9394 z = -445.774 detector = DummyHitDetector
-WriteCond            INFO Hit x = 517.284 y = 69.2605 z = -449.377 detector = DummyHitDetector
-WriteCond            INFO Hit x = 520.495 y = 63.5816 z = -451.864 detector = DummyHitDetector
-WriteCond            INFO Hit x = 523.705 y = 57.9027 z = -453.684 detector = DummyHitDetector
-WriteCond            INFO Hit x = 526.914 y = 52.2238 z = -455.073 detector = DummyHitDetector
-WriteCond            INFO Hit x = 530.125 y = 46.5449 z = -456.169 detector = DummyHitDetector
-WriteCond            INFO registered all data
-AthenaEventLoopMgr   INFO   ===>>>  done processing event #5, run #1 6 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-00000006].
-EventSelector       DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000006].
-EventSelector       DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000006]
-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 #6, run #1 6 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 EventInfo event: 6 run: 1
-ReadData             INFO Get Smart data ptr 1
-ReadData             INFO Could not find ExampleTrackContainer/MyTracks
-ReadData             INFO Hit x = 601.235 y = 97.655 z = -373.328 detector = DummyHitDetector
-ReadData             INFO Hit x = 604.445 y = 91.9761 z = -505.268 detector = DummyHitDetector
-ReadData             INFO Hit x = 607.654 y = 86.2972 z = -529.765 detector = DummyHitDetector
-ReadData             INFO Hit x = 610.865 y = 80.6183 z = -540.086 detector = DummyHitDetector
-ReadData             INFO Hit x = 614.075 y = 74.9394 z = -545.774 detector = DummyHitDetector
-ReadData             INFO Hit x = 617.284 y = 69.2605 z = -549.377 detector = DummyHitDetector
-ReadData             INFO Hit x = 620.495 y = 63.5816 z = -551.864 detector = DummyHitDetector
-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
-WriteCond           DEBUG in execute()
-WriteCond            INFO Hit x = 601.235 y = 97.655 z = -373.328 detector = DummyHitDetector
-WriteCond            INFO Hit x = 604.445 y = 91.9761 z = -505.268 detector = DummyHitDetector
-WriteCond            INFO Hit x = 607.654 y = 86.2972 z = -529.765 detector = DummyHitDetector
-WriteCond            INFO Hit x = 610.865 y = 80.6183 z = -540.086 detector = DummyHitDetector
-WriteCond            INFO Hit x = 614.075 y = 74.9394 z = -545.774 detector = DummyHitDetector
-WriteCond            INFO Hit x = 617.284 y = 69.2605 z = -549.377 detector = DummyHitDetector
-WriteCond            INFO Hit x = 620.495 y = 63.5816 z = -551.864 detector = DummyHitDetector
-WriteCond            INFO Hit x = 623.705 y = 57.9027 z = -553.684 detector = DummyHitDetector
-WriteCond            INFO Hit x = 626.914 y = 52.2238 z = -555.073 detector = DummyHitDetector
-WriteCond            INFO Hit x = 630.125 y = 46.5449 z = -556.169 detector = DummyHitDetector
-WriteCond            INFO registered all data
-AthenaEventLoopMgr   INFO   ===>>>  done processing event #6, run #1 7 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-00000007].
-EventSelector       DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000007].
-EventSelector       DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000007]
-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 #7, run #1 7 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 EventInfo event: 7 run: 1
-ReadData             INFO Get Smart data ptr 1
-ReadData             INFO Could not find ExampleTrackContainer/MyTracks
-ReadData             INFO Hit x = 701.235 y = 97.655 z = -473.328 detector = DummyHitDetector
-ReadData             INFO Hit x = 704.445 y = 91.9761 z = -605.268 detector = DummyHitDetector
-ReadData             INFO Hit x = 707.654 y = 86.2972 z = -629.765 detector = DummyHitDetector
-ReadData             INFO Hit x = 710.865 y = 80.6183 z = -640.086 detector = DummyHitDetector
-ReadData             INFO Hit x = 714.075 y = 74.9394 z = -645.774 detector = DummyHitDetector
-ReadData             INFO Hit x = 717.284 y = 69.2605 z = -649.377 detector = DummyHitDetector
-ReadData             INFO Hit x = 720.495 y = 63.5816 z = -651.864 detector = DummyHitDetector
-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
-WriteCond           DEBUG in execute()
-WriteCond            INFO Hit x = 701.235 y = 97.655 z = -473.328 detector = DummyHitDetector
-WriteCond            INFO Hit x = 704.445 y = 91.9761 z = -605.268 detector = DummyHitDetector
-WriteCond            INFO Hit x = 707.654 y = 86.2972 z = -629.765 detector = DummyHitDetector
-WriteCond            INFO Hit x = 710.865 y = 80.6183 z = -640.086 detector = DummyHitDetector
-WriteCond            INFO Hit x = 714.075 y = 74.9394 z = -645.774 detector = DummyHitDetector
-WriteCond            INFO Hit x = 717.284 y = 69.2605 z = -649.377 detector = DummyHitDetector
-WriteCond            INFO Hit x = 720.495 y = 63.5816 z = -651.864 detector = DummyHitDetector
-WriteCond            INFO Hit x = 723.705 y = 57.9027 z = -653.684 detector = DummyHitDetector
-WriteCond            INFO Hit x = 726.914 y = 52.2238 z = -655.073 detector = DummyHitDetector
-WriteCond            INFO Hit x = 730.125 y = 46.5449 z = -656.169 detector = DummyHitDetector
-WriteCond            INFO registered all data
-AthenaEventLoopMgr   INFO   ===>>>  done processing event #7, run #1 8 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-00000008].
-EventSelector       DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000008].
-EventSelector       DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000008]
-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 #8, run #1 8 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 EventInfo event: 8 run: 1
-ReadData             INFO Get Smart data ptr 1
-ReadData             INFO Could not find ExampleTrackContainer/MyTracks
-ReadData             INFO Hit x = 801.235 y = 97.655 z = -573.328 detector = DummyHitDetector
-ReadData             INFO Hit x = 804.445 y = 91.9761 z = -705.268 detector = DummyHitDetector
-ReadData             INFO Hit x = 807.654 y = 86.2972 z = -729.765 detector = DummyHitDetector
-ReadData             INFO Hit x = 810.865 y = 80.6183 z = -740.086 detector = DummyHitDetector
-ReadData             INFO Hit x = 814.075 y = 74.9394 z = -745.774 detector = DummyHitDetector
-ReadData             INFO Hit x = 817.284 y = 69.2605 z = -749.377 detector = DummyHitDetector
-ReadData             INFO Hit x = 820.495 y = 63.5816 z = -751.864 detector = DummyHitDetector
-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
-WriteCond           DEBUG in execute()
-WriteCond            INFO Hit x = 801.235 y = 97.655 z = -573.328 detector = DummyHitDetector
-WriteCond            INFO Hit x = 804.445 y = 91.9761 z = -705.268 detector = DummyHitDetector
-WriteCond            INFO Hit x = 807.654 y = 86.2972 z = -729.765 detector = DummyHitDetector
-WriteCond            INFO Hit x = 810.865 y = 80.6183 z = -740.086 detector = DummyHitDetector
-WriteCond            INFO Hit x = 814.075 y = 74.9394 z = -745.774 detector = DummyHitDetector
-WriteCond            INFO Hit x = 817.284 y = 69.2605 z = -749.377 detector = DummyHitDetector
-WriteCond            INFO Hit x = 820.495 y = 63.5816 z = -751.864 detector = DummyHitDetector
-WriteCond            INFO Hit x = 823.705 y = 57.9027 z = -753.684 detector = DummyHitDetector
-WriteCond            INFO Hit x = 826.914 y = 52.2238 z = -755.073 detector = DummyHitDetector
-WriteCond            INFO Hit x = 830.125 y = 46.5449 z = -756.169 detector = DummyHitDetector
-WriteCond            INFO registered all data
-AthenaEventLoopMgr   INFO   ===>>>  done processing event #8, run #1 9 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-00000009].
-EventSelector       DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000009].
-EventSelector       DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000009]
-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 #9, run #1 9 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 EventInfo event: 9 run: 1
-ReadData             INFO Get Smart data ptr 1
-ReadData             INFO Could not find ExampleTrackContainer/MyTracks
-ReadData             INFO Hit x = 901.235 y = 97.655 z = -673.328 detector = DummyHitDetector
-ReadData             INFO Hit x = 904.445 y = 91.9761 z = -805.268 detector = DummyHitDetector
-ReadData             INFO Hit x = 907.654 y = 86.2972 z = -829.765 detector = DummyHitDetector
-ReadData             INFO Hit x = 910.865 y = 80.6183 z = -840.086 detector = DummyHitDetector
-ReadData             INFO Hit x = 914.075 y = 74.9394 z = -845.774 detector = DummyHitDetector
-ReadData             INFO Hit x = 917.284 y = 69.2605 z = -849.377 detector = DummyHitDetector
-ReadData             INFO Hit x = 920.495 y = 63.5816 z = -851.864 detector = DummyHitDetector
-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
-WriteCond           DEBUG in execute()
-WriteCond            INFO Hit x = 901.235 y = 97.655 z = -673.328 detector = DummyHitDetector
-WriteCond            INFO Hit x = 904.445 y = 91.9761 z = -805.268 detector = DummyHitDetector
-WriteCond            INFO Hit x = 907.654 y = 86.2972 z = -829.765 detector = DummyHitDetector
-WriteCond            INFO Hit x = 910.865 y = 80.6183 z = -840.086 detector = DummyHitDetector
-WriteCond            INFO Hit x = 914.075 y = 74.9394 z = -845.774 detector = DummyHitDetector
-WriteCond            INFO Hit x = 917.284 y = 69.2605 z = -849.377 detector = DummyHitDetector
-WriteCond            INFO Hit x = 920.495 y = 63.5816 z = -851.864 detector = DummyHitDetector
-WriteCond            INFO Hit x = 923.705 y = 57.9027 z = -853.684 detector = DummyHitDetector
-WriteCond            INFO Hit x = 926.914 y = 52.2238 z = -855.073 detector = DummyHitDetector
-WriteCond            INFO Hit x = 930.125 y = 46.5449 z = -856.169 detector = DummyHitDetector
-WriteCond            INFO registered all data
-AthenaEventLoopMgr   INFO   ===>>>  done processing event #9, run #1 10 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-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]
-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 #10, run #1 10 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 EventInfo event: 10 run: 1
-ReadData             INFO Get Smart data ptr 1
-ReadData             INFO Could not find ExampleTrackContainer/MyTracks
-ReadData             INFO Hit x = 1001.23 y = 97.655 z = -773.328 detector = DummyHitDetector
-ReadData             INFO Hit x = 1004.44 y = 91.9761 z = -905.268 detector = DummyHitDetector
-ReadData             INFO Hit x = 1007.65 y = 86.2972 z = -929.765 detector = DummyHitDetector
-ReadData             INFO Hit x = 1010.86 y = 80.6183 z = -940.086 detector = DummyHitDetector
-ReadData             INFO Hit x = 1014.07 y = 74.9394 z = -945.774 detector = DummyHitDetector
-ReadData             INFO Hit x = 1017.28 y = 69.2605 z = -949.377 detector = DummyHitDetector
-ReadData             INFO Hit x = 1020.49 y = 63.5816 z = -951.864 detector = DummyHitDetector
-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
-WriteCond           DEBUG in execute()
-WriteCond            INFO Hit x = 1001.23 y = 97.655 z = -773.328 detector = DummyHitDetector
-WriteCond            INFO Hit x = 1004.44 y = 91.9761 z = -905.268 detector = DummyHitDetector
-WriteCond            INFO Hit x = 1007.65 y = 86.2972 z = -929.765 detector = DummyHitDetector
-WriteCond            INFO Hit x = 1010.86 y = 80.6183 z = -940.086 detector = DummyHitDetector
-WriteCond            INFO Hit x = 1014.07 y = 74.9394 z = -945.774 detector = DummyHitDetector
-WriteCond            INFO Hit x = 1017.28 y = 69.2605 z = -949.377 detector = DummyHitDetector
-WriteCond            INFO Hit x = 1020.49 y = 63.5816 z = -951.864 detector = DummyHitDetector
-WriteCond            INFO Hit x = 1023.7 y = 57.9027 z = -953.684 detector = DummyHitDetector
-WriteCond            INFO Hit x = 1026.91 y = 52.2238 z = -955.073 detector = DummyHitDetector
-WriteCond            INFO Hit x = 1030.12 y = 46.5449 z = -956.169 detector = DummyHitDetector
-WriteCond            INFO registered all data
-AthenaEventLoopMgr   INFO   ===>>>  done processing event #10, run #1 11 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-0000000B].
-EventSelector       DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000000B].
-EventSelector       DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000000B]
-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 #11, run #1 11 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 EventInfo event: 11 run: 1
-ReadData             INFO Get Smart data ptr 1
-ReadData             INFO Could not find ExampleTrackContainer/MyTracks
-ReadData             INFO Hit x = 1101.23 y = 97.655 z = -873.328 detector = DummyHitDetector
-ReadData             INFO Hit x = 1104.44 y = 91.9761 z = -1005.27 detector = DummyHitDetector
-ReadData             INFO Hit x = 1107.65 y = 86.2972 z = -1029.77 detector = DummyHitDetector
-ReadData             INFO Hit x = 1110.86 y = 80.6183 z = -1040.09 detector = DummyHitDetector
-ReadData             INFO Hit x = 1114.07 y = 74.9394 z = -1045.77 detector = DummyHitDetector
-ReadData             INFO Hit x = 1117.28 y = 69.2605 z = -1049.38 detector = DummyHitDetector
-ReadData             INFO Hit x = 1120.49 y = 63.5816 z = -1051.86 detector = DummyHitDetector
-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
-WriteCond           DEBUG in execute()
-WriteCond            INFO Hit x = 1101.23 y = 97.655 z = -873.328 detector = DummyHitDetector
-WriteCond            INFO Hit x = 1104.44 y = 91.9761 z = -1005.27 detector = DummyHitDetector
-WriteCond            INFO Hit x = 1107.65 y = 86.2972 z = -1029.77 detector = DummyHitDetector
-WriteCond            INFO Hit x = 1110.86 y = 80.6183 z = -1040.09 detector = DummyHitDetector
-WriteCond            INFO Hit x = 1114.07 y = 74.9394 z = -1045.77 detector = DummyHitDetector
-WriteCond            INFO Hit x = 1117.28 y = 69.2605 z = -1049.38 detector = DummyHitDetector
-WriteCond            INFO Hit x = 1120.49 y = 63.5816 z = -1051.86 detector = DummyHitDetector
-WriteCond            INFO Hit x = 1123.7 y = 57.9027 z = -1053.68 detector = DummyHitDetector
-WriteCond            INFO Hit x = 1126.91 y = 52.2238 z = -1055.07 detector = DummyHitDetector
-WriteCond            INFO Hit x = 1130.12 y = 46.5449 z = -1056.17 detector = DummyHitDetector
-WriteCond            INFO registered all data
-AthenaEventLoopMgr   INFO   ===>>>  done processing event #11, run #1 12 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-0000000C].
-EventSelector       DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000000C].
-EventSelector       DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000000C]
-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 #12, run #1 12 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 EventInfo event: 12 run: 1
-ReadData             INFO Get Smart data ptr 1
-ReadData             INFO Could not find ExampleTrackContainer/MyTracks
-ReadData             INFO Hit x = 1201.23 y = 97.655 z = -973.328 detector = DummyHitDetector
-ReadData             INFO Hit x = 1204.44 y = 91.9761 z = -1105.27 detector = DummyHitDetector
-ReadData             INFO Hit x = 1207.65 y = 86.2972 z = -1129.77 detector = DummyHitDetector
-ReadData             INFO Hit x = 1210.86 y = 80.6183 z = -1140.09 detector = DummyHitDetector
-ReadData             INFO Hit x = 1214.07 y = 74.9394 z = -1145.77 detector = DummyHitDetector
-ReadData             INFO Hit x = 1217.28 y = 69.2605 z = -1149.38 detector = DummyHitDetector
-ReadData             INFO Hit x = 1220.49 y = 63.5816 z = -1151.86 detector = DummyHitDetector
-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
-WriteCond           DEBUG in execute()
-WriteCond            INFO Hit x = 1201.23 y = 97.655 z = -973.328 detector = DummyHitDetector
-WriteCond            INFO Hit x = 1204.44 y = 91.9761 z = -1105.27 detector = DummyHitDetector
-WriteCond            INFO Hit x = 1207.65 y = 86.2972 z = -1129.77 detector = DummyHitDetector
-WriteCond            INFO Hit x = 1210.86 y = 80.6183 z = -1140.09 detector = DummyHitDetector
-WriteCond            INFO Hit x = 1214.07 y = 74.9394 z = -1145.77 detector = DummyHitDetector
-WriteCond            INFO Hit x = 1217.28 y = 69.2605 z = -1149.38 detector = DummyHitDetector
-WriteCond            INFO Hit x = 1220.49 y = 63.5816 z = -1151.86 detector = DummyHitDetector
-WriteCond            INFO Hit x = 1223.7 y = 57.9027 z = -1153.68 detector = DummyHitDetector
-WriteCond            INFO Hit x = 1226.91 y = 52.2238 z = -1155.07 detector = DummyHitDetector
-WriteCond            INFO Hit x = 1230.12 y = 46.5449 z = -1156.17 detector = DummyHitDetector
-WriteCond            INFO registered all data
-AthenaEventLoopMgr   INFO   ===>>>  done processing event #12, run #1 13 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-0000000D].
-EventSelector       DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000000D].
-EventSelector       DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000000D]
-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 #13, run #1 13 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 EventInfo event: 13 run: 1
-ReadData             INFO Get Smart data ptr 1
-ReadData             INFO Could not find ExampleTrackContainer/MyTracks
-ReadData             INFO Hit x = 1301.23 y = 97.655 z = -1073.33 detector = DummyHitDetector
-ReadData             INFO Hit x = 1304.44 y = 91.9761 z = -1205.27 detector = DummyHitDetector
-ReadData             INFO Hit x = 1307.65 y = 86.2972 z = -1229.77 detector = DummyHitDetector
-ReadData             INFO Hit x = 1310.86 y = 80.6183 z = -1240.09 detector = DummyHitDetector
-ReadData             INFO Hit x = 1314.07 y = 74.9394 z = -1245.77 detector = DummyHitDetector
-ReadData             INFO Hit x = 1317.28 y = 69.2605 z = -1249.38 detector = DummyHitDetector
-ReadData             INFO Hit x = 1320.49 y = 63.5816 z = -1251.86 detector = DummyHitDetector
-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
-WriteCond           DEBUG in execute()
-WriteCond            INFO Hit x = 1301.23 y = 97.655 z = -1073.33 detector = DummyHitDetector
-WriteCond            INFO Hit x = 1304.44 y = 91.9761 z = -1205.27 detector = DummyHitDetector
-WriteCond            INFO Hit x = 1307.65 y = 86.2972 z = -1229.77 detector = DummyHitDetector
-WriteCond            INFO Hit x = 1310.86 y = 80.6183 z = -1240.09 detector = DummyHitDetector
-WriteCond            INFO Hit x = 1314.07 y = 74.9394 z = -1245.77 detector = DummyHitDetector
-WriteCond            INFO Hit x = 1317.28 y = 69.2605 z = -1249.38 detector = DummyHitDetector
-WriteCond            INFO Hit x = 1320.49 y = 63.5816 z = -1251.86 detector = DummyHitDetector
-WriteCond            INFO Hit x = 1323.7 y = 57.9027 z = -1253.68 detector = DummyHitDetector
-WriteCond            INFO Hit x = 1326.91 y = 52.2238 z = -1255.07 detector = DummyHitDetector
-WriteCond            INFO Hit x = 1330.12 y = 46.5449 z = -1256.17 detector = DummyHitDetector
-WriteCond            INFO registered all data
-AthenaEventLoopMgr   INFO   ===>>>  done processing event #13, run #1 14 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-0000000E].
-EventSelector       DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000000E].
-EventSelector       DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000000E]
-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 #14, run #1 14 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 EventInfo event: 14 run: 1
-ReadData             INFO Get Smart data ptr 1
-ReadData             INFO Could not find ExampleTrackContainer/MyTracks
-ReadData             INFO Hit x = 1401.23 y = 97.655 z = -1173.33 detector = DummyHitDetector
-ReadData             INFO Hit x = 1404.44 y = 91.9761 z = -1305.27 detector = DummyHitDetector
-ReadData             INFO Hit x = 1407.65 y = 86.2972 z = -1329.77 detector = DummyHitDetector
-ReadData             INFO Hit x = 1410.86 y = 80.6183 z = -1340.09 detector = DummyHitDetector
-ReadData             INFO Hit x = 1414.07 y = 74.9394 z = -1345.77 detector = DummyHitDetector
-ReadData             INFO Hit x = 1417.28 y = 69.2605 z = -1349.38 detector = DummyHitDetector
-ReadData             INFO Hit x = 1420.49 y = 63.5816 z = -1351.86 detector = DummyHitDetector
-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
-WriteCond           DEBUG in execute()
-WriteCond            INFO Hit x = 1401.23 y = 97.655 z = -1173.33 detector = DummyHitDetector
-WriteCond            INFO Hit x = 1404.44 y = 91.9761 z = -1305.27 detector = DummyHitDetector
-WriteCond            INFO Hit x = 1407.65 y = 86.2972 z = -1329.77 detector = DummyHitDetector
-WriteCond            INFO Hit x = 1410.86 y = 80.6183 z = -1340.09 detector = DummyHitDetector
-WriteCond            INFO Hit x = 1414.07 y = 74.9394 z = -1345.77 detector = DummyHitDetector
-WriteCond            INFO Hit x = 1417.28 y = 69.2605 z = -1349.38 detector = DummyHitDetector
-WriteCond            INFO Hit x = 1420.49 y = 63.5816 z = -1351.86 detector = DummyHitDetector
-WriteCond            INFO Hit x = 1423.7 y = 57.9027 z = -1353.68 detector = DummyHitDetector
-WriteCond            INFO Hit x = 1426.91 y = 52.2238 z = -1355.07 detector = DummyHitDetector
-WriteCond            INFO Hit x = 1430.12 y = 46.5449 z = -1356.17 detector = DummyHitDetector
-WriteCond            INFO registered all data
-AthenaEventLoopMgr   INFO   ===>>>  done processing event #14, run #1 15 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-0000000F].
-EventSelector       DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000000F].
-EventSelector       DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000000F]
-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 #15, run #1 15 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 EventInfo event: 15 run: 1
-ReadData             INFO Get Smart data ptr 1
-ReadData             INFO Could not find ExampleTrackContainer/MyTracks
-ReadData             INFO Hit x = 1501.23 y = 97.655 z = -1273.33 detector = DummyHitDetector
-ReadData             INFO Hit x = 1504.44 y = 91.9761 z = -1405.27 detector = DummyHitDetector
-ReadData             INFO Hit x = 1507.65 y = 86.2972 z = -1429.77 detector = DummyHitDetector
-ReadData             INFO Hit x = 1510.86 y = 80.6183 z = -1440.09 detector = DummyHitDetector
-ReadData             INFO Hit x = 1514.07 y = 74.9394 z = -1445.77 detector = DummyHitDetector
-ReadData             INFO Hit x = 1517.28 y = 69.2605 z = -1449.38 detector = DummyHitDetector
-ReadData             INFO Hit x = 1520.49 y = 63.5816 z = -1451.86 detector = DummyHitDetector
-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
-WriteCond           DEBUG in execute()
-WriteCond            INFO Hit x = 1501.23 y = 97.655 z = -1273.33 detector = DummyHitDetector
-WriteCond            INFO Hit x = 1504.44 y = 91.9761 z = -1405.27 detector = DummyHitDetector
-WriteCond            INFO Hit x = 1507.65 y = 86.2972 z = -1429.77 detector = DummyHitDetector
-WriteCond            INFO Hit x = 1510.86 y = 80.6183 z = -1440.09 detector = DummyHitDetector
-WriteCond            INFO Hit x = 1514.07 y = 74.9394 z = -1445.77 detector = DummyHitDetector
-WriteCond            INFO Hit x = 1517.28 y = 69.2605 z = -1449.38 detector = DummyHitDetector
-WriteCond            INFO Hit x = 1520.49 y = 63.5816 z = -1451.86 detector = DummyHitDetector
-WriteCond            INFO Hit x = 1523.7 y = 57.9027 z = -1453.68 detector = DummyHitDetector
-WriteCond            INFO Hit x = 1526.91 y = 52.2238 z = -1455.07 detector = DummyHitDetector
-WriteCond            INFO Hit x = 1530.12 y = 46.5449 z = -1456.17 detector = DummyHitDetector
-WriteCond            INFO registered all data
-AthenaEventLoopMgr   INFO   ===>>>  done processing event #15, run #1 16 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-00000010].
-EventSelector       DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000010].
-EventSelector       DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000010]
-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 #16, run #1 16 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 EventInfo event: 16 run: 1
-ReadData             INFO Get Smart data ptr 1
-ReadData             INFO Could not find ExampleTrackContainer/MyTracks
-ReadData             INFO Hit x = 1601.23 y = 97.655 z = -1373.33 detector = DummyHitDetector
-ReadData             INFO Hit x = 1604.44 y = 91.9761 z = -1505.27 detector = DummyHitDetector
-ReadData             INFO Hit x = 1607.65 y = 86.2972 z = -1529.77 detector = DummyHitDetector
-ReadData             INFO Hit x = 1610.86 y = 80.6183 z = -1540.09 detector = DummyHitDetector
-ReadData             INFO Hit x = 1614.07 y = 74.9394 z = -1545.77 detector = DummyHitDetector
-ReadData             INFO Hit x = 1617.28 y = 69.2605 z = -1549.38 detector = DummyHitDetector
-ReadData             INFO Hit x = 1620.49 y = 63.5816 z = -1551.86 detector = DummyHitDetector
-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
-WriteCond           DEBUG in execute()
-WriteCond            INFO Hit x = 1601.23 y = 97.655 z = -1373.33 detector = DummyHitDetector
-WriteCond            INFO Hit x = 1604.44 y = 91.9761 z = -1505.27 detector = DummyHitDetector
-WriteCond            INFO Hit x = 1607.65 y = 86.2972 z = -1529.77 detector = DummyHitDetector
-WriteCond            INFO Hit x = 1610.86 y = 80.6183 z = -1540.09 detector = DummyHitDetector
-WriteCond            INFO Hit x = 1614.07 y = 74.9394 z = -1545.77 detector = DummyHitDetector
-WriteCond            INFO Hit x = 1617.28 y = 69.2605 z = -1549.38 detector = DummyHitDetector
-WriteCond            INFO Hit x = 1620.49 y = 63.5816 z = -1551.86 detector = DummyHitDetector
-WriteCond            INFO Hit x = 1623.7 y = 57.9027 z = -1553.68 detector = DummyHitDetector
-WriteCond            INFO Hit x = 1626.91 y = 52.2238 z = -1555.07 detector = DummyHitDetector
-WriteCond            INFO Hit x = 1630.12 y = 46.5449 z = -1556.17 detector = DummyHitDetector
-WriteCond            INFO registered all data
-AthenaEventLoopMgr   INFO   ===>>>  done processing event #16, run #1 17 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-00000011].
-EventSelector       DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000011].
-EventSelector       DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000011]
-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 #17, run #1 17 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 EventInfo event: 17 run: 1
-ReadData             INFO Get Smart data ptr 1
-ReadData             INFO Could not find ExampleTrackContainer/MyTracks
-ReadData             INFO Hit x = 1701.23 y = 97.655 z = -1473.33 detector = DummyHitDetector
-ReadData             INFO Hit x = 1704.44 y = 91.9761 z = -1605.27 detector = DummyHitDetector
-ReadData             INFO Hit x = 1707.65 y = 86.2972 z = -1629.77 detector = DummyHitDetector
-ReadData             INFO Hit x = 1710.86 y = 80.6183 z = -1640.09 detector = DummyHitDetector
-ReadData             INFO Hit x = 1714.07 y = 74.9394 z = -1645.77 detector = DummyHitDetector
-ReadData             INFO Hit x = 1717.28 y = 69.2605 z = -1649.38 detector = DummyHitDetector
-ReadData             INFO Hit x = 1720.49 y = 63.5816 z = -1651.86 detector = DummyHitDetector
-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
-WriteCond           DEBUG in execute()
-WriteCond            INFO Hit x = 1701.23 y = 97.655 z = -1473.33 detector = DummyHitDetector
-WriteCond            INFO Hit x = 1704.44 y = 91.9761 z = -1605.27 detector = DummyHitDetector
-WriteCond            INFO Hit x = 1707.65 y = 86.2972 z = -1629.77 detector = DummyHitDetector
-WriteCond            INFO Hit x = 1710.86 y = 80.6183 z = -1640.09 detector = DummyHitDetector
-WriteCond            INFO Hit x = 1714.07 y = 74.9394 z = -1645.77 detector = DummyHitDetector
-WriteCond            INFO Hit x = 1717.28 y = 69.2605 z = -1649.38 detector = DummyHitDetector
-WriteCond            INFO Hit x = 1720.49 y = 63.5816 z = -1651.86 detector = DummyHitDetector
-WriteCond            INFO Hit x = 1723.7 y = 57.9027 z = -1653.68 detector = DummyHitDetector
-WriteCond            INFO Hit x = 1726.91 y = 52.2238 z = -1655.07 detector = DummyHitDetector
-WriteCond            INFO Hit x = 1730.12 y = 46.5449 z = -1656.17 detector = DummyHitDetector
-WriteCond            INFO registered all data
-AthenaEventLoopMgr   INFO   ===>>>  done processing event #17, run #1 18 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-00000012].
-EventSelector       DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000012].
-EventSelector       DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000012]
-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 #18, run #1 18 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 EventInfo event: 18 run: 1
-ReadData             INFO Get Smart data ptr 1
-ReadData             INFO Could not find ExampleTrackContainer/MyTracks
-ReadData             INFO Hit x = 1801.23 y = 97.655 z = -1573.33 detector = DummyHitDetector
-ReadData             INFO Hit x = 1804.44 y = 91.9761 z = -1705.27 detector = DummyHitDetector
-ReadData             INFO Hit x = 1807.65 y = 86.2972 z = -1729.77 detector = DummyHitDetector
-ReadData             INFO Hit x = 1810.86 y = 80.6183 z = -1740.09 detector = DummyHitDetector
-ReadData             INFO Hit x = 1814.07 y = 74.9394 z = -1745.77 detector = DummyHitDetector
-ReadData             INFO Hit x = 1817.28 y = 69.2605 z = -1749.38 detector = DummyHitDetector
-ReadData             INFO Hit x = 1820.49 y = 63.5816 z = -1751.86 detector = DummyHitDetector
-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
-WriteCond           DEBUG in execute()
-WriteCond            INFO Hit x = 1801.23 y = 97.655 z = -1573.33 detector = DummyHitDetector
-WriteCond            INFO Hit x = 1804.44 y = 91.9761 z = -1705.27 detector = DummyHitDetector
-WriteCond            INFO Hit x = 1807.65 y = 86.2972 z = -1729.77 detector = DummyHitDetector
-WriteCond            INFO Hit x = 1810.86 y = 80.6183 z = -1740.09 detector = DummyHitDetector
-WriteCond            INFO Hit x = 1814.07 y = 74.9394 z = -1745.77 detector = DummyHitDetector
-WriteCond            INFO Hit x = 1817.28 y = 69.2605 z = -1749.38 detector = DummyHitDetector
-WriteCond            INFO Hit x = 1820.49 y = 63.5816 z = -1751.86 detector = DummyHitDetector
-WriteCond            INFO Hit x = 1823.7 y = 57.9027 z = -1753.68 detector = DummyHitDetector
-WriteCond            INFO Hit x = 1826.91 y = 52.2238 z = -1755.07 detector = DummyHitDetector
-WriteCond            INFO Hit x = 1830.12 y = 46.5449 z = -1756.17 detector = DummyHitDetector
-WriteCond            INFO registered all data
-AthenaEventLoopMgr   INFO   ===>>>  done processing event #18, run #1 19 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-00000013].
-EventSelector       DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000013].
-EventSelector       DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000013]
-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 #19, run #1 19 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 EventInfo event: 19 run: 1
-ReadData             INFO Get Smart data ptr 1
-ReadData             INFO Could not find ExampleTrackContainer/MyTracks
-ReadData             INFO Hit x = 1901.23 y = 97.655 z = -1673.33 detector = DummyHitDetector
-ReadData             INFO Hit x = 1904.44 y = 91.9761 z = -1805.27 detector = DummyHitDetector
-ReadData             INFO Hit x = 1907.65 y = 86.2972 z = -1829.77 detector = DummyHitDetector
-ReadData             INFO Hit x = 1910.86 y = 80.6183 z = -1840.09 detector = DummyHitDetector
-ReadData             INFO Hit x = 1914.07 y = 74.9394 z = -1845.77 detector = DummyHitDetector
-ReadData             INFO Hit x = 1917.28 y = 69.2605 z = -1849.38 detector = DummyHitDetector
-ReadData             INFO Hit x = 1920.49 y = 63.5816 z = -1851.86 detector = DummyHitDetector
-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
-WriteCond           DEBUG in execute()
-WriteCond            INFO Hit x = 1901.23 y = 97.655 z = -1673.33 detector = DummyHitDetector
-WriteCond            INFO Hit x = 1904.44 y = 91.9761 z = -1805.27 detector = DummyHitDetector
-WriteCond            INFO Hit x = 1907.65 y = 86.2972 z = -1829.77 detector = DummyHitDetector
-WriteCond            INFO Hit x = 1910.86 y = 80.6183 z = -1840.09 detector = DummyHitDetector
-WriteCond            INFO Hit x = 1914.07 y = 74.9394 z = -1845.77 detector = DummyHitDetector
-WriteCond            INFO Hit x = 1917.28 y = 69.2605 z = -1849.38 detector = DummyHitDetector
-WriteCond            INFO Hit x = 1920.49 y = 63.5816 z = -1851.86 detector = DummyHitDetector
-WriteCond            INFO Hit x = 1923.7 y = 57.9027 z = -1853.68 detector = DummyHitDetector
-WriteCond            INFO Hit x = 1926.91 y = 52.2238 z = -1855.07 detector = DummyHitDetector
-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
-MetaDataSvc         DEBUG handle() LastInputFile for end
-AthenaEventLoopMgr   INFO No more events in event selection 
-WriteCond            INFO in finalize()
-WriteCond            INFO Pedestal x = 309704 y = 41630 z = -242812 string = <..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o>
-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   UPDATE    [ROOT_All] ????
-Domain[ROOT_All]     INFO                           SimplePoolFile4.root
-SimplePoolFile4...  DEBUG --> Access   DbContainer  CREA/UPDA [ROOT_All] ##Shapes
-##Shapes            DEBUG Opening
-##Shapes            DEBUG    attributes# = 1
-##Shapes            DEBUG Opened container ##Shapes of type ROOT_Tree
-SimplePoolFile4...  DEBUG --->Reading Shape[0 , ????]: [1 Column(s)]
-SimplePoolFile4...  DEBUG ---->[0]:ExampleHitContainer_p1 Typ:ExampleHitContainer_p1 [21] Size:0 Offset:0 #Elements:1
-SimplePoolFile4...  DEBUG --->Reading Shape[1 , ????]: [1 Column(s)]
-SimplePoolFile4...  DEBUG ---->[0]:DataHeaderForm_p5 Typ:DataHeaderForm_p5 [21] Size:0 Offset:0 #Elements:1
-SimplePoolFile4...  DEBUG --->Reading Shape[2 , ????]: [1 Column(s)]
-SimplePoolFile4...  DEBUG ---->[0]:DataHeader_p5 Typ:DataHeader_p5 [21] Size:0 Offset:0 #Elements:1
-##Shapes            DEBUG No objects passing selection criteria... Container has 3 Entries in total.
-SimplePoolFile4...  DEBUG --> Access   DbContainer  CREA/UPDA [ROOT_All] ##Links
-##Links             DEBUG Opening
-##Links             DEBUG    attributes# = 1
-##Links             DEBUG Opened container ##Links of type ROOT_Tree
-SimplePoolFile4...  DEBUG --->Reading Assoc:????/##Params [200]  (2 , ffffffff)
-SimplePoolFile4...  DEBUG ---->ClassID:????
-SimplePoolFile4...  DEBUG --->Reading Assoc:????/ConditionsContainer(ExampleHitContainer_p1/PedestalWriteData) [202]  (3 , ffffffff)
-SimplePoolFile4...  DEBUG ---->ClassID:????
-SimplePoolFile4...  DEBUG --->Reading Assoc:????/POOLContainerForm(DataHeaderForm) [202]  (4 , ffffffff)
-SimplePoolFile4...  DEBUG ---->ClassID:????
-SimplePoolFile4...  DEBUG --->Reading Assoc:????/POOLContainer(DataHeader) [202]  (5 , ffffffff)
-SimplePoolFile4...  DEBUG ---->ClassID:????
-##Links             DEBUG No objects passing selection criteria... Container has 4 Entries in total.
-SimplePoolFile4...  DEBUG --> Access   DbContainer  CREA/UPDA [ROOT_All] ##Params
-##Params            DEBUG Opening
-##Params            DEBUG    attributes# = 1
-##Params            DEBUG Opened container ##Params of type ROOT_Tree
-SimplePoolFile4...  DEBUG --->Reading Param:FID=[????]
-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.
-Stream1              INFO Identified a total of 1 objects to write out:
-Stream1              INFO 0: ExampleHitContainer#PedestalAppendData#PedestalAppendData
-SimplePoolFile4...  DEBUG --> Access   DbContainer  CREA/UPDA [ROOT_Tree] ConditionsContainer(ExampleHitContainer_p1/PedestalAppendData)
-ConditionsConta...  DEBUG Opening
-ConditionsConta...  DEBUG    attributes# = 1
-ConditionsConta...  DEBUG Branch container 'ExampleHitContainer_p1_PedestalAppendData'
-ConditionsConta...  DEBUG Opened container ConditionsContainer(ExampleHitContainer_p1/PedestalAppendData) of type ROOT_Tree
-SimplePoolFile4...  DEBUG --->Adding Assoc :????/ConditionsContainer(ExampleHitContainer_p1/PedestalAppendData) [202]  (6 , ffffffff)
-SimplePoolFile4...  DEBUG ---->ClassID:????
-SimplePoolFile4...  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
-SimplePoolFile4...  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
-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   UPDATE    [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
-cRep_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
-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=   60 [ms] Ave/Min/Max=0.952(+- 3.87)/    0/   20 [ms] #= 63
-ChronoStatSvc        INFO Time User   : Tot= 0.98  [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_Copy.ref b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_Copy.ref
index 0f18961d46d48aefe9ef154516a128a7073e9c13..5e60940b6994ee794c77510804af3285ed780ad0 100644
--- a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_Copy.ref
+++ b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_Copy.ref
@@ -135,7 +135,7 @@ 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 retrieve DataHeader from DetectorStore.
+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'])
diff --git a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_Filter.ref b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_Filter.ref
index 0e955f0f98be7f36b1ec524815cc7ce93cb08f75..0af49e99dd0ad19f0de3c559e4712a27aed03800 100644
--- a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_Filter.ref
+++ b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_Filter.ref
@@ -1,4 +1,4 @@
-Wed Dec 20 16:02:00 CST 2017
+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"
@@ -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_FilterJobOptions.py"
-Py:ConfigurableDb    INFO Read module info for 5439 configurables from 18 genConfDb files
+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 v30r0)
-                                          running on atlas2.hep.anl.gov on Wed Dec 20 16:02:10 2017
+                                                   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
@@ -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 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
@@ -34,8 +34,8 @@ 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 ]
+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
@@ -127,13 +127,12 @@ 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
 Stream1             DEBUG Property update for OutputLevel : new value = 2
 Stream1.Stream1...  DEBUG Property update for OutputLevel : new value = 2
-ClassIDSvc           INFO  getRegistryEntries: read 3123 CLIDRegistry entries for module ALL
+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,7 +144,7 @@ OutputStreamSeq...   INFO Initializing OutputStreamSequencerSvc - package versio
 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 retrieve DataHeader from DetectorStore.
+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'])
@@ -241,8 +240,6 @@ ClassIDSvc           INFO  getRegistryEntries: read 11 CLIDRegistry entries for
 AthenaEventLoopMgr   INFO   ===>>>  start of run 1    <<<===
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #10, run #1 0 events processed so far  <<<===
 ReadData            DEBUG in execute()
-ReadData             INFO CollectionMetadata, key = Name, value = PFN:SimplePoolCollection3.root
-ReadData             INFO CollectionMetadata, key = POOLCollectionID, value = ????
 SimplePoolFile3...  DEBUG --> Access   DbContainer  READ      [ROOT_Tree] MetaData(EventStreamInfo_p3/Stream1)
 MetaData(EventS...  DEBUG Opening
 MetaData(EventS...  DEBUG    attributes# = 1
@@ -369,8 +366,6 @@ AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 2101, name =
 AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 9103, name = MyTracks
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #11, run #1 1 events processed so far  <<<===
 ReadData            DEBUG in execute()
-ReadData             INFO CollectionMetadata, key = Name, value = PFN:SimplePoolCollection3.root
-ReadData             INFO CollectionMetadata, key = POOLCollectionID, value = ????
 ReadData             INFO EventStreamInfo: Number of events = 20
 ReadData             INFO EventStreamInfo: ItemList:
 ReadData             INFO CLID = 2101, key = McEventInfo
@@ -416,8 +411,6 @@ AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 2101, name =
 AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 9103, name = MyTracks
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #12, run #1 2 events processed so far  <<<===
 ReadData            DEBUG in execute()
-ReadData             INFO CollectionMetadata, key = Name, value = PFN:SimplePoolCollection3.root
-ReadData             INFO CollectionMetadata, key = POOLCollectionID, value = ????
 ReadData             INFO EventStreamInfo: Number of events = 20
 ReadData             INFO EventStreamInfo: ItemList:
 ReadData             INFO CLID = 2101, key = McEventInfo
@@ -463,8 +456,6 @@ AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 2101, name =
 AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 9103, name = MyTracks
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #13, run #1 3 events processed so far  <<<===
 ReadData            DEBUG in execute()
-ReadData             INFO CollectionMetadata, key = Name, value = PFN:SimplePoolCollection3.root
-ReadData             INFO CollectionMetadata, key = POOLCollectionID, value = ????
 ReadData             INFO EventStreamInfo: Number of events = 20
 ReadData             INFO EventStreamInfo: ItemList:
 ReadData             INFO CLID = 2101, key = McEventInfo
@@ -510,8 +501,6 @@ AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 2101, name =
 AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 9103, name = MyTracks
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #14, run #1 4 events processed so far  <<<===
 ReadData            DEBUG in execute()
-ReadData             INFO CollectionMetadata, key = Name, value = PFN:SimplePoolCollection3.root
-ReadData             INFO CollectionMetadata, key = POOLCollectionID, value = ????
 ReadData             INFO EventStreamInfo: Number of events = 20
 ReadData             INFO EventStreamInfo: ItemList:
 ReadData             INFO CLID = 2101, key = McEventInfo
@@ -557,8 +546,6 @@ AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 2101, name =
 AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 9103, name = MyTracks
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #15, run #1 5 events processed so far  <<<===
 ReadData            DEBUG in execute()
-ReadData             INFO CollectionMetadata, key = Name, value = PFN:SimplePoolCollection3.root
-ReadData             INFO CollectionMetadata, key = POOLCollectionID, value = ????
 ReadData             INFO EventStreamInfo: Number of events = 20
 ReadData             INFO EventStreamInfo: ItemList:
 ReadData             INFO CLID = 2101, key = McEventInfo
@@ -604,8 +591,6 @@ AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 2101, name =
 AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 9103, name = MyTracks
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #16, run #1 6 events processed so far  <<<===
 ReadData            DEBUG in execute()
-ReadData             INFO CollectionMetadata, key = Name, value = PFN:SimplePoolCollection3.root
-ReadData             INFO CollectionMetadata, key = POOLCollectionID, value = ????
 ReadData             INFO EventStreamInfo: Number of events = 20
 ReadData             INFO EventStreamInfo: ItemList:
 ReadData             INFO CLID = 2101, key = McEventInfo
@@ -651,8 +636,6 @@ AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 2101, name =
 AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 9103, name = MyTracks
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #17, run #1 7 events processed so far  <<<===
 ReadData            DEBUG in execute()
-ReadData             INFO CollectionMetadata, key = Name, value = PFN:SimplePoolCollection3.root
-ReadData             INFO CollectionMetadata, key = POOLCollectionID, value = ????
 ReadData             INFO EventStreamInfo: Number of events = 20
 ReadData             INFO EventStreamInfo: ItemList:
 ReadData             INFO CLID = 2101, key = McEventInfo
@@ -698,8 +681,6 @@ AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 2101, name =
 AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 9103, name = MyTracks
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #18, run #1 8 events processed so far  <<<===
 ReadData            DEBUG in execute()
-ReadData             INFO CollectionMetadata, key = Name, value = PFN:SimplePoolCollection3.root
-ReadData             INFO CollectionMetadata, key = POOLCollectionID, value = ????
 ReadData             INFO EventStreamInfo: Number of events = 20
 ReadData             INFO EventStreamInfo: ItemList:
 ReadData             INFO CLID = 2101, key = McEventInfo
@@ -745,8 +726,6 @@ AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 2101, name =
 AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 9103, name = MyTracks
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #19, run #1 9 events processed so far  <<<===
 ReadData            DEBUG in execute()
-ReadData             INFO CollectionMetadata, key = Name, value = PFN:SimplePoolCollection3.root
-ReadData             INFO CollectionMetadata, key = POOLCollectionID, value = ????
 ReadData             INFO EventStreamInfo: Number of events = 20
 ReadData             INFO EventStreamInfo: ItemList:
 ReadData             INFO CLID = 2101, key = McEventInfo
@@ -843,13 +822,13 @@ EventSelector.Q...   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] #= 11
 fRep_ALL             INFO Time User   : Tot=    0 [us] Ave/Min/Max=    0(+-    0)/    0/    0 [us] #= 42
-cRep_ALL             INFO Time User   : Tot=    0 [us] Ave/Min/Max=    0(+-    0)/    0/    0 [us] #= 42
-cRepR_ALL            INFO Time User   : Tot=    0 [us] Ave/Min/Max=    0(+-    0)/    0/    0 [us] #= 63
-cObjR_ALL            INFO Time User   : Tot=    0 [us] Ave/Min/Max=    0(+-    0)/    0/    0 [us] #= 35
-cObj_ALL             INFO Time User   : Tot=   30 [ms] Ave/Min/Max=0.909(+- 2.87)/    0/   10 [ms] #= 33
-ChronoStatSvc        INFO Time User   : Tot= 1.04  [s]                                             #=  1
+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 2fefed71e3cb5e1b827313a1b86a0814e461bdc1..fbf88a0f652c966a5c6ef343a871e95451e06988 100644
--- a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_RCond.ref
+++ b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_RCond.ref
@@ -6,7 +6,7 @@ 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 5439 configurables from 18 genConfDb files
+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
@@ -152,9 +152,7 @@ SimplePoolFile4...  DEBUG --->Reading Assoc:????/POOLContainerForm(DataHeaderFor
 SimplePoolFile4...  DEBUG ---->ClassID:????
 SimplePoolFile4...  DEBUG --->Reading Assoc:????/POOLContainer(DataHeader) [202]  (5 , ffffffff)
 SimplePoolFile4...  DEBUG ---->ClassID:????
-SimplePoolFile4...  DEBUG --->Reading Assoc:????/ConditionsContainer(ExampleHitContainer_p1/PedestalAppendData) [202]  (6 , ffffffff)
-SimplePoolFile4...  DEBUG ---->ClassID:????
-##Links             DEBUG No objects passing selection criteria... Container has 5 Entries in total.
+##Links             DEBUG No objects passing selection criteria... Container has 4 Entries in total.
 SimplePoolFile4...  DEBUG --> Access   DbContainer  READ      [ROOT_All] ##Params
 ##Params            DEBUG Opening
 ##Params            DEBUG    attributes# = 1
@@ -239,7 +237,7 @@ 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 2680 CLIDRegistry entries for module ALL
+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]
@@ -262,50 +260,7 @@ ClassIDSvc           INFO  getRegistryEntries: read 11 CLIDRegistry entries for
 AthenaEventLoopMgr   INFO   ===>>>  start of run 1    <<<===
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #0, run #1 0 events processed so far  <<<===
 ReadCond            DEBUG in execute()
-AthenaPoolAddre...  DEBUG Cannot retrieve DataHeader from DetectorStore.
-SimplePoolFile4...  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
-Domain[ROOT_All]     INFO ->  Deaccess DbDatabase   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
-##Shapes            DEBUG    attributes# = 1
-##Shapes            DEBUG Opened container ##Shapes of type ROOT_Tree
-SimplePoolFile4...  DEBUG --->Reading Shape[0 , ????]: [1 Column(s)]
-SimplePoolFile4...  DEBUG ---->[0]:ExampleHitContainer_p1 Typ:ExampleHitContainer_p1 [21] Size:0 Offset:0 #Elements:1
-SimplePoolFile4...  DEBUG --->Reading Shape[1 , ????]: [1 Column(s)]
-SimplePoolFile4...  DEBUG ---->[0]:DataHeaderForm_p5 Typ:DataHeaderForm_p5 [21] Size:0 Offset:0 #Elements:1
-SimplePoolFile4...  DEBUG --->Reading Shape[2 , ????]: [1 Column(s)]
-SimplePoolFile4...  DEBUG ---->[0]:DataHeader_p5 Typ:DataHeader_p5 [21] Size:0 Offset:0 #Elements:1
-##Shapes            DEBUG No objects passing selection criteria... Container has 3 Entries in total.
-SimplePoolFile4...  DEBUG --> Access   DbContainer  READ      [ROOT_All] ##Links
-##Links             DEBUG Opening
-##Links             DEBUG    attributes# = 1
-##Links             DEBUG Opened container ##Links of type ROOT_Tree
-SimplePoolFile4...  DEBUG --->Reading Assoc:????/##Params [200]  (2 , ffffffff)
-SimplePoolFile4...  DEBUG ---->ClassID:????
-SimplePoolFile4...  DEBUG --->Reading Assoc:????/ConditionsContainer(ExampleHitContainer_p1/PedestalWriteData) [202]  (3 , ffffffff)
-SimplePoolFile4...  DEBUG ---->ClassID:????
-SimplePoolFile4...  DEBUG --->Reading Assoc:????/POOLContainerForm(DataHeaderForm) [202]  (4 , ffffffff)
-SimplePoolFile4...  DEBUG ---->ClassID:????
-SimplePoolFile4...  DEBUG --->Reading Assoc:????/POOLContainer(DataHeader) [202]  (5 , ffffffff)
-SimplePoolFile4...  DEBUG ---->ClassID:????
-SimplePoolFile4...  DEBUG --->Reading Assoc:????/ConditionsContainer(ExampleHitContainer_p1/PedestalAppendData) [202]  (6 , ffffffff)
-SimplePoolFile4...  DEBUG ---->ClassID:????
-##Links             DEBUG No objects passing selection criteria... Container has 5 Entries in total.
-SimplePoolFile4...  DEBUG --> Access   DbContainer  READ      [ROOT_All] ##Params
-##Params            DEBUG Opening
-##Params            DEBUG    attributes# = 1
-##Params            DEBUG Opened container ##Params of type ROOT_Tree
-SimplePoolFile4...  DEBUG --->Reading Param:FID=[????]
-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.
+AthenaPoolAddre...  DEBUG Cannot find DataHeader in DetectorStore.
 SimplePoolFile4...  DEBUG --> Access   DbContainer  READ      [ROOT_Tree] POOLContainer(DataHeader)
 POOLContainer(D...  DEBUG Opening
 POOLContainer(D...  DEBUG    attributes# = 1
@@ -318,21 +273,12 @@ POOLContainerFo...  DEBUG Branch container 'DataHeaderForm'
 POOLContainerFo...  DEBUG Opened container POOLContainerForm(DataHeaderForm) of type ROOT_Tree
 CondProxyProvider   DEBUG The current File contains: 2 objects
 CondProxyProvider   DEBUG preLoadAddresses: DataObject address, clid = 9102, name = PedestalWriteData
-CondProxyProvider   DEBUG The current File contains: 2 objects
-CondProxyProvider   DEBUG preLoadAddresses: DataObject address, clid = 9102, name = PedestalAppendData
 SimplePoolFile4...  DEBUG --> Access   DbContainer  READ      [ROOT_Tree] ConditionsContainer(ExampleHitContainer_p1/PedestalWriteData)
 ConditionsConta...  DEBUG Opening
 ConditionsConta...  DEBUG    attributes# = 1
 ConditionsConta...  DEBUG Branch container 'ExampleHitContainer_p1_PedestalWriteData'
 ConditionsConta...  DEBUG Opened container ConditionsContainer(ExampleHitContainer_p1/PedestalWriteData) of type ROOT_Tree
 ReadCond             INFO Pedestal x = 193136 y = 14420 z = -175208 string = <..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o>
-ClassIDSvc           INFO  getRegistryEntries: read 10 CLIDRegistry entries for module ALL
-SimplePoolFile4...  DEBUG --> Access   DbContainer  READ      [ROOT_Tree] ConditionsContainer(ExampleHitContainer_p1/PedestalAppendData)
-ConditionsConta...  DEBUG Opening
-ConditionsConta...  DEBUG    attributes# = 1
-ConditionsConta...  DEBUG Branch container 'ExampleHitContainer_p1_PedestalAppendData'
-ConditionsConta...  DEBUG Opened container ConditionsContainer(ExampleHitContainer_p1/PedestalAppendData) of type ROOT_Tree
-ReadCond             INFO Pedestal (2) x = 309704 y = 41630 z = -242812 string = <..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o>
 ReadData            DEBUG in execute()
 SimplePoolFile1...  DEBUG --> Access   DbContainer  READ      [ROOT_Tree] MetaData(EventStreamInfo_p3/Stream1)
 MetaData(EventS...  DEBUG Opening
@@ -346,6 +292,7 @@ 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
@@ -376,7 +323,6 @@ AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 9102, name =
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #1, run #1 1 events processed so far  <<<===
 ReadCond            DEBUG in execute()
 ReadCond             INFO Pedestal x = 193136 y = 14420 z = -175208 string = <..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o>
-ReadCond             INFO Pedestal (2) x = 309704 y = 41630 z = -242812 string = <..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o>
 ReadData            DEBUG in execute()
 ReadData             INFO EventStreamInfo: Number of events = 20
 ReadData             INFO EventStreamInfo: ItemList:
@@ -410,7 +356,6 @@ AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 9102, name =
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #2, run #1 2 events processed so far  <<<===
 ReadCond            DEBUG in execute()
 ReadCond             INFO Pedestal x = 193136 y = 14420 z = -175208 string = <..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o>
-ReadCond             INFO Pedestal (2) x = 309704 y = 41630 z = -242812 string = <..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o>
 ReadData            DEBUG in execute()
 ReadData             INFO EventStreamInfo: Number of events = 20
 ReadData             INFO EventStreamInfo: ItemList:
@@ -444,7 +389,6 @@ AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 9102, name =
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #3, run #1 3 events processed so far  <<<===
 ReadCond            DEBUG in execute()
 ReadCond             INFO Pedestal x = 193136 y = 14420 z = -175208 string = <..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o>
-ReadCond             INFO Pedestal (2) x = 309704 y = 41630 z = -242812 string = <..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o>
 ReadData            DEBUG in execute()
 ReadData             INFO EventStreamInfo: Number of events = 20
 ReadData             INFO EventStreamInfo: ItemList:
@@ -478,7 +422,6 @@ AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 9102, name =
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #4, run #1 4 events processed so far  <<<===
 ReadCond            DEBUG in execute()
 ReadCond             INFO Pedestal x = 193136 y = 14420 z = -175208 string = <..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o>
-ReadCond             INFO Pedestal (2) x = 309704 y = 41630 z = -242812 string = <..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o>
 ReadData            DEBUG in execute()
 ReadData             INFO EventStreamInfo: Number of events = 20
 ReadData             INFO EventStreamInfo: ItemList:
@@ -512,7 +455,6 @@ AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 9102, name =
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #5, run #1 5 events processed so far  <<<===
 ReadCond            DEBUG in execute()
 ReadCond             INFO Pedestal x = 193136 y = 14420 z = -175208 string = <..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o>
-ReadCond             INFO Pedestal (2) x = 309704 y = 41630 z = -242812 string = <..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o>
 ReadData            DEBUG in execute()
 ReadData             INFO EventStreamInfo: Number of events = 20
 ReadData             INFO EventStreamInfo: ItemList:
@@ -546,7 +488,6 @@ AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 9102, name =
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #6, run #1 6 events processed so far  <<<===
 ReadCond            DEBUG in execute()
 ReadCond             INFO Pedestal x = 193136 y = 14420 z = -175208 string = <..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o>
-ReadCond             INFO Pedestal (2) x = 309704 y = 41630 z = -242812 string = <..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o>
 ReadData            DEBUG in execute()
 ReadData             INFO EventStreamInfo: Number of events = 20
 ReadData             INFO EventStreamInfo: ItemList:
@@ -580,7 +521,6 @@ AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 9102, name =
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #7, run #1 7 events processed so far  <<<===
 ReadCond            DEBUG in execute()
 ReadCond             INFO Pedestal x = 193136 y = 14420 z = -175208 string = <..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o>
-ReadCond             INFO Pedestal (2) x = 309704 y = 41630 z = -242812 string = <..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o>
 ReadData            DEBUG in execute()
 ReadData             INFO EventStreamInfo: Number of events = 20
 ReadData             INFO EventStreamInfo: ItemList:
@@ -614,7 +554,6 @@ AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 9102, name =
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #8, run #1 8 events processed so far  <<<===
 ReadCond            DEBUG in execute()
 ReadCond             INFO Pedestal x = 193136 y = 14420 z = -175208 string = <..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o>
-ReadCond             INFO Pedestal (2) x = 309704 y = 41630 z = -242812 string = <..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o>
 ReadData            DEBUG in execute()
 ReadData             INFO EventStreamInfo: Number of events = 20
 ReadData             INFO EventStreamInfo: ItemList:
@@ -648,7 +587,6 @@ AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 9102, name =
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #9, run #1 9 events processed so far  <<<===
 ReadCond            DEBUG in execute()
 ReadCond             INFO Pedestal x = 193136 y = 14420 z = -175208 string = <..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o>
-ReadCond             INFO Pedestal (2) x = 309704 y = 41630 z = -242812 string = <..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o>
 ReadData            DEBUG in execute()
 ReadData             INFO EventStreamInfo: Number of events = 20
 ReadData             INFO EventStreamInfo: ItemList:
@@ -682,7 +620,6 @@ AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 9102, name =
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #10, run #1 10 events processed so far  <<<===
 ReadCond            DEBUG in execute()
 ReadCond             INFO Pedestal x = 193136 y = 14420 z = -175208 string = <..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o>
-ReadCond             INFO Pedestal (2) x = 309704 y = 41630 z = -242812 string = <..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o>
 ReadData            DEBUG in execute()
 ReadData             INFO EventStreamInfo: Number of events = 20
 ReadData             INFO EventStreamInfo: ItemList:
@@ -716,7 +653,6 @@ AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 9102, name =
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #11, run #1 11 events processed so far  <<<===
 ReadCond            DEBUG in execute()
 ReadCond             INFO Pedestal x = 193136 y = 14420 z = -175208 string = <..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o>
-ReadCond             INFO Pedestal (2) x = 309704 y = 41630 z = -242812 string = <..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o>
 ReadData            DEBUG in execute()
 ReadData             INFO EventStreamInfo: Number of events = 20
 ReadData             INFO EventStreamInfo: ItemList:
@@ -750,7 +686,6 @@ AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 9102, name =
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #12, run #1 12 events processed so far  <<<===
 ReadCond            DEBUG in execute()
 ReadCond             INFO Pedestal x = 193136 y = 14420 z = -175208 string = <..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o>
-ReadCond             INFO Pedestal (2) x = 309704 y = 41630 z = -242812 string = <..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o>
 ReadData            DEBUG in execute()
 ReadData             INFO EventStreamInfo: Number of events = 20
 ReadData             INFO EventStreamInfo: ItemList:
@@ -784,7 +719,6 @@ AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 9102, name =
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #13, run #1 13 events processed so far  <<<===
 ReadCond            DEBUG in execute()
 ReadCond             INFO Pedestal x = 193136 y = 14420 z = -175208 string = <..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o>
-ReadCond             INFO Pedestal (2) x = 309704 y = 41630 z = -242812 string = <..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o>
 ReadData            DEBUG in execute()
 ReadData             INFO EventStreamInfo: Number of events = 20
 ReadData             INFO EventStreamInfo: ItemList:
@@ -818,7 +752,6 @@ AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 9102, name =
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #14, run #1 14 events processed so far  <<<===
 ReadCond            DEBUG in execute()
 ReadCond             INFO Pedestal x = 193136 y = 14420 z = -175208 string = <..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o>
-ReadCond             INFO Pedestal (2) x = 309704 y = 41630 z = -242812 string = <..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o>
 ReadData            DEBUG in execute()
 ReadData             INFO EventStreamInfo: Number of events = 20
 ReadData             INFO EventStreamInfo: ItemList:
@@ -852,7 +785,6 @@ AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 9102, name =
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #15, run #1 15 events processed so far  <<<===
 ReadCond            DEBUG in execute()
 ReadCond             INFO Pedestal x = 193136 y = 14420 z = -175208 string = <..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o>
-ReadCond             INFO Pedestal (2) x = 309704 y = 41630 z = -242812 string = <..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o>
 ReadData            DEBUG in execute()
 ReadData             INFO EventStreamInfo: Number of events = 20
 ReadData             INFO EventStreamInfo: ItemList:
@@ -886,7 +818,6 @@ AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 9102, name =
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #16, run #1 16 events processed so far  <<<===
 ReadCond            DEBUG in execute()
 ReadCond             INFO Pedestal x = 193136 y = 14420 z = -175208 string = <..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o>
-ReadCond             INFO Pedestal (2) x = 309704 y = 41630 z = -242812 string = <..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o>
 ReadData            DEBUG in execute()
 ReadData             INFO EventStreamInfo: Number of events = 20
 ReadData             INFO EventStreamInfo: ItemList:
@@ -920,7 +851,6 @@ AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 9102, name =
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #17, run #1 17 events processed so far  <<<===
 ReadCond            DEBUG in execute()
 ReadCond             INFO Pedestal x = 193136 y = 14420 z = -175208 string = <..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o>
-ReadCond             INFO Pedestal (2) x = 309704 y = 41630 z = -242812 string = <..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o>
 ReadData            DEBUG in execute()
 ReadData             INFO EventStreamInfo: Number of events = 20
 ReadData             INFO EventStreamInfo: ItemList:
@@ -954,7 +884,6 @@ AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 9102, name =
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #18, run #1 18 events processed so far  <<<===
 ReadCond            DEBUG in execute()
 ReadCond             INFO Pedestal x = 193136 y = 14420 z = -175208 string = <..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o>
-ReadCond             INFO Pedestal (2) x = 309704 y = 41630 z = -242812 string = <..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o>
 ReadData            DEBUG in execute()
 ReadData             INFO EventStreamInfo: Number of events = 20
 ReadData             INFO EventStreamInfo: ItemList:
@@ -988,7 +917,6 @@ AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 9102, name =
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #19, run #1 19 events processed so far  <<<===
 ReadCond            DEBUG in execute()
 ReadCond             INFO Pedestal x = 193136 y = 14420 z = -175208 string = <..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o>
-ReadCond             INFO Pedestal (2) x = 309704 y = 41630 z = -242812 string = <..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o..........o>
 ReadData            DEBUG in execute()
 ReadData             INFO EventStreamInfo: Number of events = 20
 ReadData             INFO EventStreamInfo: ItemList:
@@ -1019,12 +947,12 @@ 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
 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 ****************************************************************************************************
diff --git a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_ReWrite.ref b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_ReWrite.ref
index c50cd6a6d05272cea6f003a5cd4a53235f5e2b35..b4adf57970eb5b4ba4fbd0b272c3a00ec681d6cf 100644
--- a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_ReWrite.ref
+++ b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_ReWrite.ref
@@ -1,4 +1,4 @@
-Tue Jan  9 11:39:38 CST 2018
+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"
@@ -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_RWJobOptions.py"
-Py:ConfigurableDb    INFO Read module info for 5433 configurables from 15 genConfDb files
+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 atlas2.hep.anl.gov on Tue Jan  9 11:39:52 2018
+                                          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
@@ -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 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
@@ -35,8 +35,8 @@ 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/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 /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
@@ -125,7 +125,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
@@ -138,7 +137,7 @@ 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 3119 CLIDRegistry entries for module ALL
+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
@@ -151,7 +150,7 @@ 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 retrieve DataHeader from DetectorStore.
+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'])
@@ -1979,13 +1978,13 @@ 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
+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
-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=   30 [ms] Ave/Min/Max=0.476(+- 2.78)/    0/   20 [ms] #= 63
-ChronoStatSvc        INFO Time User   : Tot=  1.1  [s]                                             #=  1
+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 e9fc0ee545f4d2b70dade213ff560805c469c298..990115a685e7a98230f2015e96b17ccd1427c557 100644
--- a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_ReWriteAgain.ref
+++ b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_ReWriteAgain.ref
@@ -1,4 +1,4 @@
-Tue Jan  9 11:41:20 CST 2018
+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"
@@ -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_ReWriteAgainJobOptions.py"
-Py:ConfigurableDb    INFO Read module info for 5433 configurables from 15 genConfDb files
+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 atlas2.hep.anl.gov on Tue Jan  9 11:41:31 2018
+                                          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
@@ -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 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
@@ -35,8 +35,8 @@ 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/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 /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
@@ -118,7 +118,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
@@ -131,7 +130,7 @@ 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 3116 CLIDRegistry entries for module ALL
+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
@@ -144,7 +143,7 @@ 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 retrieve DataHeader from DetectorStore.
+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'])
@@ -2037,11 +2036,11 @@ ToolSvc              INFO Removing all tools created by ToolSvc
 *****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
-cObjR_ALL            INFO Time User   : Tot=   20 [ms] Ave/Min/Max=0.308(+- 1.73)/    0/   10 [ms] #= 65
-cRepR_ALL            INFO Time User   : Tot=   30 [ms] Ave/Min/Max=0.148(+- 1.21)/    0/   10 [ms] #=203
-cRep_ALL             INFO Time User   : Tot=   40 [ms] Ave/Min/Max=0.488(+- 2.15)/    0/   10 [ms] #= 82
-cObj_ALL             INFO Time User   : Tot=   40 [ms] Ave/Min/Max=0.635(+- 3.51)/    0/   20 [ms] #= 63
-ChronoStatSvc        INFO Time User   : Tot= 1.09  [s]                                             #=  1
+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 623777de069fd331aa6d1cc7ef637f509e1f2c4e..212cea123be4758c39c60fc1f025285709e97eac 100644
--- a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_ReWriteNext.ref
+++ b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_ReWriteNext.ref
@@ -1,4 +1,4 @@
-Tue Jan  9 11:41:36 CST 2018
+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"
@@ -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_ReWriteNextJobOptions.py"
-Py:ConfigurableDb    INFO Read module info for 5433 configurables from 15 genConfDb files
+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 atlas2.hep.anl.gov on Tue Jan  9 11:41:47 2018
+                                          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
@@ -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 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
@@ -35,8 +35,8 @@ 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/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 /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
@@ -125,7 +125,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
@@ -138,7 +137,7 @@ 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 3119 CLIDRegistry entries for module ALL
+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
@@ -151,7 +150,7 @@ 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 retrieve DataHeader from DetectorStore.
+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'])
@@ -1379,11 +1378,11 @@ ToolSvc              INFO Removing all tools created by ToolSvc
 *****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.0493(+-  0.7)/    0/   10 [ms] #=203
-cObjR_ALL            INFO Time User   : Tot=   10 [ms] Ave/Min/Max=0.154(+- 1.23)/    0/   10 [ms] #= 65
-cRep_ALL             INFO Time User   : Tot=   40 [ms] Ave/Min/Max=0.488(+- 2.15)/    0/   10 [ms] #= 82
-cObj_ALL             INFO Time User   : Tot=   40 [ms] Ave/Min/Max=0.635(+- 3.51)/    0/   20 [ms] #= 63
-ChronoStatSvc        INFO Time User   : Tot= 1.12  [s]                                             #=  1
+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 523f14283d6bb0d07a550625c06accfe2a6a1fde..fe23fcb22cb55636523416d6cbfac7673662a011 100644
--- a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_Read.ref
+++ b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_Read.ref
@@ -1,4 +1,4 @@
-Tue Jan  9 14:03:30 CST 2018
+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"
@@ -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_ReadJobOptions.py"
-Py:ConfigurableDb    INFO Read module info for 5433 configurables from 15 genConfDb files
+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 atlas2.hep.anl.gov on Tue Jan  9 14:03:40 2018
+                                          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
@@ -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 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
@@ -34,8 +34,8 @@ 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/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 /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
@@ -85,7 +85,6 @@ EmptyPoolFile.root  DEBUG --->Reading Param:FORMAT_VSN=[1.1]
 ##Params            DEBUG No objects passing selection criteria... Container has 4 Entries in total.
 PoolSvc              INFO Failed to find container POOLContainer(DataHeader) to create POOL collection.
 PoolSvc              INFO Failed to find container POOLContainer_DataHeader to create POOL collection.
-PoolCollectionC...   INFO Unable to create Collection: PFN:EmptyPoolFile.root container: POOLContainer_DataHeader
 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] 
@@ -168,7 +167,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
@@ -213,7 +211,6 @@ EmptyPoolFile.root  DEBUG --->Reading Param:FORMAT_VSN=[1.1]
 ##Params            DEBUG No objects passing selection criteria... Container has 4 Entries in total.
 PoolSvc              INFO Failed to find container POOLContainer(DataHeader) to create POOL collection.
 PoolSvc              INFO Failed to find container POOLContainer_DataHeader to create POOL collection.
-PoolCollectionC...   INFO Unable to create Collection: PFN:EmptyPoolFile.root container: POOLContainer_DataHeader
 EventSelector       DEBUG No events found in: EmptyPoolFile.root skipped!!!
 MetaDataSvc         DEBUG handle() BeginInputFile for EmptyPoolFile.root
 MetaDataSvc         DEBUG initInputMetaDataStore: file name EmptyPoolFile.root
@@ -257,7 +254,7 @@ 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 2679 CLIDRegistry entries for module ALL
+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]
@@ -316,7 +313,7 @@ ReadData             INFO Hit x = 1023.7 y = 57.9027 z = -953.684 detector = Dum
 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]: 28001
+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
@@ -349,7 +346,7 @@ 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]: 28001
+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
@@ -382,7 +379,7 @@ 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]: 28001
+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
@@ -415,7 +412,7 @@ 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]: 28001
+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
@@ -448,7 +445,7 @@ 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]: 28001
+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
@@ -481,7 +478,7 @@ 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]: 28001
+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
@@ -514,7 +511,7 @@ 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]: 28001
+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
@@ -547,7 +544,7 @@ 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]: 28001
+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
@@ -580,7 +577,7 @@ 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]: 28001
+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
@@ -613,7 +610,7 @@ 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]: 28001
+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:????
@@ -660,7 +657,6 @@ EmptyPoolFile.root  DEBUG --->Reading Param:FORMAT_VSN=[1.1]
 ##Params            DEBUG No objects passing selection criteria... Container has 4 Entries in total.
 PoolSvc              INFO Failed to find container POOLContainer(DataHeader) to create POOL collection.
 PoolSvc              INFO Failed to find container POOLContainer_DataHeader to create POOL collection.
-PoolCollectionC...   INFO Unable to create Collection: PFN:EmptyPoolFile.root container: POOLContainer_DataHeader
 EventSelector       DEBUG No events found in: EmptyPoolFile.root skipped!!!
 MetaDataSvc         DEBUG handle() BeginInputFile for EmptyPoolFile.root
 MetaDataSvc         DEBUG initInputMetaDataStore: file name EmptyPoolFile.root
@@ -813,7 +809,7 @@ 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]: 26594
+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
@@ -841,7 +837,7 @@ 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]: 26594
+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
@@ -869,7 +865,7 @@ 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]: 26594
+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
@@ -897,7 +893,7 @@ 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]: 26594
+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
@@ -925,7 +921,7 @@ 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]: 26594
+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
@@ -953,7 +949,7 @@ 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]: 26594
+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
@@ -981,7 +977,7 @@ 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]: 26594
+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
@@ -1009,7 +1005,7 @@ 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]: 26594
+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
@@ -1037,7 +1033,7 @@ 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]: 26594
+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
@@ -1065,7 +1061,7 @@ 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]: 26594
+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
@@ -1093,7 +1089,7 @@ 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]: 26594
+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
@@ -1121,7 +1117,7 @@ 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]: 26594
+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
@@ -1149,7 +1145,7 @@ 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]: 26594
+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
@@ -1177,7 +1173,7 @@ 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]: 26594
+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
@@ -1205,7 +1201,7 @@ 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]: 26594
+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
@@ -1233,7 +1229,7 @@ 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]: 26594
+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
@@ -1261,7 +1257,7 @@ 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]: 26594
+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
@@ -1289,7 +1285,7 @@ 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]: 26594
+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
@@ -1317,7 +1313,7 @@ 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]: 26594
+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
@@ -1345,7 +1341,7 @@ 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]: 26594
+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
@@ -1374,7 +1370,7 @@ 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]: 28482
+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
@@ -1402,7 +1398,7 @@ 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]: 28482
+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
@@ -1430,7 +1426,7 @@ 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]: 28482
+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
@@ -1458,7 +1454,7 @@ 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]: 28482
+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
@@ -1486,7 +1482,7 @@ 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]: 28482
+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
@@ -1514,7 +1510,7 @@ 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]: 28482
+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
@@ -1542,7 +1538,7 @@ 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]: 28482
+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
@@ -1570,7 +1566,7 @@ 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]: 28482
+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
@@ -1598,7 +1594,7 @@ 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]: 28482
+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
@@ -1626,7 +1622,7 @@ 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]: 28482
+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
@@ -1654,7 +1650,7 @@ 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]: 28482
+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
@@ -1682,7 +1678,7 @@ 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]: 28482
+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
@@ -1710,7 +1706,7 @@ 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]: 28482
+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
@@ -1738,7 +1734,7 @@ 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]: 28482
+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
@@ -1766,7 +1762,7 @@ 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]: 28482
+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
@@ -1794,7 +1790,7 @@ 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]: 28482
+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
@@ -1822,7 +1818,7 @@ 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]: 28482
+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
@@ -1850,7 +1846,7 @@ 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]: 28482
+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
@@ -1878,7 +1874,7 @@ 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]: 28482
+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
@@ -1906,7 +1902,7 @@ 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]: 28482
+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:????
@@ -2145,7 +2141,7 @@ 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]: 27198
+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
@@ -2192,7 +2188,7 @@ 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]: 27198
+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
@@ -2239,7 +2235,7 @@ 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]: 27198
+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
@@ -2286,7 +2282,7 @@ 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]: 27198
+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
@@ -2333,7 +2329,7 @@ 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]: 27198
+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
@@ -2380,7 +2376,7 @@ 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]: 27198
+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
@@ -2427,7 +2423,7 @@ 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]: 27198
+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
@@ -2474,7 +2470,7 @@ 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]: 27198
+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
@@ -2521,7 +2517,7 @@ 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]: 27198
+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
@@ -2568,7 +2564,7 @@ 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]: 27198
+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
@@ -2615,7 +2611,7 @@ 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]: 27198
+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
@@ -2662,7 +2658,7 @@ 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]: 27198
+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
@@ -2709,7 +2705,7 @@ 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]: 27198
+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
@@ -2756,7 +2752,7 @@ 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]: 27198
+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
@@ -2803,7 +2799,7 @@ 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]: 27198
+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
@@ -2850,7 +2846,7 @@ 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]: 27198
+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
@@ -2897,7 +2893,7 @@ 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]: 27198
+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
@@ -2944,7 +2940,7 @@ 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]: 27198
+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
@@ -2991,7 +2987,7 @@ 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]: 27198
+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
@@ -3038,7 +3034,7 @@ 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]: 27198
+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:????
@@ -3059,9 +3055,9 @@ 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.0368(+-0.605)/    0/   10 [ms] #=272
+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.06  [s]                                             #=  1
+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 ed04909f92636e2d6f7c06ce8a435bb14df65d1d..ace67d91e90ded7fdb472d0470a11097198f7cf0 100644
--- a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_ReadAgain.ref
+++ b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_ReadAgain.ref
@@ -1,4 +1,4 @@
-Tue Jan  9 14:05:58 CST 2018
+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"
@@ -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_ReadAgainJobOptions.py"
-Py:ConfigurableDb    INFO Read module info for 5433 configurables from 15 genConfDb files
+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 atlas2.hep.anl.gov on Tue Jan  9 14:06:08 2018
+                                          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
@@ -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 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
@@ -34,8 +34,8 @@ 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/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 /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
@@ -85,7 +85,6 @@ EmptyPoolFile.root  DEBUG --->Reading Param:FORMAT_VSN=[1.1]
 ##Params            DEBUG No objects passing selection criteria... Container has 4 Entries in total.
 PoolSvc              INFO Failed to find container POOLContainer(DataHeader) to create POOL collection.
 PoolSvc              INFO Failed to find container POOLContainer_DataHeader to create POOL collection.
-PoolCollectionC...   INFO Unable to create Collection: PFN:EmptyPoolFile.root container: POOLContainer_DataHeader
 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] 
@@ -161,7 +160,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
@@ -210,7 +208,6 @@ EmptyPoolFile.root  DEBUG --->Reading Param:FORMAT_VSN=[1.1]
 ##Params            DEBUG No objects passing selection criteria... Container has 4 Entries in total.
 PoolSvc              INFO Failed to find container POOLContainer(DataHeader) to create POOL collection.
 PoolSvc              INFO Failed to find container POOLContainer_DataHeader to create POOL collection.
-PoolCollectionC...   INFO Unable to create Collection: PFN:EmptyPoolFile.root container: POOLContainer_DataHeader
 EventSelector       DEBUG No events found in: EmptyPoolFile.root skipped!!!
 MetaDataSvc         DEBUG handle() BeginInputFile for EmptyPoolFile.root
 MetaDataSvc         DEBUG initInputMetaDataStore: file name EmptyPoolFile.root
@@ -321,7 +318,7 @@ 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 2676 CLIDRegistry entries for module ALL
+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]
@@ -375,7 +372,7 @@ ReadData             INFO Hit x = 1023.7 y = 57.9027 z = -953.684 detector = Dum
 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]: 27420
+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
@@ -408,7 +405,7 @@ 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]: 27420
+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
@@ -441,7 +438,7 @@ 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]: 27420
+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
@@ -474,7 +471,7 @@ 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]: 27420
+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
@@ -507,7 +504,7 @@ 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]: 27420
+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
@@ -540,7 +537,7 @@ 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]: 27420
+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
@@ -573,7 +570,7 @@ 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]: 27420
+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
@@ -606,7 +603,7 @@ 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]: 27420
+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
@@ -639,7 +636,7 @@ 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]: 27420
+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
@@ -672,7 +669,7 @@ 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]: 27420
+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] ????
@@ -719,7 +716,6 @@ EmptyPoolFile.root  DEBUG --->Reading Param:FORMAT_VSN=[1.1]
 ##Params            DEBUG No objects passing selection criteria... Container has 4 Entries in total.
 PoolSvc              INFO Failed to find container POOLContainer(DataHeader) to create POOL collection.
 PoolSvc              INFO Failed to find container POOLContainer_DataHeader to create POOL collection.
-PoolCollectionC...   INFO Unable to create Collection: PFN:EmptyPoolFile.root container: POOLContainer_DataHeader
 EventSelector       DEBUG No events found in: EmptyPoolFile.root skipped!!!
 MetaDataSvc         DEBUG handle() BeginInputFile for EmptyPoolFile.root
 MetaDataSvc         DEBUG initInputMetaDataStore: file name EmptyPoolFile.root
@@ -873,7 +869,7 @@ 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]: 26594
+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
@@ -901,7 +897,7 @@ 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]: 26594
+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
@@ -929,7 +925,7 @@ 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]: 26594
+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
@@ -957,7 +953,7 @@ 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]: 26594
+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
@@ -985,7 +981,7 @@ 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]: 26594
+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
@@ -1013,7 +1009,7 @@ 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]: 26594
+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
@@ -1041,7 +1037,7 @@ 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]: 26594
+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
@@ -1069,7 +1065,7 @@ 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]: 26594
+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
@@ -1097,7 +1093,7 @@ 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]: 26594
+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
@@ -1125,7 +1121,7 @@ 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]: 26594
+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
@@ -1153,7 +1149,7 @@ 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]: 26594
+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
@@ -1181,7 +1177,7 @@ 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]: 26594
+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
@@ -1209,7 +1205,7 @@ 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]: 26594
+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
@@ -1237,7 +1233,7 @@ 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]: 26594
+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
@@ -1265,7 +1261,7 @@ 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]: 26594
+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
@@ -1293,7 +1289,7 @@ 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]: 26594
+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
@@ -1321,7 +1317,7 @@ 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]: 26594
+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
@@ -1349,7 +1345,7 @@ 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]: 26594
+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
@@ -1377,7 +1373,7 @@ 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]: 26594
+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
@@ -1405,7 +1401,7 @@ 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]: 26594
+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
@@ -1434,7 +1430,7 @@ 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]: 28482
+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
@@ -1462,7 +1458,7 @@ 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]: 28482
+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
@@ -1490,7 +1486,7 @@ 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]: 28482
+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
@@ -1518,7 +1514,7 @@ 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]: 28482
+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
@@ -1546,7 +1542,7 @@ 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]: 28482
+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
@@ -1574,7 +1570,7 @@ 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]: 28482
+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
@@ -1602,7 +1598,7 @@ 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]: 28482
+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
@@ -1630,7 +1626,7 @@ 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]: 28482
+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
@@ -1658,7 +1654,7 @@ 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]: 28482
+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
@@ -1686,7 +1682,7 @@ 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]: 28482
+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
@@ -1714,7 +1710,7 @@ 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]: 28482
+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
@@ -1742,7 +1738,7 @@ 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]: 28482
+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
@@ -1770,7 +1766,7 @@ 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]: 28482
+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
@@ -1798,7 +1794,7 @@ 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]: 28482
+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
@@ -1826,7 +1822,7 @@ 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]: 28482
+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
@@ -1854,7 +1850,7 @@ 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]: 28482
+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
@@ -1882,7 +1878,7 @@ 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]: 28482
+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
@@ -1910,7 +1906,7 @@ 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]: 28482
+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
@@ -1938,7 +1934,7 @@ 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]: 28482
+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
@@ -1966,7 +1962,7 @@ 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]: 28482
+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:????
@@ -2264,7 +2260,7 @@ 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]: 27286
+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
@@ -2311,7 +2307,7 @@ 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]: 27286
+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
@@ -2358,7 +2354,7 @@ 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]: 27286
+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
@@ -2405,7 +2401,7 @@ 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]: 27286
+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
@@ -2452,7 +2448,7 @@ 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]: 27286
+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
@@ -2499,7 +2495,7 @@ 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]: 27286
+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
@@ -2546,7 +2542,7 @@ 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]: 27286
+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
@@ -2593,7 +2589,7 @@ 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]: 27286
+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
@@ -2640,7 +2636,7 @@ 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]: 27286
+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
@@ -2687,7 +2683,7 @@ 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]: 27286
+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
@@ -2734,7 +2730,7 @@ 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]: 27286
+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
@@ -2781,7 +2777,7 @@ 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]: 27286
+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
@@ -2828,7 +2824,7 @@ 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]: 27286
+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
@@ -2875,7 +2871,7 @@ 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]: 27286
+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
@@ -2922,7 +2918,7 @@ 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]: 27286
+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
@@ -2969,7 +2965,7 @@ 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]: 27286
+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
@@ -3016,7 +3012,7 @@ 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]: 27286
+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
@@ -3063,7 +3059,7 @@ 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]: 27286
+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
@@ -3110,7 +3106,7 @@ 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]: 27286
+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
@@ -3157,7 +3153,7 @@ 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]: 27286
+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:????
@@ -3179,9 +3175,9 @@ 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.0643(+-0.799)/    0/   10 [ms] #=311
-cObj_ALL             INFO Time User   : Tot=   70 [ms] Ave/Min/Max= 0.29(+- 2.12)/    0/   20 [ms] #=241
-ChronoStatSvc        INFO Time User   : Tot= 1.09  [s]                                             #=  1
+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 a20ca2f9dc0da6eac57454bab3f15a5500bd222c..7757ac945551ab35c7e73dfd71e0cc8a91dce424 100644
--- a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_ReadBN.ref
+++ b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_ReadBN.ref
@@ -1,4 +1,4 @@
-Tue Jan  9 14:04:04 CST 2018
+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"
@@ -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_ReadBNJobOptions.py"
-Py:ConfigurableDb    INFO Read module info for 5433 configurables from 15 genConfDb files
+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 atlas2.hep.anl.gov on Tue Jan  9 14:04:15 2018
+                                          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
@@ -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 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
@@ -34,8 +34,8 @@ 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/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 /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
@@ -85,7 +85,6 @@ EmptyPoolFile.root  DEBUG --->Reading Param:FORMAT_VSN=[1.1]
 ##Params            DEBUG No objects passing selection criteria... Container has 4 Entries in total.
 PoolSvc              INFO Failed to find container POOLContainer(DataHeader) to create POOL collection.
 PoolSvc              INFO Failed to find container POOLContainer_DataHeader to create POOL collection.
-PoolCollectionC...   INFO Unable to create Collection: PFN:EmptyPoolFile.root container: POOLContainer_DataHeader
 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] 
@@ -168,7 +167,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
 AthenaPoolAddre...   INFO BackNavigationScope for: ExampleHitContainer#MyHits :: Stream1
 ReadData            DEBUG input handles: 0
 ReadData            DEBUG output handles: 0
@@ -214,7 +212,6 @@ EmptyPoolFile.root  DEBUG --->Reading Param:FORMAT_VSN=[1.1]
 ##Params            DEBUG No objects passing selection criteria... Container has 4 Entries in total.
 PoolSvc              INFO Failed to find container POOLContainer(DataHeader) to create POOL collection.
 PoolSvc              INFO Failed to find container POOLContainer_DataHeader to create POOL collection.
-PoolCollectionC...   INFO Unable to create Collection: PFN:EmptyPoolFile.root container: POOLContainer_DataHeader
 EventSelector       DEBUG No events found in: EmptyPoolFile.root skipped!!!
 MetaDataSvc         DEBUG handle() BeginInputFile for EmptyPoolFile.root
 MetaDataSvc         DEBUG initInputMetaDataStore: file name EmptyPoolFile.root
@@ -258,7 +255,7 @@ 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 2679 CLIDRegistry entries for module ALL
+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]
@@ -317,7 +314,7 @@ ReadData             INFO Hit x = 1023.7 y = 57.9027 z = -953.684 detector = Dum
 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]: 28001
+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
@@ -350,7 +347,7 @@ 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]: 28001
+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
@@ -383,7 +380,7 @@ 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]: 28001
+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
@@ -416,7 +413,7 @@ 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]: 28001
+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
@@ -449,7 +446,7 @@ 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]: 28001
+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
@@ -482,7 +479,7 @@ 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]: 28001
+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
@@ -515,7 +512,7 @@ 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]: 28001
+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
@@ -548,7 +545,7 @@ 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]: 28001
+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
@@ -581,7 +578,7 @@ 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]: 28001
+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
@@ -614,7 +611,7 @@ 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]: 28001
+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:????
@@ -661,7 +658,6 @@ EmptyPoolFile.root  DEBUG --->Reading Param:FORMAT_VSN=[1.1]
 ##Params            DEBUG No objects passing selection criteria... Container has 4 Entries in total.
 PoolSvc              INFO Failed to find container POOLContainer(DataHeader) to create POOL collection.
 PoolSvc              INFO Failed to find container POOLContainer_DataHeader to create POOL collection.
-PoolCollectionC...   INFO Unable to create Collection: PFN:EmptyPoolFile.root container: POOLContainer_DataHeader
 EventSelector       DEBUG No events found in: EmptyPoolFile.root skipped!!!
 MetaDataSvc         DEBUG handle() BeginInputFile for EmptyPoolFile.root
 MetaDataSvc         DEBUG initInputMetaDataStore: file name EmptyPoolFile.root
@@ -814,7 +810,7 @@ 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]: 26594
+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
@@ -842,7 +838,7 @@ 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]: 26594
+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
@@ -870,7 +866,7 @@ 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]: 26594
+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
@@ -898,7 +894,7 @@ 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]: 26594
+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
@@ -926,7 +922,7 @@ 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]: 26594
+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
@@ -954,7 +950,7 @@ 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]: 26594
+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
@@ -982,7 +978,7 @@ 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]: 26594
+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
@@ -1010,7 +1006,7 @@ 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]: 26594
+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
@@ -1038,7 +1034,7 @@ 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]: 26594
+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
@@ -1066,7 +1062,7 @@ 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]: 26594
+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
@@ -1094,7 +1090,7 @@ 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]: 26594
+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
@@ -1122,7 +1118,7 @@ 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]: 26594
+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
@@ -1150,7 +1146,7 @@ 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]: 26594
+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
@@ -1178,7 +1174,7 @@ 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]: 26594
+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
@@ -1206,7 +1202,7 @@ 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]: 26594
+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
@@ -1234,7 +1230,7 @@ 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]: 26594
+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
@@ -1262,7 +1258,7 @@ 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]: 26594
+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
@@ -1290,7 +1286,7 @@ 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]: 26594
+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
@@ -1318,7 +1314,7 @@ 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]: 26594
+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
@@ -1346,7 +1342,7 @@ 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]: 26594
+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
@@ -1375,7 +1371,7 @@ 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]: 28482
+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
@@ -1403,7 +1399,7 @@ 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]: 28482
+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
@@ -1431,7 +1427,7 @@ 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]: 28482
+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
@@ -1459,7 +1455,7 @@ 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]: 28482
+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
@@ -1487,7 +1483,7 @@ 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]: 28482
+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
@@ -1515,7 +1511,7 @@ 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]: 28482
+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
@@ -1543,7 +1539,7 @@ 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]: 28482
+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
@@ -1571,7 +1567,7 @@ 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]: 28482
+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
@@ -1599,7 +1595,7 @@ 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]: 28482
+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
@@ -1627,7 +1623,7 @@ 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]: 28482
+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
@@ -1655,7 +1651,7 @@ 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]: 28482
+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
@@ -1683,7 +1679,7 @@ 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]: 28482
+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
@@ -1711,7 +1707,7 @@ 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]: 28482
+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
@@ -1739,7 +1735,7 @@ 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]: 28482
+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
@@ -1767,7 +1763,7 @@ 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]: 28482
+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
@@ -1795,7 +1791,7 @@ 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]: 28482
+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
@@ -1823,7 +1819,7 @@ 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]: 28482
+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
@@ -1851,7 +1847,7 @@ 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]: 28482
+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
@@ -1879,7 +1875,7 @@ 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]: 28482
+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
@@ -1907,7 +1903,7 @@ 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]: 28482
+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:????
@@ -2146,7 +2142,7 @@ 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]: 27198
+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
@@ -2193,7 +2189,7 @@ 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]: 27198
+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
@@ -2240,7 +2236,7 @@ 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]: 27198
+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
@@ -2287,7 +2283,7 @@ 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]: 27198
+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
@@ -2334,7 +2330,7 @@ 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]: 27198
+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
@@ -2381,7 +2377,7 @@ 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]: 27198
+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
@@ -2428,7 +2424,7 @@ 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]: 27198
+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
@@ -2475,7 +2471,7 @@ 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]: 27198
+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
@@ -2522,7 +2518,7 @@ 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]: 27198
+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
@@ -2569,7 +2565,7 @@ 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]: 27198
+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
@@ -2616,7 +2612,7 @@ 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]: 27198
+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
@@ -2663,7 +2659,7 @@ 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]: 27198
+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
@@ -2710,7 +2706,7 @@ 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]: 27198
+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
@@ -2757,7 +2753,7 @@ 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]: 27198
+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
@@ -2804,7 +2800,7 @@ 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]: 27198
+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
@@ -2851,7 +2847,7 @@ 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]: 27198
+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
@@ -2898,7 +2894,7 @@ 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]: 27198
+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
@@ -2945,7 +2941,7 @@ 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]: 27198
+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
@@ -2992,7 +2988,7 @@ 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]: 27198
+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
@@ -3039,7 +3035,7 @@ 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]: 27198
+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:????
@@ -3060,9 +3056,9 @@ 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.0368(+-0.605)/    0/   10 [ms] #=272
-cObj_ALL             INFO Time User   : Tot=   30 [ms] Ave/Min/Max=0.136(+-  1.5)/    0/   20 [ms] #=221
-ChronoStatSvc        INFO Time User   : Tot= 1.03  [s]                                             #=  1
+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_ReadConcat.ref b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_ReadConcat.ref
index 5029f1e7baf1c7b0ef9b5c89bf256365926672bb..a967320e2df0f65a95e635aed3d8105be751ade5 100644
--- a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_ReadConcat.ref
+++ b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_ReadConcat.ref
@@ -1,4 +1,4 @@
-Tue Jan  9 14:20:47 CST 2018
+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"
@@ -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_ReadJobOptions.py"
-Py:ConfigurableDb    INFO Read module info for 5433 configurables from 15 genConfDb files
+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 atlas2.hep.anl.gov on Tue Jan  9 14:21:01 2018
+                                          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
@@ -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 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
@@ -34,8 +34,8 @@ 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/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 /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
@@ -85,7 +85,6 @@ EmptyPoolFile.root  DEBUG --->Reading Param:FORMAT_VSN=[1.1]
 ##Params            DEBUG No objects passing selection criteria... Container has 4 Entries in total.
 PoolSvc              INFO Failed to find container POOLContainer(DataHeader) to create POOL collection.
 PoolSvc              INFO Failed to find container POOLContainer_DataHeader to create POOL collection.
-PoolCollectionC...   INFO Unable to create Collection: PFN:EmptyPoolFile.root container: POOLContainer_DataHeader
 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] 
@@ -161,7 +160,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
@@ -210,7 +208,6 @@ EmptyPoolFile.root  DEBUG --->Reading Param:FORMAT_VSN=[1.1]
 ##Params            DEBUG No objects passing selection criteria... Container has 4 Entries in total.
 PoolSvc              INFO Failed to find container POOLContainer(DataHeader) to create POOL collection.
 PoolSvc              INFO Failed to find container POOLContainer_DataHeader to create POOL collection.
-PoolCollectionC...   INFO Unable to create Collection: PFN:EmptyPoolFile.root container: POOLContainer_DataHeader
 EventSelector       DEBUG No events found in: EmptyPoolFile.root skipped!!!
 MetaDataSvc         DEBUG handle() BeginInputFile for EmptyPoolFile.root
 MetaDataSvc         DEBUG initInputMetaDataStore: file name EmptyPoolFile.root
@@ -321,7 +318,7 @@ 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 2676 CLIDRegistry entries for module ALL
+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]
@@ -375,7 +372,7 @@ ReadData             INFO Hit x = 1023.7 y = 57.9027 z = -953.684 detector = Dum
 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]: 27480
+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
@@ -408,7 +405,7 @@ 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]: 27480
+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
@@ -441,7 +438,7 @@ 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]: 27480
+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
@@ -474,7 +471,7 @@ 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]: 27480
+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
@@ -507,7 +504,7 @@ 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]: 27480
+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
@@ -540,7 +537,7 @@ 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]: 27480
+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
@@ -573,7 +570,7 @@ 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]: 27480
+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
@@ -606,7 +603,7 @@ 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]: 27480
+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
@@ -639,7 +636,7 @@ 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]: 27480
+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
@@ -672,7 +669,7 @@ 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]: 27480
+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] ????
@@ -719,7 +716,6 @@ EmptyPoolFile.root  DEBUG --->Reading Param:FORMAT_VSN=[1.1]
 ##Params            DEBUG No objects passing selection criteria... Container has 4 Entries in total.
 PoolSvc              INFO Failed to find container POOLContainer(DataHeader) to create POOL collection.
 PoolSvc              INFO Failed to find container POOLContainer_DataHeader to create POOL collection.
-PoolCollectionC...   INFO Unable to create Collection: PFN:EmptyPoolFile.root container: POOLContainer_DataHeader
 EventSelector       DEBUG No events found in: EmptyPoolFile.root skipped!!!
 MetaDataSvc         DEBUG handle() BeginInputFile for EmptyPoolFile.root
 MetaDataSvc         DEBUG initInputMetaDataStore: file name EmptyPoolFile.root
@@ -873,7 +869,7 @@ 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]: 26585
+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
@@ -901,7 +897,7 @@ 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]: 26585
+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
@@ -929,7 +925,7 @@ 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]: 26585
+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
@@ -957,7 +953,7 @@ 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]: 26585
+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
@@ -985,7 +981,7 @@ 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]: 26585
+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
@@ -1013,7 +1009,7 @@ 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]: 26585
+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
@@ -1041,7 +1037,7 @@ 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]: 26585
+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
@@ -1069,7 +1065,7 @@ 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]: 26585
+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
@@ -1097,7 +1093,7 @@ 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]: 26585
+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
@@ -1125,7 +1121,7 @@ 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]: 26585
+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
@@ -1153,7 +1149,7 @@ 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]: 26585
+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
@@ -1181,7 +1177,7 @@ 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]: 26585
+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
@@ -1209,7 +1205,7 @@ 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]: 26585
+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
@@ -1237,7 +1233,7 @@ 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]: 26585
+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
@@ -1265,7 +1261,7 @@ 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]: 26585
+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
@@ -1293,7 +1289,7 @@ 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]: 26585
+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
@@ -1321,7 +1317,7 @@ 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]: 26585
+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
@@ -1349,7 +1345,7 @@ 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]: 26585
+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
@@ -1377,7 +1373,7 @@ 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]: 26585
+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
@@ -1405,7 +1401,7 @@ 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]: 26585
+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
@@ -1434,7 +1430,7 @@ 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]: 28473
+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
@@ -1462,7 +1458,7 @@ 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]: 28473
+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
@@ -1490,7 +1486,7 @@ 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]: 28473
+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
@@ -1518,7 +1514,7 @@ 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]: 28473
+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
@@ -1546,7 +1542,7 @@ 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]: 28473
+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
@@ -1574,7 +1570,7 @@ 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]: 28473
+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
@@ -1602,7 +1598,7 @@ 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]: 28473
+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
@@ -1630,7 +1626,7 @@ 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]: 28473
+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
@@ -1658,7 +1654,7 @@ 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]: 28473
+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
@@ -1686,7 +1682,7 @@ 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]: 28473
+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
@@ -1714,7 +1710,7 @@ 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]: 28473
+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
@@ -1742,7 +1738,7 @@ 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]: 28473
+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
@@ -1770,7 +1766,7 @@ 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]: 28473
+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
@@ -1798,7 +1794,7 @@ 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]: 28473
+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
@@ -1826,7 +1822,7 @@ 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]: 28473
+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
@@ -1854,7 +1850,7 @@ 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]: 28473
+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
@@ -1882,7 +1878,7 @@ 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]: 28473
+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
@@ -1910,7 +1906,7 @@ 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]: 28473
+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
@@ -1938,7 +1934,7 @@ 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]: 28473
+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
@@ -1966,7 +1962,7 @@ 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]: 28473
+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:????
@@ -2181,7 +2177,7 @@ 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]: 26853
+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
@@ -2228,7 +2224,7 @@ 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]: 26853
+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
@@ -2275,7 +2271,7 @@ 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]: 26853
+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
@@ -2322,7 +2318,7 @@ 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]: 26853
+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
@@ -2369,7 +2365,7 @@ 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]: 26853
+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
@@ -2416,7 +2412,7 @@ 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]: 26853
+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
@@ -2463,7 +2459,7 @@ 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]: 26853
+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
@@ -2510,7 +2506,7 @@ 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]: 26853
+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
@@ -2557,7 +2553,7 @@ 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]: 26853
+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
@@ -2604,7 +2600,7 @@ 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]: 26853
+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
@@ -2651,7 +2647,7 @@ 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]: 26853
+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
@@ -2698,7 +2694,7 @@ 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]: 26853
+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
@@ -2745,7 +2741,7 @@ 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]: 26853
+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
@@ -2792,7 +2788,7 @@ 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]: 26853
+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
@@ -2839,7 +2835,7 @@ 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]: 26853
+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
@@ -2886,7 +2882,7 @@ 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]: 26853
+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
@@ -2933,7 +2929,7 @@ 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]: 26853
+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
@@ -2980,7 +2976,7 @@ 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]: 26853
+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
@@ -3027,7 +3023,7 @@ 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]: 26853
+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
@@ -3074,7 +3070,7 @@ 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]: 26853
+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] ????
@@ -3095,9 +3091,9 @@ 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.0368(+-0.605)/    0/   10 [ms] #=272
-cObj_ALL             INFO Time User   : Tot=   50 [ms] Ave/Min/Max=0.226(+- 2.01)/    0/   20 [ms] #=221
-ChronoStatSvc        INFO Time User   : Tot= 1.04  [s]                                             #=  1
+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 9640f4c8cff9f9d7cb0ccf8c8a1c6268363ddb52..74add1f6b7805cca272720d4e645a6c12299c0cb 100644
--- a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_ReadNoBN.ref
+++ b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_ReadNoBN.ref
@@ -1,4 +1,4 @@
-Tue Jan  9 14:04:20 CST 2018
+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"
@@ -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_ReadNoBNJobOptions.py"
-Py:ConfigurableDb    INFO Read module info for 5433 configurables from 15 genConfDb files
+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 atlas2.hep.anl.gov on Tue Jan  9 14:04:33 2018
+                                          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
@@ -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 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
@@ -34,8 +34,8 @@ 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/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 /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
@@ -85,7 +85,6 @@ EmptyPoolFile.root  DEBUG --->Reading Param:FORMAT_VSN=[1.1]
 ##Params            DEBUG No objects passing selection criteria... Container has 4 Entries in total.
 PoolSvc              INFO Failed to find container POOLContainer(DataHeader) to create POOL collection.
 PoolSvc              INFO Failed to find container POOLContainer_DataHeader to create POOL collection.
-PoolCollectionC...   INFO Unable to create Collection: PFN:EmptyPoolFile.root container: POOLContainer_DataHeader
 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] 
@@ -168,7 +167,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
@@ -213,7 +211,6 @@ EmptyPoolFile.root  DEBUG --->Reading Param:FORMAT_VSN=[1.1]
 ##Params            DEBUG No objects passing selection criteria... Container has 4 Entries in total.
 PoolSvc              INFO Failed to find container POOLContainer(DataHeader) to create POOL collection.
 PoolSvc              INFO Failed to find container POOLContainer_DataHeader to create POOL collection.
-PoolCollectionC...   INFO Unable to create Collection: PFN:EmptyPoolFile.root container: POOLContainer_DataHeader
 EventSelector       DEBUG No events found in: EmptyPoolFile.root skipped!!!
 MetaDataSvc         DEBUG handle() BeginInputFile for EmptyPoolFile.root
 MetaDataSvc         DEBUG initInputMetaDataStore: file name EmptyPoolFile.root
@@ -257,7 +254,7 @@ 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 2679 CLIDRegistry entries for module ALL
+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]
@@ -316,7 +313,7 @@ ReadData             INFO Hit x = 1023.7 y = 57.9027 z = -953.684 detector = Dum
 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]: 28001
+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
@@ -349,7 +346,7 @@ 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]: 28001
+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
@@ -382,7 +379,7 @@ 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]: 28001
+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
@@ -415,7 +412,7 @@ 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]: 28001
+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
@@ -448,7 +445,7 @@ 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]: 28001
+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
@@ -481,7 +478,7 @@ 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]: 28001
+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
@@ -514,7 +511,7 @@ 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]: 28001
+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
@@ -547,7 +544,7 @@ 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]: 28001
+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
@@ -580,7 +577,7 @@ 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]: 28001
+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
@@ -613,7 +610,7 @@ 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]: 28001
+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:????
@@ -660,7 +657,6 @@ EmptyPoolFile.root  DEBUG --->Reading Param:FORMAT_VSN=[1.1]
 ##Params            DEBUG No objects passing selection criteria... Container has 4 Entries in total.
 PoolSvc              INFO Failed to find container POOLContainer(DataHeader) to create POOL collection.
 PoolSvc              INFO Failed to find container POOLContainer_DataHeader to create POOL collection.
-PoolCollectionC...   INFO Unable to create Collection: PFN:EmptyPoolFile.root container: POOLContainer_DataHeader
 EventSelector       DEBUG No events found in: EmptyPoolFile.root skipped!!!
 MetaDataSvc         DEBUG handle() BeginInputFile for EmptyPoolFile.root
 MetaDataSvc         DEBUG initInputMetaDataStore: file name EmptyPoolFile.root
@@ -813,7 +809,7 @@ 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]: 26594
+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
@@ -841,7 +837,7 @@ 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]: 26594
+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
@@ -869,7 +865,7 @@ 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]: 26594
+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
@@ -897,7 +893,7 @@ 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]: 26594
+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
@@ -925,7 +921,7 @@ 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]: 26594
+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
@@ -953,7 +949,7 @@ 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]: 26594
+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
@@ -981,7 +977,7 @@ 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]: 26594
+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
@@ -1009,7 +1005,7 @@ 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]: 26594
+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
@@ -1037,7 +1033,7 @@ 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]: 26594
+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
@@ -1065,7 +1061,7 @@ 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]: 26594
+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
@@ -1093,7 +1089,7 @@ 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]: 26594
+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
@@ -1121,7 +1117,7 @@ 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]: 26594
+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
@@ -1149,7 +1145,7 @@ 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]: 26594
+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
@@ -1177,7 +1173,7 @@ 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]: 26594
+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
@@ -1205,7 +1201,7 @@ 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]: 26594
+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
@@ -1233,7 +1229,7 @@ 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]: 26594
+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
@@ -1261,7 +1257,7 @@ 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]: 26594
+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
@@ -1289,7 +1285,7 @@ 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]: 26594
+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
@@ -1317,7 +1313,7 @@ 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]: 26594
+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
@@ -1345,7 +1341,7 @@ 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]: 26594
+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
@@ -1374,7 +1370,7 @@ 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]: 28482
+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
@@ -1402,7 +1398,7 @@ 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]: 28482
+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
@@ -1430,7 +1426,7 @@ 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]: 28482
+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
@@ -1458,7 +1454,7 @@ 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]: 28482
+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
@@ -1486,7 +1482,7 @@ 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]: 28482
+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
@@ -1514,7 +1510,7 @@ 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]: 28482
+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
@@ -1542,7 +1538,7 @@ 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]: 28482
+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
@@ -1570,7 +1566,7 @@ 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]: 28482
+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
@@ -1598,7 +1594,7 @@ 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]: 28482
+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
@@ -1626,7 +1622,7 @@ 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]: 28482
+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
@@ -1654,7 +1650,7 @@ 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]: 28482
+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
@@ -1682,7 +1678,7 @@ 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]: 28482
+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
@@ -1710,7 +1706,7 @@ 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]: 28482
+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
@@ -1738,7 +1734,7 @@ 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]: 28482
+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
@@ -1766,7 +1762,7 @@ 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]: 28482
+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
@@ -1794,7 +1790,7 @@ 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]: 28482
+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
@@ -1822,7 +1818,7 @@ 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]: 28482
+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
@@ -1850,7 +1846,7 @@ 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]: 28482
+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
@@ -1878,7 +1874,7 @@ 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]: 28482
+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
@@ -1906,7 +1902,7 @@ 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]: 28482
+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:????
@@ -2048,7 +2044,7 @@ 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]: 27198
+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
@@ -2074,7 +2070,7 @@ 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]: 27198
+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
@@ -2100,7 +2096,7 @@ 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]: 27198
+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
@@ -2126,7 +2122,7 @@ 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]: 27198
+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
@@ -2152,7 +2148,7 @@ 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]: 27198
+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
@@ -2178,7 +2174,7 @@ 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]: 27198
+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
@@ -2204,7 +2200,7 @@ 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]: 27198
+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
@@ -2230,7 +2226,7 @@ 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]: 27198
+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
@@ -2256,7 +2252,7 @@ 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]: 27198
+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
@@ -2282,7 +2278,7 @@ 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]: 27198
+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
@@ -2308,7 +2304,7 @@ 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]: 27198
+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
@@ -2334,7 +2330,7 @@ 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]: 27198
+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
@@ -2360,7 +2356,7 @@ 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]: 27198
+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
@@ -2386,7 +2382,7 @@ 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]: 27198
+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
@@ -2412,7 +2408,7 @@ 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]: 27198
+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
@@ -2438,7 +2434,7 @@ 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]: 27198
+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
@@ -2464,7 +2460,7 @@ 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]: 27198
+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
@@ -2490,7 +2486,7 @@ 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]: 27198
+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
@@ -2516,7 +2512,7 @@ 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]: 27198
+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
@@ -2542,7 +2538,7 @@ 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]: 27198
+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:????
@@ -2562,9 +2558,9 @@ 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=   40 [ms] Ave/Min/Max=0.207(+- 1.42)/    0/   10 [ms] #=193
-cObj_ALL             INFO Time User   : Tot=   50 [ms] Ave/Min/Max=0.276(+- 1.64)/    0/   10 [ms] #=181
-ChronoStatSvc        INFO Time User   : Tot= 1.06  [s]                                             #=  1
+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 bcac167ac60c15850dbf3af4f82ed0e1d994426e..96409749cf4226d3d87cfd8f09aa0be2e7cb8826 100644
--- a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_ReadTag.ref
+++ b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_ReadTag.ref
@@ -1,4 +1,4 @@
-Tue Jan  9 14:03:48 CST 2018
+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"
@@ -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_ReadTagJobOptions.py"
-Py:ConfigurableDb    INFO Read module info for 5433 configurables from 15 genConfDb files
+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 atlas2.hep.anl.gov on Tue Jan  9 14:03:58 2018
+                                          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
@@ -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 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
@@ -34,8 +34,8 @@ 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/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 /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
@@ -128,7 +128,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
@@ -136,7 +135,6 @@ HistogramPersis...WARNING Histograms saving not required.
 AthenaEventLoopMgr   INFO Setup EventSelector service EventSelector
 ApplicationMgr       INFO Application Manager Initialized successfully
 EventSelector       DEBUG Try item: "EmptyPoolCollection.root" from the collection list.
-ClassIDSvc           INFO  getRegistryEntries: read 2679 CLIDRegistry entries for module ALL
 MetaDataSvc         DEBUG handle() BeginTagFile for EmptyPoolCollection.root
 ApplicationMgr       INFO Application Manager Started successfully
 MetaDataSvc         DEBUG handle() EndTagFile for EmptyPoolCollection.root
@@ -148,6 +146,7 @@ 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
@@ -235,8 +234,6 @@ ClassIDSvc           INFO  getRegistryEntries: read 11 CLIDRegistry entries for
 AthenaEventLoopMgr   INFO   ===>>>  start of run 1    <<<===
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #10, run #1 0 events processed so far  <<<===
 ReadData            DEBUG in execute()
-ReadData             INFO CollectionMetadata, key = Name, value = PFN:SimplePoolCollection1.root
-ReadData             INFO CollectionMetadata, key = POOLCollectionID, value = ????
 SimplePoolFile1...  DEBUG --> Access   DbContainer  READ      [ROOT_Tree] MetaData(EventStreamInfo_p3/Stream1)
 MetaData(EventS...  DEBUG Opening
 MetaData(EventS...  DEBUG    attributes# = 1
@@ -279,8 +276,6 @@ AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 2101, name =
 AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 9102, name = MyHits
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #11, run #1 1 events processed so far  <<<===
 ReadData            DEBUG in execute()
-ReadData             INFO CollectionMetadata, key = Name, value = PFN:SimplePoolCollection1.root
-ReadData             INFO CollectionMetadata, key = POOLCollectionID, value = ????
 ReadData             INFO EventStreamInfo: Number of events = 20
 ReadData             INFO EventStreamInfo: ItemList:
 ReadData             INFO CLID = 2101, key = McEventInfo
@@ -312,8 +307,6 @@ AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 2101, name =
 AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 9102, name = MyHits
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #12, run #1 2 events processed so far  <<<===
 ReadData            DEBUG in execute()
-ReadData             INFO CollectionMetadata, key = Name, value = PFN:SimplePoolCollection1.root
-ReadData             INFO CollectionMetadata, key = POOLCollectionID, value = ????
 ReadData             INFO EventStreamInfo: Number of events = 20
 ReadData             INFO EventStreamInfo: ItemList:
 ReadData             INFO CLID = 2101, key = McEventInfo
@@ -345,8 +338,6 @@ AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 2101, name =
 AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 9102, name = MyHits
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #13, run #1 3 events processed so far  <<<===
 ReadData            DEBUG in execute()
-ReadData             INFO CollectionMetadata, key = Name, value = PFN:SimplePoolCollection1.root
-ReadData             INFO CollectionMetadata, key = POOLCollectionID, value = ????
 ReadData             INFO EventStreamInfo: Number of events = 20
 ReadData             INFO EventStreamInfo: ItemList:
 ReadData             INFO CLID = 2101, key = McEventInfo
@@ -378,8 +369,6 @@ AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 2101, name =
 AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 9102, name = MyHits
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #14, run #1 4 events processed so far  <<<===
 ReadData            DEBUG in execute()
-ReadData             INFO CollectionMetadata, key = Name, value = PFN:SimplePoolCollection1.root
-ReadData             INFO CollectionMetadata, key = POOLCollectionID, value = ????
 ReadData             INFO EventStreamInfo: Number of events = 20
 ReadData             INFO EventStreamInfo: ItemList:
 ReadData             INFO CLID = 2101, key = McEventInfo
@@ -411,8 +400,6 @@ AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 2101, name =
 AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 9102, name = MyHits
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #15, run #1 5 events processed so far  <<<===
 ReadData            DEBUG in execute()
-ReadData             INFO CollectionMetadata, key = Name, value = PFN:SimplePoolCollection1.root
-ReadData             INFO CollectionMetadata, key = POOLCollectionID, value = ????
 ReadData             INFO EventStreamInfo: Number of events = 20
 ReadData             INFO EventStreamInfo: ItemList:
 ReadData             INFO CLID = 2101, key = McEventInfo
@@ -444,8 +431,6 @@ AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 2101, name =
 AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 9102, name = MyHits
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #16, run #1 6 events processed so far  <<<===
 ReadData            DEBUG in execute()
-ReadData             INFO CollectionMetadata, key = Name, value = PFN:SimplePoolCollection1.root
-ReadData             INFO CollectionMetadata, key = POOLCollectionID, value = ????
 ReadData             INFO EventStreamInfo: Number of events = 20
 ReadData             INFO EventStreamInfo: ItemList:
 ReadData             INFO CLID = 2101, key = McEventInfo
@@ -477,8 +462,6 @@ AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 2101, name =
 AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 9102, name = MyHits
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #17, run #1 7 events processed so far  <<<===
 ReadData            DEBUG in execute()
-ReadData             INFO CollectionMetadata, key = Name, value = PFN:SimplePoolCollection1.root
-ReadData             INFO CollectionMetadata, key = POOLCollectionID, value = ????
 ReadData             INFO EventStreamInfo: Number of events = 20
 ReadData             INFO EventStreamInfo: ItemList:
 ReadData             INFO CLID = 2101, key = McEventInfo
@@ -510,8 +493,6 @@ AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 2101, name =
 AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 9102, name = MyHits
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #18, run #1 8 events processed so far  <<<===
 ReadData            DEBUG in execute()
-ReadData             INFO CollectionMetadata, key = Name, value = PFN:SimplePoolCollection1.root
-ReadData             INFO CollectionMetadata, key = POOLCollectionID, value = ????
 ReadData             INFO EventStreamInfo: Number of events = 20
 ReadData             INFO EventStreamInfo: ItemList:
 ReadData             INFO CLID = 2101, key = McEventInfo
@@ -543,8 +524,6 @@ AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 2101, name =
 AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 9102, name = MyHits
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #19, run #1 9 events processed so far  <<<===
 ReadData            DEBUG in execute()
-ReadData             INFO CollectionMetadata, key = Name, value = PFN:SimplePoolCollection1.root
-ReadData             INFO CollectionMetadata, key = POOLCollectionID, value = ????
 ReadData             INFO EventStreamInfo: Number of events = 20
 ReadData             INFO EventStreamInfo: ItemList:
 ReadData             INFO CLID = 2101, key = McEventInfo
@@ -674,8 +653,6 @@ CollectionTree(...  DEBUG Branch container 'EventInfo_p4_McEventInfo'
 CollectionTree(...  DEBUG Opened container CollectionTree(EventInfo_p4/McEventInfo) of type ROOT_Tree
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #0, run #1 10 events processed so far  <<<===
 ReadData            DEBUG in execute()
-ReadData             INFO CollectionMetadata, key = Name, value = PFN:SimplePoolCollection2.root
-ReadData             INFO CollectionMetadata, key = POOLCollectionID, value = ????
 SimplePoolFile2...  DEBUG --> Access   DbContainer  READ      [ROOT_Tree] MetaData(EventStreamInfo_p3/Stream1)
 MetaData(EventS...  DEBUG Opening
 MetaData(EventS...  DEBUG    attributes# = 1
@@ -712,8 +689,6 @@ AthenaPoolAddre...  DEBUG The current Event contains: 2 objects
 AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #1, run #1 11 events processed so far  <<<===
 ReadData            DEBUG in execute()
-ReadData             INFO CollectionMetadata, key = Name, value = PFN:SimplePoolCollection2.root
-ReadData             INFO CollectionMetadata, key = POOLCollectionID, value = ????
 ReadData             INFO EventStreamInfo: Number of events = 20
 ReadData             INFO EventStreamInfo: ItemList:
 ReadData             INFO CLID = 2101, key = McEventInfo
@@ -740,8 +715,6 @@ AthenaPoolAddre...  DEBUG The current Event contains: 2 objects
 AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #2, run #1 12 events processed so far  <<<===
 ReadData            DEBUG in execute()
-ReadData             INFO CollectionMetadata, key = Name, value = PFN:SimplePoolCollection2.root
-ReadData             INFO CollectionMetadata, key = POOLCollectionID, value = ????
 ReadData             INFO EventStreamInfo: Number of events = 20
 ReadData             INFO EventStreamInfo: ItemList:
 ReadData             INFO CLID = 2101, key = McEventInfo
@@ -768,8 +741,6 @@ AthenaPoolAddre...  DEBUG The current Event contains: 2 objects
 AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #3, run #1 13 events processed so far  <<<===
 ReadData            DEBUG in execute()
-ReadData             INFO CollectionMetadata, key = Name, value = PFN:SimplePoolCollection2.root
-ReadData             INFO CollectionMetadata, key = POOLCollectionID, value = ????
 ReadData             INFO EventStreamInfo: Number of events = 20
 ReadData             INFO EventStreamInfo: ItemList:
 ReadData             INFO CLID = 2101, key = McEventInfo
@@ -796,8 +767,6 @@ AthenaPoolAddre...  DEBUG The current Event contains: 2 objects
 AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #4, run #1 14 events processed so far  <<<===
 ReadData            DEBUG in execute()
-ReadData             INFO CollectionMetadata, key = Name, value = PFN:SimplePoolCollection2.root
-ReadData             INFO CollectionMetadata, key = POOLCollectionID, value = ????
 ReadData             INFO EventStreamInfo: Number of events = 20
 ReadData             INFO EventStreamInfo: ItemList:
 ReadData             INFO CLID = 2101, key = McEventInfo
@@ -824,8 +793,6 @@ AthenaPoolAddre...  DEBUG The current Event contains: 2 objects
 AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #5, run #1 15 events processed so far  <<<===
 ReadData            DEBUG in execute()
-ReadData             INFO CollectionMetadata, key = Name, value = PFN:SimplePoolCollection2.root
-ReadData             INFO CollectionMetadata, key = POOLCollectionID, value = ????
 ReadData             INFO EventStreamInfo: Number of events = 20
 ReadData             INFO EventStreamInfo: ItemList:
 ReadData             INFO CLID = 2101, key = McEventInfo
@@ -852,8 +819,6 @@ AthenaPoolAddre...  DEBUG The current Event contains: 2 objects
 AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #6, run #1 16 events processed so far  <<<===
 ReadData            DEBUG in execute()
-ReadData             INFO CollectionMetadata, key = Name, value = PFN:SimplePoolCollection2.root
-ReadData             INFO CollectionMetadata, key = POOLCollectionID, value = ????
 ReadData             INFO EventStreamInfo: Number of events = 20
 ReadData             INFO EventStreamInfo: ItemList:
 ReadData             INFO CLID = 2101, key = McEventInfo
@@ -880,8 +845,6 @@ AthenaPoolAddre...  DEBUG The current Event contains: 2 objects
 AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #7, run #1 17 events processed so far  <<<===
 ReadData            DEBUG in execute()
-ReadData             INFO CollectionMetadata, key = Name, value = PFN:SimplePoolCollection2.root
-ReadData             INFO CollectionMetadata, key = POOLCollectionID, value = ????
 ReadData             INFO EventStreamInfo: Number of events = 20
 ReadData             INFO EventStreamInfo: ItemList:
 ReadData             INFO CLID = 2101, key = McEventInfo
@@ -908,8 +871,6 @@ AthenaPoolAddre...  DEBUG The current Event contains: 2 objects
 AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #8, run #1 18 events processed so far  <<<===
 ReadData            DEBUG in execute()
-ReadData             INFO CollectionMetadata, key = Name, value = PFN:SimplePoolCollection2.root
-ReadData             INFO CollectionMetadata, key = POOLCollectionID, value = ????
 ReadData             INFO EventStreamInfo: Number of events = 20
 ReadData             INFO EventStreamInfo: ItemList:
 ReadData             INFO CLID = 2101, key = McEventInfo
@@ -936,8 +897,6 @@ AthenaPoolAddre...  DEBUG The current Event contains: 2 objects
 AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #9, run #1 19 events processed so far  <<<===
 ReadData            DEBUG in execute()
-ReadData             INFO CollectionMetadata, key = Name, value = PFN:SimplePoolCollection2.root
-ReadData             INFO CollectionMetadata, key = POOLCollectionID, value = ????
 ReadData             INFO EventStreamInfo: Number of events = 20
 ReadData             INFO EventStreamInfo: ItemList:
 ReadData             INFO CLID = 2101, key = McEventInfo
@@ -964,8 +923,6 @@ AthenaPoolAddre...  DEBUG The current Event contains: 2 objects
 AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #10, run #1 20 events processed so far  <<<===
 ReadData            DEBUG in execute()
-ReadData             INFO CollectionMetadata, key = Name, value = PFN:SimplePoolCollection2.root
-ReadData             INFO CollectionMetadata, key = POOLCollectionID, value = ????
 ReadData             INFO EventStreamInfo: Number of events = 20
 ReadData             INFO EventStreamInfo: ItemList:
 ReadData             INFO CLID = 2101, key = McEventInfo
@@ -992,8 +949,6 @@ AthenaPoolAddre...  DEBUG The current Event contains: 2 objects
 AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #11, run #1 21 events processed so far  <<<===
 ReadData            DEBUG in execute()
-ReadData             INFO CollectionMetadata, key = Name, value = PFN:SimplePoolCollection2.root
-ReadData             INFO CollectionMetadata, key = POOLCollectionID, value = ????
 ReadData             INFO EventStreamInfo: Number of events = 20
 ReadData             INFO EventStreamInfo: ItemList:
 ReadData             INFO CLID = 2101, key = McEventInfo
@@ -1020,8 +975,6 @@ AthenaPoolAddre...  DEBUG The current Event contains: 2 objects
 AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #12, run #1 22 events processed so far  <<<===
 ReadData            DEBUG in execute()
-ReadData             INFO CollectionMetadata, key = Name, value = PFN:SimplePoolCollection2.root
-ReadData             INFO CollectionMetadata, key = POOLCollectionID, value = ????
 ReadData             INFO EventStreamInfo: Number of events = 20
 ReadData             INFO EventStreamInfo: ItemList:
 ReadData             INFO CLID = 2101, key = McEventInfo
@@ -1048,8 +1001,6 @@ AthenaPoolAddre...  DEBUG The current Event contains: 2 objects
 AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #13, run #1 23 events processed so far  <<<===
 ReadData            DEBUG in execute()
-ReadData             INFO CollectionMetadata, key = Name, value = PFN:SimplePoolCollection2.root
-ReadData             INFO CollectionMetadata, key = POOLCollectionID, value = ????
 ReadData             INFO EventStreamInfo: Number of events = 20
 ReadData             INFO EventStreamInfo: ItemList:
 ReadData             INFO CLID = 2101, key = McEventInfo
@@ -1076,8 +1027,6 @@ AthenaPoolAddre...  DEBUG The current Event contains: 2 objects
 AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #14, run #1 24 events processed so far  <<<===
 ReadData            DEBUG in execute()
-ReadData             INFO CollectionMetadata, key = Name, value = PFN:SimplePoolCollection2.root
-ReadData             INFO CollectionMetadata, key = POOLCollectionID, value = ????
 ReadData             INFO EventStreamInfo: Number of events = 20
 ReadData             INFO EventStreamInfo: ItemList:
 ReadData             INFO CLID = 2101, key = McEventInfo
@@ -1104,8 +1053,6 @@ AthenaPoolAddre...  DEBUG The current Event contains: 2 objects
 AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #15, run #1 25 events processed so far  <<<===
 ReadData            DEBUG in execute()
-ReadData             INFO CollectionMetadata, key = Name, value = PFN:SimplePoolCollection2.root
-ReadData             INFO CollectionMetadata, key = POOLCollectionID, value = ????
 ReadData             INFO EventStreamInfo: Number of events = 20
 ReadData             INFO EventStreamInfo: ItemList:
 ReadData             INFO CLID = 2101, key = McEventInfo
@@ -1132,8 +1079,6 @@ AthenaPoolAddre...  DEBUG The current Event contains: 2 objects
 AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #16, run #1 26 events processed so far  <<<===
 ReadData            DEBUG in execute()
-ReadData             INFO CollectionMetadata, key = Name, value = PFN:SimplePoolCollection2.root
-ReadData             INFO CollectionMetadata, key = POOLCollectionID, value = ????
 ReadData             INFO EventStreamInfo: Number of events = 20
 ReadData             INFO EventStreamInfo: ItemList:
 ReadData             INFO CLID = 2101, key = McEventInfo
@@ -1160,8 +1105,6 @@ AthenaPoolAddre...  DEBUG The current Event contains: 2 objects
 AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #17, run #1 27 events processed so far  <<<===
 ReadData            DEBUG in execute()
-ReadData             INFO CollectionMetadata, key = Name, value = PFN:SimplePoolCollection2.root
-ReadData             INFO CollectionMetadata, key = POOLCollectionID, value = ????
 ReadData             INFO EventStreamInfo: Number of events = 20
 ReadData             INFO EventStreamInfo: ItemList:
 ReadData             INFO CLID = 2101, key = McEventInfo
@@ -1188,8 +1131,6 @@ AthenaPoolAddre...  DEBUG The current Event contains: 2 objects
 AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #18, run #1 28 events processed so far  <<<===
 ReadData            DEBUG in execute()
-ReadData             INFO CollectionMetadata, key = Name, value = PFN:SimplePoolCollection2.root
-ReadData             INFO CollectionMetadata, key = POOLCollectionID, value = ????
 ReadData             INFO EventStreamInfo: Number of events = 20
 ReadData             INFO EventStreamInfo: ItemList:
 ReadData             INFO CLID = 2101, key = McEventInfo
@@ -1216,8 +1157,6 @@ AthenaPoolAddre...  DEBUG The current Event contains: 2 objects
 AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #19, run #1 29 events processed so far  <<<===
 ReadData            DEBUG in execute()
-ReadData             INFO CollectionMetadata, key = Name, value = PFN:SimplePoolCollection2.root
-ReadData             INFO CollectionMetadata, key = POOLCollectionID, value = ????
 ReadData             INFO EventStreamInfo: Number of events = 20
 ReadData             INFO EventStreamInfo: ItemList:
 ReadData             INFO CLID = 2101, key = McEventInfo
@@ -1245,8 +1184,6 @@ AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 2101, name =
 AthenaEventLoopMgr   INFO   ===>>>  start of run 2    <<<===
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #20, run #2 30 events processed so far  <<<===
 ReadData            DEBUG in execute()
-ReadData             INFO CollectionMetadata, key = Name, value = PFN:SimplePoolCollection2.root
-ReadData             INFO CollectionMetadata, key = POOLCollectionID, value = ????
 ReadData             INFO EventStreamInfo: Number of events = 20
 ReadData             INFO EventStreamInfo: ItemList:
 ReadData             INFO CLID = 2101, key = McEventInfo
@@ -1273,8 +1210,6 @@ AthenaPoolAddre...  DEBUG The current Event contains: 2 objects
 AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #21, run #2 31 events processed so far  <<<===
 ReadData            DEBUG in execute()
-ReadData             INFO CollectionMetadata, key = Name, value = PFN:SimplePoolCollection2.root
-ReadData             INFO CollectionMetadata, key = POOLCollectionID, value = ????
 ReadData             INFO EventStreamInfo: Number of events = 20
 ReadData             INFO EventStreamInfo: ItemList:
 ReadData             INFO CLID = 2101, key = McEventInfo
@@ -1301,8 +1236,6 @@ AthenaPoolAddre...  DEBUG The current Event contains: 2 objects
 AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #22, run #2 32 events processed so far  <<<===
 ReadData            DEBUG in execute()
-ReadData             INFO CollectionMetadata, key = Name, value = PFN:SimplePoolCollection2.root
-ReadData             INFO CollectionMetadata, key = POOLCollectionID, value = ????
 ReadData             INFO EventStreamInfo: Number of events = 20
 ReadData             INFO EventStreamInfo: ItemList:
 ReadData             INFO CLID = 2101, key = McEventInfo
@@ -1329,8 +1262,6 @@ AthenaPoolAddre...  DEBUG The current Event contains: 2 objects
 AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #23, run #2 33 events processed so far  <<<===
 ReadData            DEBUG in execute()
-ReadData             INFO CollectionMetadata, key = Name, value = PFN:SimplePoolCollection2.root
-ReadData             INFO CollectionMetadata, key = POOLCollectionID, value = ????
 ReadData             INFO EventStreamInfo: Number of events = 20
 ReadData             INFO EventStreamInfo: ItemList:
 ReadData             INFO CLID = 2101, key = McEventInfo
@@ -1357,8 +1288,6 @@ AthenaPoolAddre...  DEBUG The current Event contains: 2 objects
 AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #24, run #2 34 events processed so far  <<<===
 ReadData            DEBUG in execute()
-ReadData             INFO CollectionMetadata, key = Name, value = PFN:SimplePoolCollection2.root
-ReadData             INFO CollectionMetadata, key = POOLCollectionID, value = ????
 ReadData             INFO EventStreamInfo: Number of events = 20
 ReadData             INFO EventStreamInfo: ItemList:
 ReadData             INFO CLID = 2101, key = McEventInfo
@@ -1385,8 +1314,6 @@ AthenaPoolAddre...  DEBUG The current Event contains: 2 objects
 AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #25, run #2 35 events processed so far  <<<===
 ReadData            DEBUG in execute()
-ReadData             INFO CollectionMetadata, key = Name, value = PFN:SimplePoolCollection2.root
-ReadData             INFO CollectionMetadata, key = POOLCollectionID, value = ????
 ReadData             INFO EventStreamInfo: Number of events = 20
 ReadData             INFO EventStreamInfo: ItemList:
 ReadData             INFO CLID = 2101, key = McEventInfo
@@ -1413,8 +1340,6 @@ AthenaPoolAddre...  DEBUG The current Event contains: 2 objects
 AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #26, run #2 36 events processed so far  <<<===
 ReadData            DEBUG in execute()
-ReadData             INFO CollectionMetadata, key = Name, value = PFN:SimplePoolCollection2.root
-ReadData             INFO CollectionMetadata, key = POOLCollectionID, value = ????
 ReadData             INFO EventStreamInfo: Number of events = 20
 ReadData             INFO EventStreamInfo: ItemList:
 ReadData             INFO CLID = 2101, key = McEventInfo
@@ -1441,8 +1366,6 @@ AthenaPoolAddre...  DEBUG The current Event contains: 2 objects
 AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #27, run #2 37 events processed so far  <<<===
 ReadData            DEBUG in execute()
-ReadData             INFO CollectionMetadata, key = Name, value = PFN:SimplePoolCollection2.root
-ReadData             INFO CollectionMetadata, key = POOLCollectionID, value = ????
 ReadData             INFO EventStreamInfo: Number of events = 20
 ReadData             INFO EventStreamInfo: ItemList:
 ReadData             INFO CLID = 2101, key = McEventInfo
@@ -1469,8 +1392,6 @@ AthenaPoolAddre...  DEBUG The current Event contains: 2 objects
 AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #28, run #2 38 events processed so far  <<<===
 ReadData            DEBUG in execute()
-ReadData             INFO CollectionMetadata, key = Name, value = PFN:SimplePoolCollection2.root
-ReadData             INFO CollectionMetadata, key = POOLCollectionID, value = ????
 ReadData             INFO EventStreamInfo: Number of events = 20
 ReadData             INFO EventStreamInfo: ItemList:
 ReadData             INFO CLID = 2101, key = McEventInfo
@@ -1497,8 +1418,6 @@ AthenaPoolAddre...  DEBUG The current Event contains: 2 objects
 AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #29, run #2 39 events processed so far  <<<===
 ReadData            DEBUG in execute()
-ReadData             INFO CollectionMetadata, key = Name, value = PFN:SimplePoolCollection2.root
-ReadData             INFO CollectionMetadata, key = POOLCollectionID, value = ????
 ReadData             INFO EventStreamInfo: Number of events = 20
 ReadData             INFO EventStreamInfo: ItemList:
 ReadData             INFO CLID = 2101, key = McEventInfo
@@ -1525,8 +1444,6 @@ AthenaPoolAddre...  DEBUG The current Event contains: 2 objects
 AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #30, run #2 40 events processed so far  <<<===
 ReadData            DEBUG in execute()
-ReadData             INFO CollectionMetadata, key = Name, value = PFN:SimplePoolCollection2.root
-ReadData             INFO CollectionMetadata, key = POOLCollectionID, value = ????
 ReadData             INFO EventStreamInfo: Number of events = 20
 ReadData             INFO EventStreamInfo: ItemList:
 ReadData             INFO CLID = 2101, key = McEventInfo
@@ -1553,8 +1470,6 @@ AthenaPoolAddre...  DEBUG The current Event contains: 2 objects
 AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #31, run #2 41 events processed so far  <<<===
 ReadData            DEBUG in execute()
-ReadData             INFO CollectionMetadata, key = Name, value = PFN:SimplePoolCollection2.root
-ReadData             INFO CollectionMetadata, key = POOLCollectionID, value = ????
 ReadData             INFO EventStreamInfo: Number of events = 20
 ReadData             INFO EventStreamInfo: ItemList:
 ReadData             INFO CLID = 2101, key = McEventInfo
@@ -1581,8 +1496,6 @@ AthenaPoolAddre...  DEBUG The current Event contains: 2 objects
 AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #32, run #2 42 events processed so far  <<<===
 ReadData            DEBUG in execute()
-ReadData             INFO CollectionMetadata, key = Name, value = PFN:SimplePoolCollection2.root
-ReadData             INFO CollectionMetadata, key = POOLCollectionID, value = ????
 ReadData             INFO EventStreamInfo: Number of events = 20
 ReadData             INFO EventStreamInfo: ItemList:
 ReadData             INFO CLID = 2101, key = McEventInfo
@@ -1609,8 +1522,6 @@ AthenaPoolAddre...  DEBUG The current Event contains: 2 objects
 AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #33, run #2 43 events processed so far  <<<===
 ReadData            DEBUG in execute()
-ReadData             INFO CollectionMetadata, key = Name, value = PFN:SimplePoolCollection2.root
-ReadData             INFO CollectionMetadata, key = POOLCollectionID, value = ????
 ReadData             INFO EventStreamInfo: Number of events = 20
 ReadData             INFO EventStreamInfo: ItemList:
 ReadData             INFO CLID = 2101, key = McEventInfo
@@ -1637,8 +1548,6 @@ AthenaPoolAddre...  DEBUG The current Event contains: 2 objects
 AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #34, run #2 44 events processed so far  <<<===
 ReadData            DEBUG in execute()
-ReadData             INFO CollectionMetadata, key = Name, value = PFN:SimplePoolCollection2.root
-ReadData             INFO CollectionMetadata, key = POOLCollectionID, value = ????
 ReadData             INFO EventStreamInfo: Number of events = 20
 ReadData             INFO EventStreamInfo: ItemList:
 ReadData             INFO CLID = 2101, key = McEventInfo
@@ -1665,8 +1574,6 @@ AthenaPoolAddre...  DEBUG The current Event contains: 2 objects
 AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #35, run #2 45 events processed so far  <<<===
 ReadData            DEBUG in execute()
-ReadData             INFO CollectionMetadata, key = Name, value = PFN:SimplePoolCollection2.root
-ReadData             INFO CollectionMetadata, key = POOLCollectionID, value = ????
 ReadData             INFO EventStreamInfo: Number of events = 20
 ReadData             INFO EventStreamInfo: ItemList:
 ReadData             INFO CLID = 2101, key = McEventInfo
@@ -1693,8 +1600,6 @@ AthenaPoolAddre...  DEBUG The current Event contains: 2 objects
 AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #36, run #2 46 events processed so far  <<<===
 ReadData            DEBUG in execute()
-ReadData             INFO CollectionMetadata, key = Name, value = PFN:SimplePoolCollection2.root
-ReadData             INFO CollectionMetadata, key = POOLCollectionID, value = ????
 ReadData             INFO EventStreamInfo: Number of events = 20
 ReadData             INFO EventStreamInfo: ItemList:
 ReadData             INFO CLID = 2101, key = McEventInfo
@@ -1721,8 +1626,6 @@ AthenaPoolAddre...  DEBUG The current Event contains: 2 objects
 AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #37, run #2 47 events processed so far  <<<===
 ReadData            DEBUG in execute()
-ReadData             INFO CollectionMetadata, key = Name, value = PFN:SimplePoolCollection2.root
-ReadData             INFO CollectionMetadata, key = POOLCollectionID, value = ????
 ReadData             INFO EventStreamInfo: Number of events = 20
 ReadData             INFO EventStreamInfo: ItemList:
 ReadData             INFO CLID = 2101, key = McEventInfo
@@ -1749,8 +1652,6 @@ AthenaPoolAddre...  DEBUG The current Event contains: 2 objects
 AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #38, run #2 48 events processed so far  <<<===
 ReadData            DEBUG in execute()
-ReadData             INFO CollectionMetadata, key = Name, value = PFN:SimplePoolCollection2.root
-ReadData             INFO CollectionMetadata, key = POOLCollectionID, value = ????
 ReadData             INFO EventStreamInfo: Number of events = 20
 ReadData             INFO EventStreamInfo: ItemList:
 ReadData             INFO CLID = 2101, key = McEventInfo
@@ -1777,8 +1678,6 @@ AthenaPoolAddre...  DEBUG The current Event contains: 2 objects
 AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #39, run #2 49 events processed so far  <<<===
 ReadData            DEBUG in execute()
-ReadData             INFO CollectionMetadata, key = Name, value = PFN:SimplePoolCollection2.root
-ReadData             INFO CollectionMetadata, key = POOLCollectionID, value = ????
 ReadData             INFO EventStreamInfo: Number of events = 20
 ReadData             INFO EventStreamInfo: ItemList:
 ReadData             INFO CLID = 2101, key = McEventInfo
@@ -1965,8 +1864,6 @@ CollectionTree(...  DEBUG Opened container CollectionTree(EventInfo_p4/McEventIn
 AthenaEventLoopMgr   INFO   ===>>>  start of run 1    <<<===
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #10, run #1 50 events processed so far  <<<===
 ReadData            DEBUG in execute()
-ReadData             INFO CollectionMetadata, key = Name, value = PFN:SimplePoolCollection3.root
-ReadData             INFO CollectionMetadata, key = POOLCollectionID, value = ????
 SimplePoolFile3...  DEBUG --> Access   DbContainer  READ      [ROOT_Tree] MetaData(EventStreamInfo_p3/Stream1)
 MetaData(EventS...  DEBUG Opening
 MetaData(EventS...  DEBUG    attributes# = 1
@@ -2098,8 +1995,6 @@ AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 2101, name =
 AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 9103, name = MyTracks
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #11, run #1 51 events processed so far  <<<===
 ReadData            DEBUG in execute()
-ReadData             INFO CollectionMetadata, key = Name, value = PFN:SimplePoolCollection3.root
-ReadData             INFO CollectionMetadata, key = POOLCollectionID, value = ????
 ReadData             INFO EventStreamInfo: Number of events = 20
 ReadData             INFO EventStreamInfo: ItemList:
 ReadData             INFO CLID = 2101, key = McEventInfo
@@ -2145,8 +2040,6 @@ AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 2101, name =
 AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 9103, name = MyTracks
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #12, run #1 52 events processed so far  <<<===
 ReadData            DEBUG in execute()
-ReadData             INFO CollectionMetadata, key = Name, value = PFN:SimplePoolCollection3.root
-ReadData             INFO CollectionMetadata, key = POOLCollectionID, value = ????
 ReadData             INFO EventStreamInfo: Number of events = 20
 ReadData             INFO EventStreamInfo: ItemList:
 ReadData             INFO CLID = 2101, key = McEventInfo
@@ -2192,8 +2085,6 @@ AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 2101, name =
 AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 9103, name = MyTracks
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #13, run #1 53 events processed so far  <<<===
 ReadData            DEBUG in execute()
-ReadData             INFO CollectionMetadata, key = Name, value = PFN:SimplePoolCollection3.root
-ReadData             INFO CollectionMetadata, key = POOLCollectionID, value = ????
 ReadData             INFO EventStreamInfo: Number of events = 20
 ReadData             INFO EventStreamInfo: ItemList:
 ReadData             INFO CLID = 2101, key = McEventInfo
@@ -2239,8 +2130,6 @@ AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 2101, name =
 AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 9103, name = MyTracks
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #14, run #1 54 events processed so far  <<<===
 ReadData            DEBUG in execute()
-ReadData             INFO CollectionMetadata, key = Name, value = PFN:SimplePoolCollection3.root
-ReadData             INFO CollectionMetadata, key = POOLCollectionID, value = ????
 ReadData             INFO EventStreamInfo: Number of events = 20
 ReadData             INFO EventStreamInfo: ItemList:
 ReadData             INFO CLID = 2101, key = McEventInfo
@@ -2286,8 +2175,6 @@ AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 2101, name =
 AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 9103, name = MyTracks
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #15, run #1 55 events processed so far  <<<===
 ReadData            DEBUG in execute()
-ReadData             INFO CollectionMetadata, key = Name, value = PFN:SimplePoolCollection3.root
-ReadData             INFO CollectionMetadata, key = POOLCollectionID, value = ????
 ReadData             INFO EventStreamInfo: Number of events = 20
 ReadData             INFO EventStreamInfo: ItemList:
 ReadData             INFO CLID = 2101, key = McEventInfo
@@ -2333,8 +2220,6 @@ AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 2101, name =
 AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 9103, name = MyTracks
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #16, run #1 56 events processed so far  <<<===
 ReadData            DEBUG in execute()
-ReadData             INFO CollectionMetadata, key = Name, value = PFN:SimplePoolCollection3.root
-ReadData             INFO CollectionMetadata, key = POOLCollectionID, value = ????
 ReadData             INFO EventStreamInfo: Number of events = 20
 ReadData             INFO EventStreamInfo: ItemList:
 ReadData             INFO CLID = 2101, key = McEventInfo
@@ -2380,8 +2265,6 @@ AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 2101, name =
 AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 9103, name = MyTracks
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #17, run #1 57 events processed so far  <<<===
 ReadData            DEBUG in execute()
-ReadData             INFO CollectionMetadata, key = Name, value = PFN:SimplePoolCollection3.root
-ReadData             INFO CollectionMetadata, key = POOLCollectionID, value = ????
 ReadData             INFO EventStreamInfo: Number of events = 20
 ReadData             INFO EventStreamInfo: ItemList:
 ReadData             INFO CLID = 2101, key = McEventInfo
@@ -2427,8 +2310,6 @@ AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 2101, name =
 AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 9103, name = MyTracks
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #18, run #1 58 events processed so far  <<<===
 ReadData            DEBUG in execute()
-ReadData             INFO CollectionMetadata, key = Name, value = PFN:SimplePoolCollection3.root
-ReadData             INFO CollectionMetadata, key = POOLCollectionID, value = ????
 ReadData             INFO EventStreamInfo: Number of events = 20
 ReadData             INFO EventStreamInfo: ItemList:
 ReadData             INFO CLID = 2101, key = McEventInfo
@@ -2474,8 +2355,6 @@ AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 2101, name =
 AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 9103, name = MyTracks
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #19, run #1 59 events processed so far  <<<===
 ReadData            DEBUG in execute()
-ReadData             INFO CollectionMetadata, key = Name, value = PFN:SimplePoolCollection3.root
-ReadData             INFO CollectionMetadata, key = POOLCollectionID, value = ????
 ReadData             INFO EventStreamInfo: Number of events = 20
 ReadData             INFO EventStreamInfo: ItemList:
 ReadData             INFO CLID = 2101, key = McEventInfo
@@ -2530,9 +2409,9 @@ EventSelector.Q...   INFO in finalize()
 *****Chrono*****     INFO ****************************************************************************************************
 *****Chrono*****     INFO  The Final CPU consumption ( Chrono ) Table (ordered)
 *****Chrono*****     INFO ****************************************************************************************************
-cObjR_ALL            INFO Time User   : Tot=   40 [ms] Ave/Min/Max=0.203(+- 1.73)/    0/   20 [ms] #=197
-cObj_ALL             INFO Time User   : Tot=   70 [ms] Ave/Min/Max=0.414(+- 2.95)/    0/   30 [ms] #=169
-ChronoStatSvc        INFO Time User   : Tot= 1.07  [s]                                             #=  1
+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_WCond.ref b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_WCond.ref
index caaad3be76e5892f803b599ea7dba53af9736c86..bde8f9a2ee7c9d996f07aab067ea6146a5472038 100644
--- a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_WCond.ref
+++ b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_WCond.ref
@@ -128,8 +128,8 @@ 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 retrieve DataHeader from DetectorStore.
-ClassIDSvc           INFO  getRegistryEntries: read 3506 CLIDRegistry entries for module ALL
+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
diff --git a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/src/ReadData.cxx b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/src/ReadData.cxx
index bc526b3592657ae6b0d245b146f97177a8b82f85..aca479518d2cd685ad12a63500e8ff37d9ecdbae 100755
--- a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/src/ReadData.cxx
+++ b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/src/ReadData.cxx
@@ -14,8 +14,6 @@
 #include "AthenaPoolExampleData/ExampleHitContainer.h"
 #include "AthenaPoolExampleData/ExampleTrackContainer.h"
 
-#include "DBDataModel/CollectionMetadata.h"
-
 #include "EventInfo/EventInfo.h"
 #include "EventInfo/EventID.h"
 #include "EventInfo/EventStreamInfo.h"
@@ -26,7 +24,7 @@
 using namespace AthPoolEx;
 
 //___________________________________________________________________________
-ReadData::ReadData(const std::string& name, ISvcLocator* pSvcLocator) : AthAlgorithm(name, pSvcLocator), p_SGinMeta("StoreGateSvc/InputMetaDataStore", name), p_SGtagMeta("StoreGateSvc/TagMetaDataStore", name), p_SGmeta("StoreGateSvc/MetaDataStore", name) {
+ReadData::ReadData(const std::string& name, ISvcLocator* pSvcLocator) : AthAlgorithm(name, pSvcLocator), p_SGinMeta("StoreGateSvc/InputMetaDataStore", name), p_SGmeta("StoreGateSvc/MetaDataStore", name) {
 }
 //___________________________________________________________________________
 ReadData::~ReadData() {
@@ -40,32 +38,16 @@ StatusCode ReadData::initialize() {
       ATH_MSG_ERROR("Could not find Input MetaData StoreGateSvc");
       return StatusCode::FAILURE;
    }
-   if (!p_SGtagMeta.retrieve().isSuccess()) {
+   if (!p_SGmeta.retrieve().isSuccess()) {
       ATH_MSG_ERROR("Could not find Tag MetaData StoreGateSvc");
       return StatusCode::FAILURE;
    }
-   if (!p_SGtagMeta.retrieve().isSuccess()) {
-      ATH_MSG_ERROR("Could not find MetaData StoreGateSvc");
-      return StatusCode::FAILURE;
-   }
    return StatusCode::SUCCESS;
 }
 //___________________________________________________________________________
 StatusCode ReadData::execute() {
    ATH_MSG_DEBUG("in execute()");
 
-   if (p_SGtagMeta->contains<CollectionMetadata>("CollectionMetadata")) {
-      const DataHandle<CollectionMetadata> cm;
-      if (p_SGtagMeta->retrieve(cm, "CollectionMetadata").isFailure()) {
-         ATH_MSG_FATAL("Could not find CollectionMetadata");
-         return StatusCode::FAILURE;
-      }
-      for (CollectionMetadata::const_iterator iter = cm->begin(), iterEnd = cm->end();
-		      iter != iterEnd; iter++) {
-         ATH_MSG_INFO("CollectionMetadata, key = " << iter->first << ", value = " << iter->second);
-      }
-   }
-   // Get the event streamheader, print out 
    const DataHandle<EventStreamInfo> esi1, esi2;
    if (p_SGinMeta->retrieve(esi1, esi2).isFailure() || esi1 == esi2) {
       ATH_MSG_WARNING("Could not find EventStreamInfo");
diff --git a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/src/ReadData.h b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/src/ReadData.h
index aee0d872b01bd8018771473dd4943803159e4093..18fff9416225180ffecc820276dd69427e8937bb 100755
--- a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/src/ReadData.h
+++ b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/src/ReadData.h
@@ -36,7 +36,6 @@ public:
 
 private:
    ServiceHandle<StoreGateSvc> p_SGinMeta;
-   ServiceHandle<StoreGateSvc> p_SGtagMeta;
    ServiceHandle<StoreGateSvc> p_SGmeta;
 };
 
diff --git a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/test/AthenaPoolExample_AMeta.pattern b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/test/AthenaPoolExample_AMeta.pattern
deleted file mode 100644
index fa5dbae5b4336f28f5527ff8dd06932f18a2c90c..0000000000000000000000000000000000000000
--- a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/test/AthenaPoolExample_AMeta.pattern
+++ /dev/null
@@ -1,2 +0,0 @@
-> SG::fromStorable  WARNING can't convert stored DataObject
->  Unless you are following a symlink, it probably means you have a duplicate CLID = 1
diff --git a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/test/AthenaPoolExample_Concat.pattern b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/test/AthenaPoolExample_Concat.pattern
deleted file mode 100644
index 4d75deefb3706c523147eb6a695d60452ff0c0a9..0000000000000000000000000000000000000000
--- a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/test/AthenaPoolExample_Concat.pattern
+++ /dev/null
@@ -1,2 +0,0 @@
-< Stream1             DEBUG addItemObjects(2101,"*") called
-> Stream2             DEBUG addItemObjects(2101,"*") called
diff --git a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/test/AthenaPoolExample_Copy.pattern b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/test/AthenaPoolExample_Copy.pattern
deleted file mode 100644
index b7758a08c061760fedc427c225f1b92f27a0ba5d..0000000000000000000000000000000000000000
--- a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/test/AthenaPoolExample_Copy.pattern
+++ /dev/null
@@ -1,2 +0,0 @@
-< SG::fromStorable  WARNING can't convert stored DataObject
-<  Unless you are following a symlink, it probably means you have a duplicate CLID = 1
diff --git a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/test/AthenaPoolExample_RFilterPL.pattern b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/test/AthenaPoolExample_RFilterPL.pattern
deleted file mode 100644
index 63a3b0f814b62a965ceb19ab24a300aa76930397..0000000000000000000000000000000000000000
--- a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/test/AthenaPoolExample_RFilterPL.pattern
+++ /dev/null
@@ -1,16 +0,0 @@
-< RootCollection Debug Retrieved Collection TTree  "POOLCollectionTree" from file SimplePoolCollection5.root
-< RootCollectionSchemaEditor Warning  Collection Description not found in file, reconstructing
-< RootCollectionSchemaEditor Debug
-< RootCollection Info Root collection opened, size = 20
-< RootCollection Debug File SimplePoolCollection3.root exists.
-< Domain\[ROOT_All\] Info                           SimplePoolCollection5.root
-> RootCollection Info Root collection opened, size = 10
-> Domain\[ROOT_All\] Info                           SimplePoolFile5.root
-> PoolXMLFileCatalog Info File Catalog2.xml does not exist, a new one is created
-< PoolXMLFileCatalog Info File Catalog2.xml does not exist, a new one is created
-< .* Debug No objects passing selection criteria... Container has
-> SimplePoolFile5.root Debug --
-< SimplePoolFile5.root Debug --
-> ##Params Debug
-> ##Shapes Debug
-> ##Links Debug
diff --git a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/test/AthenaPoolExample_ReWriteAgain.pattern b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/test/AthenaPoolExample_ReWriteAgain.pattern
deleted file mode 100644
index b8a8ef02ed2b7167955e2e1746f92f608cf05330..0000000000000000000000000000000000000000
--- a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/test/AthenaPoolExample_ReWriteAgain.pattern
+++ /dev/null
@@ -1,9 +0,0 @@
-< XMLFileCatalog Debug There were no updates in the catalog
-< POOLCollFactory Debug  ---  found catalog guid=????
-< POOLCollFactory Info  -- removing ???? from the catalog
-< XMLFileCatalog Debug There were no updates in the catalog
-> PoolXMLFileCatalog Debug filename SimplePoolFile3.root does not exist
-> XMLFileCatalog Debug lookupFilebyPFN: Empty File ID found
-> PoolXMLFileCatalog Debug filename RootCollection||PFN:SimplePoolCollection3.root does not exist
-> XMLFileCatalog Info Updating the catalog
-> POOLCollFactory Debug  ---  found catalog guid=
diff --git a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/test/AthenaPoolExample_ReWriteSkip.pattern b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/test/AthenaPoolExample_ReWriteSkip.pattern
deleted file mode 100644
index cf46527dfe5ef98b91a4a429e30ff1cb04ba30c4..0000000000000000000000000000000000000000
--- a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/test/AthenaPoolExample_ReWriteSkip.pattern
+++ /dev/null
@@ -1,8 +0,0 @@
-< RootCollection Debug File SimplePoolCollection3.root exists.
-< TREE   POOLContainer_DataHeaderForm                      0.00     0.00       20        1        3
-> RegStream1          DEBUG Adding ref for Stream1
-> RootCollection Debug File SimplePoolCollection3.root does not exist.
-> RegStream1.Regi...  DEBUG Event 0
-> RegStream1.Regi...  DEBUG ref name Stream1_ref already used
-> TREE   POOLContainer_DataHeaderForm                      0.01     0.00       20        1        3
-
diff --git a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/test/AthenaPoolExample_ReadAgain.pattern b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/test/AthenaPoolExample_ReadAgain.pattern
deleted file mode 100755
index 4ae923600071d0c45c8e59952ed5e4a46c98dc62..0000000000000000000000000000000000000000
--- a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/test/AthenaPoolExample_ReadAgain.pattern
+++ /dev/null
@@ -1,11 +0,0 @@
-< Error in <TFile::Init>: file TruncatedPoolFile.root is truncated at
-> Error in <TFile::Init>: file TruncatedPoolFile.root is truncated at
-< Error in <TFile::ReadBuffer>: error reading all requested bytes from file TruncatedPoolFile.root, got
-> Error in <TFile::ReadBuffer>: error reading all requested bytes from file TruncatedPoolFile.root, got
-< RootFileHandler     ERROR Unable to open ROOT file \"NotFoundPoolFile.root\" with options \"READ\"
-< FileMgr           WARNING open of file \"NotFoundPoolFile.root\", tech: \"ROOT\", flags: \"READ\" failed
-< RootDBase.open Error unable to open \"NotFoundPoolFile.root\" for READ
-< RootFileHandler     ERROR Unable to open ROOT file \"TruncatedPoolFile.root\" with options \"READ\"
-< FileMgr           WARNING open of file \"TruncatedPoolFile.root\", tech: \"ROOT\", flags: \"READ\" failed
-< RootDBase.open Error unable to open \"TruncatedPoolFile.root\" for READ
-
diff --git a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/test/AthenaPoolExample_ReadFast.pattern b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/test/AthenaPoolExample_ReadFast.pattern
deleted file mode 100644
index 8b137891791fe96927ad78e64b0aad7bded08bdc..0000000000000000000000000000000000000000
--- a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/test/AthenaPoolExample_ReadFast.pattern
+++ /dev/null
@@ -1 +0,0 @@
-
diff --git a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/test/AthenaPoolExample_ReadTagFast.pattern b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/test/AthenaPoolExample_ReadTagFast.pattern
deleted file mode 100644
index e2315872dd9fdab0387c283d040b9ff51d42ccb8..0000000000000000000000000000000000000000
--- a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/test/AthenaPoolExample_ReadTagFast.pattern
+++ /dev/null
@@ -1,2 +0,0 @@
-< SimplePoolFile2.root Debug -*>
-> SimplePoolFile2.root Debug -*>
diff --git a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/test/AthenaPoolExample_ReadcBsTag.pattern b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/test/AthenaPoolExample_ReadcBsTag.pattern
deleted file mode 100644
index d08ffb482624cfcff22d80052e899ce9bfacebdd..0000000000000000000000000000000000000000
--- a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/test/AthenaPoolExample_ReadcBsTag.pattern
+++ /dev/null
@@ -1,6 +0,0 @@
-< EventSelector       DEBUG record AthenaAttribute, name = StreamRAW_ref = \[DB=\?\?\?\?\]\[CNT=\]\[CLID=!!!!\]\[TECH=00001000\]\[OID=00000000-0049825C\].
-> EventSelector       DEBUG record AthenaAttribute, name = StreamRAW_ref = \[DB=\?\?\?\?\]\[CNT=\]\[CLID=!!!!\]\[TECH=00001000\]\[OID=00000000-0091678C\].
-< EventSelector       DEBUG found AthenaAttribute, name = StreamRAW_ref = \[DB=\?\?\?\?\]\[CNT=\]\[CLID=!!!!\]\[TECH=00001000\]\[OID=00000000-0049825C\]
-> EventSelector       DEBUG found AthenaAttribute, name = StreamRAW_ref = \[DB=\?\?\?\?\]\[CNT=\]\[CLID=!!!!\]\[TECH=00001000\]\[OID=00000000-0091678C\]
-< EventSelector       DEBUG record AthenaAttribute, name = StreamRAW_ref = \[DB=\?\?\?\?\]\[CNT=\]\[CLID=!!!!\]\[TECH=00001000\]\[OID=00000000-00498264\].
-< EventSelector       DEBUG found AthenaAttribute, name = StreamRAW_ref = \[DB=\?\?\?\?\]\[CNT=\]\[CLID=!!!!\]\[TECH=00001000\]\[OID=00000000-00498264\]
diff --git a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/test/empty.pattern b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/test/empty.pattern
deleted file mode 100755
index 3c841a18e37f9d0d660e6d0216196170fb9647df..0000000000000000000000000000000000000000
--- a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/test/empty.pattern
+++ /dev/null
@@ -1,43 +0,0 @@
-Segmentation fault
-< Athena               INFO using release 
-< Preloading tcmalloc.so
-> Preloading tcmalloc_minimal.so
-< Py:ConfigurableDb WARNING 
-> Py:ConfigurableDb    INFO No duplicates have been found: that's good !
-< Py:ConfigurableDb    INFO No duplicates have been found: that's good !
-< PoolSvc              INFO Database \([a-zA-Z0-9]*.root\) attribute \[FILE_SIZE\]:
-> PoolSvc              INFO Database \([a-zA-Z0-9]*.root\) attribute \[FILE_SIZE\]:
-< PoolSvc              INFO Database \(SimplePoolFile[1234].root\) attribute \[TREE_CACHE_LEARN_EVENTS\]: 6
-< PoolSvc              INFO Database \(SimplePoolFile[1234].root\) attribute \[TREE_CACHE_SIZE\]: 100000
-< PoolSvc              INFO Database \(SimplePoolFile[1234].root\) attribute \[BYTES_READ\]:
-> PoolSvc              INFO Database \(SimplePoolFile[1234].root\) attribute \[BYTES_READ\]:
-< PoolSvc              INFO Database \(SimplePoolFile[1234].root\) attribute \[READ_CALLS\]:
-> PoolSvc              INFO Database \(SimplePoolFile[1234].root\) attribute \[READ_CALLS\]:
-< AthenaPoolAddre...   INFO BackNavigationScope for: ExampleHitContainer#MyHits :: Stream1
-> RegStream[1234].Regi...   INFO No Primary Key defined
-> AthenaPoolCnvSvc    DEBUG setAttribute
-> AthenaPoolCnvSvc    DEBUG releasing all workers
-> AthenaPoolCnvSvc    DEBUG Calling destructor
-> AthenaPoolAddre...  DEBUG updateAddress: Cannot find DataHeader in StoreGate
-> [a-zA-Z0-9]*.root Info Database being retired...
-> [a-zA-Z0-9]*.root Debug --> Deaccess DbContainer
-< [a-zA-Z0-9]*.root Info Database being retired...
-< [a-zA-Z0-9]*.root Debug --> Deaccess DbContainer
-< ReadData             INFO CollectionMetadata, key = UnixTimestamp, value = [0-9]*
-> ReadData             INFO CollectionMetadata, key = UnixTimestamp, value = [0-9]*
-< TEnvRec::ChangeValue:0: RuntimeWarning: duplicate entry
-< Note: \(file \"\(tmpfile\)\", line 2\) File
-< RootDbase: all good: 
-< evt no, per run
-< WARNING: TCMALLOCDIR not defined, will use libc malloc
-> PoolXMLFileCatalog Info File Catalog2.xml does not exist, a new one is created
-> Stream2             DEBUG Proxy name=Stream1
-< [a-zA-Z0-9_\(\)\/]* Debug endTransaction: go to finish
-> [a-zA-Z0-9_\(\)\/]* Debug endTransaction: go to finish
-< Warning in <TInterpreter::ReadRootmapFile>: class 
-> Warning in <TInterpreter::ReadRootmapFile>: class 
-< GUID: Class 
-< Athena               INFO executing ROOT6Setup
-> AthenaRootStrea...   INFO 
-< !! WARNING, type unsigned int does not have property ClassID
-< ===========
diff --git a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/test/pre_check.sh b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/test/pre_check.sh
index 1791ffaaef77ae5aa9c67eb47c69956ab77dda13..8ab762e986be9666bc67e9f97e586aec208653e5 100755
--- a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/test/pre_check.sh
+++ b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/test/pre_check.sh
@@ -5,116 +5,19 @@ test=${1}
 #
 if [ "${test}" = "AthenaPoolExample_Write" ]
 then
-	#echo "## clean up"
-	#echo $LD_LIBRARY_PATH
 	/bin/rm -f *
 elif [ "${test}" = "AthenaPoolExample_Concat" ]
 then
-	#echo "## clean up ii"
 	/bin/rm -f SimplePoolFile[13].root
-#elif [ "${test}" = "AthenaPoolExample_WriteFast" ]
-#then
-#	#echo "## clean up iii"
-#	/bin/rm -f SimplePool*[1-4].root #*.xml*
-#	cat ../share/AthenaPoolExample_WriteJobOptions.py | \
-#	sed -e 's/SimplePoolFile2.root/SimplePoolFileA.root/g' > ${test}.py
-#elif [ "${test}" = "AthenaPoolExample_AppendFast" ]
-#then
-#	cat ../share/AthenaPoolExample_AppendJobOptions.py | \
-#	sed -e 's/Stream1/Stream2/g' | \
-#	sed -e 's/SimplePoolFile2.root/SimplePoolFileB.root/g' > ${test}.py
-#elif [ "${test}" = "AthenaPoolExample_ReWriteTagFast" ]
-#then
-#	cat ../share/AthenaPoolExample_RWJobOptions.py | \
-#	sed -e 's/SimplePoolFile1.root/SimplePoolFile2.root/g' | \
-#	sed -e 's/SimplePoolFile3.root/SimplePoolFile4.root/g' | \
-#	sed -e 's/SimplePoolCollection3.root/SimplePoolCollection4.root/g' | \
-#	sed -e 's/^RegStream1.WriteInputDataHeader = False/RegStream1.WriteInputDataHeader = True/g' | \
-#	sed -e 's/DataHeader#Stream1/DataHeader#\*/g' > ${test}.py
-#elif [ "${test}" = "AthenaPoolExample_ReadTagFast" ]
-#then
-#	cat ../share/AthenaPoolExample_ReadJobOptions.py | \
-#	sed -e 's/SimplePoolCollection2.root/SimplePoolCollection4.root/g' | \
-#	sed -e 's/^svcMgr.EventSelector.SkipEvent/#svcMgr.EventSelector.SkipEvent/g' | \
-#	sed -e 's/^#svcMgr.EventSelector.InputCollections/svcMgr.EventSelector.InputCollections/g' | \
-#	sed -e 's/^#svcMgr.EventSelector.CollectionType/svcMgr.EventSelector.CollectionType/g' | \
-#	sed -e 's/^#svcMgr.EventSelector.HelperTools/svcMgr.EventSelector.HelperTools/g' | \
-#	sed -e 's/^#Switch Off for TAG - start/\"\"\"/g' | \
-#	sed -e 's/^#Switch Off for TAG - end/\"\"\"/g' > ${test}.py
 elif [ "${test}" = "AthenaPoolExample_WMeta" ]
 then
-	#echo "## clean up iii"
 	/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_ReWriteAgain" ]
-#then
-#	rm SimplePool*3.root
-#	cat ../share/AthenaPoolExample_RWJobOptions.py | \
-#	sed -e 's/SimplePoolFile1.root/SimplePoolReplica1.root/g' > ${test}.py
-#elif [ "${test}" == "AthenaPoolExample_ReWriteNext" ]
-#then
-#	cat ../share/AthenaPoolExample_RWJobOptions.py | \
-#	#sed -e 's/#Stream1.WritingTool.ProvenanceTags/Stream1.WritingTool.ProvenanceTags/g' | \
-#	sed -e 's/3.root/4.root/g' | \
-#	sed -e 's/1.root/3.root/g' > ${test}.py
-#elif [ "${test}" == "AthenaPoolExample_ReWriteSkip" ]
-#then
-#	/bin/rm -f TruncatedPoolFile.root SimplePool*3.root SimplePool*4.root Catalog1.xml*
-#	pool_insertFileToCatalog -u xmlcatalog_file:Catalog1.xml *File*.root
-#	cat ../share/AthenaPoolExample_RWJobOptions.py | \
-#	sed -e 's/^#Stream1.ExtendProvenanceRecord = FALSE/Stream1.ExtendProvenanceRecord = FALSE/g' > ${test}.py
-#elif [ "${test}" == "AthenaPoolExample_ReadAgain" ]
-#then
-#	FCdeletePFN -u xmlcatalog_file:Catalog1.xml -p EmptyPoolFile.root
-#	FCaddReplica -u xmlcatalog_file:Catalog1.xml -r NotFoundPoolFile.root -p SimplePoolFile3.root
-#	FCaddReplica -u xmlcatalog_file:Catalog1.xml -r TruncatedPoolFile.root -p SimplePoolFile4.root
-#	FCdeletePFN -u xmlcatalog_file:Catalog1.xml -p SimplePoolFile4.root
-#	cat ../share/AthenaPoolExample_ReadJobOptions.py | \
-#	sed -e 's/^#svcMgr.PoolSvc.AttemptCatalogPatch/svcMgr.PoolSvc.AttemptCatalogPatch/g' | \
-#	sed -e 's/SimplePoolFile1.root/SimplePoolReplica1.root/g' | \
-#	sed -e 's/, "SimplePoolFile3.root"/, "NotTherePoolFile.root", "NotFoundPoolFile.root", "TruncatedPoolFile.root", "SimplePoolFile4.root"/g' > ${test}.py
-#elif [ "${test}" == "AthenaPoolExample_ReadBsTag" ]
-#then
-#	#catalogBytestreamFiles.sh /afs/cern.ch/atlas/offline/test/daq.m4_combined.0020720.extract.L1TT-b00000010._0001.data
-#	FCregisterPFN -g "7AB2B62D-7276-DC11-9AB7-0018FE6D438B" -t "BYTE_STREAM" -p "/afs/cern.ch/atlas/offline/test/daq.m4_combined.0020720.extract.L1TT-b00000010._0001.data" # For now, as catalogBytestreamFiles.sh fails on gcc4.8
-#	rm SimplePoolFromRaw.root
-#	cat ../share/AthenaPoolExample_ReadBsJobOptions.py | \
-#	sed -e 's/^#svcMgr.EventSelector.InputCollections/svcMgr.EventSelector.InputCollections/g' | \
-#	sed -e 's/^#svcMgr.EventSelector.CollectionType/svcMgr.EventSelector.CollectionType/g' | \
-#	sed -e 's/^#svcMgr.EventSelector.RefName/svcMgr.EventSelector.RefName/g' | \
-#	sed -e 's/^#svcMgr.EventSelector.Query/svcMgr.EventSelector.Query/g' | \
-#	grep -v "^\"\"\"" > ${test}.py
 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
-	#catalogBytestreamFiles.sh test_defl.data
-        #guid=`strings ../run/test_defl.data | grep "GUID=" | cut -d= -f2`
-	#FCregisterPFN -g ${guid} -t "BYTE_STREAM" -p "test_defl.data" # For now, as catalogBytestreamFiles.sh fails on gcc4.8
-#elif [ "${test}" == "AthenaPoolExample_ReadBNzip" ]
-#then
-#	zip -n root ArchiveFile EmptyPoolFile.root SimplePoolFile*
-#	FCaddReplica -u xmlcatalog_file:Catalog1.xml -r ArchiveFile.zip#EmptyPoolFile.root -p EmptyPoolFile.root
-#	FCaddReplica -u xmlcatalog_file:Catalog1.xml -r ArchiveFile.zip#SimplePoolFile1.root -p SimplePoolFile1.root
-#	FCdeletePFN -u xmlcatalog_file:Catalog1.xml -p EmptyPoolFile.root
-#	FCdeletePFN -u xmlcatalog_file:Catalog1.xml -p SimplePoolFile1.root
-#	FCdeletePFN -u xmlcatalog_file:Catalog1.xml -p SimplePoolFile2.root
-#	FCdeletePFN -u xmlcatalog_file:Catalog1.xml -p SimplePoolFile3.root
-#	/bin/rm -f EmptyPoolFile.root SimplePoolFile*
-#	pool_insertFileToCatalog -u xmlcatalog_file:Catalog1.xml ArchiveFile.zip#SimplePoolFile2.root ArchiveFile.zip#SimplePoolFile3.root
-#	cat ../share/AthenaPoolExample_ReadJobOptions.py | \
-#	sed -e 's/^svcMgr.AthenaPoolAddressProviderSvc.BackNavigation = TRUE/svcMgr.AthenaPoolAddressProviderSvc.BackNavigation = FALSE/g' | \
-#	sed -e 's/^#svcMgr.AthenaPoolAddressProviderSvc.BackNavigationScope/svcMgr.AthenaPoolAddressProviderSvc.BackNavigationScope/g' | \
-#	sed -e 's/EmptyPoolFile/ArchiveFile.zip#EmptyPoolFile/g' | \
-#	sed -e 's/SimplePoolFile/ArchiveFile.zip#SimplePoolFile/g' > ${test}.py
-#elif [ "${test}" == "AthenaPoolExample_ReadBNzipAgain" ]
-#then
-#	cat ./AthenaPoolExample_ReadBNzip.py | \
-#	sed -e 's/ArchiveFile/root:\/\/castoratlas\/\/castor\/cern\.ch\/user\/g\/gemmeren\/ArchiveFile/g' > ${test}.py
-#	xrdcp ArchiveFile.zip root://castoratlas//castor/cern.ch/user/g/gemmeren/ArchiveFile.zip
-#	rm Catalog1.xml ArchiveFile.zip
-#	pool_insertFileToCatalog -u xmlcatalog_file:Catalog1.xml root://castoratlas//castor/cern.ch/user/g/gemmeren/ArchiveFile.zip#EmptyPoolFile.root root://castoratlas//castor/cern.ch/user/g/gemmeren/ArchiveFile.zip#SimplePoolFile1.root root://castoratlas//castor/cern.ch/user/g/gemmeren/ArchiveFile.zip#SimplePoolFile2.root root://castoratlas//castor/cern.ch/user/g/gemmeren/ArchiveFile.zip#SimplePoolFile3.root
 fi
 # Turn off pool verbose printing
 export POOL_OUTMSG_LEVEL=4
diff --git a/Database/AthenaPOOL/EventSelectorAthenaPool/CMakeLists.txt b/Database/AthenaPOOL/EventSelectorAthenaPool/CMakeLists.txt
index 13ab2ab05fc6f5ec9627e7e9dd91642a2a4ed2c9..f58ed4f319797e6814367085b52e49e9a1b655be 100644
--- a/Database/AthenaPOOL/EventSelectorAthenaPool/CMakeLists.txt
+++ b/Database/AthenaPOOL/EventSelectorAthenaPool/CMakeLists.txt
@@ -14,7 +14,6 @@ atlas_depends_on_subdirs( PRIVATE
                           Database/APR/PersistencySvc
                           Database/AthenaPOOL/AthenaPoolCnvSvc
                           Database/AthenaPOOL/AthenaPoolUtilities
-                          Database/AthenaPOOL/DBDataModel
                           Database/AthenaPOOL/PoolSvc
                           Database/PersistentDataModel
                           GaudiKernel )
@@ -31,7 +30,7 @@ atlas_add_component( EventSelectorAthenaPool
                      src/registerKeys.cxx
                      src/components/*.cxx
                      INCLUDE_DIRS ${CORAL_INCLUDE_DIRS}
-                     LINK_LIBRARIES ${CORAL_LIBRARIES} AthenaBaseComps AthenaKernel StoreGateLib SGtests CollectionBase PersistencySvc AthenaPoolCnvSvcLib AthenaPoolUtilities DBDataModel PersistentDataModel GaudiKernel )
+                     LINK_LIBRARIES ${CORAL_LIBRARIES} AthenaBaseComps AthenaKernel StoreGateLib SGtests CollectionBase PersistencySvc AthenaPoolCnvSvcLib AthenaPoolUtilities PersistentDataModel GaudiKernel )
 
 # Install files from the package:
 atlas_install_python_modules( python/*.py )
diff --git a/Database/AthenaPOOL/EventSelectorAthenaPool/src/AthenaPoolAddressProviderSvc.cxx b/Database/AthenaPOOL/EventSelectorAthenaPool/src/AthenaPoolAddressProviderSvc.cxx
index c8ad7d4d63f4b0a7cd26e2b3eb4bd4c0240119a8..be48f00ef0eeb10714364f3a2433699fff4d8454 100755
--- a/Database/AthenaPOOL/EventSelectorAthenaPool/src/AthenaPoolAddressProviderSvc.cxx
+++ b/Database/AthenaPOOL/EventSelectorAthenaPool/src/AthenaPoolAddressProviderSvc.cxx
@@ -51,7 +51,6 @@ StoreGateSvc* AthenaPoolAddressProviderSvc::eventStore() const {
 }
 //________________________________________________________________________________
 StatusCode AthenaPoolAddressProviderSvc::initialize() {
-   ATH_MSG_INFO("Initializing " << name() << " - package version " << PACKAGE_VERSION);
    if (!::AthService::initialize().isSuccess()) {
       ATH_MSG_FATAL("Cannot initialize AthService base class.");
       return(StatusCode::FAILURE);
@@ -62,14 +61,13 @@ StatusCode AthenaPoolAddressProviderSvc::initialize() {
       return(StatusCode::FAILURE);
    }
    // Get scoped BackNavigation hints
-   for (std::vector<std::string>::const_iterator iter = m_backNavigationScope.value().begin(),
-		   last = m_backNavigationScope.value().end(); iter != last; iter++) {
-      const std::string::size_type p_colon = iter->find("::");
+   for (const auto& navigationHint : m_backNavigationScope) {
+      const std::string::size_type p_colon = navigationHint.find("::");
       if (p_colon == std::string::npos) {
-         ATH_MSG_FATAL("Unexpected format in BackNavigationScope: " << *iter);
+         ATH_MSG_FATAL("Unexpected format in BackNavigationScope: " << navigationHint);
          return(StatusCode::FAILURE);
       }
-      std::pair<std::string, std::string> entry(iter->substr(p_colon + 2), iter->substr(0, p_colon));
+      std::pair<std::string, std::string> entry(navigationHint.substr(p_colon + 2), navigationHint.substr(0, p_colon));
       m_backNavigationMap.insert(entry);
       ATH_MSG_INFO("BackNavigationScope for: " << entry.first << " :: " << entry.second);
    }
@@ -98,26 +96,25 @@ StatusCode AthenaPoolAddressProviderSvc::preLoadAddresses(StoreID::type storeID,
       ATH_MSG_ERROR("Cannot get DetectorStore.");
       return(StatusCode::FAILURE);
    }
-   std::list<SG::ObjectWithVersion<DataHeader> > allVersions;
-   if (!detectorStoreSvc->retrieveAllVersions(allVersions, "CondProxyProvider").isSuccess()) {
+   const DataHandle<DataHeader> dataHeader;
+   if (!detectorStoreSvc->contains<DataHeader>("CondProxyProvider")) {
+      ATH_MSG_DEBUG("Cannot find DataHeader in DetectorStore.");
+      return(StatusCode::SUCCESS);
+   }
+   if (!detectorStoreSvc->retrieve(dataHeader, "CondProxyProvider").isSuccess()) {
       ATH_MSG_DEBUG("Cannot retrieve DataHeader from DetectorStore.");
       return(StatusCode::SUCCESS);
    }
-   for (std::list<SG::ObjectWithVersion<DataHeader> >::const_iterator iter = allVersions.begin();
-		   iter != allVersions.end(); iter++) {
-      const DataHeader* dataHeader = iter->dataObject;
-      ATH_MSG_DEBUG("The current File contains: " << dataHeader->size() << " objects");
-      for (std::vector<DataHeaderElement>::const_iterator iter = dataHeader->begin(),
-		      last = dataHeader->end(); iter != last; iter++) {
-         SG::TransientAddress* tadd = iter->getAddress();
-         if (tadd->clID() == ClassID_traits<DataHeader>::ID()) {
-            delete tadd; tadd = 0;
-         } else {
-            ATH_MSG_DEBUG("preLoadAddresses: DataObject address, clid = " << tadd->clID() << ", name = " << tadd->name());
-            tads.push_back(tadd);
-         }
-         EventSelectorAthenaPoolUtil::registerKeys(*iter, &*detectorStoreSvc);
+   ATH_MSG_DEBUG("The current File contains: " << dataHeader->size() << " objects");
+   for (const auto& element : *dataHeader) {
+      SG::TransientAddress* tadd = element.getAddress();
+      if (tadd->clID() == ClassID_traits<DataHeader>::ID()) {
+         delete tadd; tadd = 0;
+      } else {
+         ATH_MSG_DEBUG("preLoadAddresses: DataObject address, clid = " << tadd->clID() << ", name = " << tadd->name());
+         tads.push_back(tadd);
       }
+      EventSelectorAthenaPoolUtil::registerKeys(element, &*detectorStoreSvc);
    }
    if (!detectorStoreSvc.release().isSuccess()) {
       ATH_MSG_WARNING("Cannot release DetectorStoreSvc.");
@@ -133,7 +130,7 @@ StatusCode AthenaPoolAddressProviderSvc::loadAddresses(StoreID::type storeID,
 
    Guid thisFile = Guid::null();
    long int oid2 = 0L;
-   if (m_dataHeaderIterator) {
+   if (m_dataHeaderIterator) { // Get oid2 (event file entry number) from DataHeader proxy
       const SG::DataProxy* dhProxy = eventStore()->proxy(ClassID_traits<DataHeader>::ID(), m_dataHeaderKey.value());
       if (dhProxy != 0 && dhProxy->address() != 0) {
          Token token;
@@ -142,7 +139,7 @@ StatusCode AthenaPoolAddressProviderSvc::loadAddresses(StoreID::type storeID,
          oid2 = token.oid().second;
       }
    }
-   if (thisFile == Guid::null() || oid2 == 0L || thisFile != m_guid) {
+   if (thisFile == Guid::null() || oid2 == 0L || thisFile != m_guid) { // New file (or reading DataHeader)
       const DataHandle<DataHeader> dataHeader;
       if (!eventStore()->retrieve(dataHeader, m_dataHeaderKey.value()).isSuccess() || !dataHeader.isValid()) {
          ATH_MSG_ERROR("Cannot retrieve DataHeader from StoreGate.");
@@ -150,9 +147,8 @@ StatusCode AthenaPoolAddressProviderSvc::loadAddresses(StoreID::type storeID,
       }
       dataHeader->setStatus(DataHeader::Primary);
       ATH_MSG_DEBUG("The current Event contains: " << dataHeader->size() << " objects");
-      for (std::vector<DataHeaderElement>::const_iterator iter = dataHeader->begin(),
-		      last = dataHeader->end(); iter != last; iter++) {
-         SG::TransientAddress* tadd = iter->getAddress();
+      for (const auto& element : *dataHeader) {
+         SG::TransientAddress* tadd = element.getAddress();
          if (tadd->clID() == ClassID_traits<DataHeader>::ID()) { // self reference
             if (tadd->name() != "StreamRAW") {
                if (tadd->name().empty() && dataHeader->sizeProvenance() == 1) { // reading DataHeader satellite
@@ -173,14 +169,12 @@ StatusCode AthenaPoolAddressProviderSvc::loadAddresses(StoreID::type storeID,
             }
             tads.push_back(tadd);
          }
-         EventSelectorAthenaPoolUtil::registerKeys(*iter, eventStore());
+         EventSelectorAthenaPoolUtil::registerKeys(element, eventStore());
       }
       m_guid = thisFile;
-   } else {
-      std::vector<const SG::DataProxy*> preExistingProxies = eventStore()->proxies();
-      for (std::vector<const SG::DataProxy*>::const_iterator iter = preExistingProxies.begin(),
-		      last = preExistingProxies.end(); iter != last; iter++) {
-         TokenAddress* tokAddr = dynamic_cast<TokenAddress*>((*iter)->address());
+   } else { // Iterating in current file, use DataHeader file entry number for all object references.
+      for (const auto& proxy : eventStore()->proxies()) {
+         TokenAddress* tokAddr = dynamic_cast<TokenAddress*>(proxy->address());
          if (tokAddr != 0 && tokAddr->getToken() != 0) {
             const_cast<Token*>(tokAddr->getToken())->oid().second = oid2;
          }
@@ -211,10 +205,9 @@ StatusCode AthenaPoolAddressProviderSvc::updateAddress(StoreID::type storeID,
          return(StatusCode::FAILURE);
       }
       const SG::TransientAddress* defObj = 0;
-      for (std::vector<DataHeaderElement>::const_iterator iter = dataHeader->begin(),
-		      last = dataHeader->end(); iter != last; iter++) {
-         const SG::TransientAddress* tadd = iter->getAddress();
-         std::set<CLID> ids = iter->getClassIDs();
+      for (const auto& element : *dataHeader) {
+         const SG::TransientAddress* tadd = element.getAddress();
+         const std::set<CLID>& ids = element.getClassIDs();
          if (ids.find(tad->clID()) != ids.end()) {
             if (defObj == 0 && tad->name() == tadd->name()) {
                defObj = tadd; tadd = 0;
@@ -229,7 +222,7 @@ StatusCode AthenaPoolAddressProviderSvc::updateAddress(StoreID::type storeID,
                }
             }
          }
-         EventSelectorAthenaPoolUtil::registerKeys(*iter, eventStore());
+         EventSelectorAthenaPoolUtil::registerKeys(element, eventStore());
          delete tadd; tadd = 0;
       }
       if (defObj !=0) {
@@ -292,14 +285,13 @@ StatusCode AthenaPoolAddressProviderSvc::chaseAddress(SG::TransientAddress* tad,
          return(StatusCode::FAILURE);
       }
       const SG::TransientAddress* defObj = 0;
-      for (std::vector<DataHeaderElement>::const_iterator iter = pDataHeader->begin(),
-		      last = pDataHeader->end(); iter != last; iter++) {
-         const SG::TransientAddress* tadd = iter->getAddress();
-         std::set<CLID> ids = iter->getClassIDs();
+      for (const auto& element: *pDataHeader) {
+         const SG::TransientAddress* tadd = element.getAddress();
+         const std::set<CLID>& ids = element.getClassIDs();
          if (defObj == 0 && ids.find(tad->clID()) != ids.end() && tad->name() == tadd->name()) {
             defObj = tadd; tadd = 0;
          }
-         EventSelectorAthenaPoolUtil::registerKeys(*iter, eventStore());
+         EventSelectorAthenaPoolUtil::registerKeys(element, eventStore());
          delete tadd; tadd = 0;
       }
       if (defObj !=0) {
@@ -312,20 +304,20 @@ StatusCode AthenaPoolAddressProviderSvc::chaseAddress(SG::TransientAddress* tad,
    if (!m_backNavigationFlag.value() && processTag.empty()) {
       return(StatusCode::FAILURE);
    }
-   std::vector<DataHeaderElement>::const_iterator thisInputToken = dataHeader->beginProvenance();
-   if (thisInputToken != dataHeader->endProvenance()) {
-      const Token* token = thisInputToken->getToken();
+   std::vector<DataHeaderElement>::const_iterator firstInputToken = dataHeader->beginProvenance();
+   if (firstInputToken != dataHeader->endProvenance()) {
+      const Token* token = firstInputToken->getToken();
       const std::string key = token != 0 ? token->dbID().toString() : "";
       const DataHandle<DataHeader> pDataHeader;
       if (!eventStore()->contains<DataHeader>(key)) {
-         GenericAddress* genAddr = new GenericAddress(thisInputToken->getStorageType(),
+         GenericAddress* genAddr = new GenericAddress(firstInputToken->getStorageType(),
 		         ClassID_traits<DataHeader>::ID(),
 		         token != 0 ? token->toString() : "");
          if (!eventStore()->recordAddress(key, genAddr).isSuccess()) {
             ATH_MSG_ERROR("chaseAddress2: Cannot record Input DataHeader, key = " << key);
             return(StatusCode::FAILURE);
          }
-         EventSelectorAthenaPoolUtil::registerKeys(*thisInputToken, eventStore());
+         EventSelectorAthenaPoolUtil::registerKeys(*firstInputToken, eventStore());
       }
       if (!eventStore()->retrieve(pDataHeader, key).isSuccess()) {
          ATH_MSG_ERROR("chaseAddress2: Cannot retrieve Input DataHeader, key = " << key);
diff --git a/Database/AthenaPOOL/EventSelectorAthenaPool/src/CondProxyProvider.cxx b/Database/AthenaPOOL/EventSelectorAthenaPool/src/CondProxyProvider.cxx
index e05bb844662dca3cf1df57f92caa87171a9ae708..2b0443a32d5022e960cae3ec343edd9c352b65e5 100755
--- a/Database/AthenaPOOL/EventSelectorAthenaPool/src/CondProxyProvider.cxx
+++ b/Database/AthenaPOOL/EventSelectorAthenaPool/src/CondProxyProvider.cxx
@@ -45,7 +45,6 @@ StatusCode CondProxyProvider::initialize() {
       ATH_MSG_FATAL("Cannot initialize AthService base class.");
       return(StatusCode::FAILURE);
    }
-
    // Check for input collection
    if (m_inputCollectionsProp.value().size() == 0) {
       return(StatusCode::FAILURE);
@@ -101,60 +100,52 @@ StatusCode CondProxyProvider::preLoadAddresses(StoreID::type storeID,
    }
    // Create DataHeader iterators
    m_headerIterator = &m_poolCollectionConverter->executeQuery();
-   for (int verNumber = 0; verNumber < 100; verNumber++) {
-      if (!m_headerIterator->next()) {
-         if (m_poolCollectionConverter != 0) {
-            m_poolCollectionConverter->disconnectDb().ignore();
-            delete m_poolCollectionConverter; m_poolCollectionConverter = 0;
+   if (!m_headerIterator->next()) {
+      if (m_poolCollectionConverter != 0) {
+         m_poolCollectionConverter->disconnectDb().ignore();
+         delete m_poolCollectionConverter; m_poolCollectionConverter = 0;
+      }
+      m_inputCollectionsIterator++;
+      if (m_inputCollectionsIterator != m_inputCollectionsProp.value().end()) {
+         // Create PoolCollectionConverter for input file
+         m_poolCollectionConverter = getCollectionCnv();
+         if (m_poolCollectionConverter == 0) {
+            return(StatusCode::FAILURE);
          }
-         m_inputCollectionsIterator++;
-         if (m_inputCollectionsIterator != m_inputCollectionsProp.value().end()) {
-            // Create PoolCollectionConverter for input file
-            m_poolCollectionConverter = getCollectionCnv();
-            if (m_poolCollectionConverter == 0) {
-               return(StatusCode::FAILURE);
-            }
-            // Get DataHeader iterator
-            m_headerIterator = &m_poolCollectionConverter->executeQuery();
-            if (!m_headerIterator->next()) {
-               return(StatusCode::FAILURE);
-            }
-         } else {
-            break;
+         // Get DataHeader iterator
+         m_headerIterator = &m_poolCollectionConverter->executeQuery();
+         if (!m_headerIterator->next()) {
+            return(StatusCode::FAILURE);
          }
       }
-      //const std::string tokenStr = m_headerIterator->eventRef().toString();
-      SG::VersionedKey myVersKey(name(), verNumber);
-      GenericAddress* genAddr = new GenericAddress(POOL_StorageType,
-	      ClassID_traits<DataHeader>::ID(),
-	      m_headerIterator->eventRef().toString(),
-	      myVersKey);
-      if (!detectorStoreSvc->recordAddress(genAddr).isSuccess()) {
-         ATH_MSG_ERROR("Cannot record DataHeader.");
-         return(StatusCode::FAILURE);
-      }
-   } //data headers loop
-   std::list<SG::ObjectWithVersion<DataHeader> > allVersions;
-   if (!detectorStoreSvc->retrieveAllVersions(allVersions, "CondProxyProvider").isSuccess()) {
+   }
+   GenericAddress* genAddr = new GenericAddress(POOL_StorageType,
+	   ClassID_traits<DataHeader>::ID(),
+	   m_headerIterator->eventRef().toString(),
+	   name());
+   if (!detectorStoreSvc->recordAddress(genAddr).isSuccess()) {
+      ATH_MSG_ERROR("Cannot record DataHeader.");
+      return(StatusCode::FAILURE);
+   }
+   if (!detectorStoreSvc->contains<DataHeader>("CondProxyProvider")) {
+      ATH_MSG_DEBUG("Cannot find DataHeader in DetectorStore.");
+      return(StatusCode::SUCCESS);
+   }
+   const DataHandle<DataHeader> dataHeader;
+   if (!detectorStoreSvc->retrieve(dataHeader, "CondProxyProvider").isSuccess()) {
       ATH_MSG_DEBUG("Cannot retrieve DataHeader from DetectorStore.");
       return(StatusCode::SUCCESS);
    }
-   for (std::list<SG::ObjectWithVersion<DataHeader> >::const_iterator iter = allVersions.begin();
-                   iter != allVersions.end(); iter++) {
-      const DataHeader* dataHeader = iter->dataObject;
-      ATH_MSG_DEBUG("The current File contains: " << dataHeader->size() << " objects");
-      for (std::vector<DataHeaderElement>::const_iterator iter = dataHeader->begin(),
-                      last = dataHeader->end(); iter != last; iter++) {
-         SG::TransientAddress* tadd = iter->getAddress();
-         if (tadd->clID() == ClassID_traits<DataHeader>::ID()) {
-            delete tadd; tadd = 0;
-         } else {
-            ATH_MSG_DEBUG("preLoadAddresses: DataObject address, clid = " << tadd->clID() << ", name = " << tadd->name()
-);
-            tads.push_back(tadd);
-         }
-         EventSelectorAthenaPoolUtil::registerKeys(*iter, &*detectorStoreSvc);
+   ATH_MSG_DEBUG("The current File contains: " << dataHeader->size() << " objects");
+   for (const auto& element : *dataHeader) {
+      SG::TransientAddress* tadd = element.getAddress();
+      if (tadd->clID() == ClassID_traits<DataHeader>::ID()) {
+         delete tadd; tadd = 0;
+      } else {
+         ATH_MSG_DEBUG("preLoadAddresses: DataObject address, clid = " << tadd->clID() << ", name = " << tadd->name());
+         tads.push_back(tadd);
       }
+      EventSelectorAthenaPoolUtil::registerKeys(element, &*detectorStoreSvc);
    }
    if (!detectorStoreSvc.release().isSuccess()) {
       ATH_MSG_WARNING("Cannot release DetectorStoreSvc.");
@@ -175,9 +166,7 @@ StatusCode CondProxyProvider::updateAddress(StoreID::type /*storeID*/,
 //__________________________________________________________________________
 PoolCollectionConverter* CondProxyProvider::getCollectionCnv() {
    ATH_MSG_DEBUG("Try item: \"" << *m_inputCollectionsIterator << "\" from the collection list.");
-   PoolCollectionConverter* pCollCnv = new PoolCollectionConverter(msgSvc(),
-	   "ImplicitROOT",
-	   "",
+   PoolCollectionConverter* pCollCnv = new PoolCollectionConverter("ImplicitROOT",
 	   *m_inputCollectionsIterator,
 	   "",
 	   m_athenaPoolCnvSvc->getPoolSvc());
diff --git a/Database/AthenaPOOL/EventSelectorAthenaPool/src/EventSelectorAthenaPool.cxx b/Database/AthenaPOOL/EventSelectorAthenaPool/src/EventSelectorAthenaPool.cxx
index 4e4fda325501c9874642490016f13570170ff070..6b3b9a0f8c1dbfb7d4d8a4d1df9f13e1a7325320 100755
--- a/Database/AthenaPOOL/EventSelectorAthenaPool/src/EventSelectorAthenaPool.cxx
+++ b/Database/AthenaPOOL/EventSelectorAthenaPool/src/EventSelectorAthenaPool.cxx
@@ -11,11 +11,9 @@
 #include "EventSelectorAthenaPool.h"
 #include "EventContextAthenaPool.h"
 #include "PoolCollectionConverter.h"
-#include "registerKeys.h"
 
 #include "AthenaPoolCnvSvc/IAthenaPoolCnvSvc.h"
 #include "AthenaPoolUtilities/AthenaAttributeList.h"
-#include "DBDataModel/CollectionMetadata.h"
 #include "PersistentDataModel/Token.h"
 #include "PersistentDataModel/DataHeader.h"
 #include "PoolSvc/IPoolSvc.h"
@@ -23,13 +21,11 @@
 #include "StoreGate/ActiveStoreSvc.h"
 
 #include "AthenaKernel/IAthenaIPCTool.h"
-#include "AthenaKernel/IClassIDSvc.h"
 #include "AthenaKernel/ICollectionSize.h"
 
 // Framework
 #include "GaudiKernel/ClassID.h"
 #include "GaudiKernel/FileIncident.h"
-#include "GaudiKernel/IChronoStatSvc.h"
 #include "GaudiKernel/IIncidentSvc.h"
 #include "GaudiKernel/IIoComponentMgr.h"
 #include "GaudiKernel/GaudiException.h"
@@ -58,8 +54,6 @@ EventSelectorAthenaPool::EventSelectorAthenaPool(const std::string& name, ISvcLo
 	m_guid(),
 	m_satelliteOid1(0LL),
 	m_athenaPoolCnvSvc("AthenaPoolCnvSvc", name),
-	m_chronoStatSvc("ChronoStatSvc", name),
-	m_clidSvc("ClassIDSvc", name),
 	m_incidentSvc("IncidentSvc", name),
 	m_helperTools(this),
 	m_counterTool("", this),
@@ -148,24 +142,13 @@ StatusCode EventSelectorAthenaPool::initialize() {
    std::sort(m_skipEventSequence.begin(), m_skipEventSequence.end());
 
    // CollectionType must be one of:
-   //   ExplicitROOT, ExplicitMySQL, ExplicitMySQLlt, ExplicitRAL, SeekableROOT, ImplicitROOT
+   //   ExplicitROOT, ExplicitMySQL, ExplicitMySQLlt, ExplicitRAL, ImplicitROOT
    if (m_collectionType.value() != "ExplicitROOT" &&
-	   m_collectionType.value() != "SeekableROOT" &&
 	   m_collectionType.value() != "ImplicitROOT") {
-      ATH_MSG_FATAL("EventSelector.CollectionType must be one of: ExplicitROOT, SeekableROOT, ImplicitROOT (default)");
+      ATH_MSG_FATAL("EventSelector.CollectionType must be one of: ExplicitROOT, ImplicitROOT (default)");
       return(StatusCode::FAILURE);
    }
 
-   // Retrieve ClassIDSvc
-   if (!m_clidSvc.retrieve().isSuccess()) {
-      ATH_MSG_FATAL("Cannot get " << m_clidSvc.typeAndName() << ".");
-      return(StatusCode::FAILURE);
-   }
-   // Retrieve ChronoStatSvc
-   if (!m_chronoStatSvc.retrieve().isSuccess()) {
-      ATH_MSG_FATAL("Cannot get " << m_chronoStatSvc.typeAndName() << ".");
-      return(StatusCode::FAILURE);
-   }
    // Get IncidentSvc
    if (!m_incidentSvc.retrieve().isSuccess()) {
       ATH_MSG_FATAL("Cannot get " << m_incidentSvc.typeAndName() << ".");
@@ -205,8 +188,8 @@ StatusCode EventSelectorAthenaPool::initialize() {
       return(StatusCode::FAILURE);
    }
    bool foundCnvSvc = false;
-   for (std::vector<std::string>::const_iterator iter = propVal.begin(), last = propVal.end(); iter != last; iter++) {
-      if (*iter == m_athenaPoolCnvSvc.type()) { foundCnvSvc = true; }
+   for (const auto& property : propVal) {
+      if (property == m_athenaPoolCnvSvc.type()) { foundCnvSvc = true; }
    }
    if (!foundCnvSvc) {
       propVal.push_back(m_athenaPoolCnvSvc.type());
@@ -270,7 +253,7 @@ StatusCode EventSelectorAthenaPool::reinit() {
    m_inputCollectionsIterator = m_inputCollectionsProp.value().begin();
    m_curCollection = 0;
    if (!m_firstEvt.empty()) {
-     m_firstEvt[0] = 0;
+      m_firstEvt[0] = 0;
    }
    m_evtCount = 0;
    if (!m_eventStreamingTool.empty() && m_eventStreamingTool->isClient()) {
@@ -278,12 +261,11 @@ StatusCode EventSelectorAthenaPool::reinit() {
       return(StatusCode::SUCCESS);
    }
    bool retError = false;
-   for (std::vector<ToolHandle<IAthenaSelectorTool> >::iterator iter = m_helperTools.begin(),
-          last = m_helperTools.end(); iter != last; iter++) {
-     if (!(*iter)->postInitialize().isSuccess()) {
-       ATH_MSG_FATAL("Failed to postInitialize() " << (*iter)->name());
-       retError = true;
-     }
+   for (const auto& tool : m_helperTools) {
+      if (!tool->postInitialize().isSuccess()) {
+         ATH_MSG_FATAL("Failed to postInitialize() " << tool->name());
+         retError = true;
+      }
    }
    if (retError) {
       ATH_MSG_FATAL("Failed to postInitialize() helperTools");
@@ -296,11 +278,10 @@ StatusCode EventSelectorAthenaPool::reinit() {
    if (m_poolCollectionConverter == 0) {
       ATH_MSG_INFO("No Events found in any Input Collections");
       if (m_processMetadata.value()) {
-	m_inputCollectionsIterator = m_inputCollectionsProp.value().end();
-	if(m_inputCollectionsProp.value().size()>0) m_inputCollectionsIterator--;
+	 m_inputCollectionsIterator = m_inputCollectionsProp.value().end();
+	 if (m_inputCollectionsProp.value().size() > 0) m_inputCollectionsIterator--;
 	//NOTE (wb may 2016): this will make the FirstInputFile incident correspond to last file in the collection ... if want it to be first file then move iterator to begin and then move above two lines below this incident firing
-         bool isPayload = m_collectionType.value() == "SeekableROOT" || m_collectionType.value() == "ImplicitROOT";
-         if (isPayload && !m_firedIncident && m_inputCollectionsProp.value().size()>0) {
+         if (m_collectionType.value() == "ImplicitROOT" && !m_firedIncident && m_inputCollectionsProp.value().size() > 0) {
             FileIncident firstInputFileIncident(name(), "FirstInputFile", *m_inputCollectionsIterator);
             m_incidentSvc->fireIncident(firstInputFileIncident);
             m_firedIncident = true;
@@ -412,16 +393,6 @@ StatusCode EventSelectorAthenaPool::start() {
       return(StatusCode::SUCCESS);
    }
    if (m_processMetadata.value()) {
-      // Get Collection Metadata into Tag Data Store
-      bool isPayload = m_collectionType.value() == "SeekableROOT" || m_collectionType.value() == "ImplicitROOT";
-      if (!isPayload) {
-         CollectionMetadata* metadataMap = new CollectionMetadata(m_poolCollectionConverter->retrieveMetadata());
-         if (!m_tagDataStore->record(metadataMap, "CollectionMetadata").isSuccess()) {
-            ATH_MSG_ERROR("Cannot record Meatdata map to TagDataStore.");
-            delete metadataMap; metadataMap = 0;
-            return(StatusCode::FAILURE);
-         }
-      }
       // Fire first BeginTagFile incident
       FileIncident beginTagFileIncident(name(), "BeginTagFile", *m_inputCollectionsIterator);
       m_incidentSvc->fireIncident(beginTagFileIncident);
@@ -460,9 +431,6 @@ void EventSelectorAthenaPool::fireEndFileIncidents(bool isLastFile, bool fireEnd
                if(m_inputCollectionsIterator!=m_inputCollectionsProp.value().end()) {
                   FileIncident endTagFileIncident(name(), "EndTagFile", *m_inputCollectionsIterator);
                   m_incidentSvc->fireIncident(endTagFileIncident);
-                  if (!m_tagDataStore->clearStore().isSuccess()) {
-                     ATH_MSG_WARNING("Unable to clear tag MetaData Proxies");
-                  }
                }
             }
       }
@@ -482,11 +450,10 @@ StatusCode EventSelectorAthenaPool::finalize() {
       if (!m_counterTool.empty() && !m_counterTool->preFinalize().isSuccess()) {
          ATH_MSG_WARNING("Failed to preFinalize() CounterTool");
       }
-      for (std::vector<ToolHandle<IAthenaSelectorTool> >::iterator iter = m_helperTools.begin(),
-             last = m_helperTools.end(); iter != last; iter++) {
-        if (!(*iter)->preFinalize().isSuccess()) {
-          ATH_MSG_WARNING("Failed to preFinalize() " << (*iter)->name());
-        }
+      for (const auto& tool : m_helperTools) {
+         if (!tool->preFinalize().isSuccess()) {
+            ATH_MSG_WARNING("Failed to preFinalize() " << tool->name());
+         }
       }
    }
    delete m_beginIter; m_beginIter = 0;
@@ -519,14 +486,6 @@ StatusCode EventSelectorAthenaPool::finalize() {
    if (!m_incidentSvc.release().isSuccess()) {
       ATH_MSG_WARNING("Cannot release " << m_incidentSvc.typeAndName() << ".");
    }
-   // Release ChronoStatSvc
-   if (!m_chronoStatSvc.release().isSuccess()) {
-      ATH_MSG_WARNING("Cannot release " << m_chronoStatSvc.typeAndName() << ".");
-   }
-   // Release ClassIDSvc
-   if (!m_clidSvc.release().isSuccess()) {
-      ATH_MSG_WARNING("Cannot release " << m_clidSvc.typeAndName() << ".");
-   }
    // Finalize the Service base class.
    return(::AthService::finalize());
 }
@@ -599,10 +558,9 @@ StatusCode EventSelectorAthenaPool::next(IEvtSelector::Context& ctxt) const {
       }
       return(StatusCode::SUCCESS);
    }
-   for (std::vector<ToolHandle<IAthenaSelectorTool> >::const_iterator iter = m_helperTools.begin(),
-		   last = m_helperTools.end(); iter != last; iter++) {
-      if (!(*iter)->preNext().isSuccess()) {
-         ATH_MSG_WARNING("Failed to preNext() " << (*iter)->name());
+   for (const auto& tool : m_helperTools) {
+      if (!tool->preNext().isSuccess()) {
+         ATH_MSG_WARNING("Failed to preNext() " << tool->name());
       }
    }
    for (;;) {
@@ -638,16 +596,6 @@ StatusCode EventSelectorAthenaPool::next(IEvtSelector::Context& ctxt) const {
          m_headerIterator = &m_poolCollectionConverter->executeQuery();
          if (m_processMetadata.value()) {
             // Fire BeginTagFile incident
-            bool isPayload = m_collectionType.value() == "SeekableROOT" || m_collectionType.value() == "ImplicitROOT";
-            if (!isPayload) {
-               // Get Collection Metadata into Tag Data Store
-               CollectionMetadata* metadataMap = new CollectionMetadata(m_poolCollectionConverter->retrieveMetadata());
-               if (!m_tagDataStore->record(metadataMap, "CollectionMetadata").isSuccess()) {
-                  ATH_MSG_ERROR("Cannot record Meatdata map to TagDataStore.");
-                  delete metadataMap; metadataMap = 0;
-                  return(StatusCode::FAILURE);
-               }
-            }
             FileIncident beginTagFileIncident(name(), "BeginTagFile", *m_inputCollectionsIterator);
             m_incidentSvc->fireIncident(beginTagFileIncident);
          }
@@ -676,8 +624,7 @@ StatusCode EventSelectorAthenaPool::next(IEvtSelector::Context& ctxt) const {
          m_guid = guid;
          // Fire BeginInputFile incident if current InputCollection is a payload file;
          // otherwise, ascertain whether the pointed-to file is reachable before firing any incidents and/or proceeding
-         bool isPayload = m_collectionType.value() == "SeekableROOT" || m_collectionType.value() == "ImplicitROOT";
-         if (isPayload) {
+         if (m_collectionType.value() == "ImplicitROOT") {
             // For now, we can only deal with input metadata from POOL files, but we know we have a POOL file here
             if (!m_athenaPoolCnvSvc->setInputAttributes(*m_inputCollectionsIterator).isSuccess()) {
                 ATH_MSG_ERROR("Failed to set input attributes.");
@@ -736,16 +683,15 @@ StatusCode EventSelectorAthenaPool::next(IEvtSelector::Context& ctxt) const {
             }
          }
          StatusCode status = StatusCode::SUCCESS;
-         for (std::vector<ToolHandle<IAthenaSelectorTool> >::const_iterator iter = m_helperTools.begin(),
-		         last = m_helperTools.end(); iter != last; iter++) {
-            StatusCode toolStatus = (*iter)->postNext();
+         for (const auto& tool : m_helperTools) {
+            StatusCode toolStatus = tool->postNext();
             if (toolStatus.isRecoverable()) {
-               ATH_MSG_INFO("Request skipping event from: " << (*iter)->name());
+               ATH_MSG_INFO("Request skipping event from: " << tool->name());
                if (status.isSuccess()) {
                   status = StatusCode::RECOVERABLE;
                }
             } else if (toolStatus.isFailure()) {
-               ATH_MSG_WARNING("Failed to postNext() " << (*iter)->name());
+               ATH_MSG_WARNING("Failed to postNext() " << tool->name());
                status = StatusCode::FAILURE;
             }
          }
@@ -878,9 +824,7 @@ StatusCode EventSelectorAthenaPool::seek(Context& /*ctxt*/, int evtNum) const {
          // Reset input collection iterator to the right place
          m_inputCollectionsIterator = m_inputCollectionsProp.value().begin();
          m_inputCollectionsIterator += m_curCollection;
-         m_poolCollectionConverter = new PoolCollectionConverter(msgSvc(),
-	         m_collectionType.value() + ":" + m_collectionTree.value(),
-	         m_connection.value(),
+         m_poolCollectionConverter = new PoolCollectionConverter(m_collectionType.value() + ":" + m_collectionTree.value(),
 	         m_inputCollectionsProp.value()[m_curCollection],
 	         m_query.value(),
 	         m_athenaPoolCnvSvc->getPoolSvc());
@@ -928,9 +872,7 @@ int EventSelectorAthenaPool::curEvent (const Context& /*ctxt*/) const {
 int EventSelectorAthenaPool::findEvent(int evtNum) const {
    for (std::size_t i = 0, imax = m_numEvt.size(); i < imax; i++) {
       if (m_numEvt[i] == -1) {
-         PoolCollectionConverter pcc(msgSvc(),
-	         m_collectionType.value() + ":" + m_collectionTree.value(),
-	         m_connection.value(),
+         PoolCollectionConverter pcc(m_collectionType.value() + ":" + m_collectionTree.value(),
 	         m_inputCollectionsProp.value()[i],
 	         m_query.value(),
 	         m_athenaPoolCnvSvc->getPoolSvc());
@@ -984,7 +926,7 @@ StatusCode EventSelectorAthenaPool::makeServer(int num) {
 StatusCode EventSelectorAthenaPool::makeClient(int num) {
    if (m_athenaPoolCnvSvc->makeClient(num + 1).isFailure()) {
       ATH_MSG_ERROR("Failed to switch AthenaPoolCnvSvc to DataStreaming client");
-      //return(StatusCode::FAILURE);
+      return(StatusCode::FAILURE);
    }
    if (m_eventStreamingTool.empty()) {
       return(StatusCode::SUCCESS);
@@ -1079,9 +1021,7 @@ PoolCollectionConverter* EventSelectorAthenaPool::getCollectionCnv(bool throwInc
          m_firstEvt[m_curCollection] = m_evtCount;
       }
       ATH_MSG_DEBUG("Try item: \"" << *m_inputCollectionsIterator << "\" from the collection list.");
-      PoolCollectionConverter* pCollCnv = new PoolCollectionConverter(msgSvc(),
-	      m_collectionType.value() + ":" + m_collectionTree.value(),
-	      m_connection.value(),
+      PoolCollectionConverter* pCollCnv = new PoolCollectionConverter(m_collectionType.value() + ":" + m_collectionTree.value(),
 	      *m_inputCollectionsIterator,
 	      m_query.value(),
 	      m_athenaPoolCnvSvc->getPoolSvc());
diff --git a/Database/AthenaPOOL/EventSelectorAthenaPool/src/EventSelectorAthenaPool.h b/Database/AthenaPOOL/EventSelectorAthenaPool/src/EventSelectorAthenaPool.h
index c57b3a86a9567b08c0f37be1e2f99ed080afe392..7f89275cfb59abdbe2d3701aeddfc6d9b5249cf1 100755
--- a/Database/AthenaPOOL/EventSelectorAthenaPool/src/EventSelectorAthenaPool.h
+++ b/Database/AthenaPOOL/EventSelectorAthenaPool/src/EventSelectorAthenaPool.h
@@ -27,8 +27,6 @@
 namespace pool {
    class ICollectionCursor;
 }
-class IChronoStatSvc;
-class IClassIDSvc;
 class IIncidentSvc;
 class IOpaqueAddress;
 class ISvcLocator;
@@ -155,8 +153,6 @@ private: // data
    mutable long long int m_satelliteOid1;
 
    ServiceHandle<IAthenaPoolCnvSvc> m_athenaPoolCnvSvc;
-   ServiceHandle<IChronoStatSvc> m_chronoStatSvc;
-   ServiceHandle<IClassIDSvc> m_clidSvc;
    ServiceHandle<IIncidentSvc> m_incidentSvc;
 
 private: // properties
@@ -229,7 +225,6 @@ private: // properties
 
    typedef std::mutex CallMutex;
    mutable CallMutex m_callLock;
-
 };
 
 #endif
diff --git a/Database/AthenaPOOL/EventSelectorAthenaPool/src/PoolCollectionConverter.cxx b/Database/AthenaPOOL/EventSelectorAthenaPool/src/PoolCollectionConverter.cxx
index 5034658c2bfc124e56f5ab23e8e25445cad6b2fb..3fc214bdec633ba33b7f3fa700cac4d2619060a5 100755
--- a/Database/AthenaPOOL/EventSelectorAthenaPool/src/PoolCollectionConverter.cxx
+++ b/Database/AthenaPOOL/EventSelectorAthenaPool/src/PoolCollectionConverter.cxx
@@ -22,22 +22,18 @@
 #include "CollectionBase/CollectionRowBuffer.h"
 
 // Gaudi
-#include "GaudiKernel/MsgStream.h"
 #include "GaudiKernel/StatusCode.h"
 
 #include <assert.h>
 #include <exception>
 
 //______________________________________________________________________________
-PoolCollectionConverter::PoolCollectionConverter(IMessageSvc* msgSvc,
-	const std::string& collectionType,
-	const std::string& connection,
+PoolCollectionConverter::PoolCollectionConverter(const std::string& collectionType,
 	const std::string& inputCollection,
 	const std::string& query,
 	const IPoolSvc* svc) :
-	m_msgSvc(msgSvc),
 	m_collectionType(),
-	m_connection(connection),
+	m_connection(),
 	m_inputCollection(inputCollection),
 	m_query(query),
 	m_poolSvc(svc),
@@ -69,26 +65,14 @@ PoolCollectionConverter::~PoolCollectionConverter() {
 }
 //______________________________________________________________________________
 StatusCode PoolCollectionConverter::initialize() {
-   MsgStream log(m_msgSvc, "PoolCollectionConverter");
-   log << MSG::DEBUG << "Initializing PoolCollectionConverter for type: " << m_collectionType << endmsg;
    std::string collectionTypeString;
    if (m_collectionType == "ExplicitROOT") {
       collectionTypeString = "RootCollection";
-   } else if (m_collectionType == "ImplicitROOT" || m_collectionType == "SeekableROOT") {
+   } else if (m_collectionType == "ImplicitROOT") {
       collectionTypeString = "ImplicitCollection";
    } else {
-      log << MSG::ERROR << "Undefined collection type " << m_collectionType << endmsg;
       return(StatusCode::FAILURE);
    }
-   log << MSG::DEBUG << "Create collection type: "
-	   << m_collectionType
-	   << " collectionTypeString ["
-	   << collectionTypeString
-	   << "] connectionString "
-	   << m_connection
-	   << " collection "
-	   << m_inputCollection
-	   << endmsg;
    if (collectionTypeString == "ImplicitCollection") {
       // Check if already prefixed
       if (m_inputCollection.find("PFN:") == 0
@@ -119,14 +103,8 @@ StatusCode PoolCollectionConverter::initialize() {
          m_poolCollection = m_poolSvc->createCollection(collectionTypeString, m_connection, m_inputCollection);
       }
    } catch (std::exception &e) {
-      log << MSG::WARNING << "Unable to create Collection: " << m_connection << endmsg;
-      log << MSG::WARNING << e.what() << endmsg;
       return(StatusCode::RECOVERABLE);
    }
-   if (m_poolCollection == 0) {
-      log << MSG::INFO << "Unable to create Collection: " << m_connection 
-          << " container: " << m_inputCollection << endmsg;
-   }
    return(StatusCode::SUCCESS);
 }
 //______________________________________________________________________________
@@ -134,8 +112,7 @@ StatusCode PoolCollectionConverter::disconnectDb() {
    if (m_poolCollection == 0) {
       return(StatusCode::SUCCESS);
    }
-   if (m_poolCollection->description().type() == "SeekableCollection" ||
-	   m_poolCollection->description().type() == "ImplicitCollection") {
+   if (m_poolCollection->description().type() == "ImplicitCollection") {
       return(m_poolSvc->disconnectDb(m_connection));
    }
    return(StatusCode::SUCCESS);
@@ -170,9 +147,7 @@ std::string PoolCollectionConverter::retrieveToken(const pool::ICollectionCursor
 // the corresponding ref. Otherwise, use the main token
    std::string tokenStr;
    if (!refName.empty()) {
-      MsgStream log(m_msgSvc, "PoolCollectionConverter");
       std::string attrName = refName + "_ref";
-      log << MSG::DEBUG << " Get attribute: " << attrName << " (derived from " << refName << ")" << endmsg;
       try {
 	 tokenStr = cursor->currentRow().tokenList()[attrName].toString();
       } catch (...) {
@@ -180,9 +155,6 @@ std::string PoolCollectionConverter::retrieveToken(const pool::ICollectionCursor
 	 try {
             tokenStr = cursor->currentRow().attributeList()[attrName].data<std::string>();
 	 } catch (std::exception& e) {
-	    log << MSG::ERROR << "Retrieve token for ref name: "
-	            << refName
-	            << " Error caught: " << e.what() << endmsg;
 	    return("");
 	 }
       }
diff --git a/Database/AthenaPOOL/EventSelectorAthenaPool/src/PoolCollectionConverter.h b/Database/AthenaPOOL/EventSelectorAthenaPool/src/PoolCollectionConverter.h
index e5ac6d4c09183162d0512d7b979199e32a167a79..2ca58ab13775afc3294e7c65690ff4231e9a281b 100755
--- a/Database/AthenaPOOL/EventSelectorAthenaPool/src/PoolCollectionConverter.h
+++ b/Database/AthenaPOOL/EventSelectorAthenaPool/src/PoolCollectionConverter.h
@@ -14,7 +14,6 @@
 
 // Forward declarations
 class IPoolSvc;
-class IMessageSvc;
 namespace pool {
    class ICollection;
    class ICollectionQuery;
@@ -30,17 +29,13 @@ class PoolCollectionConverter {
 
 public:
    /// Constructor
-   /// @param msgSvc [IN] pointer to the message service.
    /// @param collectionType [IN] type of the collection
    /// ("ExplicitROOT", "ExplicitMySQL", "ExplicitMySQLlt" or "ImplicitROOT").
-   /// @param connection [IN] connection string, only needed for MySQL.
    /// @param inputCollection [IN] name of the collection.
    /// @param query [IN] query string.
    /// @param svc [IN] pointer to the PoolSvc.
    /// @param contextId [IN] id for PoolSvc persistency service to use for input.
-   PoolCollectionConverter(IMessageSvc* msgSvc,
-		   const std::string& collectionType,
-		   const std::string& connection,
+   PoolCollectionConverter(const std::string& collectionType,
 		   const std::string& inputCollection,
 		   const std::string& query,
 		   const IPoolSvc* svc);
@@ -72,7 +67,6 @@ public:
    pool::ICollectionMetadata* retrieveMetadata() const;
 
 private: // data
-   IMessageSvc* m_msgSvc;
    std::string m_collectionType;
    std::string m_connection;
    std::string m_inputCollection;
diff --git a/Database/AthenaPOOL/PoolSvc/src/PoolSvc.cxx b/Database/AthenaPOOL/PoolSvc/src/PoolSvc.cxx
index 919b324049c0e696e23b78a09db793df023d9c8e..810f839f8f27ad1619e0f63070522d70d26d62d2 100644
--- a/Database/AthenaPOOL/PoolSvc/src/PoolSvc.cxx
+++ b/Database/AthenaPOOL/PoolSvc/src/PoolSvc.cxx
@@ -426,7 +426,7 @@ pool::ICollection* PoolSvc::createCollection(const std::string& collectionType,
       }
    }
    // Check whether Collection Container exists.
-   if (collectionType == "ImplicitCollection" || collectionType == "SeekableCollection") {
+   if (collectionType == "ImplicitCollection") {
       std::unique_ptr<pool::IDatabase> dbH = getDbHandle(contextId, connection);
       if (dbH == nullptr) {
          ATH_MSG_INFO("Failed to get Session/DatabaseHandle to create POOL collection.");
@@ -462,7 +462,7 @@ pool::ICollection* PoolSvc::createCollection(const std::string& collectionType,
       }
    }
    pool::CollectionFactory* collFac = pool::CollectionFactory::get();
-   pool::CollectionDescription collDes(collection, collectionType, (collectionType == "ImplicitCollection" || collectionType == "SeekableCollection") ? connection : "");
+   pool::CollectionDescription collDes(collection, collectionType, collectionType == "ImplicitCollection" ? connection : "");
    pool::ICollection* collPtr = nullptr;
    if (collectionType == "RootCollection" && contextId == IPoolSvc::kOutputStream) {
       ATH_MSG_INFO("Writing ExplicitROOT Collection - do not pass session pointer");
diff --git a/InnerDetector/InDetAlignTools/InDetSurveyConstraintTool/run/MyJobOptions.py b/InnerDetector/InDetAlignTools/InDetSurveyConstraintTool/run/MyJobOptions.py
index 4191c1443afa76e3f3fd1cf7946eee25e9c08c7b..7d259b8aa8d8b27795eba06d02a4eaff09182a8a 100755
--- a/InnerDetector/InDetAlignTools/InDetSurveyConstraintTool/run/MyJobOptions.py
+++ b/InnerDetector/InDetAlignTools/InDetSurveyConstraintTool/run/MyJobOptions.py
@@ -136,8 +136,6 @@ multipleELM = Service("MultipleEventLoopMgr")
 
 
 EventSelector = Service( "EventSelector" )
-
-EventSelector.CollectionType = "SeekableROOT"
 EventSelector.InputCollections += [ "rfio:/castor/cern.ch/user/h/haertel/ESD/InDetESD_01SinglePiPlus_1000GeV1.root" ]
 # Number of events to be processed (default is 10)
 theApp.EvtMax  = 1