diff --git a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/CMakeLists.txt b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/CMakeLists.txt
index 03b60ea14cac27a56960596c878b0d3d87edd26e..5cfad0d92a23982d6381e1dcce253a0eac864432 100644
--- a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/CMakeLists.txt
+++ b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/CMakeLists.txt
@@ -59,15 +59,19 @@ function( _add_test testName toExecute )
    if( ARG_EXTRA_PATTERNS )
       list( APPEND _options EXTRA_PATTERNS ${ARG_EXTRA_PATTERNS} )
    endif()
-   if( ARG_DEPENDS )
-      list( APPEND _options PROPERTIES DEPENDS ${ARG_DEPENDS} )
-   endif()
 
    # Set up the test:
    atlas_add_test( ${testName}
       SCRIPT ${CMAKE_CURRENT_BINARY_DIR}/${testName}_test.sh
       ${_options} )
 
+   if( ARG_DEPENDS )
+      set_tests_properties( AthenaPoolExampleAlgorithms_${testName}_ctest
+                            PROPERTIES DEPENDS "${ARG_DEPENDS}" )
+   endif()
+   set_tests_properties( AthenaPoolExampleAlgorithms_${testName}_ctest
+                         PROPERTIES TIMEOUT 600 )
+
 endfunction( _add_test )
 
 # Test(s) in the package:
@@ -90,20 +94,23 @@ _add_test( AthenaPoolExample_Read
 # Read all output via TAGs
 _add_test( AthenaPoolExample_ReadTag
    "athena.py AthenaPoolExampleAlgorithms/AthenaPoolExample_ReadTagJobOptions.py"
-   DEPENDS AthenaPoolExampleAlgorithms_AthenaPoolExample_Read_ctest )
+   DEPENDS AthenaPoolExampleAlgorithms_AthenaPoolExample_ReWrite_ctest )
 # Read all output including scoped BackNavigation
 _add_test( AthenaPoolExample_ReadBN
    "athena.py AthenaPoolExampleAlgorithms/AthenaPoolExample_ReadBNJobOptions.py"
-   DEPENDS AthenaPoolExampleAlgorithms_AthenaPoolExample_ReadTag_ctest )
+   DEPENDS AthenaPoolExampleAlgorithms_AthenaPoolExample_ReWrite_ctest )
 # Read all output w/o BackNavigation
 _add_test( AthenaPoolExample_ReadNoBN
    "athena.py AthenaPoolExampleAlgorithms/AthenaPoolExample_ReadNoBNJobOptions.py"
-   DEPENDS AthenaPoolExampleAlgorithms_AthenaPoolExample_ReadBN_ctest )
+   DEPENDS AthenaPoolExampleAlgorithms_AthenaPoolExample_ReWrite_ctest )
 
 # Copy 'Hits' file without extending provenance
 _add_test( AthenaPoolExample_Copy
    "athena.py AthenaPoolExampleAlgorithms/AthenaPoolExample_CopyJobOptions.py"
-   DEPENDS AthenaPoolExampleAlgorithms_AthenaPoolExample_ReadNoBN_ctest )
+   DEPENDS AthenaPoolExampleAlgorithms_AthenaPoolExample_Read_ctest
+           AthenaPoolExampleAlgorithms_AthenaPoolExample_ReadTag_ctest
+           AthenaPoolExampleAlgorithms_AthenaPoolExample_ReadBN_ctest
+           AthenaPoolExampleAlgorithms_AthenaPoolExample_ReadNoBN_ctest )
 # Read copied 'Hits' and write 'Tracks'
 _add_test( AthenaPoolExample_ReWriteAgain
    "athena.py AthenaPoolExampleAlgorithms/AthenaPoolExample_ReWriteAgainJobOptions.py"
@@ -121,12 +128,14 @@ _add_test( AthenaPoolExample_RFilter
 # Read all (including bad files, skipped for now expected failure)
 _add_test( AthenaPoolExample_ReadAgain
    "athena.py AthenaPoolExampleAlgorithms/AthenaPoolExample_ReadAgainJobOptions.py"
+   EXTRA_PATTERNS "Deaccess DbContainer|Database being retired"
    DEPENDS AthenaPoolExampleAlgorithms_AthenaPoolExample_RFilter_ctest )
 
 # Concatenate jobs write 'Hits' and 'Tracks' to different streams
 _add_test( AthenaPoolExample_Concat
    "athena.py AthenaPoolExampleAlgorithms/AthenaPoolExample_ConcatJobOptions.py"
    DEPENDS AthenaPoolExampleAlgorithms_AthenaPoolExample_RFilter_ctest
+           AthenaPoolExampleAlgorithms_AthenaPoolExample_ReadAgain_ctest
    PRE_EXEC test/pre_check.sh )
 _add_test( AthenaPoolExample_ReadConcat
    "athena.py AthenaPoolExampleAlgorithms/AthenaPoolExample_ReadJobOptions.py"
@@ -140,15 +149,16 @@ _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 )
+#_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_ReadBsTag_ctest
+   DEPENDS AthenaPoolExampleAlgorithms_AthenaPoolExample_ReadBs_ctest
    PRE_EXEC test/pre_check.sh )
 _add_test( AthenaPoolExample_ReadcBs
    "athena.py AthenaPoolExampleAlgorithms/AthenaPoolExample_ReadBsJobOptions.py"
@@ -189,12 +199,12 @@ _add_test( AthenaPoolExample_WriteFast
 _add_test( AthenaPoolExample_AppendFast
    "athena.py  AthenaPoolExampleAlgorithms/AthenaPoolExample_AppendFastJobOptions.py"
    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_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 )
diff --git a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/cmt/requirements b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/cmt/requirements
index a855e9b9adc753838de0ebf775155033bfc94ea2..dc5e7545e8f79d616e9a34de8919066457584399 100755
--- a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/cmt/requirements
+++ b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/cmt/requirements
@@ -109,7 +109,7 @@ apply_pattern athenarun_test name="AthenaPoolExample_RWBs" pre_script="../test/p
 apply_pattern athenarun_test name="AthenaPoolExample_ReadBs" pre_script="../test/pre_check.sh AthenaPoolExample_ReadBs " options="AthenaPoolExampleAlgorithms/AthenaPoolExample_ReadBsJobOptions.py" post_script="../test/post_check.sh AthenaPoolExample_ReadBs "
 
 # AthenaPoolExample_ReadBsTag
-apply_pattern athenarun_test name="AthenaPoolExample_ReadBsTag" pre_script="../test/pre_check.sh AthenaPoolExample_ReadBsTag " options="./AthenaPoolExample_ReadBsTag.py" post_script="../test/post_check.sh AthenaPoolExample_ReadBsTag "
+#apply_pattern athenarun_test name="AthenaPoolExample_ReadBsTag" pre_script="../test/pre_check.sh AthenaPoolExample_ReadBsTag " options="./AthenaPoolExample_ReadBsTag.py" post_script="../test/post_check.sh AthenaPoolExample_ReadBsTag "
 
 # Compressed ByteStream propagation tests
 # AthenaPoolExample_RWcBs
@@ -132,7 +132,7 @@ apply_pattern athenarun_test name="AthenaPoolExample_RCond" pre_script="../test/
 
 # Test zipping POOL files
 # AthenaPoolExample_Read_BNzip
-apply_pattern athenarun_test name="AthenaPoolExample_ReadBNzip" pre_script="../test/pre_check.sh AthenaPoolExample_ReadBNzip " options="./AthenaPoolExample_ReadBNzip.py" post_script="../test/post_check.sh AthenaPoolExample_ReadBNzip "
+#apply_pattern athenarun_test name="AthenaPoolExample_ReadBNzip" pre_script="../test/pre_check.sh AthenaPoolExample_ReadBNzip " options="./AthenaPoolExample_ReadBNzip.py" post_script="../test/post_check.sh AthenaPoolExample_ReadBNzip "
 
 # AthenaPoolExample_Read_BNzipAgain
 #apply_pattern athenarun_test name="AthenaPoolExample_ReadBNzipAgain" pre_script="../test/pre_check.sh AthenaPoolExample_ReadBNzipAgain " options="./AthenaPoolExample_ReadBNzipAgain.py" post_script="../test/post_check.sh AthenaPoolExample_ReadBNzipAgain AthenaPoolExample_ReadBNzip "
@@ -192,19 +192,19 @@ macro_append AthenaPoolExample_ReadConcat_test_dependencies " AthenaPoolExample_
 
 macro_append AthenaPoolExample_RWBs_test_dependencies " AthenaPoolExample_ReadConcat_test "
 macro_append AthenaPoolExample_ReadBs_test_dependencies " AthenaPoolExample_RWBs_test "
-macro_append AthenaPoolExample_ReadBsTag_test_dependencies " AthenaPoolExample_ReadBs_test "
-macro_append AthenaPoolExample_RWcBs_test_dependencies " AthenaPoolExample_ReadBs_test AthenaPoolExample_ReadBsTag_test "
+#macro_append AthenaPoolExample_ReadBsTag_test_dependencies " AthenaPoolExample_ReadBs_test "
+macro_append AthenaPoolExample_RWcBs_test_dependencies " AthenaPoolExample_ReadBs_test AthenaPoolExample_ReadBs_test "
 macro_append AthenaPoolExample_ReadcBs_test_dependencies " AthenaPoolExample_RWcBs_test "
 #macro_append AthenaPoolExample_ReadcBsTag_test_dependencies " AthenaPoolExample_RWcBs_test "
 
-macro_append AthenaPoolExample_WCond_test_dependencies " AthenaPoolExample_ReadConcat_test "
+macro_append AthenaPoolExample_WCond_test_dependencies " AthenaPoolExample_ReadcBs_test "
 macro_append AthenaPoolExample_ACond_test_dependencies " AthenaPoolExample_WCond_test "
 macro_append AthenaPoolExample_RCond_test_dependencies " AthenaPoolExample_ACond_test "
 
 #macro_append AthenaPoolExample_ReadBNzip_test_dependencies " AthenaPoolExample_ReadcBs_test AthenaPoolExample_ReadcBsTag_test AthenaPoolExample_RCond_test "
-macro_append AthenaPoolExample_ReadBNzip_test_dependencies " AthenaPoolExample_ReadcBs_test AthenaPoolExample_RCond_test "
+#macro_append AthenaPoolExample_ReadBNzip_test_dependencies " AthenaPoolExample_ReadcBs_test AthenaPoolExample_RCond_test "
 
-macro_append AthenaPoolExample_WMeta_test_dependencies " AthenaPoolExample_ReadBNzip_test "
+macro_append AthenaPoolExample_WMeta_test_dependencies " AthenaPoolExample_RCond_test "
 macro_append AthenaPoolExample_AMeta_test_dependencies " AthenaPoolExample_WMeta_test "
 macro_append AthenaPoolExample_RMeta_test_dependencies " AthenaPoolExample_AMeta_test "
 
@@ -214,4 +214,3 @@ macro_append AthenaPoolExample_ReWriteFast_test_dependencies " AthenaPoolExample
 #macro_append AthenaPoolExample_ReWriteTagFast_test_dependencies " AthenaPoolExample_ReWriteFast_test "
 macro_append AthenaPoolExample_ReadFast_test_dependencies " AthenaPoolExample_ReWriteFast_test "
 #macro_append AthenaPoolExample_ReadTagFast_test_dependencies " AthenaPoolExample_ReWriteTagFast_test "
-
diff --git a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_ACond.ref b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_ACond.ref
index 478276ae7985effbc69a58f4a56e7a40a38f536c..a4454a42e03c4fd1fa4e5d8f55483b8e49e72173 100755
--- a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_ACond.ref
+++ b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_ACond.ref
@@ -1,5 +1,4 @@
-Warning in <TInterpreter::ReadRootmapFile>: class  Event found in libG4AtlasControlDict.so  is already in libtest_GPyTestDict.so 
-Warning in <TInterpreter::ReadRootmapFile>: class  UCharDbArray found in libStorageSvcDict.so  is already in libRootCnvDict.so 
+Warning in <TInterpreter::ReadRootmapFile>: class  xAOD::TReturnCode found in libxAODRootAccessDict.so  is already in libxAODRootAccess.so 
 Preloading tcmalloc_minimal.so
 Athena               INFO including file "AthenaCommon/Preparation.py"
 Athena               INFO including file "AthenaCommon/Bootstrap.py"
@@ -7,7 +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_ACondJobOptions.py"
-Py:ConfigurableDb    INFO No duplicates have been found: that's good !
+Py:ConfigurableDb WARNING Found 3 duplicates among the 51 genConfDb files :
+Py:ConfigurableDb WARNING --------------------------------------------------
+Py:ConfigurableDb WARNING   -<component name>: <module> - [ <duplicates> ]
+Py:ConfigurableDb WARNING --------------------------------------------------
+Py:ConfigurableDb WARNING   -TrigEFRazorAllTE: TrigHLTJetHypo.TrigHLTJetHypoConf - ['TrigJetHypo.TrigJetHypoConf', 'TrigJetHypo.TrigJetHypoConf']
+Py:ConfigurableDb WARNING   -TrigL2JetHypo: TrigJetHypo.TrigJetHypoConf - ['TrigCaloHypo.TrigCaloHypoConf']
+Py:ConfigurableDb WARNING   -TrigEFDPhiMetJetAllTE: TrigHLTJetHypo.TrigHLTJetHypoConf - ['TrigJetHypo.TrigJetHypoConf', 'TrigJetHypo.TrigJetHypoConf']
+Py:ConfigurableDb WARNING Fix your cmt/requirements file !!
 Athena               INFO including file "AthenaCommon/runbatch.py"
 ApplicationMgr       INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0
 ApplicationMgr    SUCCESS 
@@ -21,32 +27,25 @@ AthDictLoaderSvc     INFO in initialize...
 AthDictLoaderSvc     INFO acquired Dso-registry
 ChronoStatSvc        INFO  Number of skipped events for MemStat-1
 CoreDumpSvc          INFO install f-a-t-a-l handler... (flag = -1)
-AthenaEventLoopMgr   INFO Initializing AthenaEventLoopMgr - package version AthenaServices-??-??-??
 AthMasterSeq         INFO Member list: AthSequencer/AthAlgSeq, AthSequencer/AthOutSeq, AthSequencer/AthRegSeq
 AthAlgSeq            INFO Member list: OutputConditionsAlg/Stream1, AthPoolEx::ReadData/ReadData, AthPoolEx::WriteCond/WriteCond
 Stream1             DEBUG Property update for OutputLevel : new value = 2
 Stream1             DEBUG in initialize()
-ToolSvc.Stream1...   INFO Initializing ToolSvc.Stream1Tool - package version OutputStreamAthenaPool-??-??-??
-AthenaPoolCnvSvc     INFO Initializing AthenaPoolCnvSvc - package version AthenaPoolCnvSvc-??-??-??
 PoolSvc             DEBUG Property update for OutputLevel : new value = 2
-PoolSvc              INFO Initializing PoolSvc - package version PoolSvc-??-??-??
 PoolSvc              INFO Set connectionsvc retry/timeout/IDLE timeout to  'ConnectionRetrialPeriod':300/ 'ConnectionRetrialTimeOut':3600/ 'ConnectionTimeOut':5 seconds with connection cleanup disabled
 PoolSvc              INFO Frontier compression level set to 5
 PoolSvc              INFO Successfully setup replica sorting algorithm
 PoolSvc             DEBUG OutputLevel is 2
-PoolSvc              INFO Re-initializing PoolSvc
+PoolSvc              INFO Setting up APR FileCatalog and Streams
 PoolSvc              INFO POOL WriteCatalog is file:Catalog1.xml
-XMLFileCatalog Info Connecting to the catalog
-PoolXMLFileCatalog Info Xerces-c initialization Number 0
+PoolSvc              INFO Re-initializing PoolSvc
 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-??-??-??
 EventSelector       DEBUG Property update for OutputLevel : new value = 2
-EventSelector        INFO Initializing EventSelector - package version EventSelectorAthenaPool-??-??-??
 EventSelector        INFO reinitialization...
 EventSelector        INFO EventSelection with query 
 EventSelector       DEBUG Try item: "SimplePoolFile1.root" from the collection list.
@@ -59,7 +58,9 @@ 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.root Debug --> Access   DbContainer  READ      [ROOT_All] ##Shapes
-???? Debug Opened container ##Shapes of type ROOT_Tree
+##Shapes Debug Opening
+##Shapes Debug    attributes# = 1
+##Shapes Debug Opened container ##Shapes of type ROOT_Tree
 SimplePoolFile1.root Debug --->Reading Shape[0 , ????]: [1 Column(s)]
 SimplePoolFile1.root Debug ---->[0]:EventInfo_p4 Typ:EventInfo_p4 [21] Size:0 Offset:0 #Elements:1
 SimplePoolFile1.root Debug --->Reading Shape[1 , ????]: [1 Column(s)]
@@ -72,7 +73,9 @@ SimplePoolFile1.root Debug --->Reading Shape[4 , ????]: [1 Column(s)]
 SimplePoolFile1.root 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.root Debug --> Access   DbContainer  READ      [ROOT_All] ##Links
-???? Debug Opened container ##Links of type ROOT_Tree
+##Links Debug Opening
+##Links Debug    attributes# = 1
+##Links Debug Opened container ##Links of type ROOT_Tree
 SimplePoolFile1.root Debug --->Reading Assoc:????/##Params [200]  (2 , ffffffff)
 SimplePoolFile1.root Debug ---->ClassID:????
 SimplePoolFile1.root Debug --->Reading Assoc:????/CollectionTree(EventInfo_p4/McEventInfo) [202]  (3 , ffffffff)
@@ -93,7 +96,9 @@ SimplePoolFile1.root Debug --->Reading Assoc:????/MetaDataHdr(DataHeader) [202]
 SimplePoolFile1.root Debug ---->ClassID:????
 ##Links Debug No objects passing selection criteria... Container has 9 Entries in total.
 SimplePoolFile1.root Debug --> Access   DbContainer  READ      [ROOT_All] ##Params
-???? Debug Opened container ##Params of type ROOT_Tree
+##Params Debug Opening
+##Params Debug    attributes# = 1
+##Params Debug Opened container ##Params of type ROOT_Tree
 SimplePoolFile1.root Debug --->Reading Param:FID=[????]
 SimplePoolFile1.root Debug --->Reading Param:PFN=[SimplePoolFile1.root]
 SimplePoolFile1.root Debug --->Reading Param:POOL_VSN=[1.1]
@@ -102,19 +107,35 @@ SimplePoolFile1.root Debug --->Reading Param:FORMAT_VSN=[1.1]
 ImplicitCollection Info Opened the implicit collection with connection string "PFN:SimplePoolFile1.root"
 ImplicitCollection Info and a name "POOLContainer(DataHeader)"
 SimplePoolFile1.root Debug --> Access   DbContainer  READ      [ROOT_Tree] POOLContainer(DataHeader)
-???? Debug Opened container POOLContainer(DataHeader) of type ROOT_Tree
+POOLContainer(DataHeader) Debug Opening
+POOLContainer(DataHeader) Debug    attributes# = 1
+POOLContainer(DataHeader) Debug Branch container 'DataHeader'
+POOLContainer(DataHeader) Debug Opened container POOLContainer(DataHeader) of type ROOT_Tree
 MetaDataSvc         DEBUG handle() FirstInputFile for FID:????
 MetaDataSvc         DEBUG initInputMetaDataStore: file name FID:????
 SimplePoolFile1.root Debug --> Access   DbContainer  READ      [ROOT_Tree] MetaDataHdr(DataHeader)
-???? Debug Opened container MetaDataHdr(DataHeader) of type ROOT_Tree
+MetaDataHdr(DataHeader) Debug Opening
+MetaDataHdr(DataHeader) Debug    attributes# = 1
+MetaDataHdr(DataHeader) Debug Branch container 'DataHeader'
+MetaDataHdr(DataHeader) Debug Opened container MetaDataHdr(DataHeader) of type ROOT_Tree
 PoolSvc              INFO Failed to find container MetaDataHdrDataHeader to get Token.
 EventPersistenc...   INFO Added successfully Conversion service:AthenaPoolCnvSvc
 SimplePoolFile1.root Debug --> Access   DbContainer  READ      [ROOT_Tree] MetaDataHdrForm(DataHeaderForm)
-???? Debug Opened container MetaDataHdrForm(DataHeaderForm) of type ROOT_Tree
+MetaDataHdrForm(DataHeaderForm) Debug Opening
+MetaDataHdrForm(DataHeaderForm) Debug    attributes# = 1
+MetaDataHdrForm(DataHeaderForm) Debug Branch container 'DataHeaderForm'
+MetaDataHdrForm(DataHeaderForm) Debug Opened container MetaDataHdrForm(DataHeaderForm) of type ROOT_Tree
 MetaDataSvc         DEBUG Loaded input meta data store proxies
+EventSelector        INFO reinitialization...
+EventSelector        INFO EventSelection with query 
+EventSelector       DEBUG Try item: "SimplePoolFile1.root" from the collection list.
+RootCollection Info Opening Collection File SimplePoolFile1.root in mode: READ
+RootCollection Debug File SimplePoolFile1.root exists.
+RootCollection Info File SimplePoolFile1.root opened
+RootCollection Debug Open() failed with expception: POOL Collection TTree not found in file SimplePoolFile1.root ( POOL : "RootCollection::open" from "RootCollection" )
+ImplicitCollection Info Opened the implicit collection with connection string "PFN:SimplePoolFile1.root"
+ImplicitCollection Info and a name "POOLContainer(DataHeader)"
 AthenaPoolAddre...  DEBUG Property update for OutputLevel : new value = 2
-AthenaPoolAddre...   INFO Initializing AthenaPoolAddressProviderSvc - package version EventSelectorAthenaPool-??-??-??
-ProxyProviderSvc     INFO Initializing ProxyProviderSvc - package version SGComps-??-??-??
 ReadData            DEBUG input handles: 0
 ReadData            DEBUG output handles: 0
 ReadData            DEBUG Data Deps for ReadData
@@ -126,20 +147,8 @@ WriteCond           DEBUG output handles: 0
 WriteCond           DEBUG Data Deps for WriteCond
 HistogramPersis...WARNING Histograms saving not required.
 AthenaEventLoopMgr   INFO Setup EventSelector service EventSelector
-ActiveStoreSvc       INFO Initializing ActiveStoreSvc - package version StoreGate-??-??-??
 ApplicationMgr       INFO Application Manager Initialized successfully
-SimplePoolFile1.root Info Database being retired...
-SimplePoolFile1.root Debug --> Deaccess DbContainer  READ      [ROOT_All] ##Links
-SimplePoolFile1.root Debug --> Deaccess DbContainer  READ      [ROOT_All] ##Shapes
-SimplePoolFile1.root Debug --> Deaccess DbContainer  READ      [ROOT_All] ##Params
-RootDatabase.close Debug I/O READ  Bytes: ????
-RootDatabase.close Debug I/O WRITE Bytes: 0
-RootDatabase.close Debug I/O OTHER Bytes: 0
 Domain[ROOT_All] Info ->  Deaccess DbDatabase   READ      [ROOT_All] ????
-SimplePoolFile1.root Debug --> Deaccess DbContainer  READ      [ROOT_Tree] MetaDataHdr(DataHeader)
-SimplePoolFile1.root Debug --> Deaccess DbContainer  READ      [ROOT_Tree] MetaDataHdrForm(DataHeaderForm)
-SimplePoolFile1.root Debug --> Deaccess DbContainer  READ      [ROOT_Tree] POOLContainer(DataHeader)
-Domain[ROOT_All] Info >   Deaccess DbDomain     READ      [ROOT_All] 
 EventSelector       DEBUG Try item: "SimplePoolFile1.root" from the collection list.
 RootCollection Info Opening Collection File SimplePoolFile1.root in mode: READ
 RootCollection Debug File SimplePoolFile1.root exists.
@@ -150,7 +159,9 @@ 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.root Debug --> Access   DbContainer  READ      [ROOT_All] ##Shapes
-???? Debug Opened container ##Shapes of type ROOT_Tree
+##Shapes Debug Opening
+##Shapes Debug    attributes# = 1
+##Shapes Debug Opened container ##Shapes of type ROOT_Tree
 SimplePoolFile1.root Debug --->Reading Shape[0 , ????]: [1 Column(s)]
 SimplePoolFile1.root Debug ---->[0]:EventInfo_p4 Typ:EventInfo_p4 [21] Size:0 Offset:0 #Elements:1
 SimplePoolFile1.root Debug --->Reading Shape[1 , ????]: [1 Column(s)]
@@ -163,7 +174,9 @@ SimplePoolFile1.root Debug --->Reading Shape[4 , ????]: [1 Column(s)]
 SimplePoolFile1.root 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.root Debug --> Access   DbContainer  READ      [ROOT_All] ##Links
-???? Debug Opened container ##Links of type ROOT_Tree
+##Links Debug Opening
+##Links Debug    attributes# = 1
+##Links Debug Opened container ##Links of type ROOT_Tree
 SimplePoolFile1.root Debug --->Reading Assoc:????/##Params [200]  (2 , ffffffff)
 SimplePoolFile1.root Debug ---->ClassID:????
 SimplePoolFile1.root Debug --->Reading Assoc:????/CollectionTree(EventInfo_p4/McEventInfo) [202]  (3 , ffffffff)
@@ -184,7 +197,9 @@ SimplePoolFile1.root Debug --->Reading Assoc:????/MetaDataHdr(DataHeader) [202]
 SimplePoolFile1.root Debug ---->ClassID:????
 ##Links Debug No objects passing selection criteria... Container has 9 Entries in total.
 SimplePoolFile1.root Debug --> Access   DbContainer  READ      [ROOT_All] ##Params
-???? Debug Opened container ##Params of type ROOT_Tree
+##Params Debug Opening
+##Params Debug    attributes# = 1
+##Params Debug Opened container ##Params of type ROOT_Tree
 SimplePoolFile1.root Debug --->Reading Param:FID=[????]
 SimplePoolFile1.root Debug --->Reading Param:PFN=[SimplePoolFile1.root]
 SimplePoolFile1.root Debug --->Reading Param:POOL_VSN=[1.1]
@@ -194,12 +209,18 @@ ImplicitCollection Info Opened the implicit collection with connection string "P
 ImplicitCollection Info and a name "POOLContainer(DataHeader)"
 MetaDataSvc         DEBUG handle() BeginTagFile for SimplePoolFile1.root
 SimplePoolFile1.root Debug --> Access   DbContainer  READ      [ROOT_Tree] POOLContainer(DataHeader)
-???? Debug Opened container POOLContainer(DataHeader) of type ROOT_Tree
+POOLContainer(DataHeader) Debug Opening
+POOLContainer(DataHeader) Debug    attributes# = 1
+POOLContainer(DataHeader) Debug Branch container 'DataHeader'
+POOLContainer(DataHeader) Debug Opened container POOLContainer(DataHeader) of type ROOT_Tree
 ApplicationMgr       INFO Application Manager Started successfully
 MetaDataSvc         DEBUG handle() BeginInputFile for SimplePoolFile1.root
 MetaDataSvc         DEBUG initInputMetaDataStore: file name SimplePoolFile1.root
 SimplePoolFile1.root Debug --> Access   DbContainer  READ      [ROOT_Tree] MetaDataHdr(DataHeader)
-???? Debug Opened container MetaDataHdr(DataHeader) of type ROOT_Tree
+MetaDataHdr(DataHeader) Debug Opening
+MetaDataHdr(DataHeader) Debug    attributes# = 1
+MetaDataHdr(DataHeader) Debug Branch container 'DataHeader'
+MetaDataHdr(DataHeader) Debug Opened container MetaDataHdr(DataHeader) of type ROOT_Tree
 PoolSvc              INFO Failed to find container MetaDataHdrDataHeader to get Token.
 MetaDataSvc         DEBUG Loaded input meta data store proxies
 EventSelector       DEBUG Get AttributeList from the collection
@@ -208,17 +229,27 @@ EventSelector       DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=P
 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.root Debug --> Access   DbContainer  READ      [ROOT_Tree] POOLContainerForm(DataHeaderForm)
-???? Debug Opened container POOLContainerForm(DataHeaderForm) of type ROOT_Tree
+POOLContainerForm(DataHeaderForm) Debug Opening
+POOLContainerForm(DataHeaderForm) Debug    attributes# = 1
+POOLContainerForm(DataHeaderForm) Debug Branch container 'DataHeaderForm'
+POOLContainerForm(DataHeaderForm) Debug Opened container POOLContainerForm(DataHeaderForm) of type ROOT_Tree
 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
 SimplePoolFile1.root Debug --> Access   DbContainer  READ      [ROOT_Tree] CollectionTree(EventInfo_p4/McEventInfo)
-???? Debug Opened container CollectionTree(EventInfo_p4/McEventInfo) of type ROOT_Tree
+CollectionTree(EventInfo_p4/McEventInfo) Debug Opening
+CollectionTree(EventInfo_p4/McEventInfo) Debug    attributes# = 1
+CollectionTree(EventInfo_p4/McEventInfo) Debug Branch container 'EventInfo_p4_McEventInfo'
+CollectionTree(EventInfo_p4/McEventInfo) Debug Opened container CollectionTree(EventInfo_p4/McEventInfo) of type ROOT_Tree
+AthenaPoolConve...   INFO massageEventInfo: unable to get OverrideRunNumberFromInput property from EventSelector 
 AthenaEventLoopMgr   INFO   ===>>>  start of run 1    <<<===
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #0, run #1 0 events processed so far  <<<===
 ReadData            DEBUG in execute()
 SimplePoolFile1.root Debug --> Access   DbContainer  READ      [ROOT_Tree] MetaData(EventStreamInfo_p3/Stream1)
-???? Debug Opened container MetaData(EventStreamInfo_p3/Stream1) of type ROOT_Tree
+MetaData(EventStreamInfo_p3/Stream1) Debug Opening
+MetaData(EventStreamInfo_p3/Stream1) Debug    attributes# = 1
+MetaData(EventStreamInfo_p3/Stream1) Debug Branch container 'EventStreamInfo_p3_Stream1'
+MetaData(EventStreamInfo_p3/Stream1) Debug Opened container MetaData(EventStreamInfo_p3/Stream1) of type ROOT_Tree
 ReadData             INFO EventStreamInfo: Number of events = 20
 ReadData             INFO EventStreamInfo: ItemList:
 ReadData             INFO CLID = 2101, key = McEventInfo
@@ -230,7 +261,10 @@ ReadData             INFO EventInfo event: 0 run: 1
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 SimplePoolFile1.root Debug --> Access   DbContainer  READ      [ROOT_Tree] CollectionTree(ExampleHitContainer_p1/MyHits)
-???? Debug Opened container CollectionTree(ExampleHitContainer_p1/MyHits) of type ROOT_Tree
+CollectionTree(ExampleHitContainer_p1/MyHits) Debug Opening
+CollectionTree(ExampleHitContainer_p1/MyHits) Debug    attributes# = 1
+CollectionTree(ExampleHitContainer_p1/MyHits) Debug Branch container 'ExampleHitContainer_p1_MyHits'
+CollectionTree(ExampleHitContainer_p1/MyHits) Debug Opened container CollectionTree(ExampleHitContainer_p1/MyHits) of type ROOT_Tree
 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
@@ -1071,20 +1105,7 @@ WriteCond            INFO Hit x = 1926.91 y = 52.2238 z = -1855.07 detector = Du
 WriteCond            INFO Hit x = 1930.12 y = 46.5449 z = -1856.17 detector = DummyHitDetector
 WriteCond            INFO registered all data
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #19, run #1 20 events processed so far  <<<===
-SimplePoolFile1.root Info Database being retired...
-SimplePoolFile1.root Debug --> Deaccess DbContainer  READ      [ROOT_All] ##Links
-SimplePoolFile1.root Debug --> Deaccess DbContainer  READ      [ROOT_All] ##Shapes
-SimplePoolFile1.root Debug --> Deaccess DbContainer  READ      [ROOT_All] ##Params
-RootDatabase.close Debug I/O READ  Bytes: ????
-RootDatabase.close Debug I/O WRITE Bytes: 0
-RootDatabase.close Debug I/O OTHER Bytes: 0
 Domain[ROOT_All] Info ->  Deaccess DbDatabase   READ      [ROOT_All] ????
-SimplePoolFile1.root Debug --> Deaccess DbContainer  READ      [ROOT_Tree] CollectionTree(EventInfo_p4/McEventInfo)
-SimplePoolFile1.root Debug --> Deaccess DbContainer  READ      [ROOT_Tree] CollectionTree(ExampleHitContainer_p1/MyHits)
-SimplePoolFile1.root Debug --> Deaccess DbContainer  READ      [ROOT_Tree] MetaData(EventStreamInfo_p3/Stream1)
-SimplePoolFile1.root Debug --> Deaccess DbContainer  READ      [ROOT_Tree] MetaDataHdr(DataHeader)
-SimplePoolFile1.root Debug --> Deaccess DbContainer  READ      [ROOT_Tree] POOLContainerForm(DataHeaderForm)
-SimplePoolFile1.root Debug --> Deaccess DbContainer  READ      [ROOT_Tree] POOLContainer(DataHeader)
 Domain[ROOT_All] Info >   Deaccess DbDomain     READ      [ROOT_All] 
 MetaDataSvc         DEBUG handle() EndInputFile for FID:????
 MetaDataSvc         DEBUG handle() EndTagFile for SimplePoolFile1.root
@@ -1100,7 +1121,9 @@ 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.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_All] ##Shapes
-???? Debug Opened container ##Shapes of type ROOT_Tree
+##Shapes Debug Opening
+##Shapes Debug    attributes# = 1
+##Shapes Debug Opened container ##Shapes of type ROOT_Tree
 SimplePoolFile4.root Debug --->Reading Shape[0 , ????]: [1 Column(s)]
 SimplePoolFile4.root Debug ---->[0]:ExampleHitContainer_p1 Typ:ExampleHitContainer_p1 [21] Size:0 Offset:0 #Elements:1
 SimplePoolFile4.root Debug --->Reading Shape[1 , ????]: [1 Column(s)]
@@ -1109,7 +1132,9 @@ SimplePoolFile4.root Debug --->Reading Shape[2 , ????]: [1 Column(s)]
 SimplePoolFile4.root 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.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_All] ##Links
-???? Debug Opened container ##Links of type ROOT_Tree
+##Links Debug Opening
+##Links Debug    attributes# = 1
+##Links Debug Opened container ##Links of type ROOT_Tree
 SimplePoolFile4.root Debug --->Reading Assoc:????/##Params [200]  (2 , ffffffff)
 SimplePoolFile4.root Debug ---->ClassID:????
 SimplePoolFile4.root Debug --->Reading Assoc:????/ConditionsContainer(ExampleHitContainer_p1/PedestalWriteData) [202]  (3 , ffffffff)
@@ -1120,26 +1145,33 @@ SimplePoolFile4.root Debug --->Reading Assoc:????/POOLContainer(DataHeader) [202
 SimplePoolFile4.root Debug ---->ClassID:????
 ##Links Debug No objects passing selection criteria... Container has 4 Entries in total.
 SimplePoolFile4.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_All] ##Params
-???? Debug Opened container ##Params of type ROOT_Tree
+##Params Debug Opening
+##Params Debug    attributes# = 1
+##Params Debug Opened container ##Params of type ROOT_Tree
 SimplePoolFile4.root Debug --->Reading Param:FID=[????]
 SimplePoolFile4.root Debug --->Reading Param:PFN=[SimplePoolFile4.root]
 SimplePoolFile4.root Debug --->Reading Param:POOL_VSN=[1.1]
 SimplePoolFile4.root Debug --->Reading Param:FORMAT_VSN=[1.1]
 ##Params Debug No objects passing selection criteria... Container has 4 Entries in total.
-RootDatabase.setOption Debug Request TREE_AUTO_FLUSH 
-RootDatabase.setOption Debug File name SimplePoolFile4.root
-RootDatabase.setOption Debug Demand to set AUTO_FLUSH for TTree: POOLContainer with value: 0
 Stream1              INFO Identified a total of 1 objects to write out:
 Stream1              INFO 0: ExampleHitContainer#PedestalAppendData#PedestalAppendData
 SimplePoolFile4.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_Tree] ConditionsContainer(ExampleHitContainer_p1/PedestalAppendData)
-???? Debug Opened container ConditionsContainer(ExampleHitContainer_p1/PedestalAppendData) of type ROOT_Tree
+ConditionsContainer(ExampleHitContainer_p1/PedestalAppendData) Debug Opening
+ConditionsContainer(ExampleHitContainer_p1/PedestalAppendData) Debug    attributes# = 1
+ConditionsContainer(ExampleHitContainer_p1/PedestalAppendData) Debug Branch container 'ExampleHitContainer_p1_PedestalAppendData'
+ConditionsContainer(ExampleHitContainer_p1/PedestalAppendData) Debug Opened container ConditionsContainer(ExampleHitContainer_p1/PedestalAppendData) of type ROOT_Tree
 SimplePoolFile4.root Debug --->Adding Assoc :????/ConditionsContainer(ExampleHitContainer_p1/PedestalAppendData) [202]  (6 , ffffffff)
 SimplePoolFile4.root Debug ---->ClassID:????
 SimplePoolFile4.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_Tree] POOLContainerForm(DataHeaderForm)
-???? Debug Opened container POOLContainerForm(DataHeaderForm) of type ROOT_Tree
+POOLContainerForm(DataHeaderForm) Debug Opening
+POOLContainerForm(DataHeaderForm) Debug    attributes# = 1
+POOLContainerForm(DataHeaderForm) Debug Branch container 'DataHeaderForm'
+POOLContainerForm(DataHeaderForm) Debug Opened container POOLContainerForm(DataHeaderForm) of type ROOT_Tree
 SimplePoolFile4.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_Tree] POOLContainer(DataHeader)
-???? Debug Opened container POOLContainer(DataHeader) of type ROOT_Tree
-POOLContainer(DataHeader) Debug Setting AUTO_FLUSH for TTree: POOLContainer to value: 0
+POOLContainer(DataHeader) Debug Opening
+POOLContainer(DataHeader) Debug    attributes# = 1
+POOLContainer(DataHeader) Debug Branch container 'DataHeader'
+POOLContainer(DataHeader) Debug Opened container POOLContainer(DataHeader) of type ROOT_Tree
 Stream1              INFO Written 1 objects to output stream
 Stream1              INFO Objects NOT registered in IOV database
 ReadData             INFO in finalize()
@@ -1150,21 +1182,8 @@ WriteCond           DEBUG Calling destructor
 AthOutSeq            INFO Finalizing AthOutSeq...
 AthRegSeq            INFO Finalizing AthRegSeq...
 AthMasterSeq         INFO Finalizing AthMasterSeq...
-SimplePoolFile4.root Info Database being retired...
-SimplePoolFile4.root Debug --> Deaccess DbContainer  CREA/UPDA [ROOT_All] ##Links
-SimplePoolFile4.root Debug --> Deaccess DbContainer  CREA/UPDA [ROOT_All] ##Shapes
-SimplePoolFile4.root Debug --> Deaccess DbContainer  CREA/UPDA [ROOT_All] ##Params
-RootDatabase.close Debug I/O READ  Bytes: ????
-RootDatabase.close Debug I/O WRITE Bytes: ????
-RootDatabase.close Debug I/O OTHER Bytes: 0
 Domain[ROOT_All] Info ->  Deaccess DbDatabase   UPDATE    [ROOT_All] ????
-SimplePoolFile4.root Debug --> Deaccess DbContainer  CREA/UPDA [ROOT_Tree] ConditionsContainer(ExampleHitContainer_p1/PedestalAppendData)
-SimplePoolFile4.root Debug --> Deaccess DbContainer  CREA/UPDA [ROOT_Tree] POOLContainer(DataHeader)
-SimplePoolFile4.root Debug --> Deaccess DbContainer  CREA/UPDA [ROOT_Tree] POOLContainerForm(DataHeaderForm)
 Domain[ROOT_All] Info >   Deaccess DbDomain     UPDATE    [ROOT_All] 
-XMLFileCatalog Debug There were no updates in the catalog
-PoolXMLFileCatalog Info XercesC termination number 0
-PoolSvc              INFO I/O finalization...
 AthDictLoaderSvc     INFO in finalize...
 ToolSvc              INFO Removing all tools created by ToolSvc
 *****Chrono*****     INFO ****************************************************************************************************
diff --git a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_AMeta.ref b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_AMeta.ref
index 16b3d7310e07d7085f14b6ca81e4134605e603d1..792d496d4816e1c2bcdf110cd3bcbabd470dd974 100644
--- a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_AMeta.ref
+++ b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_AMeta.ref
@@ -1,5 +1,4 @@
-Warning in <TInterpreter::ReadRootmapFile>: class  Event found in libG4AtlasControlDict.so  is already in libtest_GPyTestDict.so 
-Warning in <TInterpreter::ReadRootmapFile>: class  UCharDbArray found in libStorageSvcDict.so  is already in libRootCnvDict.so 
+Warning in <TInterpreter::ReadRootmapFile>: class  xAOD::TReturnCode found in libxAODRootAccessDict.so  is already in libxAODRootAccess.so 
 Preloading tcmalloc_minimal.so
 Athena               INFO including file "AthenaCommon/Preparation.py"
 Athena               INFO including file "AthenaCommon/Bootstrap.py"
@@ -7,7 +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_AMetaJobOptions.py"
-Py:ConfigurableDb    INFO No duplicates have been found: that's good !
+Py:ConfigurableDb WARNING Found 3 duplicates among the 51 genConfDb files :
+Py:ConfigurableDb WARNING --------------------------------------------------
+Py:ConfigurableDb WARNING   -<component name>: <module> - [ <duplicates> ]
+Py:ConfigurableDb WARNING --------------------------------------------------
+Py:ConfigurableDb WARNING   -TrigEFRazorAllTE: TrigHLTJetHypo.TrigHLTJetHypoConf - ['TrigJetHypo.TrigJetHypoConf', 'TrigJetHypo.TrigJetHypoConf']
+Py:ConfigurableDb WARNING   -TrigL2JetHypo: TrigJetHypo.TrigJetHypoConf - ['TrigCaloHypo.TrigCaloHypoConf']
+Py:ConfigurableDb WARNING   -TrigEFDPhiMetJetAllTE: TrigHLTJetHypo.TrigHLTJetHypoConf - ['TrigJetHypo.TrigJetHypoConf', 'TrigJetHypo.TrigJetHypoConf']
+Py:ConfigurableDb WARNING Fix your cmt/requirements file !!
 Athena               INFO including file "AthenaCommon/runbatch.py"
 ApplicationMgr       INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0
 ApplicationMgr    SUCCESS 
@@ -21,7 +27,6 @@ AthDictLoaderSvc     INFO in initialize...
 AthDictLoaderSvc     INFO acquired Dso-registry
 ChronoStatSvc        INFO  Number of skipped events for MemStat-1
 CoreDumpSvc          INFO install f-a-t-a-l handler... (flag = -1)
-AthenaEventLoopMgr   INFO Initializing AthenaEventLoopMgr - package version AthenaServices-??-??-??
 AthMasterSeq         INFO Member list: AthSequencer/AthAlgSeq, AthSequencer/AthOutSeq, AthSequencer/AthRegSeq
 AthAlgSeq            INFO Member list: AthPoolEx::WriteData/WriteData, AthPoolEx::WriteCond/WriteCond
 WriteData           DEBUG Property update for OutputLevel : new value = 2
@@ -30,21 +35,16 @@ WriteData           DEBUG input handles: 0
 WriteData           DEBUG output handles: 0
 WriteData           DEBUG Data Deps for WriteData
 WriteCond            INFO in initialize()
-MetaDataSvc          INFO Initializing MetaDataSvc - package version AthenaServices-??-??-??
 AthenaPoolCnvSvc    DEBUG Property update for OutputLevel : new value = 2
-AthenaPoolCnvSvc     INFO Initializing AthenaPoolCnvSvc - package version AthenaPoolCnvSvc-??-??-??
 PoolSvc             DEBUG Property update for OutputLevel : new value = 2
-PoolSvc              INFO Initializing PoolSvc - package version PoolSvc-??-??-??
 PoolSvc              INFO io_register[PoolSvc](xmlcatalog_file:Catalog2.xml) [ok]
 PoolSvc              INFO Set connectionsvc retry/timeout/IDLE timeout to  'ConnectionRetrialPeriod':300/ 'ConnectionRetrialTimeOut':3600/ 'ConnectionTimeOut':5 seconds with connection cleanup disabled
 PoolSvc              INFO Frontier compression level set to 5
 PoolSvc              INFO Successfully setup replica sorting algorithm
 PoolSvc             DEBUG OutputLevel is 2
-PoolSvc              INFO Re-initializing PoolSvc
+PoolSvc              INFO Setting up APR FileCatalog and Streams
 PoolSvc              INFO POOL WriteCatalog is xmlcatalog_file:Catalog2.xml
-XMLFileCatalog Info Connecting to the catalog
-PoolXMLFileCatalog Info Xerces-c initialization Number 0
-ProxyProviderSvc     INFO Initializing ProxyProviderSvc - package version SGComps-??-??-??
+PoolSvc              INFO Re-initializing PoolSvc
 Stream1.Stream1...  DEBUG Property update for OutputLevel : new value = 2
 Stream1             DEBUG Property update for OutputLevel : new value = 2
 Stream1             DEBUG In initialize 
@@ -54,12 +54,9 @@ Stream1             DEBUG End initialize
 Stream1             DEBUG In initialize
 Stream1             DEBUG Found StoreGateSvc store.
 Stream1             DEBUG Found MetaDataStore store.
-OutputStreamSeq...   INFO Initializing OutputStreamSequencerSvc - package version AthenaServices-??-??-??
 Stream1.Stream1...  DEBUG Property update for OutputLevel : new value = 2
-Stream1.Stream1...   INFO Initializing Stream1.Stream1Tool - package version OutputStreamAthenaPool-??-??-??
 Stream1.Stream1...   INFO streamProperty ProcessingTag = Stream1
 Stream1.Stream1...  DEBUG Property update for OutputLevel : new value = 2
-Stream1.Stream1...   INFO Initializing Stream1.Stream1_MakeEventStreamInfo - package version OutputStreamAthenaPool-??-??-??
 Stream1              INFO Found HelperTools = PrivateToolHandleArray(['MakeEventStreamInfo/Stream1_MakeEventStreamInfo'])
 Stream1              INFO Data output: ROOTTREE:SimplePoolFile5.root
 Stream1              INFO I/O reinitialization...
@@ -73,7 +70,6 @@ Stream1             DEBUG Data Deps for Stream1
 HistogramPersis...WARNING Histograms saving not required.
 EventSelector        INFO  Enter McEventSelector Initialization 
 AthenaEventLoopMgr   INFO Setup EventSelector service EventSelector
-ActiveStoreSvc       INFO Initializing ActiveStoreSvc - package version StoreGate-??-??-??
 ApplicationMgr       INFO Application Manager Initialized successfully
 ApplicationMgr       INFO Application Manager Started successfully
 EventPersistenc...   INFO Added successfully Conversion service:McCnvSvc
@@ -102,7 +98,9 @@ AthenaPoolCnvSvc    DEBUG setAttribute DEFAULT_BUFFERSIZE to 32000
 Domain[ROOT_All] Info ->  Access   DbDatabase   UPDATE    [ROOT_All] ????
 Domain[ROOT_All] Info                           SimplePoolFile5.root
 SimplePoolFile5.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_All] ##Shapes
-???? Debug Opened container ##Shapes of type ROOT_Tree
+##Shapes Debug Opening
+##Shapes Debug    attributes# = 1
+##Shapes Debug Opened container ##Shapes of type ROOT_Tree
 SimplePoolFile5.root Debug --->Reading Shape[0 , ????]: [1 Column(s)]
 SimplePoolFile5.root Debug ---->[0]:EventInfo_p4 Typ:EventInfo_p4 [21] Size:0 Offset:0 #Elements:1
 SimplePoolFile5.root Debug --->Reading Shape[1 , ????]: [1 Column(s)]
@@ -115,7 +113,9 @@ SimplePoolFile5.root Debug --->Reading Shape[4 , ????]: [1 Column(s)]
 SimplePoolFile5.root Debug ---->[0]:EventStreamInfo_p3 Typ:EventStreamInfo_p3 [21] Size:0 Offset:0 #Elements:1
 ##Shapes Debug No objects passing selection criteria... Container has 5 Entries in total.
 SimplePoolFile5.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_All] ##Links
-???? Debug Opened container ##Links of type ROOT_Tree
+##Links Debug Opening
+##Links Debug    attributes# = 1
+##Links Debug Opened container ##Links of type ROOT_Tree
 SimplePoolFile5.root Debug --->Reading Assoc:????/##Params [200]  (2 , ffffffff)
 SimplePoolFile5.root Debug ---->ClassID:????
 SimplePoolFile5.root Debug --->Reading Assoc:????/CollectionTree(EventInfo_p4/McEventInfo) [202]  (3 , ffffffff)
@@ -138,16 +138,14 @@ SimplePoolFile5.root Debug --->Reading Assoc:????/MetaDataHdr(DataHeader) [202]
 SimplePoolFile5.root Debug ---->ClassID:????
 ##Links Debug No objects passing selection criteria... Container has 10 Entries in total.
 SimplePoolFile5.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_All] ##Params
-???? Debug Opened container ##Params of type ROOT_Tree
+##Params Debug Opening
+##Params Debug    attributes# = 1
+##Params Debug Opened container ##Params of type ROOT_Tree
 SimplePoolFile5.root Debug --->Reading Param:FID=[????]
 SimplePoolFile5.root Debug --->Reading Param:PFN=[SimplePoolFile5.root]
 SimplePoolFile5.root Debug --->Reading Param:POOL_VSN=[1.1]
 SimplePoolFile5.root Debug --->Reading Param:FORMAT_VSN=[1.1]
 ##Params Debug No objects passing selection criteria... Container has 4 Entries in total.
-RootDatabase.setOption Debug Request TREE_AUTO_FLUSH 
-RootDatabase.setOption Debug File name SimplePoolFile5.root
-RootDatabase.setOption Debug Demand to set AUTO_FLUSH for TTree: POOLContainer with value: 0
-AthenaPoolCnvSvc    DEBUG setAttribute TREE_AUTO_FLUSH to 0 for db: SimplePoolFile5.root and cont: TTree=POOLContainer
 AthenaPoolCnvSvc    DEBUG setAttribute CONTAINER_SPLITLEVEL to 99 for db: SimplePoolFile5.root and cont: TTree=POOLContainerForm(DataHeaderForm)
 Stream1             DEBUG addItemObjects(2101,"*") called
 Stream1             DEBUG            Key:*
@@ -156,17 +154,32 @@ Stream1             DEBUG addItemObjects(9102,"MyHits") called
 Stream1             DEBUG            Key:MyHits
 Stream1             DEBUG  Added object 9102,"MyHits"
 SimplePoolFile5.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_Tree] CollectionTree(EventInfo_p4/McEventInfo)
-???? Debug Opened container CollectionTree(EventInfo_p4/McEventInfo) of type ROOT_Tree
+CollectionTree(EventInfo_p4/McEventInfo) Debug Opening
+CollectionTree(EventInfo_p4/McEventInfo) Debug    attributes# = 1
+CollectionTree(EventInfo_p4/McEventInfo) Debug Branch container 'EventInfo_p4_McEventInfo'
+CollectionTree(EventInfo_p4/McEventInfo) Debug Opened container CollectionTree(EventInfo_p4/McEventInfo) of type ROOT_Tree
 SimplePoolFile5.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_Tree] CollectionTree(ExampleHitContainer_p1/MyHits)
-???? Debug Opened container CollectionTree(ExampleHitContainer_p1/MyHits) of type ROOT_Tree
+CollectionTree(ExampleHitContainer_p1/MyHits) Debug Opening
+CollectionTree(ExampleHitContainer_p1/MyHits) Debug    attributes# = 1
+CollectionTree(ExampleHitContainer_p1/MyHits) Debug Branch container 'ExampleHitContainer_p1_MyHits'
+CollectionTree(ExampleHitContainer_p1/MyHits) Debug Opened container CollectionTree(ExampleHitContainer_p1/MyHits) of type ROOT_Tree
 SimplePoolFile5.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_Tree] POOLContainerForm(DataHeaderForm)
-???? Debug Opened container POOLContainerForm(DataHeaderForm) of type ROOT_Tree
+POOLContainerForm(DataHeaderForm) Debug Opening
+POOLContainerForm(DataHeaderForm) Debug    attributes# = 1
+POOLContainerForm(DataHeaderForm) Debug Branch container 'DataHeaderForm'
+POOLContainerForm(DataHeaderForm) Debug Opened container POOLContainerForm(DataHeaderForm) of type ROOT_Tree
 SimplePoolFile5.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_Tree] POOLContainer(DataHeader)
-???? Debug Opened container POOLContainer(DataHeader) of type ROOT_Tree
-POOLContainer(DataHeader) Debug Setting AUTO_FLUSH for TTree: POOLContainer to value: 0
+POOLContainer(DataHeader) Debug Opening
+POOLContainer(DataHeader) Debug    attributes# = 1
+POOLContainer(DataHeader) Debug Branch container 'DataHeader'
+POOLContainer(DataHeader) Debug Opened container POOLContainer(DataHeader) of type ROOT_Tree
 SimplePoolFile5.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_Tree] POOLContainer(basic/DataHeader)
-???? Debug Opened container POOLContainer(basic/DataHeader) of type ROOT_Tree
-AthenaPoolCnvSvc    DEBUG setAttribute BRANCH_BASKET_SIZE to 256000 for db: SimplePoolFile5.root and cont: POOLContainerForm(DataHeaderForm)
+POOLContainer(basic/DataHeader) Debug Opening
+POOLContainer(basic/DataHeader) Debug    attributes# = 1
+POOLContainer(basic/DataHeader) Debug Branch container 'basic_DataHeader'
+POOLContainer(basic/DataHeader) Debug Opened container POOLContainer(basic/DataHeader) of type ROOT_Tree
+AthenaPoolCnvSvc    DEBUG setAttribute BRANCH_BASKET_SIZE to 256000 for db: SimplePoolFile5.root and cont: POOLContainer(DataHeader)
+AthenaPoolCnvSvc    DEBUG setAttribute BRANCH_BASKET_SIZE to 1024000 for db: SimplePoolFile5.root and cont: POOLContainerForm(DataHeaderForm)
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #20, run #0 1 events processed so far  <<<===
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #21, run #0 1 events processed so far  <<<===
 WriteData           DEBUG in execute()
@@ -387,14 +400,6 @@ Stream1             DEBUG  Added object 2101,"McEventInfo"
 Stream1             DEBUG addItemObjects(9102,"MyHits") called
 Stream1             DEBUG            Key:MyHits
 Stream1             DEBUG  Added object 9102,"MyHits"
-CollectionTree(EventInfo_p4/McEventInfo) Debug endTransaction: go to finish
-CollectionTree(ExampleHitContainer_p1/MyHits) Debug endTransaction: go to finish
-POOLContainer(DataHeader) Debug endTransaction: go to finish
-POOLContainer(basic/DataHeader) Debug endTransaction: go to finish
-POOLContainerForm(DataHeaderForm) Debug endTransaction: go to finish
-##Params Debug endTransaction:  tree AutoSave
-##Shapes Debug endTransaction:  tree AutoSave
-##Links Debug endTransaction:  tree AutoSave
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #30, run #0 11 events processed so far  <<<===
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #31, run #0 11 events processed so far  <<<===
 WriteData           DEBUG in execute()
@@ -606,44 +611,28 @@ Stream1             DEBUG  Added object 167728019,"Stream1"
 Stream1             DEBUG addItemObjects(1316383046,"*") called
 Stream1             DEBUG            Key:*
 SimplePoolFile5.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_Tree] MetaData(ExampleHitContainer_p1/PedestalWriteData)
-???? Debug Opened container MetaData(ExampleHitContainer_p1/PedestalWriteData) of type ROOT_Tree
+MetaData(ExampleHitContainer_p1/PedestalWriteData) Debug Opening
+MetaData(ExampleHitContainer_p1/PedestalWriteData) Debug    attributes# = 1
+MetaData(ExampleHitContainer_p1/PedestalWriteData) Debug Branch container 'ExampleHitContainer_p1_PedestalWriteData'
+MetaData(ExampleHitContainer_p1/PedestalWriteData) Debug Opened container MetaData(ExampleHitContainer_p1/PedestalWriteData) of type ROOT_Tree
 SimplePoolFile5.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_Tree] MetaData(EventStreamInfo_p3/Stream1)
-???? Debug Opened container MetaData(EventStreamInfo_p3/Stream1) of type ROOT_Tree
+MetaData(EventStreamInfo_p3/Stream1) Debug Opening
+MetaData(EventStreamInfo_p3/Stream1) Debug    attributes# = 1
+MetaData(EventStreamInfo_p3/Stream1) Debug Branch container 'EventStreamInfo_p3_Stream1'
+MetaData(EventStreamInfo_p3/Stream1) Debug Opened container MetaData(EventStreamInfo_p3/Stream1) of type ROOT_Tree
 SimplePoolFile5.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_Tree] MetaDataHdrForm(DataHeaderForm)
-???? Debug Opened container MetaDataHdrForm(DataHeaderForm) of type ROOT_Tree
+MetaDataHdrForm(DataHeaderForm) Debug Opening
+MetaDataHdrForm(DataHeaderForm) Debug    attributes# = 1
+MetaDataHdrForm(DataHeaderForm) Debug Branch container 'DataHeaderForm'
+MetaDataHdrForm(DataHeaderForm) Debug Opened container MetaDataHdrForm(DataHeaderForm) of type ROOT_Tree
 SimplePoolFile5.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_Tree] MetaDataHdr(DataHeader)
-???? Debug Opened container MetaDataHdr(DataHeader) of type ROOT_Tree
+MetaDataHdr(DataHeader) Debug Opening
+MetaDataHdr(DataHeader) Debug    attributes# = 1
+MetaDataHdr(DataHeader) Debug Branch container 'DataHeader'
+MetaDataHdr(DataHeader) Debug Opened container MetaDataHdr(DataHeader) of type ROOT_Tree
 Stream1              INFO Records written: 21
 Stream1             DEBUG Leaving handle
-CollectionTree(EventInfo_p4/McEventInfo) Debug endTransaction: go to finish
-CollectionTree(ExampleHitContainer_p1/MyHits) Debug endTransaction: go to finish
-MetaData(EventStreamInfo_p3/Stream1) Debug endTransaction: go to finish
-MetaData(ExampleHitContainer_p1/PedestalWriteData) Debug endTransaction: go to finish
-MetaDataHdr(DataHeader) Debug endTransaction: go to finish
-MetaDataHdrForm(DataHeaderForm) Debug endTransaction: go to finish
-POOLContainer(DataHeader) Debug endTransaction: go to finish
-POOLContainer(basic/DataHeader) Debug endTransaction: go to finish
-POOLContainerForm(DataHeaderForm) Debug endTransaction: go to finish
-##Params Debug endTransaction:  tree AutoSave
-##Shapes Debug endTransaction:  tree AutoSave
-##Links Debug endTransaction:  tree AutoSave
-SimplePoolFile5.root Info Database being retired...
-SimplePoolFile5.root Debug --> Deaccess DbContainer  CREA/UPDA [ROOT_All] ##Links
-SimplePoolFile5.root Debug --> Deaccess DbContainer  CREA/UPDA [ROOT_All] ##Shapes
-SimplePoolFile5.root Debug --> Deaccess DbContainer  CREA/UPDA [ROOT_All] ##Params
-RootDatabase.close Debug I/O READ  Bytes: ????
-RootDatabase.close Debug I/O WRITE Bytes: ????
-RootDatabase.close Debug I/O OTHER Bytes: 0
 Domain[ROOT_All] Info ->  Deaccess DbDatabase   UPDATE    [ROOT_All] ????
-SimplePoolFile5.root Debug --> Deaccess DbContainer  CREA/UPDA [ROOT_Tree] CollectionTree(EventInfo_p4/McEventInfo)
-SimplePoolFile5.root Debug --> Deaccess DbContainer  CREA/UPDA [ROOT_Tree] CollectionTree(ExampleHitContainer_p1/MyHits)
-SimplePoolFile5.root Debug --> Deaccess DbContainer  CREA/UPDA [ROOT_Tree] MetaData(EventStreamInfo_p3/Stream1)
-SimplePoolFile5.root Debug --> Deaccess DbContainer  CREA/UPDA [ROOT_Tree] MetaData(ExampleHitContainer_p1/PedestalWriteData)
-SimplePoolFile5.root Debug --> Deaccess DbContainer  CREA/UPDA [ROOT_Tree] MetaDataHdr(DataHeader)
-SimplePoolFile5.root Debug --> Deaccess DbContainer  CREA/UPDA [ROOT_Tree] MetaDataHdrForm(DataHeaderForm)
-SimplePoolFile5.root Debug --> Deaccess DbContainer  CREA/UPDA [ROOT_Tree] POOLContainer(DataHeader)
-SimplePoolFile5.root Debug --> Deaccess DbContainer  CREA/UPDA [ROOT_Tree] POOLContainer(basic/DataHeader)
-SimplePoolFile5.root Debug --> Deaccess DbContainer  CREA/UPDA [ROOT_Tree] POOLContainerForm(DataHeaderForm)
 Domain[ROOT_All] Info >   Deaccess DbDomain     UPDATE    [ROOT_All] 
 ApplicationMgr       INFO Application Manager Stopped successfully
 WriteData            INFO in finalize()
@@ -655,13 +644,8 @@ AthMasterSeq         INFO Finalizing AthMasterSeq...
 Stream1             DEBUG finalize: Optimize output
 Stream1             DEBUG finalize: end optimize output
 EventSelector        INFO finalize
-DecisionSvc          INFO -- OUTPUT STREAM EVENT OVERLAP SUMMARY --
-DecisionSvc          INFO List of registered 1 Streams: Stream1 
 DecisionSvc          INFO Finalized successfully.
 AthenaPoolCnvSvc    DEBUG releasing all workers
-XMLFileCatalog Debug There were no updates in the catalog
-PoolXMLFileCatalog Info XercesC termination number 0
-PoolSvc              INFO I/O finalization...
 AthDictLoaderSvc     INFO in finalize...
 ToolSvc              INFO Removing all tools created by ToolSvc
 *****Chrono*****     INFO ****************************************************************************************************
diff --git a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_Append.ref b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_Append.ref
index 1eee6433c365c6b11c0d4b75a7a0690a8fcf2322..7504c92d1233f6a0a027cc94805c0236c11b50d3 100755
--- a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_Append.ref
+++ b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_Append.ref
@@ -1,5 +1,4 @@
-Warning in <TInterpreter::ReadRootmapFile>: class  Event found in libG4AtlasControlDict.so  is already in libtest_GPyTestDict.so 
-Warning in <TInterpreter::ReadRootmapFile>: class  UCharDbArray found in libStorageSvcDict.so  is already in libRootCnvDict.so 
+Warning in <TInterpreter::ReadRootmapFile>: class  xAOD::TReturnCode found in libxAODRootAccessDict.so  is already in libxAODRootAccess.so 
 Preloading tcmalloc_minimal.so
 Athena               INFO including file "AthenaCommon/Preparation.py"
 Athena               INFO including file "AthenaCommon/Bootstrap.py"
@@ -7,7 +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_AppendJobOptions.py"
-Py:ConfigurableDb    INFO No duplicates have been found: that's good !
+Py:ConfigurableDb WARNING Found 3 duplicates among the 51 genConfDb files :
+Py:ConfigurableDb WARNING --------------------------------------------------
+Py:ConfigurableDb WARNING   -<component name>: <module> - [ <duplicates> ]
+Py:ConfigurableDb WARNING --------------------------------------------------
+Py:ConfigurableDb WARNING   -TrigEFRazorAllTE: TrigHLTJetHypo.TrigHLTJetHypoConf - ['TrigJetHypo.TrigJetHypoConf', 'TrigJetHypo.TrigJetHypoConf']
+Py:ConfigurableDb WARNING   -TrigL2JetHypo: TrigJetHypo.TrigJetHypoConf - ['TrigCaloHypo.TrigCaloHypoConf']
+Py:ConfigurableDb WARNING   -TrigEFDPhiMetJetAllTE: TrigHLTJetHypo.TrigHLTJetHypoConf - ['TrigJetHypo.TrigJetHypoConf', 'TrigJetHypo.TrigJetHypoConf']
+Py:ConfigurableDb WARNING Fix your cmt/requirements file !!
 Athena               INFO including file "AthenaCommon/runbatch.py"
 ApplicationMgr       INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0
 ApplicationMgr    SUCCESS 
@@ -21,7 +27,6 @@ AthDictLoaderSvc     INFO in initialize...
 AthDictLoaderSvc     INFO acquired Dso-registry
 ChronoStatSvc        INFO  Number of skipped events for MemStat-1
 CoreDumpSvc          INFO install f-a-t-a-l handler... (flag = -1)
-AthenaEventLoopMgr   INFO Initializing AthenaEventLoopMgr - package version AthenaServices-??-??-??
 AthMasterSeq         INFO Member list: AthSequencer/AthAlgSeq, AthSequencer/AthOutSeq, AthSequencer/AthRegSeq
 AthAlgSeq            INFO Member list: AthPoolEx::WriteData/WriteData, AthPoolEx::WriteTag/WriteTag, AthenaOutputStream/Stream1, RegistrationStream/RegStream1
 WriteData           DEBUG Property update for OutputLevel : new value = 2
@@ -37,29 +42,21 @@ Stream1             DEBUG Found IDecisionSvc.
 DecisionSvc          INFO Inserting stream: Stream1 with no Algs
 Stream1             DEBUG End initialize 
 Stream1             DEBUG In initialize
-MetaDataSvc          INFO Initializing MetaDataSvc - package version AthenaServices-??-??-??
 AthenaPoolCnvSvc    DEBUG Property update for OutputLevel : new value = 2
-AthenaPoolCnvSvc     INFO Initializing AthenaPoolCnvSvc - package version AthenaPoolCnvSvc-??-??-??
 PoolSvc             DEBUG Property update for OutputLevel : new value = 2
-PoolSvc              INFO Initializing PoolSvc - package version PoolSvc-??-??-??
 PoolSvc              INFO io_register[PoolSvc](xmlcatalog_file:Catalog1.xml) [ok]
 PoolSvc              INFO Set connectionsvc retry/timeout/IDLE timeout to  'ConnectionRetrialPeriod':300/ 'ConnectionRetrialTimeOut':3600/ 'ConnectionTimeOut':5 seconds with connection cleanup disabled
 PoolSvc              INFO Frontier compression level set to 5
 PoolSvc              INFO Successfully setup replica sorting algorithm
 PoolSvc             DEBUG OutputLevel is 2
-PoolSvc              INFO Re-initializing PoolSvc
+PoolSvc              INFO Setting up APR FileCatalog and Streams
 PoolSvc              INFO POOL WriteCatalog is xmlcatalog_file:Catalog1.xml
-XMLFileCatalog Info Connecting to the catalog
-PoolXMLFileCatalog Info Xerces-c initialization Number 0
-ProxyProviderSvc     INFO Initializing ProxyProviderSvc - package version SGComps-??-??-??
+PoolSvc              INFO Re-initializing PoolSvc
 Stream1             DEBUG Found StoreGateSvc store.
 Stream1             DEBUG Found MetaDataStore store.
-OutputStreamSeq...   INFO Initializing OutputStreamSequencerSvc - package version AthenaServices-??-??-??
 Stream1.Stream1...  DEBUG Property update for OutputLevel : new value = 2
-Stream1.Stream1...   INFO Initializing Stream1.Stream1Tool - package version OutputStreamAthenaPool-??-??-??
 Stream1.Stream1...   INFO streamProperty ProcessingTag = Stream1
 Stream1.Stream1...  DEBUG Property update for OutputLevel : new value = 2
-Stream1.Stream1...   INFO Initializing Stream1.Stream1_MakeEventStreamInfo - package version OutputStreamAthenaPool-??-??-??
 Stream1              INFO Found HelperTools = PrivateToolHandleArray(['MakeEventStreamInfo/Stream1_MakeEventStreamInfo'])
 Stream1              INFO Data output: SimplePoolFile2.root
 Stream1              INFO I/O reinitialization...
@@ -92,7 +89,6 @@ RegStream1          DEBUG Data Deps for RegStream1
 HistogramPersis...WARNING Histograms saving not required.
 EventSelector        INFO  Enter McEventSelector Initialization 
 AthenaEventLoopMgr   INFO Setup EventSelector service EventSelector
-ActiveStoreSvc       INFO Initializing ActiveStoreSvc - package version StoreGate-??-??-??
 ApplicationMgr       INFO Application Manager Initialized successfully
 ApplicationMgr       INFO Application Manager Started successfully
 EventPersistenc...   INFO Added successfully Conversion service:McCnvSvc
@@ -112,7 +108,9 @@ AthenaPoolCnvSvc    DEBUG setAttribute DEFAULT_BUFFERSIZE to 32000
 Domain[ROOT_All] Info ->  Access   DbDatabase   UPDATE    [ROOT_All] ????
 Domain[ROOT_All] Info                           SimplePoolFile2.root
 SimplePoolFile2.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_All] ##Shapes
-???? Debug Opened container ##Shapes of type ROOT_Tree
+##Shapes Debug Opening
+##Shapes Debug    attributes# = 1
+##Shapes Debug Opened container ##Shapes of type ROOT_Tree
 SimplePoolFile2.root Debug --->Reading Shape[0 , ????]: [1 Column(s)]
 SimplePoolFile2.root Debug ---->[0]:EventInfo_p4 Typ:EventInfo_p4 [21] Size:0 Offset:0 #Elements:1
 SimplePoolFile2.root Debug --->Reading Shape[1 , ????]: [1 Column(s)]
@@ -127,7 +125,9 @@ SimplePoolFile2.root Debug --->Reading Shape[5 , ????]: [1 Column(s)]
 SimplePoolFile2.root Debug ---->[0]:EventStreamInfo_p3 Typ:EventStreamInfo_p3 [21] Size:0 Offset:0 #Elements:1
 ##Shapes Debug No objects passing selection criteria... Container has 6 Entries in total.
 SimplePoolFile2.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_All] ##Links
-???? Debug Opened container ##Links of type ROOT_Tree
+##Links Debug Opening
+##Links Debug    attributes# = 1
+##Links Debug Opened container ##Links of type ROOT_Tree
 SimplePoolFile2.root Debug --->Reading Assoc:????/##Params [200]  (2 , ffffffff)
 SimplePoolFile2.root Debug ---->ClassID:????
 SimplePoolFile2.root Debug --->Reading Assoc:????/CollectionTree(EventInfo_p4/McEventInfo) [202]  (3 , ffffffff)
@@ -154,16 +154,14 @@ SimplePoolFile2.root Debug --->Reading Assoc:????/MetaDataHdr(DataHeader) [202]
 SimplePoolFile2.root Debug ---->ClassID:????
 ##Links Debug No objects passing selection criteria... Container has 12 Entries in total.
 SimplePoolFile2.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_All] ##Params
-???? Debug Opened container ##Params of type ROOT_Tree
+##Params Debug Opening
+##Params Debug    attributes# = 1
+##Params Debug Opened container ##Params of type ROOT_Tree
 SimplePoolFile2.root Debug --->Reading Param:FID=[????]
 SimplePoolFile2.root Debug --->Reading Param:PFN=[SimplePoolFile2.root]
 SimplePoolFile2.root Debug --->Reading Param:POOL_VSN=[1.1]
 SimplePoolFile2.root Debug --->Reading Param:FORMAT_VSN=[1.1]
 ##Params Debug No objects passing selection criteria... Container has 4 Entries in total.
-RootDatabase.setOption Debug Request TREE_AUTO_FLUSH 
-RootDatabase.setOption Debug File name SimplePoolFile2.root
-RootDatabase.setOption Debug Demand to set AUTO_FLUSH for TTree: POOLContainer with value: 0
-AthenaPoolCnvSvc    DEBUG setAttribute TREE_AUTO_FLUSH to 0 for db: SimplePoolFile2.root and cont: TTree=POOLContainer
 AthenaPoolCnvSvc    DEBUG setAttribute CONTAINER_SPLITLEVEL to 99 for db: SimplePoolFile2.root and cont: TTree=POOLContainerForm(DataHeaderForm)
 Stream1             DEBUG addItemObjects(2101,"*") called
 Stream1             DEBUG            Key:*
@@ -171,23 +169,47 @@ Stream1             DEBUG  Added object 2101,"McEventInfo"
 Stream1             DEBUG  Collected objects:
 Stream1             DEBUG  Object/count: EventInfo_McEventInfo, 1
 SimplePoolFile2.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_Tree] CollectionTree(EventInfo_p4/McEventInfo)
-???? Debug Opened container CollectionTree(EventInfo_p4/McEventInfo) of type ROOT_Tree
+CollectionTree(EventInfo_p4/McEventInfo) Debug Opening
+CollectionTree(EventInfo_p4/McEventInfo) Debug    attributes# = 1
+CollectionTree(EventInfo_p4/McEventInfo) Debug Branch container 'EventInfo_p4_McEventInfo'
+CollectionTree(EventInfo_p4/McEventInfo) Debug Opened container CollectionTree(EventInfo_p4/McEventInfo) of type ROOT_Tree
 SimplePoolFile2.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_Tree] POOLContainerForm(DataHeaderForm)
-???? Debug Opened container POOLContainerForm(DataHeaderForm) of type ROOT_Tree
+POOLContainerForm(DataHeaderForm) Debug Opening
+POOLContainerForm(DataHeaderForm) Debug    attributes# = 1
+POOLContainerForm(DataHeaderForm) Debug Branch container 'DataHeaderForm'
+POOLContainerForm(DataHeaderForm) Debug Opened container POOLContainerForm(DataHeaderForm) of type ROOT_Tree
 SimplePoolFile2.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_Tree] POOLContainer(DataHeader)
-???? Debug Opened container POOLContainer(DataHeader) of type ROOT_Tree
-POOLContainer(DataHeader) Debug Setting AUTO_FLUSH for TTree: POOLContainer to value: 0
+POOLContainer(DataHeader) Debug Opening
+POOLContainer(DataHeader) Debug    attributes# = 1
+POOLContainer(DataHeader) Debug Branch container 'DataHeader'
+POOLContainer(DataHeader) Debug Opened container POOLContainer(DataHeader) of type ROOT_Tree
 SimplePoolFile2.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_Tree] POOLCollectionTree(Token)
-???? Debug Opened container POOLCollectionTree(Token) of type ROOT_Tree
+POOLCollectionTree(Token) Debug Opening
+POOLCollectionTree(Token) Debug    attributes# = 1
+POOLCollectionTree(Token) Debug Branch container 'Token'
+POOLCollectionTree(Token) Debug Opened container POOLCollectionTree(Token) of type ROOT_Tree
 SimplePoolFile2.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_Tree] POOLCollectionTree(RunNumber)
-???? Debug Opened container POOLCollectionTree(RunNumber) of type ROOT_Tree
+POOLCollectionTree(RunNumber) Debug Opening
+POOLCollectionTree(RunNumber) Debug    attributes# = 1
+POOLCollectionTree(RunNumber) Debug Branch container 'RunNumber'
+POOLCollectionTree(RunNumber) Debug Opened container POOLCollectionTree(RunNumber) of type ROOT_Tree
 SimplePoolFile2.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_Tree] POOLCollectionTree(EventNumber)
-???? Debug Opened container POOLCollectionTree(EventNumber) of type ROOT_Tree
+POOLCollectionTree(EventNumber) Debug Opening
+POOLCollectionTree(EventNumber) Debug    attributes# = 1
+POOLCollectionTree(EventNumber) Debug Branch container 'EventNumber'
+POOLCollectionTree(EventNumber) Debug Opened container POOLCollectionTree(EventNumber) of type ROOT_Tree
 SimplePoolFile2.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_Tree] POOLCollectionTree(MagicNumber)
-???? Debug Opened container POOLCollectionTree(MagicNumber) of type ROOT_Tree
+POOLCollectionTree(MagicNumber) Debug Opening
+POOLCollectionTree(MagicNumber) Debug    attributes# = 1
+POOLCollectionTree(MagicNumber) Debug Branch container 'MagicNumber'
+POOLCollectionTree(MagicNumber) Debug Opened container POOLCollectionTree(MagicNumber) of type ROOT_Tree
 SimplePoolFile2.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_Tree] POOLContainer(basic/DataHeader)
-???? Debug Opened container POOLContainer(basic/DataHeader) of type ROOT_Tree
-AthenaPoolCnvSvc    DEBUG setAttribute BRANCH_BASKET_SIZE to 256000 for db: SimplePoolFile2.root and cont: POOLContainerForm(DataHeaderForm)
+POOLContainer(basic/DataHeader) Debug Opening
+POOLContainer(basic/DataHeader) Debug    attributes# = 1
+POOLContainer(basic/DataHeader) Debug Branch container 'basic_DataHeader'
+POOLContainer(basic/DataHeader) Debug Opened container POOLContainer(basic/DataHeader) of type ROOT_Tree
+AthenaPoolCnvSvc    DEBUG setAttribute BRANCH_BASKET_SIZE to 256000 for db: SimplePoolFile2.root and cont: POOLContainer(DataHeader)
+AthenaPoolCnvSvc    DEBUG setAttribute BRANCH_BASKET_SIZE to 1024000 for db: SimplePoolFile2.root and cont: POOLContainerForm(DataHeaderForm)
 RegStream1          DEBUG RegistrationStream execute
 RegStream1          DEBUG getRefs: Not DataHeader, skipping (40774349,"RunEventTag") 
 RegStream1          DEBUG  get ref for (222376821,"Stream1") 
@@ -394,17 +416,6 @@ Stream1             DEBUG            Key:*
 Stream1             DEBUG  Added object 2101,"McEventInfo"
 Stream1             DEBUG  Collected objects:
 Stream1             DEBUG  Object/count: EventInfo_McEventInfo, 11
-CollectionTree(EventInfo_p4/McEventInfo) Debug endTransaction: go to finish
-POOLCollectionTree(EventNumber) Debug endTransaction: go to finish
-POOLCollectionTree(MagicNumber) Debug endTransaction: go to finish
-POOLCollectionTree(RunNumber) Debug endTransaction: go to finish
-POOLCollectionTree(Token) Debug endTransaction: go to finish
-POOLContainer(DataHeader) Debug endTransaction: go to finish
-POOLContainer(basic/DataHeader) Debug endTransaction: go to finish
-POOLContainerForm(DataHeaderForm) Debug endTransaction: go to finish
-##Params Debug endTransaction:  tree AutoSave
-##Shapes Debug endTransaction:  tree AutoSave
-##Links Debug endTransaction:  tree AutoSave
 RegStream1          DEBUG RegistrationStream execute
 RegStream1          DEBUG getRefs: Not DataHeader, skipping (40774349,"RunEventTag") 
 RegStream1          DEBUG  get ref for (222376821,"Stream1") 
@@ -601,20 +612,27 @@ Stream1             DEBUG  Added object 167728019,"Stream1"
 Stream1             DEBUG addItemObjects(1316383046,"*") called
 Stream1             DEBUG            Key:*
 SimplePoolFile2.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_Tree] MetaData(EventStreamInfo_p3/Stream1)
-???? Debug Opened container MetaData(EventStreamInfo_p3/Stream1) of type ROOT_Tree
+MetaData(EventStreamInfo_p3/Stream1) Debug Opening
+MetaData(EventStreamInfo_p3/Stream1) Debug    attributes# = 1
+MetaData(EventStreamInfo_p3/Stream1) Debug Branch container 'EventStreamInfo_p3_Stream1'
+MetaData(EventStreamInfo_p3/Stream1) Debug Opened container MetaData(EventStreamInfo_p3/Stream1) of type ROOT_Tree
 SimplePoolFile2.root Debug --->Adding Assoc :????/MetaData(EventStreamInfo_p3/Stream1) [202]  (e , ffffffff)
 SimplePoolFile2.root Debug ---->ClassID:????
 SimplePoolFile2.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_Tree] MetaDataHdrForm(DataHeaderForm)
-???? Debug Opened container MetaDataHdrForm(DataHeaderForm) of type ROOT_Tree
+MetaDataHdrForm(DataHeaderForm) Debug Opening
+MetaDataHdrForm(DataHeaderForm) Debug    attributes# = 1
+MetaDataHdrForm(DataHeaderForm) Debug Branch container 'DataHeaderForm'
+MetaDataHdrForm(DataHeaderForm) Debug Opened container MetaDataHdrForm(DataHeaderForm) of type ROOT_Tree
 SimplePoolFile2.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_Tree] MetaDataHdr(DataHeader)
-???? Debug Opened container MetaDataHdr(DataHeader) of type ROOT_Tree
+MetaDataHdr(DataHeader) Debug Opening
+MetaDataHdr(DataHeader) Debug    attributes# = 1
+MetaDataHdr(DataHeader) Debug Branch container 'DataHeader'
+MetaDataHdr(DataHeader) Debug Opened container MetaDataHdr(DataHeader) of type ROOT_Tree
 Stream1              INFO Records written: 21
 Stream1             DEBUG Leaving handle
 RegStream1          DEBUG handle() incident type: MetaDataStop
 RegStream1.TagTool   INFO Collection Events output: 20
-XMLFileCatalog Debug There were no updates in the catalog
 POOLCollFactory Debug Registering existing collection PFN=RootCollection||PFN:SimplePoolCollection2.root, LFN=
-XMLFileCatalog Debug There were no updates in the catalog
 RootCollection::Metadata Debug  Using char buffer of size: 4100
 RootCollection::Metadata Debug  readKeys: found 3 metadata keys
 POOLCollFactory Debug  ---  found catalog guid=????
@@ -624,39 +642,7 @@ RootCollection Debug    bytes written to TTree ????
 RootCollection::MetadataCommit Debug Bytes written to the Metadata TTree ????
 RootCollection Info Closing open collection 'SimplePoolCollection2.root'
 RootCollectionSchemaEditor Debug ###### Writing schema....
-CollectionTree(EventInfo_p4/McEventInfo) Debug endTransaction: go to finish
-MetaData(EventStreamInfo_p3/Stream1) Debug endTransaction: go to finish
-MetaDataHdr(DataHeader) Debug endTransaction: go to finish
-MetaDataHdrForm(DataHeaderForm) Debug endTransaction: go to finish
-POOLCollectionTree(EventNumber) Debug endTransaction: go to finish
-POOLCollectionTree(MagicNumber) Debug endTransaction: go to finish
-POOLCollectionTree(RunNumber) Debug endTransaction: go to finish
-POOLCollectionTree(Token) Debug endTransaction: go to finish
-POOLContainer(DataHeader) Debug endTransaction: go to finish
-POOLContainer(basic/DataHeader) Debug endTransaction: go to finish
-POOLContainerForm(DataHeaderForm) Debug endTransaction: go to finish
-##Params Debug endTransaction:  tree AutoSave
-##Shapes Debug endTransaction:  tree AutoSave
-##Links Debug endTransaction:  tree AutoSave
-SimplePoolFile2.root Info Database being retired...
-SimplePoolFile2.root Debug --> Deaccess DbContainer  CREA/UPDA [ROOT_All] ##Links
-SimplePoolFile2.root Debug --> Deaccess DbContainer  CREA/UPDA [ROOT_All] ##Shapes
-SimplePoolFile2.root Debug --> Deaccess DbContainer  CREA/UPDA [ROOT_All] ##Params
-RootDatabase.close Debug I/O READ  Bytes: ????
-RootDatabase.close Debug I/O WRITE Bytes: ????
-RootDatabase.close Debug I/O OTHER Bytes: 0
 Domain[ROOT_All] Info ->  Deaccess DbDatabase   UPDATE    [ROOT_All] ????
-SimplePoolFile2.root Debug --> Deaccess DbContainer  CREA/UPDA [ROOT_Tree] CollectionTree(EventInfo_p4/McEventInfo)
-SimplePoolFile2.root Debug --> Deaccess DbContainer  CREA/UPDA [ROOT_Tree] MetaData(EventStreamInfo_p3/Stream1)
-SimplePoolFile2.root Debug --> Deaccess DbContainer  CREA/UPDA [ROOT_Tree] MetaDataHdr(DataHeader)
-SimplePoolFile2.root Debug --> Deaccess DbContainer  CREA/UPDA [ROOT_Tree] MetaDataHdrForm(DataHeaderForm)
-SimplePoolFile2.root Debug --> Deaccess DbContainer  CREA/UPDA [ROOT_Tree] POOLCollectionTree(EventNumber)
-SimplePoolFile2.root Debug --> Deaccess DbContainer  CREA/UPDA [ROOT_Tree] POOLCollectionTree(MagicNumber)
-SimplePoolFile2.root Debug --> Deaccess DbContainer  CREA/UPDA [ROOT_Tree] POOLCollectionTree(RunNumber)
-SimplePoolFile2.root Debug --> Deaccess DbContainer  CREA/UPDA [ROOT_Tree] POOLCollectionTree(Token)
-SimplePoolFile2.root Debug --> Deaccess DbContainer  CREA/UPDA [ROOT_Tree] POOLContainer(DataHeader)
-SimplePoolFile2.root Debug --> Deaccess DbContainer  CREA/UPDA [ROOT_Tree] POOLContainer(basic/DataHeader)
-SimplePoolFile2.root Debug --> Deaccess DbContainer  CREA/UPDA [ROOT_Tree] POOLContainerForm(DataHeaderForm)
 Domain[ROOT_All] Info >   Deaccess DbDomain     UPDATE    [ROOT_All] 
 ApplicationMgr       INFO Application Manager Stopped successfully
 WriteData            INFO in finalize()
@@ -671,11 +657,6 @@ AthRegSeq            INFO Finalizing AthRegSeq...
 AthMasterSeq         INFO Finalizing AthMasterSeq...
 EventSelector        INFO finalize
 AthenaPoolCnvSvc    DEBUG releasing all workers
-XMLFileCatalog Debug There were no updates in the catalog
-PoolXMLFileCatalog Info XercesC termination number 0
-PoolSvc              INFO I/O finalization...
-DecisionSvc          INFO -- OUTPUT STREAM EVENT OVERLAP SUMMARY --
-DecisionSvc          INFO List of registered 2 Streams: RegStream1 Stream1 
 DecisionSvc          INFO Finalized successfully.
 AthDictLoaderSvc     INFO in finalize...
 ToolSvc              INFO Removing all tools created by ToolSvc
diff --git a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_AppendFast.ref b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_AppendFast.ref
index 6a258457d1e0e4a52cb529cc5d2575b8cca6f4fe..d677418850c462ad63c1a62de5f92f951ee1fea6 100644
--- a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_AppendFast.ref
+++ b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_AppendFast.ref
@@ -1,5 +1,4 @@
-Warning in <TInterpreter::ReadRootmapFile>: class  Event found in libG4AtlasControlDict.so  is already in libtest_GPyTestDict.so 
-Warning in <TInterpreter::ReadRootmapFile>: class  UCharDbArray found in libStorageSvcDict.so  is already in libRootCnvDict.so 
+Warning in <TInterpreter::ReadRootmapFile>: class  xAOD::TReturnCode found in libxAODRootAccessDict.so  is already in libxAODRootAccess.so 
 Preloading tcmalloc_minimal.so
 Athena               INFO including file "AthenaCommon/Preparation.py"
 Athena               INFO including file "AthenaCommon/Bootstrap.py"
@@ -7,7 +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_AppendFastJobOptions.py"
-Py:ConfigurableDb    INFO No duplicates have been found: that's good !
+Py:ConfigurableDb WARNING Found 3 duplicates among the 51 genConfDb files :
+Py:ConfigurableDb WARNING --------------------------------------------------
+Py:ConfigurableDb WARNING   -<component name>: <module> - [ <duplicates> ]
+Py:ConfigurableDb WARNING --------------------------------------------------
+Py:ConfigurableDb WARNING   -TrigEFRazorAllTE: TrigHLTJetHypo.TrigHLTJetHypoConf - ['TrigJetHypo.TrigJetHypoConf', 'TrigJetHypo.TrigJetHypoConf']
+Py:ConfigurableDb WARNING   -TrigL2JetHypo: TrigJetHypo.TrigJetHypoConf - ['TrigCaloHypo.TrigCaloHypoConf']
+Py:ConfigurableDb WARNING   -TrigEFDPhiMetJetAllTE: TrigHLTJetHypo.TrigHLTJetHypoConf - ['TrigJetHypo.TrigJetHypoConf', 'TrigJetHypo.TrigJetHypoConf']
+Py:ConfigurableDb WARNING Fix your cmt/requirements file !!
 Athena               INFO including file "AthenaCommon/runbatch.py"
 ApplicationMgr       INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0
 ApplicationMgr    SUCCESS 
@@ -21,7 +27,6 @@ AthDictLoaderSvc     INFO in initialize...
 AthDictLoaderSvc     INFO acquired Dso-registry
 ChronoStatSvc        INFO  Number of skipped events for MemStat-1
 CoreDumpSvc          INFO install f-a-t-a-l handler... (flag = -1)
-AthenaEventLoopMgr   INFO Initializing AthenaEventLoopMgr - package version AthenaServices-??-??-??
 AthMasterSeq         INFO Member list: AthSequencer/AthAlgSeq, AthSequencer/AthOutSeq, AthSequencer/AthRegSeq
 AthAlgSeq            INFO Member list: AthPoolEx::WriteData/WriteData, AthPoolEx::WriteTag/WriteTag, AthenaOutputStream/Stream2, RegistrationStream/RegStream2
 WriteData           DEBUG Property update for OutputLevel : new value = 2
@@ -37,29 +42,21 @@ Stream2             DEBUG Found IDecisionSvc.
 DecisionSvc          INFO Inserting stream: Stream2 with no Algs
 Stream2             DEBUG End initialize 
 Stream2             DEBUG In initialize
-MetaDataSvc          INFO Initializing MetaDataSvc - package version AthenaServices-??-??-??
 AthenaPoolCnvSvc    DEBUG Property update for OutputLevel : new value = 2
-AthenaPoolCnvSvc     INFO Initializing AthenaPoolCnvSvc - package version AthenaPoolCnvSvc-??-??-??
 PoolSvc             DEBUG Property update for OutputLevel : new value = 2
-PoolSvc              INFO Initializing PoolSvc - package version PoolSvc-??-??-??
 PoolSvc              INFO io_register[PoolSvc](xmlcatalog_file:Catalog1.xml) [ok]
 PoolSvc              INFO Set connectionsvc retry/timeout/IDLE timeout to  'ConnectionRetrialPeriod':300/ 'ConnectionRetrialTimeOut':3600/ 'ConnectionTimeOut':5 seconds with connection cleanup disabled
 PoolSvc              INFO Frontier compression level set to 5
 PoolSvc              INFO Successfully setup replica sorting algorithm
 PoolSvc             DEBUG OutputLevel is 2
-PoolSvc              INFO Re-initializing PoolSvc
+PoolSvc              INFO Setting up APR FileCatalog and Streams
 PoolSvc              INFO POOL WriteCatalog is xmlcatalog_file:Catalog1.xml
-XMLFileCatalog Info Connecting to the catalog
-PoolXMLFileCatalog Info Xerces-c initialization Number 0
-ProxyProviderSvc     INFO Initializing ProxyProviderSvc - package version SGComps-??-??-??
+PoolSvc              INFO Re-initializing PoolSvc
 Stream2             DEBUG Found StoreGateSvc store.
 Stream2             DEBUG Found MetaDataStore store.
-OutputStreamSeq...   INFO Initializing OutputStreamSequencerSvc - package version AthenaServices-??-??-??
 Stream2.Stream2...  DEBUG Property update for OutputLevel : new value = 2
-Stream2.Stream2...   INFO Initializing Stream2.Stream2Tool - package version OutputStreamAthenaPool-??-??-??
 Stream2.Stream2...   INFO streamProperty ProcessingTag = Stream2
 Stream2.Stream2...  DEBUG Property update for OutputLevel : new value = 2
-Stream2.Stream2...   INFO Initializing Stream2.Stream2_MakeEventStreamInfo - package version OutputStreamAthenaPool-??-??-??
 Stream2              INFO Found HelperTools = PrivateToolHandleArray(['MakeEventStreamInfo/Stream2_MakeEventStreamInfo'])
 Stream2              INFO Data output: SimplePoolFileB.root
 Stream2              INFO I/O reinitialization...
@@ -92,7 +89,6 @@ RegStream2          DEBUG Data Deps for RegStream2
 HistogramPersis...WARNING Histograms saving not required.
 EventSelector        INFO  Enter McEventSelector Initialization 
 AthenaEventLoopMgr   INFO Setup EventSelector service EventSelector
-ActiveStoreSvc       INFO Initializing ActiveStoreSvc - package version StoreGate-??-??-??
 ApplicationMgr       INFO Application Manager Initialized successfully
 ApplicationMgr       INFO Application Manager Started successfully
 EventPersistenc...   INFO Added successfully Conversion service:McCnvSvc
@@ -109,25 +105,25 @@ AthenaPoolCnvSvc    DEBUG setAttribute TREE_MAX_SIZE to 1099511627776L
 AthenaPoolCnvSvc    DEBUG setAttribute DEFAULT_SPLITLEVEL to 0
 AthenaPoolCnvSvc    DEBUG setAttribute STREAM_MEMBER_WISE to 1
 AthenaPoolCnvSvc    DEBUG setAttribute DEFAULT_BUFFERSIZE to 32000
-PoolXMLFileCatalog Debug filename SimplePoolFileB.root does not exist
-XMLFileCatalog Debug lookupFilebyPFN: Empty File ID found
 Domain[ROOT_All] Info ->  Access   DbDatabase   CREATE    [ROOT_All] ????
 Domain[ROOT_All] Info                           SimplePoolFileB.root
 SimplePoolFileB.root Debug --> Access   DbContainer  CREATE    [ROOT_All] ##Shapes
-???? Debug Opened container ##Shapes of type ROOT_Tree
+##Shapes Debug Opening
+##Shapes Debug    attributes# = 1
+##Shapes Debug Opened container ##Shapes of type ROOT_Tree
 ##Shapes Debug No objects passing selection criteria... Container has 0 Entries in total.
 SimplePoolFileB.root Debug --> Access   DbContainer  CREATE    [ROOT_All] ##Links
-???? Debug Opened container ##Links of type ROOT_Tree
+##Links Debug Opening
+##Links Debug    attributes# = 1
+##Links Debug Opened container ##Links of type ROOT_Tree
 ##Links Debug No objects passing selection criteria... Container has 0 Entries in total.
 SimplePoolFileB.root Debug --> Access   DbContainer  CREATE    [ROOT_All] ##Params
-???? Debug Opened container ##Params of type ROOT_Tree
+##Params Debug Opening
+##Params Debug    attributes# = 1
+##Params Debug Opened container ##Params of type ROOT_Tree
 SimplePoolFileB.root Debug --->Adding Assoc :????/##Params [200]  (2 , ffffffff)
 SimplePoolFileB.root Debug ---->ClassID:????
 ##Params Debug No objects passing selection criteria... Container has 0 Entries in total.
-RootDatabase.setOption Debug Request TREE_AUTO_FLUSH 
-RootDatabase.setOption Debug File name SimplePoolFileB.root
-RootDatabase.setOption Debug Demand to set AUTO_FLUSH for TTree: POOLContainer with value: 0
-AthenaPoolCnvSvc    DEBUG setAttribute TREE_AUTO_FLUSH to 0 for db: SimplePoolFileB.root and cont: TTree=POOLContainer
 AthenaPoolCnvSvc    DEBUG setAttribute CONTAINER_SPLITLEVEL to 99 for db: SimplePoolFileB.root and cont: TTree=POOLContainerForm(DataHeaderForm)
 Stream2             DEBUG addItemObjects(2101,"*") called
 Stream2             DEBUG            Key:*
@@ -137,7 +133,10 @@ Stream2             DEBUG  Object/count: EventInfo_McEventInfo, 1
 StorageSvc Info Building shape according to reflection information using shape ID for:
 StorageSvc Info EventInfo_p4 [????]
 SimplePoolFileB.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_Tree] CollectionTree(EventInfo_p4/McEventInfo)
-???? Debug Opened container CollectionTree(EventInfo_p4/McEventInfo) of type ROOT_Tree
+CollectionTree(EventInfo_p4/McEventInfo) Debug Opening
+CollectionTree(EventInfo_p4/McEventInfo) Debug    attributes# = 1
+CollectionTree(EventInfo_p4/McEventInfo) Debug Branch container 'EventInfo_p4_McEventInfo'
+CollectionTree(EventInfo_p4/McEventInfo) Debug Opened container CollectionTree(EventInfo_p4/McEventInfo) of type ROOT_Tree
 SimplePoolFileB.root Debug --->Adding Assoc :????/CollectionTree(EventInfo_p4/McEventInfo) [202]  (3 , ffffffff)
 SimplePoolFileB.root Debug ---->ClassID:????
 SimplePoolFileB.root Debug --->Adding Shape[0 , ????]:  [1 Column(s)] 
@@ -146,7 +145,10 @@ SimplePoolFileB.root Debug ---->[0]:EventInfo_p4 Typ:EventInfo_p4 [21] Size:0 Of
 StorageSvc Info Building shape according to reflection information using shape ID for:
 StorageSvc Info DataHeaderForm_p5 [????]
 SimplePoolFileB.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_Tree] POOLContainerForm(DataHeaderForm)
-???? Debug Opened container POOLContainerForm(DataHeaderForm) of type ROOT_Tree
+POOLContainerForm(DataHeaderForm) Debug Opening
+POOLContainerForm(DataHeaderForm) Debug    attributes# = 1
+POOLContainerForm(DataHeaderForm) Debug Branch container 'DataHeaderForm'
+POOLContainerForm(DataHeaderForm) Debug Opened container POOLContainerForm(DataHeaderForm) of type ROOT_Tree
 SimplePoolFileB.root Debug --->Adding Assoc :????/POOLContainerForm(DataHeaderForm) [202]  (4 , ffffffff)
 SimplePoolFileB.root Debug ---->ClassID:????
 SimplePoolFileB.root Debug --->Adding Shape[1 , ????]:  [1 Column(s)] 
@@ -155,8 +157,10 @@ SimplePoolFileB.root Debug ---->[0]:DataHeaderForm_p5 Typ:DataHeaderForm_p5 [21]
 StorageSvc Info Building shape according to reflection information using shape ID for:
 StorageSvc Info DataHeader_p5 [????]
 SimplePoolFileB.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_Tree] POOLContainer(DataHeader)
-???? Debug Opened container POOLContainer(DataHeader) of type ROOT_Tree
-POOLContainer(DataHeader) Debug Setting AUTO_FLUSH for TTree: POOLContainer to value: 0
+POOLContainer(DataHeader) Debug Opening
+POOLContainer(DataHeader) Debug    attributes# = 1
+POOLContainer(DataHeader) Debug Branch container 'DataHeader'
+POOLContainer(DataHeader) Debug Opened container POOLContainer(DataHeader) of type ROOT_Tree
 SimplePoolFileB.root Debug --->Adding Assoc :????/POOLContainer(DataHeader) [202]  (5 , ffffffff)
 SimplePoolFileB.root Debug ---->ClassID:????
 SimplePoolFileB.root Debug --->Adding Shape[2 , ????]:  [1 Column(s)] 
@@ -165,7 +169,10 @@ SimplePoolFileB.root Debug ---->[0]:DataHeader_p5 Typ:DataHeader_p5 [21] Size:0
 StorageSvc Info Building shape according to reflection information using shape ID for:
 StorageSvc Info Token [????]
 SimplePoolFileB.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_Tree] POOLCollectionTree(Token)
-???? Debug Opened container POOLCollectionTree(Token) of type ROOT_Tree
+POOLCollectionTree(Token) Debug Opening
+POOLCollectionTree(Token) Debug    attributes# = 1
+POOLCollectionTree(Token) Debug Branch container 'Token'
+POOLCollectionTree(Token) Debug Opened container POOLCollectionTree(Token) of type ROOT_Tree
 SimplePoolFileB.root Debug --->Adding Assoc :????/POOLCollectionTree(Token) [202]  (6 , ffffffff)
 SimplePoolFileB.root Debug ---->ClassID:????
 SimplePoolFileB.root Debug --->Adding Shape[3 , ????]:  [1 Column(s)] 
@@ -174,25 +181,38 @@ SimplePoolFileB.root Debug ---->[0]:Token Typ:Token [18] Size:0 Offset:0 #Elemen
 StorageSvc Info Building shape according to reflection information using shape ID for:
 StorageSvc Info unsigned int [????]
 SimplePoolFileB.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_Tree] POOLCollectionTree(RunNumber)
-???? Debug Opened container POOLCollectionTree(RunNumber) of type ROOT_Tree
+POOLCollectionTree(RunNumber) Debug Opening
+POOLCollectionTree(RunNumber) Debug    attributes# = 1
+POOLCollectionTree(RunNumber) Debug Branch container 'RunNumber'
+POOLCollectionTree(RunNumber) Debug Opened container POOLCollectionTree(RunNumber) of type ROOT_Tree
 SimplePoolFileB.root Debug --->Adding Assoc :????/POOLCollectionTree(RunNumber) [202]  (7 , ffffffff)
 SimplePoolFileB.root Debug ---->ClassID:????
 SimplePoolFileB.root Debug --->Adding Shape[4 , ????]:  [1 Column(s)] 
 SimplePoolFileB.root Debug ---->Class:unsigned int
 SimplePoolFileB.root Debug ---->[0]:unsigned int Typ:unsigned int [3] Size:0 Offset:0 #Elements:1
 SimplePoolFileB.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_Tree] POOLCollectionTree(EventNumber)
-???? Debug Opened container POOLCollectionTree(EventNumber) of type ROOT_Tree
+POOLCollectionTree(EventNumber) Debug Opening
+POOLCollectionTree(EventNumber) Debug    attributes# = 1
+POOLCollectionTree(EventNumber) Debug Branch container 'EventNumber'
+POOLCollectionTree(EventNumber) Debug Opened container POOLCollectionTree(EventNumber) of type ROOT_Tree
 SimplePoolFileB.root Debug --->Adding Assoc :????/POOLCollectionTree(EventNumber) [202]  (8 , ffffffff)
 SimplePoolFileB.root Debug ---->ClassID:????
 SimplePoolFileB.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_Tree] POOLCollectionTree(MagicNumber)
-???? Debug Opened container POOLCollectionTree(MagicNumber) of type ROOT_Tree
+POOLCollectionTree(MagicNumber) Debug Opening
+POOLCollectionTree(MagicNumber) Debug    attributes# = 1
+POOLCollectionTree(MagicNumber) Debug Branch container 'MagicNumber'
+POOLCollectionTree(MagicNumber) Debug Opened container POOLCollectionTree(MagicNumber) of type ROOT_Tree
 SimplePoolFileB.root Debug --->Adding Assoc :????/POOLCollectionTree(MagicNumber) [202]  (9 , ffffffff)
 SimplePoolFileB.root Debug ---->ClassID:????
 SimplePoolFileB.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_Tree] POOLContainer(basic/DataHeader)
-???? Debug Opened container POOLContainer(basic/DataHeader) of type ROOT_Tree
+POOLContainer(basic/DataHeader) Debug Opening
+POOLContainer(basic/DataHeader) Debug    attributes# = 1
+POOLContainer(basic/DataHeader) Debug Branch container 'basic_DataHeader'
+POOLContainer(basic/DataHeader) Debug Opened container POOLContainer(basic/DataHeader) of type ROOT_Tree
 SimplePoolFileB.root Debug --->Adding Assoc :????/POOLContainer(basic/DataHeader) [202]  (a , ffffffff)
 SimplePoolFileB.root Debug ---->ClassID:????
-AthenaPoolCnvSvc    DEBUG setAttribute BRANCH_BASKET_SIZE to 256000 for db: SimplePoolFileB.root and cont: POOLContainerForm(DataHeaderForm)
+AthenaPoolCnvSvc    DEBUG setAttribute BRANCH_BASKET_SIZE to 256000 for db: SimplePoolFileB.root and cont: POOLContainer(DataHeader)
+AthenaPoolCnvSvc    DEBUG setAttribute BRANCH_BASKET_SIZE to 1024000 for db: SimplePoolFileB.root and cont: POOLContainerForm(DataHeaderForm)
 RegStream2          DEBUG RegistrationStream execute
 RegStream2          DEBUG getRefs: Not DataHeader, skipping (40774349,"RunEventTag") 
 RegStream2          DEBUG  get ref for (222376821,"Stream2") 
@@ -399,17 +419,6 @@ Stream2             DEBUG            Key:*
 Stream2             DEBUG  Added object 2101,"McEventInfo"
 Stream2             DEBUG  Collected objects:
 Stream2             DEBUG  Object/count: EventInfo_McEventInfo, 11
-CollectionTree(EventInfo_p4/McEventInfo) Debug endTransaction: go to finish
-POOLCollectionTree(EventNumber) Debug endTransaction: go to finish
-POOLCollectionTree(MagicNumber) Debug endTransaction: go to finish
-POOLCollectionTree(RunNumber) Debug endTransaction: go to finish
-POOLCollectionTree(Token) Debug endTransaction: go to finish
-POOLContainer(DataHeader) Debug endTransaction: go to finish
-POOLContainer(basic/DataHeader) Debug endTransaction: go to finish
-POOLContainerForm(DataHeaderForm) Debug endTransaction: go to finish
-##Params Debug endTransaction:  tree AutoSave
-##Shapes Debug endTransaction:  tree AutoSave
-##Links Debug endTransaction:  tree AutoSave
 RegStream2          DEBUG RegistrationStream execute
 RegStream2          DEBUG getRefs: Not DataHeader, skipping (40774349,"RunEventTag") 
 RegStream2          DEBUG  get ref for (222376821,"Stream2") 
@@ -608,27 +617,34 @@ Stream2             DEBUG            Key:*
 StorageSvc Info Building shape according to reflection information using shape ID for:
 StorageSvc Info EventStreamInfo_p3 [????]
 SimplePoolFileB.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_Tree] MetaData(EventStreamInfo_p3/Stream2)
-???? Debug Opened container MetaData(EventStreamInfo_p3/Stream2) of type ROOT_Tree
+MetaData(EventStreamInfo_p3/Stream2) Debug Opening
+MetaData(EventStreamInfo_p3/Stream2) Debug    attributes# = 1
+MetaData(EventStreamInfo_p3/Stream2) Debug Branch container 'EventStreamInfo_p3_Stream2'
+MetaData(EventStreamInfo_p3/Stream2) Debug Opened container MetaData(EventStreamInfo_p3/Stream2) of type ROOT_Tree
 SimplePoolFileB.root Debug --->Adding Assoc :????/MetaData(EventStreamInfo_p3/Stream2) [202]  (b , ffffffff)
 SimplePoolFileB.root Debug ---->ClassID:????
 SimplePoolFileB.root Debug --->Adding Shape[5 , ????]:  [1 Column(s)] 
 SimplePoolFileB.root Debug ---->Class:EventStreamInfo_p3
 SimplePoolFileB.root Debug ---->[0]:EventStreamInfo_p3 Typ:EventStreamInfo_p3 [21] Size:0 Offset:0 #Elements:1
 SimplePoolFileB.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_Tree] MetaDataHdrForm(DataHeaderForm)
-???? Debug Opened container MetaDataHdrForm(DataHeaderForm) of type ROOT_Tree
+MetaDataHdrForm(DataHeaderForm) Debug Opening
+MetaDataHdrForm(DataHeaderForm) Debug    attributes# = 1
+MetaDataHdrForm(DataHeaderForm) Debug Branch container 'DataHeaderForm'
+MetaDataHdrForm(DataHeaderForm) Debug Opened container MetaDataHdrForm(DataHeaderForm) of type ROOT_Tree
 SimplePoolFileB.root Debug --->Adding Assoc :????/MetaDataHdrForm(DataHeaderForm) [202]  (c , ffffffff)
 SimplePoolFileB.root Debug ---->ClassID:????
 SimplePoolFileB.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_Tree] MetaDataHdr(DataHeader)
-???? Debug Opened container MetaDataHdr(DataHeader) of type ROOT_Tree
+MetaDataHdr(DataHeader) Debug Opening
+MetaDataHdr(DataHeader) Debug    attributes# = 1
+MetaDataHdr(DataHeader) Debug Branch container 'DataHeader'
+MetaDataHdr(DataHeader) Debug Opened container MetaDataHdr(DataHeader) of type ROOT_Tree
 SimplePoolFileB.root Debug --->Adding Assoc :????/MetaDataHdr(DataHeader) [202]  (d , ffffffff)
 SimplePoolFileB.root Debug ---->ClassID:????
 Stream2              INFO Records written: 21
 Stream2             DEBUG Leaving handle
 RegStream2          DEBUG handle() incident type: MetaDataStop
 RegStream2.TagTool   INFO Collection Events output: 20
-XMLFileCatalog Info Updating the catalog
 POOLCollFactory Debug Registering existing collection PFN=RootCollection||PFN:SimplePoolCollection2.root, LFN=
-XMLFileCatalog Info Updating the catalog
 RootCollection::Metadata Debug  Using char buffer of size: 4100
 RootCollection::Metadata Debug  readKeys: found 3 metadata keys
 POOLCollFactory Debug  ---  found catalog guid=????
@@ -637,39 +653,7 @@ RootCollection Debug Commit: saving collection TTree to file: SimplePoolCollecti
 RootCollection Debug    bytes written to TTree ????
 RootCollection::MetadataCommit Debug Bytes written to the Metadata TTree ????
 RootCollection Info Closing open collection 'SimplePoolCollection2.root'
-CollectionTree(EventInfo_p4/McEventInfo) Debug endTransaction: go to finish
-MetaData(EventStreamInfo_p3/Stream2) Debug endTransaction: go to finish
-MetaDataHdr(DataHeader) Debug endTransaction: go to finish
-MetaDataHdrForm(DataHeaderForm) Debug endTransaction: go to finish
-POOLCollectionTree(EventNumber) Debug endTransaction: go to finish
-POOLCollectionTree(MagicNumber) Debug endTransaction: go to finish
-POOLCollectionTree(RunNumber) Debug endTransaction: go to finish
-POOLCollectionTree(Token) Debug endTransaction: go to finish
-POOLContainer(DataHeader) Debug endTransaction: go to finish
-POOLContainer(basic/DataHeader) Debug endTransaction: go to finish
-POOLContainerForm(DataHeaderForm) Debug endTransaction: go to finish
-##Params Debug endTransaction:  tree AutoSave
-##Shapes Debug endTransaction:  tree AutoSave
-##Links Debug endTransaction:  tree AutoSave
-SimplePoolFileB.root Info Database being retired...
-SimplePoolFileB.root Debug --> Deaccess DbContainer  CREATE    [ROOT_All] ##Links
-SimplePoolFileB.root Debug --> Deaccess DbContainer  CREATE    [ROOT_All] ##Shapes
-SimplePoolFileB.root Debug --> Deaccess DbContainer  CREATE    [ROOT_All] ##Params
-RootDatabase.close Debug I/O READ  Bytes: 0
-RootDatabase.close Debug I/O WRITE Bytes: ????
-RootDatabase.close Debug I/O OTHER Bytes: 0
 Domain[ROOT_All] Info ->  Deaccess DbDatabase   CREATE    [ROOT_All] ????
-SimplePoolFileB.root Debug --> Deaccess DbContainer  CREA/UPDA [ROOT_Tree] CollectionTree(EventInfo_p4/McEventInfo)
-SimplePoolFileB.root Debug --> Deaccess DbContainer  CREA/UPDA [ROOT_Tree] MetaData(EventStreamInfo_p3/Stream2)
-SimplePoolFileB.root Debug --> Deaccess DbContainer  CREA/UPDA [ROOT_Tree] MetaDataHdr(DataHeader)
-SimplePoolFileB.root Debug --> Deaccess DbContainer  CREA/UPDA [ROOT_Tree] MetaDataHdrForm(DataHeaderForm)
-SimplePoolFileB.root Debug --> Deaccess DbContainer  CREA/UPDA [ROOT_Tree] POOLCollectionTree(EventNumber)
-SimplePoolFileB.root Debug --> Deaccess DbContainer  CREA/UPDA [ROOT_Tree] POOLCollectionTree(MagicNumber)
-SimplePoolFileB.root Debug --> Deaccess DbContainer  CREA/UPDA [ROOT_Tree] POOLCollectionTree(RunNumber)
-SimplePoolFileB.root Debug --> Deaccess DbContainer  CREA/UPDA [ROOT_Tree] POOLCollectionTree(Token)
-SimplePoolFileB.root Debug --> Deaccess DbContainer  CREA/UPDA [ROOT_Tree] POOLContainer(DataHeader)
-SimplePoolFileB.root Debug --> Deaccess DbContainer  CREA/UPDA [ROOT_Tree] POOLContainer(basic/DataHeader)
-SimplePoolFileB.root Debug --> Deaccess DbContainer  CREA/UPDA [ROOT_Tree] POOLContainerForm(DataHeaderForm)
 Domain[ROOT_All] Info >   Deaccess DbDomain     UPDATE    [ROOT_All] 
 ApplicationMgr       INFO Application Manager Stopped successfully
 WriteData            INFO in finalize()
@@ -684,11 +668,6 @@ AthRegSeq            INFO Finalizing AthRegSeq...
 AthMasterSeq         INFO Finalizing AthMasterSeq...
 EventSelector        INFO finalize
 AthenaPoolCnvSvc    DEBUG releasing all workers
-XMLFileCatalog Info Updating the catalog
-PoolXMLFileCatalog Info XercesC termination number 0
-PoolSvc              INFO I/O finalization...
-DecisionSvc          INFO -- OUTPUT STREAM EVENT OVERLAP SUMMARY --
-DecisionSvc          INFO List of registered 2 Streams: RegStream2 Stream2 
 DecisionSvc          INFO Finalized successfully.
 AthDictLoaderSvc     INFO in finalize...
 ToolSvc              INFO Removing all tools created by ToolSvc
diff --git a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_Concat.ref b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_Concat.ref
index 8776c8010f1622fea447e8b4037de09c22d8e568..db64430966ce6daabd55fe1397a471b17c25062d 100755
--- a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_Concat.ref
+++ b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_Concat.ref
@@ -1,5 +1,4 @@
-Warning in <TInterpreter::ReadRootmapFile>: class  Event found in libG4AtlasControlDict.so  is already in libtest_GPyTestDict.so 
-Warning in <TInterpreter::ReadRootmapFile>: class  UCharDbArray found in libStorageSvcDict.so  is already in libRootCnvDict.so 
+Warning in <TInterpreter::ReadRootmapFile>: class  xAOD::TReturnCode found in libxAODRootAccessDict.so  is already in libxAODRootAccess.so 
 Preloading tcmalloc_minimal.so
 Athena               INFO including file "AthenaCommon/Preparation.py"
 Athena               INFO including file "AthenaCommon/Bootstrap.py"
@@ -7,7 +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_ConcatJobOptions.py"
-Py:ConfigurableDb    INFO No duplicates have been found: that's good !
+Py:ConfigurableDb WARNING Found 3 duplicates among the 51 genConfDb files :
+Py:ConfigurableDb WARNING --------------------------------------------------
+Py:ConfigurableDb WARNING   -<component name>: <module> - [ <duplicates> ]
+Py:ConfigurableDb WARNING --------------------------------------------------
+Py:ConfigurableDb WARNING   -TrigEFRazorAllTE: TrigHLTJetHypo.TrigHLTJetHypoConf - ['TrigJetHypo.TrigJetHypoConf', 'TrigJetHypo.TrigJetHypoConf']
+Py:ConfigurableDb WARNING   -TrigL2JetHypo: TrigJetHypo.TrigJetHypoConf - ['TrigCaloHypo.TrigCaloHypoConf']
+Py:ConfigurableDb WARNING   -TrigEFDPhiMetJetAllTE: TrigHLTJetHypo.TrigHLTJetHypoConf - ['TrigJetHypo.TrigJetHypoConf', 'TrigJetHypo.TrigJetHypoConf']
+Py:ConfigurableDb WARNING Fix your cmt/requirements file !!
 Athena               INFO including file "AthenaCommon/runbatch.py"
 ApplicationMgr       INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0
 ApplicationMgr    SUCCESS 
@@ -21,7 +27,6 @@ AthDictLoaderSvc     INFO in initialize...
 AthDictLoaderSvc     INFO acquired Dso-registry
 ChronoStatSvc        INFO  Number of skipped events for MemStat-1
 CoreDumpSvc          INFO install f-a-t-a-l handler... (flag = -1)
-AthenaEventLoopMgr   INFO Initializing AthenaEventLoopMgr - package version AthenaServices-??-??-??
 AthMasterSeq         INFO Member list: AthSequencer/AthAlgSeq, AthSequencer/AthOutSeq, AthSequencer/AthRegSeq
 AthAlgSeq            INFO Member list: AthPoolEx::WriteData/WriteData, AthenaOutputStream/Stream1, MakeInputDataHeader, AthPoolEx::ReWriteData/ReWriteData, AthenaOutputStream/Stream2
 WriteData           DEBUG Property update for OutputLevel : new value = 2
@@ -36,29 +41,21 @@ Stream1             DEBUG Found IDecisionSvc.
 DecisionSvc          INFO Inserting stream: Stream1 with no Algs
 Stream1             DEBUG End initialize 
 Stream1             DEBUG In initialize
-MetaDataSvc          INFO Initializing MetaDataSvc - package version AthenaServices-??-??-??
 AthenaPoolCnvSvc    DEBUG Property update for OutputLevel : new value = 2
-AthenaPoolCnvSvc     INFO Initializing AthenaPoolCnvSvc - package version AthenaPoolCnvSvc-??-??-??
 PoolSvc             DEBUG Property update for OutputLevel : new value = 2
-PoolSvc              INFO Initializing PoolSvc - package version PoolSvc-??-??-??
 PoolSvc              INFO io_register[PoolSvc](xmlcatalog_file:Catalog1.xml) [ok]
 PoolSvc              INFO Set connectionsvc retry/timeout/IDLE timeout to  'ConnectionRetrialPeriod':300/ 'ConnectionRetrialTimeOut':3600/ 'ConnectionTimeOut':5 seconds with connection cleanup disabled
 PoolSvc              INFO Frontier compression level set to 5
 PoolSvc              INFO Successfully setup replica sorting algorithm
 PoolSvc             DEBUG OutputLevel is 2
-PoolSvc              INFO Re-initializing PoolSvc
+PoolSvc              INFO Setting up APR FileCatalog and Streams
 PoolSvc              INFO POOL WriteCatalog is xmlcatalog_file:Catalog1.xml
-XMLFileCatalog Info Connecting to the catalog
-PoolXMLFileCatalog Info Xerces-c initialization Number 0
-ProxyProviderSvc     INFO Initializing ProxyProviderSvc - package version SGComps-??-??-??
+PoolSvc              INFO Re-initializing PoolSvc
 Stream1             DEBUG Found StoreGateSvc store.
 Stream1             DEBUG Found MetaDataStore store.
-OutputStreamSeq...   INFO Initializing OutputStreamSequencerSvc - package version AthenaServices-??-??-??
 Stream1.Stream1...  DEBUG Property update for OutputLevel : new value = 2
-Stream1.Stream1...   INFO Initializing Stream1.Stream1Tool - package version OutputStreamAthenaPool-??-??-??
 Stream1.Stream1...   INFO streamProperty ProcessingTag = Stream1
 Stream1.Stream1...  DEBUG Property update for OutputLevel : new value = 2
-Stream1.Stream1...   INFO Initializing Stream1.Stream1_MakeEventStreamInfo - package version OutputStreamAthenaPool-??-??-??
 Stream1              INFO Found HelperTools = PrivateToolHandleArray(['MakeEventStreamInfo/Stream1_MakeEventStreamInfo'])
 Stream1              INFO Data output: SimplePoolFile1.root
 Stream1              INFO I/O reinitialization...
@@ -69,7 +66,6 @@ Stream1             DEBUG Registering all Tools in ToolHandleArray HelperTools
 Stream1             DEBUG Adding private ToolHandle tool Stream1.Stream1_MakeEventStreamInfo (MakeEventStreamInfo) from ToolHandleArray HelperTools
 Stream1             DEBUG Adding private ToolHandle tool Stream1.Stream1Tool (AthenaPoolOutputStreamTool)
 Stream1             DEBUG Data Deps for Stream1
-MakeInputDataHe...   INFO Initializing MakeInputDataHeader - package version OutputStreamAthenaPool-??-??-??
 MakeInputDataHe...   INFO Name of Stream to be made Input: Stream1
 ReWriteData         DEBUG Property update for OutputLevel : new value = 2
 ReWriteData          INFO in initialize()
@@ -86,10 +82,8 @@ Stream2             DEBUG In initialize
 Stream2             DEBUG Found StoreGateSvc store.
 Stream2             DEBUG Found MetaDataStore store.
 Stream2.Stream2...  DEBUG Property update for OutputLevel : new value = 2
-Stream2.Stream2...   INFO Initializing Stream2.Stream2Tool - package version OutputStreamAthenaPool-??-??-??
 Stream2.Stream2...   INFO streamProperty ProcessingTag = Stream2
 Stream2.Stream2...  DEBUG Property update for OutputLevel : new value = 2
-Stream2.Stream2...   INFO Initializing Stream2.Stream2_MakeEventStreamInfo - package version OutputStreamAthenaPool-??-??-??
 Stream2              INFO Found HelperTools = PrivateToolHandleArray(['MakeEventStreamInfo/Stream2_MakeEventStreamInfo'])
 Stream2              INFO Data output: SimplePoolFile3.root
 Stream2              INFO I/O reinitialization...
@@ -103,7 +97,6 @@ Stream2             DEBUG Data Deps for Stream2
 HistogramPersis...WARNING Histograms saving not required.
 EventSelector        INFO  Enter McEventSelector Initialization 
 AthenaEventLoopMgr   INFO Setup EventSelector service EventSelector
-ActiveStoreSvc       INFO Initializing ActiveStoreSvc - package version StoreGate-??-??-??
 ApplicationMgr       INFO Application Manager Initialized successfully
 ApplicationMgr       INFO Application Manager Started successfully
 EventPersistenc...   INFO Added successfully Conversion service:McCnvSvc
@@ -121,20 +114,22 @@ AthenaPoolCnvSvc    DEBUG setAttribute DEFAULT_BUFFERSIZE to 32000
 Domain[ROOT_All] Info ->  Access   DbDatabase   CREATE    [ROOT_All] ????
 Domain[ROOT_All] Info                           SimplePoolFile1.root
 SimplePoolFile1.root Debug --> Access   DbContainer  CREATE    [ROOT_All] ##Shapes
-???? Debug Opened container ##Shapes of type ROOT_Tree
+##Shapes Debug Opening
+##Shapes Debug    attributes# = 1
+##Shapes Debug Opened container ##Shapes of type ROOT_Tree
 ##Shapes Debug No objects passing selection criteria... Container has 0 Entries in total.
 SimplePoolFile1.root Debug --> Access   DbContainer  CREATE    [ROOT_All] ##Links
-???? Debug Opened container ##Links of type ROOT_Tree
+##Links Debug Opening
+##Links Debug    attributes# = 1
+##Links Debug Opened container ##Links of type ROOT_Tree
 ##Links Debug No objects passing selection criteria... Container has 0 Entries in total.
 SimplePoolFile1.root Debug --> Access   DbContainer  CREATE    [ROOT_All] ##Params
-???? Debug Opened container ##Params of type ROOT_Tree
+##Params Debug Opening
+##Params Debug    attributes# = 1
+##Params Debug Opened container ##Params of type ROOT_Tree
 SimplePoolFile1.root Debug --->Adding Assoc :????/##Params [200]  (2 , ffffffff)
 SimplePoolFile1.root Debug ---->ClassID:????
 ##Params Debug No objects passing selection criteria... Container has 0 Entries in total.
-RootDatabase.setOption Debug Request TREE_AUTO_FLUSH 
-RootDatabase.setOption Debug File name SimplePoolFile1.root
-RootDatabase.setOption Debug Demand to set AUTO_FLUSH for TTree: POOLContainer with value: 0
-AthenaPoolCnvSvc    DEBUG setAttribute TREE_AUTO_FLUSH to 0 for db: SimplePoolFile1.root and cont: TTree=POOLContainer
 AthenaPoolCnvSvc    DEBUG setAttribute CONTAINER_SPLITLEVEL to 99 for db: SimplePoolFile1.root and cont: TTree=POOLContainerForm(DataHeaderForm)
 Stream1             DEBUG addItemObjects(2101,"*") called
 Stream1             DEBUG            Key:*
@@ -148,7 +143,10 @@ Stream1             DEBUG  Object/count: ExampleHitContainer_MyHits, 1
 StorageSvc Info Building shape according to reflection information using shape ID for:
 StorageSvc Info EventInfo_p4 [????]
 SimplePoolFile1.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_Tree] CollectionTree(EventInfo_p4/McEventInfo)
-???? Debug Opened container CollectionTree(EventInfo_p4/McEventInfo) of type ROOT_Tree
+CollectionTree(EventInfo_p4/McEventInfo) Debug Opening
+CollectionTree(EventInfo_p4/McEventInfo) Debug    attributes# = 1
+CollectionTree(EventInfo_p4/McEventInfo) Debug Branch container 'EventInfo_p4_McEventInfo'
+CollectionTree(EventInfo_p4/McEventInfo) Debug Opened container CollectionTree(EventInfo_p4/McEventInfo) of type ROOT_Tree
 SimplePoolFile1.root Debug --->Adding Assoc :????/CollectionTree(EventInfo_p4/McEventInfo) [202]  (3 , ffffffff)
 SimplePoolFile1.root Debug ---->ClassID:????
 SimplePoolFile1.root Debug --->Adding Shape[0 , ????]:  [1 Column(s)] 
@@ -157,7 +155,10 @@ SimplePoolFile1.root Debug ---->[0]:EventInfo_p4 Typ:EventInfo_p4 [21] Size:0 Of
 StorageSvc Info Building shape according to reflection information using shape ID for:
 StorageSvc Info ExampleHitContainer_p1 [????]
 SimplePoolFile1.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_Tree] CollectionTree(ExampleHitContainer_p1/MyHits)
-???? Debug Opened container CollectionTree(ExampleHitContainer_p1/MyHits) of type ROOT_Tree
+CollectionTree(ExampleHitContainer_p1/MyHits) Debug Opening
+CollectionTree(ExampleHitContainer_p1/MyHits) Debug    attributes# = 1
+CollectionTree(ExampleHitContainer_p1/MyHits) Debug Branch container 'ExampleHitContainer_p1_MyHits'
+CollectionTree(ExampleHitContainer_p1/MyHits) Debug Opened container CollectionTree(ExampleHitContainer_p1/MyHits) of type ROOT_Tree
 SimplePoolFile1.root Debug --->Adding Assoc :????/CollectionTree(ExampleHitContainer_p1/MyHits) [202]  (4 , ffffffff)
 SimplePoolFile1.root Debug ---->ClassID:????
 SimplePoolFile1.root Debug --->Adding Shape[1 , ????]:  [1 Column(s)] 
@@ -166,7 +167,10 @@ SimplePoolFile1.root Debug ---->[0]:ExampleHitContainer_p1 Typ:ExampleHitContain
 StorageSvc Info Building shape according to reflection information using shape ID for:
 StorageSvc Info DataHeaderForm_p5 [????]
 SimplePoolFile1.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_Tree] POOLContainerForm(DataHeaderForm)
-???? Debug Opened container POOLContainerForm(DataHeaderForm) of type ROOT_Tree
+POOLContainerForm(DataHeaderForm) Debug Opening
+POOLContainerForm(DataHeaderForm) Debug    attributes# = 1
+POOLContainerForm(DataHeaderForm) Debug Branch container 'DataHeaderForm'
+POOLContainerForm(DataHeaderForm) Debug Opened container POOLContainerForm(DataHeaderForm) of type ROOT_Tree
 SimplePoolFile1.root Debug --->Adding Assoc :????/POOLContainerForm(DataHeaderForm) [202]  (5 , ffffffff)
 SimplePoolFile1.root Debug ---->ClassID:????
 SimplePoolFile1.root Debug --->Adding Shape[2 , ????]:  [1 Column(s)] 
@@ -175,18 +179,24 @@ SimplePoolFile1.root Debug ---->[0]:DataHeaderForm_p5 Typ:DataHeaderForm_p5 [21]
 StorageSvc Info Building shape according to reflection information using shape ID for:
 StorageSvc Info DataHeader_p5 [????]
 SimplePoolFile1.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_Tree] POOLContainer(DataHeader)
-???? Debug Opened container POOLContainer(DataHeader) of type ROOT_Tree
-POOLContainer(DataHeader) Debug Setting AUTO_FLUSH for TTree: POOLContainer to value: 0
+POOLContainer(DataHeader) Debug Opening
+POOLContainer(DataHeader) Debug    attributes# = 1
+POOLContainer(DataHeader) Debug Branch container 'DataHeader'
+POOLContainer(DataHeader) Debug Opened container POOLContainer(DataHeader) of type ROOT_Tree
 SimplePoolFile1.root Debug --->Adding Assoc :????/POOLContainer(DataHeader) [202]  (6 , ffffffff)
 SimplePoolFile1.root Debug ---->ClassID:????
 SimplePoolFile1.root Debug --->Adding Shape[3 , ????]:  [1 Column(s)] 
 SimplePoolFile1.root Debug ---->Class:DataHeader_p5
 SimplePoolFile1.root Debug ---->[0]:DataHeader_p5 Typ:DataHeader_p5 [21] Size:0 Offset:0 #Elements:1
 SimplePoolFile1.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_Tree] POOLContainer(basic/DataHeader)
-???? Debug Opened container POOLContainer(basic/DataHeader) of type ROOT_Tree
+POOLContainer(basic/DataHeader) Debug Opening
+POOLContainer(basic/DataHeader) Debug    attributes# = 1
+POOLContainer(basic/DataHeader) Debug Branch container 'basic_DataHeader'
+POOLContainer(basic/DataHeader) Debug Opened container POOLContainer(basic/DataHeader) of type ROOT_Tree
 SimplePoolFile1.root Debug --->Adding Assoc :????/POOLContainer(basic/DataHeader) [202]  (7 , ffffffff)
 SimplePoolFile1.root Debug ---->ClassID:????
-AthenaPoolCnvSvc    DEBUG setAttribute BRANCH_BASKET_SIZE to 256000 for db: SimplePoolFile1.root and cont: POOLContainerForm(DataHeaderForm)
+AthenaPoolCnvSvc    DEBUG setAttribute BRANCH_BASKET_SIZE to 256000 for db: SimplePoolFile1.root and cont: POOLContainer(DataHeader)
+AthenaPoolCnvSvc    DEBUG setAttribute BRANCH_BASKET_SIZE to 1024000 for db: SimplePoolFile1.root and cont: POOLContainerForm(DataHeaderForm)
 ReWriteData         DEBUG in execute()
 ReWriteData          INFO Hit x = 1.2345 y = 97.655 z = 226.672 detector = DummyHitDetector
 ReWriteData          INFO Hit x = 4.4445 y = 91.9761 z = 94.7318 detector = DummyHitDetector
@@ -216,20 +226,22 @@ ReWriteData          INFO registered all data
 Domain[ROOT_All] Info ->  Access   DbDatabase   CREATE    [ROOT_All] ????
 Domain[ROOT_All] Info                           SimplePoolFile3.root
 SimplePoolFile3.root Debug --> Access   DbContainer  CREATE    [ROOT_All] ##Shapes
-???? Debug Opened container ##Shapes of type ROOT_Tree
+##Shapes Debug Opening
+##Shapes Debug    attributes# = 1
+##Shapes Debug Opened container ##Shapes of type ROOT_Tree
 ##Shapes Debug No objects passing selection criteria... Container has 0 Entries in total.
 SimplePoolFile3.root Debug --> Access   DbContainer  CREATE    [ROOT_All] ##Links
-???? Debug Opened container ##Links of type ROOT_Tree
+##Links Debug Opening
+##Links Debug    attributes# = 1
+##Links Debug Opened container ##Links of type ROOT_Tree
 ##Links Debug No objects passing selection criteria... Container has 0 Entries in total.
 SimplePoolFile3.root Debug --> Access   DbContainer  CREATE    [ROOT_All] ##Params
-???? Debug Opened container ##Params of type ROOT_Tree
+##Params Debug Opening
+##Params Debug    attributes# = 1
+##Params Debug Opened container ##Params of type ROOT_Tree
 SimplePoolFile3.root Debug --->Adding Assoc :????/##Params [200]  (2 , ffffffff)
 SimplePoolFile3.root Debug ---->ClassID:????
 ##Params Debug No objects passing selection criteria... Container has 0 Entries in total.
-RootDatabase.setOption Debug Request TREE_AUTO_FLUSH 
-RootDatabase.setOption Debug File name SimplePoolFile3.root
-RootDatabase.setOption Debug Demand to set AUTO_FLUSH for TTree: POOLContainer with value: 0
-AthenaPoolCnvSvc    DEBUG setAttribute TREE_AUTO_FLUSH to 0 for db: SimplePoolFile3.root and cont: TTree=POOLContainer
 AthenaPoolCnvSvc    DEBUG setAttribute CONTAINER_SPLITLEVEL to 99 for db: SimplePoolFile3.root and cont: TTree=POOLContainerForm(DataHeaderForm)
 Stream2             DEBUG addItemObjects(2101,"*") called
 Stream2             DEBUG            Key:*
@@ -241,7 +253,10 @@ Stream2             DEBUG  Collected objects:
 Stream2             DEBUG  Object/count: EventInfo_McEventInfo, 1
 Stream2             DEBUG  Object/count: ExampleTrackContainer_MyTracks, 1
 SimplePoolFile3.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_Tree] CollectionTree(EventInfo_p4/McEventInfo)
-???? Debug Opened container CollectionTree(EventInfo_p4/McEventInfo) of type ROOT_Tree
+CollectionTree(EventInfo_p4/McEventInfo) Debug Opening
+CollectionTree(EventInfo_p4/McEventInfo) Debug    attributes# = 1
+CollectionTree(EventInfo_p4/McEventInfo) Debug Branch container 'EventInfo_p4_McEventInfo'
+CollectionTree(EventInfo_p4/McEventInfo) Debug Opened container CollectionTree(EventInfo_p4/McEventInfo) of type ROOT_Tree
 SimplePoolFile3.root Debug --->Adding Assoc :????/CollectionTree(EventInfo_p4/McEventInfo) [202]  (3 , ffffffff)
 SimplePoolFile3.root Debug ---->ClassID:????
 SimplePoolFile3.root Debug --->Adding Shape[0 , ????]:  [1 Column(s)] 
@@ -250,32 +265,44 @@ SimplePoolFile3.root Debug ---->[0]:EventInfo_p4 Typ:EventInfo_p4 [21] Size:0 Of
 StorageSvc Info Building shape according to reflection information using shape ID for:
 StorageSvc Info ExampleTrackContainer_p1 [????]
 SimplePoolFile3.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_Tree] CollectionTree(ExampleTrackContainer_p1/MyTracks)
-???? Debug Opened container CollectionTree(ExampleTrackContainer_p1/MyTracks) of type ROOT_Tree
+CollectionTree(ExampleTrackContainer_p1/MyTracks) Debug Opening
+CollectionTree(ExampleTrackContainer_p1/MyTracks) Debug    attributes# = 1
+CollectionTree(ExampleTrackContainer_p1/MyTracks) Debug Branch container 'ExampleTrackContainer_p1_MyTracks'
+CollectionTree(ExampleTrackContainer_p1/MyTracks) Debug Opened container CollectionTree(ExampleTrackContainer_p1/MyTracks) of type ROOT_Tree
 SimplePoolFile3.root Debug --->Adding Assoc :????/CollectionTree(ExampleTrackContainer_p1/MyTracks) [202]  (4 , ffffffff)
 SimplePoolFile3.root Debug ---->ClassID:????
 SimplePoolFile3.root Debug --->Adding Shape[1 , ????]:  [1 Column(s)] 
 SimplePoolFile3.root Debug ---->Class:ExampleTrackContainer_p1
 SimplePoolFile3.root Debug ---->[0]:ExampleTrackContainer_p1 Typ:ExampleTrackContainer_p1 [21] Size:0 Offset:0 #Elements:1
 SimplePoolFile3.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_Tree] POOLContainerForm(DataHeaderForm)
-???? Debug Opened container POOLContainerForm(DataHeaderForm) of type ROOT_Tree
+POOLContainerForm(DataHeaderForm) Debug Opening
+POOLContainerForm(DataHeaderForm) Debug    attributes# = 1
+POOLContainerForm(DataHeaderForm) Debug Branch container 'DataHeaderForm'
+POOLContainerForm(DataHeaderForm) Debug Opened container POOLContainerForm(DataHeaderForm) of type ROOT_Tree
 SimplePoolFile3.root Debug --->Adding Assoc :????/POOLContainerForm(DataHeaderForm) [202]  (5 , ffffffff)
 SimplePoolFile3.root Debug ---->ClassID:????
 SimplePoolFile3.root Debug --->Adding Shape[2 , ????]:  [1 Column(s)] 
 SimplePoolFile3.root Debug ---->Class:DataHeaderForm_p5
 SimplePoolFile3.root Debug ---->[0]:DataHeaderForm_p5 Typ:DataHeaderForm_p5 [21] Size:0 Offset:0 #Elements:1
 SimplePoolFile3.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_Tree] POOLContainer(DataHeader)
-???? Debug Opened container POOLContainer(DataHeader) of type ROOT_Tree
-POOLContainer(DataHeader) Debug Setting AUTO_FLUSH for TTree: POOLContainer to value: 0
+POOLContainer(DataHeader) Debug Opening
+POOLContainer(DataHeader) Debug    attributes# = 1
+POOLContainer(DataHeader) Debug Branch container 'DataHeader'
+POOLContainer(DataHeader) Debug Opened container POOLContainer(DataHeader) of type ROOT_Tree
 SimplePoolFile3.root Debug --->Adding Assoc :????/POOLContainer(DataHeader) [202]  (6 , ffffffff)
 SimplePoolFile3.root Debug ---->ClassID:????
 SimplePoolFile3.root Debug --->Adding Shape[3 , ????]:  [1 Column(s)] 
 SimplePoolFile3.root Debug ---->Class:DataHeader_p5
 SimplePoolFile3.root Debug ---->[0]:DataHeader_p5 Typ:DataHeader_p5 [21] Size:0 Offset:0 #Elements:1
 SimplePoolFile3.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_Tree] POOLContainer(basic/DataHeader)
-???? Debug Opened container POOLContainer(basic/DataHeader) of type ROOT_Tree
+POOLContainer(basic/DataHeader) Debug Opening
+POOLContainer(basic/DataHeader) Debug    attributes# = 1
+POOLContainer(basic/DataHeader) Debug Branch container 'basic_DataHeader'
+POOLContainer(basic/DataHeader) Debug Opened container POOLContainer(basic/DataHeader) of type ROOT_Tree
 SimplePoolFile3.root Debug --->Adding Assoc :????/POOLContainer(basic/DataHeader) [202]  (7 , ffffffff)
 SimplePoolFile3.root Debug ---->ClassID:????
-AthenaPoolCnvSvc    DEBUG setAttribute BRANCH_BASKET_SIZE to 256000 for db: SimplePoolFile3.root and cont: POOLContainerForm(DataHeaderForm)
+AthenaPoolCnvSvc    DEBUG setAttribute BRANCH_BASKET_SIZE to 256000 for db: SimplePoolFile3.root and cont: POOLContainer(DataHeader)
+AthenaPoolCnvSvc    DEBUG setAttribute BRANCH_BASKET_SIZE to 1024000 for db: SimplePoolFile3.root and cont: POOLContainerForm(DataHeaderForm)
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #0, run #1 1 events processed so far  <<<===
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #1, run #1 1 events processed so far  <<<===
 WriteData           DEBUG in execute()
@@ -486,22 +513,6 @@ Stream1             DEBUG  Added object 9102,"MyHits"
 Stream1             DEBUG  Collected objects:
 Stream1             DEBUG  Object/count: EventInfo_McEventInfo, 6
 Stream1             DEBUG  Object/count: ExampleHitContainer_MyHits, 6
-CollectionTree(EventInfo_p4/McEventInfo) Debug endTransaction: go to finish
-CollectionTree(ExampleHitContainer_p1/MyHits) Debug endTransaction: go to finish
-POOLContainer(DataHeader) Debug endTransaction: go to finish
-POOLContainer(basic/DataHeader) Debug endTransaction: go to finish
-POOLContainerForm(DataHeaderForm) Debug endTransaction: go to finish
-##Params Debug endTransaction:  tree AutoSave
-##Shapes Debug endTransaction:  tree AutoSave
-##Links Debug endTransaction:  tree AutoSave
-CollectionTree(EventInfo_p4/McEventInfo) Debug endTransaction: go to finish
-CollectionTree(ExampleTrackContainer_p1/MyTracks) Debug endTransaction: go to finish
-POOLContainer(DataHeader) Debug endTransaction: go to finish
-POOLContainer(basic/DataHeader) Debug endTransaction: go to finish
-POOLContainerForm(DataHeaderForm) Debug endTransaction: go to finish
-##Params Debug endTransaction:  tree AutoSave
-##Shapes Debug endTransaction:  tree AutoSave
-##Links Debug endTransaction:  tree AutoSave
 ReWriteData         DEBUG in execute()
 ReWriteData          INFO Hit x = 501.235 y = 97.655 z = -273.328 detector = DummyHitDetector
 ReWriteData          INFO Hit x = 504.445 y = 91.9761 z = -405.268 detector = DummyHitDetector
@@ -782,22 +793,6 @@ Stream2             DEBUG  Added object 9103,"MyTracks"
 Stream2             DEBUG  Collected objects:
 Stream2             DEBUG  Object/count: EventInfo_McEventInfo, 11
 Stream2             DEBUG  Object/count: ExampleTrackContainer_MyTracks, 11
-CollectionTree(EventInfo_p4/McEventInfo) Debug endTransaction: go to finish
-CollectionTree(ExampleHitContainer_p1/MyHits) Debug endTransaction: go to finish
-POOLContainer(DataHeader) Debug endTransaction: go to finish
-POOLContainer(basic/DataHeader) Debug endTransaction: go to finish
-POOLContainerForm(DataHeaderForm) Debug endTransaction: go to finish
-##Params Debug endTransaction:  tree AutoSave
-##Shapes Debug endTransaction:  tree AutoSave
-##Links Debug endTransaction:  tree AutoSave
-CollectionTree(EventInfo_p4/McEventInfo) Debug endTransaction: go to finish
-CollectionTree(ExampleTrackContainer_p1/MyTracks) Debug endTransaction: go to finish
-POOLContainer(DataHeader) Debug endTransaction: go to finish
-POOLContainer(basic/DataHeader) Debug endTransaction: go to finish
-POOLContainerForm(DataHeaderForm) Debug endTransaction: go to finish
-##Params Debug endTransaction:  tree AutoSave
-##Shapes Debug endTransaction:  tree AutoSave
-##Links Debug endTransaction:  tree AutoSave
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #10, run #1 11 events processed so far  <<<===
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #11, run #1 11 events processed so far  <<<===
 WriteData           DEBUG in execute()
@@ -1058,22 +1053,6 @@ Stream1             DEBUG  Added object 9102,"MyHits"
 Stream1             DEBUG  Collected objects:
 Stream1             DEBUG  Object/count: EventInfo_McEventInfo, 17
 Stream1             DEBUG  Object/count: ExampleHitContainer_MyHits, 17
-CollectionTree(EventInfo_p4/McEventInfo) Debug endTransaction: go to finish
-CollectionTree(ExampleHitContainer_p1/MyHits) Debug endTransaction: go to finish
-POOLContainer(DataHeader) Debug endTransaction: go to finish
-POOLContainer(basic/DataHeader) Debug endTransaction: go to finish
-POOLContainerForm(DataHeaderForm) Debug endTransaction: go to finish
-##Params Debug endTransaction:  tree AutoSave
-##Shapes Debug endTransaction:  tree AutoSave
-##Links Debug endTransaction:  tree AutoSave
-CollectionTree(EventInfo_p4/McEventInfo) Debug endTransaction: go to finish
-CollectionTree(ExampleTrackContainer_p1/MyTracks) Debug endTransaction: go to finish
-POOLContainer(DataHeader) Debug endTransaction: go to finish
-POOLContainer(basic/DataHeader) Debug endTransaction: go to finish
-POOLContainerForm(DataHeaderForm) Debug endTransaction: go to finish
-##Params Debug endTransaction:  tree AutoSave
-##Shapes Debug endTransaction:  tree AutoSave
-##Links Debug endTransaction:  tree AutoSave
 ReWriteData         DEBUG in execute()
 ReWriteData          INFO Hit x = 1601.23 y = 97.655 z = -1373.33 detector = DummyHitDetector
 ReWriteData          INFO Hit x = 1604.44 y = 91.9761 z = -1505.27 detector = DummyHitDetector
@@ -1266,18 +1245,27 @@ Stream1             DEBUG            Key:*
 StorageSvc Info Building shape according to reflection information using shape ID for:
 StorageSvc Info EventStreamInfo_p3 [????]
 SimplePoolFile1.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_Tree] MetaData(EventStreamInfo_p3/Stream1)
-???? Debug Opened container MetaData(EventStreamInfo_p3/Stream1) of type ROOT_Tree
+MetaData(EventStreamInfo_p3/Stream1) Debug Opening
+MetaData(EventStreamInfo_p3/Stream1) Debug    attributes# = 1
+MetaData(EventStreamInfo_p3/Stream1) Debug Branch container 'EventStreamInfo_p3_Stream1'
+MetaData(EventStreamInfo_p3/Stream1) Debug Opened container MetaData(EventStreamInfo_p3/Stream1) of type ROOT_Tree
 SimplePoolFile1.root Debug --->Adding Assoc :????/MetaData(EventStreamInfo_p3/Stream1) [202]  (8 , ffffffff)
 SimplePoolFile1.root Debug ---->ClassID:????
 SimplePoolFile1.root Debug --->Adding Shape[4 , ????]:  [1 Column(s)] 
 SimplePoolFile1.root Debug ---->Class:EventStreamInfo_p3
 SimplePoolFile1.root Debug ---->[0]:EventStreamInfo_p3 Typ:EventStreamInfo_p3 [21] Size:0 Offset:0 #Elements:1
 SimplePoolFile1.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_Tree] MetaDataHdrForm(DataHeaderForm)
-???? Debug Opened container MetaDataHdrForm(DataHeaderForm) of type ROOT_Tree
+MetaDataHdrForm(DataHeaderForm) Debug Opening
+MetaDataHdrForm(DataHeaderForm) Debug    attributes# = 1
+MetaDataHdrForm(DataHeaderForm) Debug Branch container 'DataHeaderForm'
+MetaDataHdrForm(DataHeaderForm) Debug Opened container MetaDataHdrForm(DataHeaderForm) of type ROOT_Tree
 SimplePoolFile1.root Debug --->Adding Assoc :????/MetaDataHdrForm(DataHeaderForm) [202]  (9 , ffffffff)
 SimplePoolFile1.root Debug ---->ClassID:????
 SimplePoolFile1.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_Tree] MetaDataHdr(DataHeader)
-???? Debug Opened container MetaDataHdr(DataHeader) of type ROOT_Tree
+MetaDataHdr(DataHeader) Debug Opening
+MetaDataHdr(DataHeader) Debug    attributes# = 1
+MetaDataHdr(DataHeader) Debug Branch container 'DataHeader'
+MetaDataHdr(DataHeader) Debug Opened container MetaDataHdr(DataHeader) of type ROOT_Tree
 SimplePoolFile1.root Debug --->Adding Assoc :????/MetaDataHdr(DataHeader) [202]  (a , ffffffff)
 SimplePoolFile1.root Debug ---->ClassID:????
 Stream1              INFO Records written: 21
@@ -1289,76 +1277,33 @@ Stream2             DEBUG  Added object 167728019,"Stream2"
 Stream2             DEBUG addItemObjects(1316383046,"*") called
 Stream2             DEBUG            Key:*
 SimplePoolFile3.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_Tree] MetaData(EventStreamInfo_p3/Stream2)
-???? Debug Opened container MetaData(EventStreamInfo_p3/Stream2) of type ROOT_Tree
+MetaData(EventStreamInfo_p3/Stream2) Debug Opening
+MetaData(EventStreamInfo_p3/Stream2) Debug    attributes# = 1
+MetaData(EventStreamInfo_p3/Stream2) Debug Branch container 'EventStreamInfo_p3_Stream2'
+MetaData(EventStreamInfo_p3/Stream2) Debug Opened container MetaData(EventStreamInfo_p3/Stream2) of type ROOT_Tree
 SimplePoolFile3.root Debug --->Adding Assoc :????/MetaData(EventStreamInfo_p3/Stream2) [202]  (8 , ffffffff)
 SimplePoolFile3.root Debug ---->ClassID:????
 SimplePoolFile3.root Debug --->Adding Shape[4 , ????]:  [1 Column(s)] 
 SimplePoolFile3.root Debug ---->Class:EventStreamInfo_p3
 SimplePoolFile3.root Debug ---->[0]:EventStreamInfo_p3 Typ:EventStreamInfo_p3 [21] Size:0 Offset:0 #Elements:1
 SimplePoolFile3.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_Tree] MetaDataHdrForm(DataHeaderForm)
-???? Debug Opened container MetaDataHdrForm(DataHeaderForm) of type ROOT_Tree
+MetaDataHdrForm(DataHeaderForm) Debug Opening
+MetaDataHdrForm(DataHeaderForm) Debug    attributes# = 1
+MetaDataHdrForm(DataHeaderForm) Debug Branch container 'DataHeaderForm'
+MetaDataHdrForm(DataHeaderForm) Debug Opened container MetaDataHdrForm(DataHeaderForm) of type ROOT_Tree
 SimplePoolFile3.root Debug --->Adding Assoc :????/MetaDataHdrForm(DataHeaderForm) [202]  (9 , ffffffff)
 SimplePoolFile3.root Debug ---->ClassID:????
 SimplePoolFile3.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_Tree] MetaDataHdr(DataHeader)
-???? Debug Opened container MetaDataHdr(DataHeader) of type ROOT_Tree
+MetaDataHdr(DataHeader) Debug Opening
+MetaDataHdr(DataHeader) Debug    attributes# = 1
+MetaDataHdr(DataHeader) Debug Branch container 'DataHeader'
+MetaDataHdr(DataHeader) Debug Opened container MetaDataHdr(DataHeader) of type ROOT_Tree
 SimplePoolFile3.root Debug --->Adding Assoc :????/MetaDataHdr(DataHeader) [202]  (a , ffffffff)
 SimplePoolFile3.root Debug ---->ClassID:????
 Stream2              INFO Records written: 21
 Stream2             DEBUG Leaving handle
-CollectionTree(EventInfo_p4/McEventInfo) Debug endTransaction: go to finish
-CollectionTree(ExampleHitContainer_p1/MyHits) Debug endTransaction: go to finish
-MetaData(EventStreamInfo_p3/Stream1) Debug endTransaction: go to finish
-MetaDataHdr(DataHeader) Debug endTransaction: go to finish
-MetaDataHdrForm(DataHeaderForm) Debug endTransaction: go to finish
-POOLContainer(DataHeader) Debug endTransaction: go to finish
-POOLContainer(basic/DataHeader) Debug endTransaction: go to finish
-POOLContainerForm(DataHeaderForm) Debug endTransaction: go to finish
-##Params Debug endTransaction:  tree AutoSave
-##Shapes Debug endTransaction:  tree AutoSave
-##Links Debug endTransaction:  tree AutoSave
-CollectionTree(EventInfo_p4/McEventInfo) Debug endTransaction: go to finish
-CollectionTree(ExampleTrackContainer_p1/MyTracks) Debug endTransaction: go to finish
-MetaData(EventStreamInfo_p3/Stream2) Debug endTransaction: go to finish
-MetaDataHdr(DataHeader) Debug endTransaction: go to finish
-MetaDataHdrForm(DataHeaderForm) Debug endTransaction: go to finish
-POOLContainer(DataHeader) Debug endTransaction: go to finish
-POOLContainer(basic/DataHeader) Debug endTransaction: go to finish
-POOLContainerForm(DataHeaderForm) Debug endTransaction: go to finish
-##Params Debug endTransaction:  tree AutoSave
-##Shapes Debug endTransaction:  tree AutoSave
-##Links Debug endTransaction:  tree AutoSave
-SimplePoolFile1.root Info Database being retired...
-SimplePoolFile1.root Debug --> Deaccess DbContainer  CREATE    [ROOT_All] ##Links
-SimplePoolFile1.root Debug --> Deaccess DbContainer  CREATE    [ROOT_All] ##Shapes
-SimplePoolFile1.root Debug --> Deaccess DbContainer  CREATE    [ROOT_All] ##Params
-RootDatabase.close Debug I/O READ  Bytes: 0
-RootDatabase.close Debug I/O WRITE Bytes: ????
-RootDatabase.close Debug I/O OTHER Bytes: 0
 Domain[ROOT_All] Info ->  Deaccess DbDatabase   CREATE    [ROOT_All] ????
-SimplePoolFile1.root Debug --> Deaccess DbContainer  CREA/UPDA [ROOT_Tree] CollectionTree(EventInfo_p4/McEventInfo)
-SimplePoolFile1.root Debug --> Deaccess DbContainer  CREA/UPDA [ROOT_Tree] CollectionTree(ExampleHitContainer_p1/MyHits)
-SimplePoolFile1.root Debug --> Deaccess DbContainer  CREA/UPDA [ROOT_Tree] MetaData(EventStreamInfo_p3/Stream1)
-SimplePoolFile1.root Debug --> Deaccess DbContainer  CREA/UPDA [ROOT_Tree] MetaDataHdr(DataHeader)
-SimplePoolFile1.root Debug --> Deaccess DbContainer  CREA/UPDA [ROOT_Tree] MetaDataHdrForm(DataHeaderForm)
-SimplePoolFile1.root Debug --> Deaccess DbContainer  CREA/UPDA [ROOT_Tree] POOLContainer(DataHeader)
-SimplePoolFile1.root Debug --> Deaccess DbContainer  CREA/UPDA [ROOT_Tree] POOLContainer(basic/DataHeader)
-SimplePoolFile1.root Debug --> Deaccess DbContainer  CREA/UPDA [ROOT_Tree] POOLContainerForm(DataHeaderForm)
-SimplePoolFile3.root Info Database being retired...
-SimplePoolFile3.root Debug --> Deaccess DbContainer  CREATE    [ROOT_All] ##Links
-SimplePoolFile3.root Debug --> Deaccess DbContainer  CREATE    [ROOT_All] ##Shapes
-SimplePoolFile3.root Debug --> Deaccess DbContainer  CREATE    [ROOT_All] ##Params
-RootDatabase.close Debug I/O READ  Bytes: 0
-RootDatabase.close Debug I/O WRITE Bytes: ????
-RootDatabase.close Debug I/O OTHER Bytes: 0
 Domain[ROOT_All] Info ->  Deaccess DbDatabase   CREATE    [ROOT_All] ????
-SimplePoolFile3.root Debug --> Deaccess DbContainer  CREA/UPDA [ROOT_Tree] CollectionTree(EventInfo_p4/McEventInfo)
-SimplePoolFile3.root Debug --> Deaccess DbContainer  CREA/UPDA [ROOT_Tree] CollectionTree(ExampleTrackContainer_p1/MyTracks)
-SimplePoolFile3.root Debug --> Deaccess DbContainer  CREA/UPDA [ROOT_Tree] MetaData(EventStreamInfo_p3/Stream2)
-SimplePoolFile3.root Debug --> Deaccess DbContainer  CREA/UPDA [ROOT_Tree] MetaDataHdr(DataHeader)
-SimplePoolFile3.root Debug --> Deaccess DbContainer  CREA/UPDA [ROOT_Tree] MetaDataHdrForm(DataHeaderForm)
-SimplePoolFile3.root Debug --> Deaccess DbContainer  CREA/UPDA [ROOT_Tree] POOLContainer(DataHeader)
-SimplePoolFile3.root Debug --> Deaccess DbContainer  CREA/UPDA [ROOT_Tree] POOLContainer(basic/DataHeader)
-SimplePoolFile3.root Debug --> Deaccess DbContainer  CREA/UPDA [ROOT_Tree] POOLContainerForm(DataHeaderForm)
 Domain[ROOT_All] Info >   Deaccess DbDomain     UPDATE    [ROOT_All] 
 ApplicationMgr       INFO Application Manager Stopped successfully
 WriteData            INFO in finalize()
@@ -1375,11 +1320,6 @@ AthRegSeq            INFO Finalizing AthRegSeq...
 AthMasterSeq         INFO Finalizing AthMasterSeq...
 EventSelector        INFO finalize
 AthenaPoolCnvSvc    DEBUG releasing all workers
-XMLFileCatalog Debug There were no updates in the catalog
-PoolXMLFileCatalog Info XercesC termination number 0
-PoolSvc              INFO I/O finalization...
-DecisionSvc          INFO -- OUTPUT STREAM EVENT OVERLAP SUMMARY --
-DecisionSvc          INFO List of registered 2 Streams: Stream1 Stream2 
 DecisionSvc          INFO Finalized successfully.
 AthDictLoaderSvc     INFO in finalize...
 ToolSvc              INFO Removing all tools created by ToolSvc
diff --git a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_Copy.ref b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_Copy.ref
index 1d90537c0c5cdf7a4aa9ed1bd7da39d46efb59af..4d94fc31fbb0bddae77aae34e0a891cc4ab46b25 100644
--- a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_Copy.ref
+++ b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_Copy.ref
@@ -1,5 +1,4 @@
-Warning in <TInterpreter::ReadRootmapFile>: class  Event found in libG4AtlasControlDict.so  is already in libtest_GPyTestDict.so 
-Warning in <TInterpreter::ReadRootmapFile>: class  UCharDbArray found in libStorageSvcDict.so  is already in libRootCnvDict.so 
+Warning in <TInterpreter::ReadRootmapFile>: class  xAOD::TReturnCode found in libxAODRootAccessDict.so  is already in libxAODRootAccess.so 
 Preloading tcmalloc_minimal.so
 Athena               INFO including file "AthenaCommon/Preparation.py"
 Athena               INFO including file "AthenaCommon/Bootstrap.py"
@@ -7,7 +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_CopyJobOptions.py"
-Py:ConfigurableDb    INFO No duplicates have been found: that's good !
+Py:ConfigurableDb WARNING Found 3 duplicates among the 49 genConfDb files :
+Py:ConfigurableDb WARNING --------------------------------------------------
+Py:ConfigurableDb WARNING   -<component name>: <module> - [ <duplicates> ]
+Py:ConfigurableDb WARNING --------------------------------------------------
+Py:ConfigurableDb WARNING   -TrigEFRazorAllTE: TrigHLTJetHypo.TrigHLTJetHypoConf - ['TrigJetHypo.TrigJetHypoConf', 'TrigJetHypo.TrigJetHypoConf']
+Py:ConfigurableDb WARNING   -TrigL2JetHypo: TrigJetHypo.TrigJetHypoConf - ['TrigCaloHypo.TrigCaloHypoConf']
+Py:ConfigurableDb WARNING   -TrigEFDPhiMetJetAllTE: TrigHLTJetHypo.TrigHLTJetHypoConf - ['TrigJetHypo.TrigJetHypoConf', 'TrigJetHypo.TrigJetHypoConf']
+Py:ConfigurableDb WARNING Fix your cmt/requirements file !!
 Athena               INFO including file "AthenaCommon/runbatch.py"
 ApplicationMgr       INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0
 ApplicationMgr    SUCCESS 
@@ -21,7 +27,6 @@ AthDictLoaderSvc     INFO in initialize...
 AthDictLoaderSvc     INFO acquired Dso-registry
 ChronoStatSvc        INFO  Number of skipped events for MemStat-1
 CoreDumpSvc          INFO install f-a-t-a-l handler... (flag = -1)
-AthenaEventLoopMgr   INFO Initializing AthenaEventLoopMgr - package version AthenaServices-??-??-??
 AthMasterSeq         INFO Member list: AthSequencer/AthAlgSeq, AthSequencer/AthOutSeq, AthSequencer/AthRegSeq
 AthAlgSeq            INFO Member list: AthenaOutputStream/Stream1
 Stream1.Stream1...  DEBUG Property update for OutputLevel : new value = 2
@@ -31,22 +36,17 @@ Stream1             DEBUG Found IDecisionSvc.
 DecisionSvc          INFO Inserting stream: Stream1 with no Algs
 Stream1             DEBUG End initialize 
 Stream1             DEBUG In initialize
-MetaDataSvc          INFO Initializing MetaDataSvc - package version AthenaServices-??-??-??
 AthenaPoolCnvSvc    DEBUG Property update for OutputLevel : new value = 2
-AthenaPoolCnvSvc     INFO Initializing AthenaPoolCnvSvc - package version AthenaPoolCnvSvc-??-??-??
 PoolSvc             DEBUG Property update for OutputLevel : new value = 2
-PoolSvc              INFO Initializing PoolSvc - package version PoolSvc-??-??-??
 PoolSvc              INFO io_register[PoolSvc](xmlcatalog_file:Catalog1.xml) [ok]
 PoolSvc              INFO Set connectionsvc retry/timeout/IDLE timeout to  'ConnectionRetrialPeriod':300/ 'ConnectionRetrialTimeOut':3600/ 'ConnectionTimeOut':5 seconds with connection cleanup disabled
 PoolSvc              INFO Frontier compression level set to 5
 PoolSvc              INFO Successfully setup replica sorting algorithm
 PoolSvc             DEBUG OutputLevel is 2
-PoolSvc              INFO Re-initializing PoolSvc
+PoolSvc              INFO Setting up APR FileCatalog and Streams
 PoolSvc              INFO POOL WriteCatalog is xmlcatalog_file:Catalog1.xml
-XMLFileCatalog Info Connecting to the catalog
-PoolXMLFileCatalog Info Xerces-c initialization Number 0
+PoolSvc              INFO Re-initializing PoolSvc
 EventSelector       DEBUG Property update for OutputLevel : new value = 2
-EventSelector        INFO Initializing EventSelector - package version EventSelectorAthenaPool-??-??-??
 EventSelector        INFO reinitialization...
 EventSelector        INFO EventSelection with query 
 EventSelector       DEBUG Try item: "SimplePoolFile1.root" from the collection list.
@@ -69,7 +69,9 @@ 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.root Debug --> Access   DbContainer  READ      [ROOT_All] ##Shapes
-???? Debug Opened container ##Shapes of type ROOT_Tree
+##Shapes Debug Opening
+##Shapes Debug    attributes# = 1
+##Shapes Debug Opened container ##Shapes of type ROOT_Tree
 SimplePoolFile1.root Debug --->Reading Shape[0 , ????]: [1 Column(s)]
 SimplePoolFile1.root Debug ---->[0]:EventInfo_p4 Typ:EventInfo_p4 [21] Size:0 Offset:0 #Elements:1
 SimplePoolFile1.root Debug --->Reading Shape[1 , ????]: [1 Column(s)]
@@ -86,7 +88,9 @@ SimplePoolFile1.root Debug --->Reading Shape[6 , ????]: [1 Column(s)]
 SimplePoolFile1.root Debug ---->[0]:EventStreamInfo_p3 Typ:EventStreamInfo_p3 [21] Size:0 Offset:0 #Elements:1
 ##Shapes Debug No objects passing selection criteria... Container has 7 Entries in total.
 SimplePoolFile1.root Debug --> Access   DbContainer  READ      [ROOT_All] ##Links
-???? Debug Opened container ##Links of type ROOT_Tree
+##Links Debug Opening
+##Links Debug    attributes# = 1
+##Links Debug Opened container ##Links of type ROOT_Tree
 SimplePoolFile1.root Debug --->Reading Assoc:????/##Params [200]  (2 , ffffffff)
 SimplePoolFile1.root Debug ---->ClassID:????
 SimplePoolFile1.root Debug --->Reading Assoc:????/CollectionTree(EventInfo_p4/McEventInfo) [202]  (3 , ffffffff)
@@ -115,30 +119,50 @@ SimplePoolFile1.root Debug --->Reading Assoc:????/MetaDataHdr(DataHeader) [202]
 SimplePoolFile1.root Debug ---->ClassID:????
 ##Links Debug No objects passing selection criteria... Container has 13 Entries in total.
 SimplePoolFile1.root Debug --> Access   DbContainer  READ      [ROOT_All] ##Params
-???? Debug Opened container ##Params of type ROOT_Tree
+##Params Debug Opening
+##Params Debug    attributes# = 1
+##Params Debug Opened container ##Params of type ROOT_Tree
 SimplePoolFile1.root Debug --->Reading Param:FID=[????]
 SimplePoolFile1.root Debug --->Reading Param:PFN=[SimplePoolFile1.root]
 SimplePoolFile1.root Debug --->Reading Param:POOL_VSN=[1.1]
 SimplePoolFile1.root Debug --->Reading Param:FORMAT_VSN=[1.1]
 ##Params Debug No objects passing selection criteria... Container has 4 Entries in total.
 SimplePoolFile1.root Debug --> Access   DbContainer  READ      [ROOT_Tree] MetaDataHdr(DataHeader)
-???? Debug Opened container MetaDataHdr(DataHeader) of type ROOT_Tree
+MetaDataHdr(DataHeader) Debug Opening
+MetaDataHdr(DataHeader) Debug    attributes# = 1
+MetaDataHdr(DataHeader) Debug Branch container 'DataHeader'
+MetaDataHdr(DataHeader) Debug Opened container MetaDataHdr(DataHeader) of type ROOT_Tree
 PoolSvc              INFO Failed to find container MetaDataHdrDataHeader to get Token.
 EventPersistenc...   INFO Added successfully Conversion service:AthenaPoolCnvSvc
 SimplePoolFile1.root Debug --> Access   DbContainer  READ      [ROOT_Tree] MetaDataHdrForm(DataHeaderForm)
-???? Debug Opened container MetaDataHdrForm(DataHeaderForm) of type ROOT_Tree
+MetaDataHdrForm(DataHeaderForm) Debug Opening
+MetaDataHdrForm(DataHeaderForm) Debug    attributes# = 1
+MetaDataHdrForm(DataHeaderForm) Debug Branch container 'DataHeaderForm'
+MetaDataHdrForm(DataHeaderForm) Debug Opened container MetaDataHdrForm(DataHeaderForm) of type ROOT_Tree
+EventSelector        INFO reinitialization...
+EventSelector        INFO EventSelection with query 
+EventSelector       DEBUG Try item: "SimplePoolFile1.root" from the collection list.
+RootCollection Info Opening Collection File SimplePoolFile1.root in mode: READ
+RootCollection Debug File SimplePoolFile1.root exists.
+RootCollection Info File SimplePoolFile1.root opened
+RootCollection Debug Retrieved Collection TTree  "POOLCollectionTree" from file SimplePoolFile1.root
+RootCollectionSchemaEditor Warning  Collection Description not found in file, reconstructing 
+RootCollectionSchemaEditor Debug   + adding column: Token
+RootCollectionSchemaEditor Debug       column type: Token/C
+RootCollectionSchemaEditor Debug   + adding column: RunNumber
+RootCollectionSchemaEditor Debug       column type: unsigned int/i
+RootCollectionSchemaEditor Debug   + adding column: EventNumber
+RootCollectionSchemaEditor Debug       column type: unsigned int/i
+RootCollectionSchemaEditor Debug   + adding column: MagicNumber
+RootCollectionSchemaEditor Debug       column type: unsigned int/i
+RootCollection Info Root collection opened, size = 20
 AthenaPoolAddre...  DEBUG Property update for OutputLevel : new value = 2
-AthenaPoolAddre...   INFO Initializing AthenaPoolAddressProviderSvc - package version EventSelectorAthenaPool-??-??-??
-ProxyProviderSvc     INFO Initializing ProxyProviderSvc - package version SGComps-??-??-??
 Stream1             DEBUG Found StoreGateSvc store.
 Stream1             DEBUG Found MetaDataStore store.
-OutputStreamSeq...   INFO Initializing OutputStreamSequencerSvc - package version AthenaServices-??-??-??
 Stream1.Stream1...  DEBUG Property update for OutputLevel : new value = 2
-Stream1.Stream1...   INFO Initializing Stream1.Stream1Tool - package version OutputStreamAthenaPool-??-??-??
 Stream1.Stream1...   INFO streamProperty ProcessingTag = Stream1
 AthenaPoolAddre...  DEBUG Cannot retrieve DataHeader from DetectorStore.
 Stream1.Stream1...  DEBUG Property update for OutputLevel : new value = 2
-Stream1.Stream1...   INFO Initializing Stream1.Stream1_MakeEventStreamInfo - package version OutputStreamAthenaPool-??-??-??
 Stream1              INFO Found HelperTools = PrivateToolHandleArray(['MakeEventStreamInfo/Stream1_MakeEventStreamInfo'])
 Stream1              INFO Data output: SimplePoolReplica1.root
 Stream1              INFO I/O reinitialization...
@@ -151,7 +175,6 @@ Stream1             DEBUG Adding private ToolHandle tool Stream1.Stream1Tool (At
 Stream1             DEBUG Data Deps for Stream1
 HistogramPersis...WARNING Histograms saving not required.
 AthenaEventLoopMgr   INFO Setup EventSelector service EventSelector
-ActiveStoreSvc       INFO Initializing ActiveStoreSvc - package version StoreGate-??-??-??
 ApplicationMgr       INFO Application Manager Initialized successfully
 RootCollection Info Closing open collection 'SimplePoolFile1.root'
 EventSelector       DEBUG Try item: "SimplePoolFile1.root" from the collection list.
@@ -177,14 +200,24 @@ EventSelector       DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=P
 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.root Debug --> Access   DbContainer  READ      [ROOT_Tree] POOLContainer(DataHeader)
-???? Debug Opened container POOLContainer(DataHeader) of type ROOT_Tree
+POOLContainer(DataHeader) Debug Opening
+POOLContainer(DataHeader) Debug    attributes# = 1
+POOLContainer(DataHeader) Debug Branch container 'DataHeader'
+POOLContainer(DataHeader) Debug Opened container POOLContainer(DataHeader) of type ROOT_Tree
 SimplePoolFile1.root Debug --> Access   DbContainer  READ      [ROOT_Tree] POOLContainerForm(DataHeaderForm)
-???? Debug Opened container POOLContainerForm(DataHeaderForm) of type ROOT_Tree
+POOLContainerForm(DataHeaderForm) Debug Opening
+POOLContainerForm(DataHeaderForm) Debug    attributes# = 1
+POOLContainerForm(DataHeaderForm) Debug Branch container 'DataHeaderForm'
+POOLContainerForm(DataHeaderForm) Debug Opened container POOLContainerForm(DataHeaderForm) of type ROOT_Tree
 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
 SimplePoolFile1.root Debug --> Access   DbContainer  READ      [ROOT_Tree] CollectionTree(EventInfo_p4/McEventInfo)
-???? Debug Opened container CollectionTree(EventInfo_p4/McEventInfo) of type ROOT_Tree
+CollectionTree(EventInfo_p4/McEventInfo) Debug Opening
+CollectionTree(EventInfo_p4/McEventInfo) Debug    attributes# = 1
+CollectionTree(EventInfo_p4/McEventInfo) Debug Branch container 'EventInfo_p4_McEventInfo'
+CollectionTree(EventInfo_p4/McEventInfo) Debug Opened container CollectionTree(EventInfo_p4/McEventInfo) of type ROOT_Tree
+AthenaPoolConve...   INFO massageEventInfo: unable to get OverrideRunNumberFromInput property from EventSelector 
 AthenaEventLoopMgr   INFO   ===>>>  start of run 1    <<<===
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #0, run #1 0 events processed so far  <<<===
 DbSession Info     Open     DbSession    
@@ -193,25 +226,25 @@ AthenaPoolCnvSvc    DEBUG setAttribute TREE_MAX_SIZE to 1099511627776L
 AthenaPoolCnvSvc    DEBUG setAttribute DEFAULT_SPLITLEVEL to 0
 AthenaPoolCnvSvc    DEBUG setAttribute STREAM_MEMBER_WISE to 1
 AthenaPoolCnvSvc    DEBUG setAttribute DEFAULT_BUFFERSIZE to 32000
-PoolXMLFileCatalog Debug filename SimplePoolReplica1.root does not exist
-XMLFileCatalog Debug lookupFilebyPFN: Empty File ID found
 Domain[ROOT_All] Info ->  Access   DbDatabase   CREATE    [ROOT_All] ????
 Domain[ROOT_All] Info                           SimplePoolReplica1.root
 SimplePoolReplica1.root Debug --> Access   DbContainer  CREATE    [ROOT_All] ##Shapes
-???? Debug Opened container ##Shapes of type ROOT_Tree
+##Shapes Debug Opening
+##Shapes Debug    attributes# = 1
+##Shapes Debug Opened container ##Shapes of type ROOT_Tree
 ##Shapes Debug No objects passing selection criteria... Container has 0 Entries in total.
 SimplePoolReplica1.root Debug --> Access   DbContainer  CREATE    [ROOT_All] ##Links
-???? Debug Opened container ##Links of type ROOT_Tree
+##Links Debug Opening
+##Links Debug    attributes# = 1
+##Links Debug Opened container ##Links of type ROOT_Tree
 ##Links Debug No objects passing selection criteria... Container has 0 Entries in total.
 SimplePoolReplica1.root Debug --> Access   DbContainer  CREATE    [ROOT_All] ##Params
-???? Debug Opened container ##Params of type ROOT_Tree
+##Params Debug Opening
+##Params Debug    attributes# = 1
+##Params Debug Opened container ##Params of type ROOT_Tree
 SimplePoolReplica1.root Debug --->Adding Assoc :????/##Params [200]  (2 , ffffffff)
 SimplePoolReplica1.root Debug ---->ClassID:????
 ##Params Debug No objects passing selection criteria... Container has 0 Entries in total.
-RootDatabase.setOption Debug Request TREE_AUTO_FLUSH 
-RootDatabase.setOption Debug File name SimplePoolReplica1.root
-RootDatabase.setOption Debug Demand to set AUTO_FLUSH for TTree: POOLContainer with value: 0
-AthenaPoolCnvSvc    DEBUG setAttribute TREE_AUTO_FLUSH to 0 for db: SimplePoolReplica1.root and cont: TTree=POOLContainer
 AthenaPoolCnvSvc    DEBUG setAttribute CONTAINER_SPLITLEVEL to 99 for db: SimplePoolReplica1.root and cont: TTree=POOLContainerForm(DataHeaderForm)
 Stream1             DEBUG addItemObjects(2101,"*") called
 Stream1             DEBUG            Key:*
@@ -219,45 +252,63 @@ Stream1             DEBUG  Added object 2101,"McEventInfo"
 Stream1             DEBUG addItemObjects(9102,"MyHits") called
 Stream1             DEBUG            Key:MyHits
 SimplePoolFile1.root Debug --> Access   DbContainer  READ      [ROOT_Tree] CollectionTree(ExampleHitContainer_p1/MyHits)
-???? Debug Opened container CollectionTree(ExampleHitContainer_p1/MyHits) of type ROOT_Tree
+CollectionTree(ExampleHitContainer_p1/MyHits) Debug Opening
+CollectionTree(ExampleHitContainer_p1/MyHits) Debug    attributes# = 1
+CollectionTree(ExampleHitContainer_p1/MyHits) Debug Branch container 'ExampleHitContainer_p1_MyHits'
+CollectionTree(ExampleHitContainer_p1/MyHits) Debug Opened container CollectionTree(ExampleHitContainer_p1/MyHits) of type ROOT_Tree
 Stream1             DEBUG  Added object 9102,"MyHits"
 Stream1             DEBUG  Collected objects:
 Stream1             DEBUG  Object/count: EventInfo_McEventInfo, 1
 Stream1             DEBUG  Object/count: ExampleHitContainer_MyHits, 1
 SimplePoolReplica1.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_Tree] CollectionTree(EventInfo_p4/McEventInfo)
-???? Debug Opened container CollectionTree(EventInfo_p4/McEventInfo) of type ROOT_Tree
+CollectionTree(EventInfo_p4/McEventInfo) Debug Opening
+CollectionTree(EventInfo_p4/McEventInfo) Debug    attributes# = 1
+CollectionTree(EventInfo_p4/McEventInfo) Debug Branch container 'EventInfo_p4_McEventInfo'
+CollectionTree(EventInfo_p4/McEventInfo) Debug Opened container CollectionTree(EventInfo_p4/McEventInfo) of type ROOT_Tree
 SimplePoolReplica1.root Debug --->Adding Assoc :????/CollectionTree(EventInfo_p4/McEventInfo) [202]  (3 , ffffffff)
 SimplePoolReplica1.root Debug ---->ClassID:????
 SimplePoolReplica1.root Debug --->Adding Shape[0 , ????]:  [1 Column(s)] 
 SimplePoolReplica1.root Debug ---->Class:EventInfo_p4
 SimplePoolReplica1.root Debug ---->[0]:EventInfo_p4 Typ:EventInfo_p4 [21] Size:0 Offset:0 #Elements:1
 SimplePoolReplica1.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_Tree] CollectionTree(ExampleHitContainer_p1/MyHits)
-???? Debug Opened container CollectionTree(ExampleHitContainer_p1/MyHits) of type ROOT_Tree
+CollectionTree(ExampleHitContainer_p1/MyHits) Debug Opening
+CollectionTree(ExampleHitContainer_p1/MyHits) Debug    attributes# = 1
+CollectionTree(ExampleHitContainer_p1/MyHits) Debug Branch container 'ExampleHitContainer_p1_MyHits'
+CollectionTree(ExampleHitContainer_p1/MyHits) Debug Opened container CollectionTree(ExampleHitContainer_p1/MyHits) of type ROOT_Tree
 SimplePoolReplica1.root Debug --->Adding Assoc :????/CollectionTree(ExampleHitContainer_p1/MyHits) [202]  (4 , ffffffff)
 SimplePoolReplica1.root Debug ---->ClassID:????
 SimplePoolReplica1.root Debug --->Adding Shape[1 , ????]:  [1 Column(s)] 
 SimplePoolReplica1.root Debug ---->Class:ExampleHitContainer_p1
 SimplePoolReplica1.root Debug ---->[0]:ExampleHitContainer_p1 Typ:ExampleHitContainer_p1 [21] Size:0 Offset:0 #Elements:1
 SimplePoolReplica1.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_Tree] POOLContainerForm(DataHeaderForm)
-???? Debug Opened container POOLContainerForm(DataHeaderForm) of type ROOT_Tree
+POOLContainerForm(DataHeaderForm) Debug Opening
+POOLContainerForm(DataHeaderForm) Debug    attributes# = 1
+POOLContainerForm(DataHeaderForm) Debug Branch container 'DataHeaderForm'
+POOLContainerForm(DataHeaderForm) Debug Opened container POOLContainerForm(DataHeaderForm) of type ROOT_Tree
 SimplePoolReplica1.root Debug --->Adding Assoc :????/POOLContainerForm(DataHeaderForm) [202]  (5 , ffffffff)
 SimplePoolReplica1.root Debug ---->ClassID:????
 SimplePoolReplica1.root Debug --->Adding Shape[2 , ????]:  [1 Column(s)] 
 SimplePoolReplica1.root Debug ---->Class:DataHeaderForm_p5
 SimplePoolReplica1.root Debug ---->[0]:DataHeaderForm_p5 Typ:DataHeaderForm_p5 [21] Size:0 Offset:0 #Elements:1
 SimplePoolReplica1.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_Tree] POOLContainer(DataHeader)
-???? Debug Opened container POOLContainer(DataHeader) of type ROOT_Tree
-POOLContainer(DataHeader) Debug Setting AUTO_FLUSH for TTree: POOLContainer to value: 0
+POOLContainer(DataHeader) Debug Opening
+POOLContainer(DataHeader) Debug    attributes# = 1
+POOLContainer(DataHeader) Debug Branch container 'DataHeader'
+POOLContainer(DataHeader) Debug Opened container POOLContainer(DataHeader) of type ROOT_Tree
 SimplePoolReplica1.root Debug --->Adding Assoc :????/POOLContainer(DataHeader) [202]  (6 , ffffffff)
 SimplePoolReplica1.root Debug ---->ClassID:????
 SimplePoolReplica1.root Debug --->Adding Shape[3 , ????]:  [1 Column(s)] 
 SimplePoolReplica1.root Debug ---->Class:DataHeader_p5
 SimplePoolReplica1.root Debug ---->[0]:DataHeader_p5 Typ:DataHeader_p5 [21] Size:0 Offset:0 #Elements:1
 SimplePoolReplica1.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_Tree] POOLContainer(basic/DataHeader)
-???? Debug Opened container POOLContainer(basic/DataHeader) of type ROOT_Tree
+POOLContainer(basic/DataHeader) Debug Opening
+POOLContainer(basic/DataHeader) Debug    attributes# = 1
+POOLContainer(basic/DataHeader) Debug Branch container 'basic_DataHeader'
+POOLContainer(basic/DataHeader) Debug Opened container POOLContainer(basic/DataHeader) of type ROOT_Tree
 SimplePoolReplica1.root Debug --->Adding Assoc :????/POOLContainer(basic/DataHeader) [202]  (7 , ffffffff)
 SimplePoolReplica1.root Debug ---->ClassID:????
-AthenaPoolCnvSvc    DEBUG setAttribute BRANCH_BASKET_SIZE to 256000 for db: SimplePoolReplica1.root and cont: POOLContainerForm(DataHeaderForm)
+AthenaPoolCnvSvc    DEBUG setAttribute BRANCH_BASKET_SIZE to 256000 for db: SimplePoolReplica1.root and cont: POOLContainer(DataHeader)
+AthenaPoolCnvSvc    DEBUG setAttribute BRANCH_BASKET_SIZE to 1024000 for db: SimplePoolReplica1.root and cont: POOLContainerForm(DataHeaderForm)
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #0, run #1 1 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
 EventSelector       DEBUG AttributeList size 3
@@ -448,14 +499,6 @@ Stream1             DEBUG  Added object 9102,"MyHits"
 Stream1             DEBUG  Collected objects:
 Stream1             DEBUG  Object/count: EventInfo_McEventInfo, 11
 Stream1             DEBUG  Object/count: ExampleHitContainer_MyHits, 11
-CollectionTree(EventInfo_p4/McEventInfo) Debug endTransaction: go to finish
-CollectionTree(ExampleHitContainer_p1/MyHits) Debug endTransaction: go to finish
-POOLContainer(DataHeader) Debug endTransaction: go to finish
-POOLContainer(basic/DataHeader) Debug endTransaction: go to finish
-POOLContainerForm(DataHeaderForm) Debug endTransaction: go to finish
-##Params Debug endTransaction:  tree AutoSave
-##Shapes Debug endTransaction:  tree AutoSave
-##Links Debug endTransaction:  tree AutoSave
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #10, run #1 11 events processed so far  <<<===
 EventSelector       DEBUG Get AttributeList from the collection
 EventSelector       DEBUG AttributeList size 3
@@ -629,20 +672,7 @@ Stream1             DEBUG  Object/count: EventInfo_McEventInfo, 20
 Stream1             DEBUG  Object/count: ExampleHitContainer_MyHits, 20
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #19, run #1 20 events processed so far  <<<===
 RootCollection Info Closing open collection 'SimplePoolFile1.root'
-SimplePoolFile1.root Info Database being retired...
-SimplePoolFile1.root Debug --> Deaccess DbContainer  READ      [ROOT_All] ##Links
-SimplePoolFile1.root Debug --> Deaccess DbContainer  READ      [ROOT_All] ##Shapes
-SimplePoolFile1.root Debug --> Deaccess DbContainer  READ      [ROOT_All] ##Params
-RootDatabase.close Debug I/O READ  Bytes: ????
-RootDatabase.close Debug I/O WRITE Bytes: 0
-RootDatabase.close Debug I/O OTHER Bytes: 0
 Domain[ROOT_All] Info ->  Deaccess DbDatabase   READ      [ROOT_All] ????
-SimplePoolFile1.root Debug --> Deaccess DbContainer  READ      [ROOT_Tree] CollectionTree(EventInfo_p4/McEventInfo)
-SimplePoolFile1.root Debug --> Deaccess DbContainer  READ      [ROOT_Tree] CollectionTree(ExampleHitContainer_p1/MyHits)
-SimplePoolFile1.root Debug --> Deaccess DbContainer  READ      [ROOT_Tree] MetaDataHdr(DataHeader)
-SimplePoolFile1.root Debug --> Deaccess DbContainer  READ      [ROOT_Tree] MetaDataHdrForm(DataHeaderForm)
-SimplePoolFile1.root Debug --> Deaccess DbContainer  READ      [ROOT_Tree] POOLContainer(DataHeader)
-SimplePoolFile1.root Debug --> Deaccess DbContainer  READ      [ROOT_Tree] POOLContainerForm(DataHeaderForm)
 Domain[ROOT_All] Info >   Deaccess DbDomain     READ      [ROOT_All] 
 AthenaEventLoopMgr   INFO No more events in event selection 
 Stream1             DEBUG handle() incident type: MetaDataStop
@@ -654,49 +684,32 @@ Stream1             DEBUG            Key:*
 StorageSvc Info Building shape according to reflection information using shape ID for:
 StorageSvc Info EventStreamInfo_p3 [????]
 SimplePoolReplica1.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_Tree] MetaData(EventStreamInfo_p3/Stream1)
-???? Debug Opened container MetaData(EventStreamInfo_p3/Stream1) of type ROOT_Tree
+MetaData(EventStreamInfo_p3/Stream1) Debug Opening
+MetaData(EventStreamInfo_p3/Stream1) Debug    attributes# = 1
+MetaData(EventStreamInfo_p3/Stream1) Debug Branch container 'EventStreamInfo_p3_Stream1'
+MetaData(EventStreamInfo_p3/Stream1) Debug Opened container MetaData(EventStreamInfo_p3/Stream1) of type ROOT_Tree
 SimplePoolReplica1.root Debug --->Adding Assoc :????/MetaData(EventStreamInfo_p3/Stream1) [202]  (8 , ffffffff)
 SimplePoolReplica1.root Debug ---->ClassID:????
 SimplePoolReplica1.root Debug --->Adding Shape[4 , ????]:  [1 Column(s)] 
 SimplePoolReplica1.root Debug ---->Class:EventStreamInfo_p3
 SimplePoolReplica1.root Debug ---->[0]:EventStreamInfo_p3 Typ:EventStreamInfo_p3 [21] Size:0 Offset:0 #Elements:1
 SimplePoolReplica1.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_Tree] MetaDataHdrForm(DataHeaderForm)
-???? Debug Opened container MetaDataHdrForm(DataHeaderForm) of type ROOT_Tree
+MetaDataHdrForm(DataHeaderForm) Debug Opening
+MetaDataHdrForm(DataHeaderForm) Debug    attributes# = 1
+MetaDataHdrForm(DataHeaderForm) Debug Branch container 'DataHeaderForm'
+MetaDataHdrForm(DataHeaderForm) Debug Opened container MetaDataHdrForm(DataHeaderForm) of type ROOT_Tree
 SimplePoolReplica1.root Debug --->Adding Assoc :????/MetaDataHdrForm(DataHeaderForm) [202]  (9 , ffffffff)
 SimplePoolReplica1.root Debug ---->ClassID:????
 SimplePoolReplica1.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_Tree] MetaDataHdr(DataHeader)
-???? Debug Opened container MetaDataHdr(DataHeader) of type ROOT_Tree
+MetaDataHdr(DataHeader) Debug Opening
+MetaDataHdr(DataHeader) Debug    attributes# = 1
+MetaDataHdr(DataHeader) Debug Branch container 'DataHeader'
+MetaDataHdr(DataHeader) Debug Opened container MetaDataHdr(DataHeader) of type ROOT_Tree
 SimplePoolReplica1.root Debug --->Adding Assoc :????/MetaDataHdr(DataHeader) [202]  (a , ffffffff)
 SimplePoolReplica1.root Debug ---->ClassID:????
 Stream1              INFO Records written: 21
 Stream1             DEBUG Leaving handle
-CollectionTree(EventInfo_p4/McEventInfo) Debug endTransaction: go to finish
-CollectionTree(ExampleHitContainer_p1/MyHits) Debug endTransaction: go to finish
-MetaData(EventStreamInfo_p3/Stream1) Debug endTransaction: go to finish
-MetaDataHdr(DataHeader) Debug endTransaction: go to finish
-MetaDataHdrForm(DataHeaderForm) Debug endTransaction: go to finish
-POOLContainer(DataHeader) Debug endTransaction: go to finish
-POOLContainer(basic/DataHeader) Debug endTransaction: go to finish
-POOLContainerForm(DataHeaderForm) Debug endTransaction: go to finish
-##Params Debug endTransaction:  tree AutoSave
-##Shapes Debug endTransaction:  tree AutoSave
-##Links Debug endTransaction:  tree AutoSave
-SimplePoolReplica1.root Info Database being retired...
-SimplePoolReplica1.root Debug --> Deaccess DbContainer  CREATE    [ROOT_All] ##Links
-SimplePoolReplica1.root Debug --> Deaccess DbContainer  CREATE    [ROOT_All] ##Shapes
-SimplePoolReplica1.root Debug --> Deaccess DbContainer  CREATE    [ROOT_All] ##Params
-RootDatabase.close Debug I/O READ  Bytes: 0
-RootDatabase.close Debug I/O WRITE Bytes: ????
-RootDatabase.close Debug I/O OTHER Bytes: 0
 Domain[ROOT_All] Info ->  Deaccess DbDatabase   CREATE    [ROOT_All] ????
-SimplePoolReplica1.root Debug --> Deaccess DbContainer  CREA/UPDA [ROOT_Tree] CollectionTree(EventInfo_p4/McEventInfo)
-SimplePoolReplica1.root Debug --> Deaccess DbContainer  CREA/UPDA [ROOT_Tree] CollectionTree(ExampleHitContainer_p1/MyHits)
-SimplePoolReplica1.root Debug --> Deaccess DbContainer  CREA/UPDA [ROOT_Tree] MetaData(EventStreamInfo_p3/Stream1)
-SimplePoolReplica1.root Debug --> Deaccess DbContainer  CREA/UPDA [ROOT_Tree] MetaDataHdr(DataHeader)
-SimplePoolReplica1.root Debug --> Deaccess DbContainer  CREA/UPDA [ROOT_Tree] MetaDataHdrForm(DataHeaderForm)
-SimplePoolReplica1.root Debug --> Deaccess DbContainer  CREA/UPDA [ROOT_Tree] POOLContainer(DataHeader)
-SimplePoolReplica1.root Debug --> Deaccess DbContainer  CREA/UPDA [ROOT_Tree] POOLContainer(basic/DataHeader)
-SimplePoolReplica1.root Debug --> Deaccess DbContainer  CREA/UPDA [ROOT_Tree] POOLContainerForm(DataHeaderForm)
 Domain[ROOT_All] Info >   Deaccess DbDomain     UPDATE    [ROOT_All] 
 ApplicationMgr       INFO Application Manager Stopped successfully
 Stream1             DEBUG finalize: Optimize output
@@ -706,11 +719,6 @@ AthOutSeq            INFO Finalizing AthOutSeq...
 AthRegSeq            INFO Finalizing AthRegSeq...
 AthMasterSeq         INFO Finalizing AthMasterSeq...
 AthenaPoolCnvSvc    DEBUG releasing all workers
-XMLFileCatalog Info Updating the catalog
-PoolXMLFileCatalog Info XercesC termination number 0
-PoolSvc              INFO I/O finalization...
-DecisionSvc          INFO -- OUTPUT STREAM EVENT OVERLAP SUMMARY --
-DecisionSvc          INFO List of registered 1 Streams: Stream1 
 DecisionSvc          INFO Finalized successfully.
 AthDictLoaderSvc     INFO in finalize...
 ToolSvc              INFO Removing all tools created by ToolSvc
@@ -719,6 +727,7 @@ ToolSvc              INFO Removing all tools created by ToolSvc
 *****Chrono*****     INFO ****************************************************************************************************
 *****Chrono*****     INFO ****************************************************************************************************
 ChronoStatSvc.f...   INFO  Service finalized successfully 
+FileMgr           WARNING At finalize, the following files remained open:
 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_Filter.ref b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_Filter.ref
index 78eeaa3b5d06cb2176df6d08adaf206344594f5e..7709eec65950c45d2a67cf58bd7e1031b47a4f4f 100644
--- a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_Filter.ref
+++ b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_Filter.ref
@@ -1,5 +1,4 @@
-Warning in <TInterpreter::ReadRootmapFile>: class  Event found in libG4AtlasControlDict.so  is already in libtest_GPyTestDict.so 
-Warning in <TInterpreter::ReadRootmapFile>: class  UCharDbArray found in libStorageSvcDict.so  is already in libRootCnvDict.so 
+Warning in <TInterpreter::ReadRootmapFile>: class  xAOD::TReturnCode found in libxAODRootAccessDict.so  is already in libxAODRootAccess.so 
 Preloading tcmalloc_minimal.so
 Athena               INFO including file "AthenaCommon/Preparation.py"
 Athena               INFO including file "AthenaCommon/Bootstrap.py"
@@ -7,7 +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 No duplicates have been found: that's good !
+Py:ConfigurableDb WARNING Found 3 duplicates among the 49 genConfDb files :
+Py:ConfigurableDb WARNING --------------------------------------------------
+Py:ConfigurableDb WARNING   -<component name>: <module> - [ <duplicates> ]
+Py:ConfigurableDb WARNING --------------------------------------------------
+Py:ConfigurableDb WARNING   -TrigEFRazorAllTE: TrigHLTJetHypo.TrigHLTJetHypoConf - ['TrigJetHypo.TrigJetHypoConf', 'TrigJetHypo.TrigJetHypoConf']
+Py:ConfigurableDb WARNING   -TrigL2JetHypo: TrigJetHypo.TrigJetHypoConf - ['TrigCaloHypo.TrigCaloHypoConf']
+Py:ConfigurableDb WARNING   -TrigEFDPhiMetJetAllTE: TrigHLTJetHypo.TrigHLTJetHypoConf - ['TrigJetHypo.TrigJetHypoConf', 'TrigJetHypo.TrigJetHypoConf']
+Py:ConfigurableDb WARNING Fix your cmt/requirements file !!
 Athena               INFO including file "AthenaCommon/runbatch.py"
 ApplicationMgr       INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0
 ApplicationMgr    SUCCESS 
@@ -21,32 +27,24 @@ AthDictLoaderSvc     INFO in initialize...
 AthDictLoaderSvc     INFO acquired Dso-registry
 ChronoStatSvc        INFO  Number of skipped events for MemStat-1
 CoreDumpSvc          INFO install f-a-t-a-l handler... (flag = -1)
-AthenaEventLoopMgr   INFO Initializing AthenaEventLoopMgr - package version AthenaServices-??-??-??
 AthMasterSeq         INFO Member list: AthSequencer/AthAlgSeq, AthSequencer/AthOutSeq, AthSequencer/AthRegSeq
 AthAlgSeq            INFO Member list: AthPoolEx::ReadData/ReadData, AthenaOutputStream/Stream1, AthPoolEx::WriteTag/WriteTag, RegistrationStream/RegStream1
 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-??-??-??
-AthenaPoolCnvSvc     INFO Initializing AthenaPoolCnvSvc - package version AthenaPoolCnvSvc-??-??-??
 PoolSvc             DEBUG Property update for OutputLevel : new value = 2
-PoolSvc              INFO Initializing PoolSvc - package version PoolSvc-??-??-??
 PoolSvc              INFO Set connectionsvc retry/timeout/IDLE timeout to  'ConnectionRetrialPeriod':300/ 'ConnectionRetrialTimeOut':3600/ 'ConnectionTimeOut':5 seconds with connection cleanup disabled
 PoolSvc              INFO Frontier compression level set to 5
 PoolSvc              INFO Successfully setup replica sorting algorithm
 PoolSvc             DEBUG OutputLevel is 2
-PoolSvc              INFO Re-initializing PoolSvc
+PoolSvc              INFO Setting up APR FileCatalog and Streams
 PoolSvc             DEBUG POOL ReadCatalog is file:Catalog.xml
 PoolSvc              INFO POOL WriteCatalog is file:Catalog1.xml
-XMLFileCatalog Info Connecting to the catalog
-PoolXMLFileCatalog Info Xerces-c initialization Number 0
-XMLFileCatalog Info Connecting to the catalog
-PoolXMLFileCatalog Debug Xerces-c initialization Number 1
+PoolSvc              INFO Re-initializing PoolSvc
 EventSelector       DEBUG Property update for OutputLevel : new value = 2
-EventSelector        INFO Initializing EventSelector - package version EventSelectorAthenaPool-??-??-??
+EventSelector        INFO reinitialization...
 EventSelector.Q...  DEBUG Property update for OutputLevel : new value = 2
 EventSelector.Q...   INFO in initialize()
-EventSelector        INFO reinitialization...
 EventSelector        INFO EventSelection with query EventNumber > 5
 EventSelector       DEBUG Try item: "SimplePoolCollection3.root" from the collection list.
 RootCollection Info Opening Collection File SimplePoolCollection3.root in mode: READ
@@ -62,7 +60,9 @@ Domain[ROOT_All] Info >   Access   DbDomain     READ      [ROOT_All]
 Domain[ROOT_All] Info ->  Access   DbDatabase   READ      [ROOT_All] ????
 Domain[ROOT_All] Info                           SimplePoolFile3.root
 SimplePoolFile3.root Debug --> Access   DbContainer  READ      [ROOT_All] ##Shapes
-???? Debug Opened container ##Shapes of type ROOT_Tree
+##Shapes Debug Opening
+##Shapes Debug    attributes# = 1
+##Shapes Debug Opened container ##Shapes of type ROOT_Tree
 SimplePoolFile3.root Debug --->Reading Shape[0 , ????]: [1 Column(s)]
 SimplePoolFile3.root Debug ---->[0]:EventInfo_p4 Typ:EventInfo_p4 [21] Size:0 Offset:0 #Elements:1
 SimplePoolFile3.root Debug --->Reading Shape[1 , ????]: [1 Column(s)]
@@ -79,7 +79,9 @@ SimplePoolFile3.root Debug --->Reading Shape[6 , ????]: [1 Column(s)]
 SimplePoolFile3.root Debug ---->[0]:EventStreamInfo_p3 Typ:EventStreamInfo_p3 [21] Size:0 Offset:0 #Elements:1
 ##Shapes Debug No objects passing selection criteria... Container has 7 Entries in total.
 SimplePoolFile3.root Debug --> Access   DbContainer  READ      [ROOT_All] ##Links
-???? Debug Opened container ##Links of type ROOT_Tree
+##Links Debug Opening
+##Links Debug    attributes# = 1
+##Links Debug Opened container ##Links of type ROOT_Tree
 SimplePoolFile3.root Debug --->Reading Assoc:????/##Params [200]  (2 , ffffffff)
 SimplePoolFile3.root Debug ---->ClassID:????
 SimplePoolFile3.root Debug --->Reading Assoc:????/CollectionTree(EventInfo_p4/McEventInfo) [202]  (3 , ffffffff)
@@ -108,22 +110,37 @@ SimplePoolFile3.root Debug --->Reading Assoc:????/MetaDataHdr(DataHeader) [202]
 SimplePoolFile3.root Debug ---->ClassID:????
 ##Links Debug No objects passing selection criteria... Container has 13 Entries in total.
 SimplePoolFile3.root Debug --> Access   DbContainer  READ      [ROOT_All] ##Params
-???? Debug Opened container ##Params of type ROOT_Tree
+##Params Debug Opening
+##Params Debug    attributes# = 1
+##Params Debug Opened container ##Params of type ROOT_Tree
 SimplePoolFile3.root Debug --->Reading Param:FID=[????]
 SimplePoolFile3.root Debug --->Reading Param:PFN=[SimplePoolFile3.root]
 SimplePoolFile3.root Debug --->Reading Param:POOL_VSN=[1.1]
 SimplePoolFile3.root Debug --->Reading Param:FORMAT_VSN=[1.1]
 ##Params Debug No objects passing selection criteria... Container has 4 Entries in total.
 SimplePoolFile3.root Debug --> Access   DbContainer  READ      [ROOT_Tree] MetaDataHdr(DataHeader)
-???? Debug Opened container MetaDataHdr(DataHeader) of type ROOT_Tree
+MetaDataHdr(DataHeader) Debug Opening
+MetaDataHdr(DataHeader) Debug    attributes# = 1
+MetaDataHdr(DataHeader) Debug Branch container 'DataHeader'
+MetaDataHdr(DataHeader) Debug Opened container MetaDataHdr(DataHeader) of type ROOT_Tree
 PoolSvc              INFO Failed to find container MetaDataHdrDataHeader to get Token.
 EventPersistenc...   INFO Added successfully Conversion service:AthenaPoolCnvSvc
 SimplePoolFile3.root Debug --> Access   DbContainer  READ      [ROOT_Tree] MetaDataHdrForm(DataHeaderForm)
-???? Debug Opened container MetaDataHdrForm(DataHeaderForm) of type ROOT_Tree
+MetaDataHdrForm(DataHeaderForm) Debug Opening
+MetaDataHdrForm(DataHeaderForm) Debug    attributes# = 1
+MetaDataHdrForm(DataHeaderForm) Debug Branch container 'DataHeaderForm'
+MetaDataHdrForm(DataHeaderForm) Debug Opened container MetaDataHdrForm(DataHeaderForm) of type ROOT_Tree
 MetaDataSvc         DEBUG Loaded input meta data store proxies
+EventSelector        INFO reinitialization...
+EventSelector        INFO EventSelection with query EventNumber > 5
+EventSelector       DEBUG Try item: "SimplePoolCollection3.root" from the collection list.
+RootCollection Info Opening Collection File SimplePoolCollection3.root in mode: READ
+RootCollection Debug File SimplePoolCollection3.root exists.
+RootCollection Info File SimplePoolCollection3.root opened
+RootCollection Debug Retrieved Collection TTree  "POOLCollectionTree" from file SimplePoolCollection3.root
+RootCollection Info Root collection opened, size = 20
+EventSelector        INFO Using standard collection ref 
 AthenaPoolAddre...  DEBUG Property update for OutputLevel : new value = 2
-AthenaPoolAddre...   INFO Initializing AthenaPoolAddressProviderSvc - package version EventSelectorAthenaPool-??-??-??
-ProxyProviderSvc     INFO Initializing ProxyProviderSvc - package version SGComps-??-??-??
 ReadData            DEBUG input handles: 0
 ReadData            DEBUG output handles: 0
 ReadData            DEBUG Data Deps for ReadData
@@ -136,12 +153,9 @@ Stream1             DEBUG End initialize
 Stream1             DEBUG In initialize
 Stream1             DEBUG Found StoreGateSvc store.
 Stream1             DEBUG Found MetaDataStore store.
-OutputStreamSeq...   INFO Initializing OutputStreamSequencerSvc - package version AthenaServices-??-??-??
 Stream1.Stream1...  DEBUG Property update for OutputLevel : new value = 2
-Stream1.Stream1...   INFO Initializing Stream1.Stream1Tool - package version OutputStreamAthenaPool-??-??-??
 AthenaPoolAddre...  DEBUG Cannot retrieve DataHeader from DetectorStore.
 Stream1.Stream1...  DEBUG Property update for OutputLevel : new value = 2
-Stream1.Stream1...   INFO Initializing Stream1.Stream1_MakeEventStreamInfo - package version OutputStreamAthenaPool-??-??-??
 Stream1              INFO Found HelperTools = PrivateToolHandleArray(['MakeEventStreamInfo/Stream1_MakeEventStreamInfo'])
 Stream1              INFO Data output: SimplePoolFile5.root
 Stream1              INFO I/O reinitialization...
@@ -174,7 +188,6 @@ RegStream1          DEBUG Adding private ToolHandle tool RegStream1.TagTool (Reg
 RegStream1          DEBUG Data Deps for RegStream1
 HistogramPersis...WARNING Histograms saving not required.
 AthenaEventLoopMgr   INFO Setup EventSelector service EventSelector
-ActiveStoreSvc       INFO Initializing ActiveStoreSvc - package version StoreGate-??-??-??
 ApplicationMgr       INFO Application Manager Initialized successfully
 RootCollection Info Closing open collection 'SimplePoolCollection3.root'
 EventSelector       DEBUG Try item: "SimplePoolCollection3.root" from the collection list.
@@ -221,21 +234,34 @@ EventSelector       DEBUG record AthenaAttribute, name = Stream1_ref = [DB=????]
 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]
 SimplePoolFile3.root Debug --> Access   DbContainer  READ      [ROOT_Tree] POOLContainer(DataHeader)
-???? Debug Opened container POOLContainer(DataHeader) of type ROOT_Tree
+POOLContainer(DataHeader) Debug Opening
+POOLContainer(DataHeader) Debug    attributes# = 1
+POOLContainer(DataHeader) Debug Branch container 'DataHeader'
+POOLContainer(DataHeader) Debug Opened container POOLContainer(DataHeader) of type ROOT_Tree
 SimplePoolFile3.root Debug --> Access   DbContainer  READ      [ROOT_Tree] POOLContainerForm(DataHeaderForm)
-???? Debug Opened container POOLContainerForm(DataHeaderForm) of type ROOT_Tree
+POOLContainerForm(DataHeaderForm) Debug Opening
+POOLContainerForm(DataHeaderForm) Debug    attributes# = 1
+POOLContainerForm(DataHeaderForm) Debug Branch container 'DataHeaderForm'
+POOLContainerForm(DataHeaderForm) Debug Opened container POOLContainerForm(DataHeaderForm) of type ROOT_Tree
 AthenaPoolAddre...  DEBUG The current Event contains: 3 objects
 AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo
 AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 9103, name = MyTracks
 SimplePoolFile3.root Debug --> Access   DbContainer  READ      [ROOT_Tree] CollectionTree(EventInfo_p4/McEventInfo)
-???? Debug Opened container CollectionTree(EventInfo_p4/McEventInfo) of type ROOT_Tree
+CollectionTree(EventInfo_p4/McEventInfo) Debug Opening
+CollectionTree(EventInfo_p4/McEventInfo) Debug    attributes# = 1
+CollectionTree(EventInfo_p4/McEventInfo) Debug Branch container 'EventInfo_p4_McEventInfo'
+CollectionTree(EventInfo_p4/McEventInfo) Debug Opened container CollectionTree(EventInfo_p4/McEventInfo) of type ROOT_Tree
+AthenaPoolConve...   INFO massageEventInfo: unable to get OverrideRunNumberFromInput property from EventSelector 
 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.root Debug --> Access   DbContainer  READ      [ROOT_Tree] MetaData(EventStreamInfo_p3/Stream1)
-???? Debug Opened container MetaData(EventStreamInfo_p3/Stream1) of type ROOT_Tree
+MetaData(EventStreamInfo_p3/Stream1) Debug Opening
+MetaData(EventStreamInfo_p3/Stream1) Debug    attributes# = 1
+MetaData(EventStreamInfo_p3/Stream1) Debug Branch container 'EventStreamInfo_p3_Stream1'
+MetaData(EventStreamInfo_p3/Stream1) Debug Opened container MetaData(EventStreamInfo_p3/Stream1) of type ROOT_Tree
 ReadData             INFO EventStreamInfo: Number of events = 20
 ReadData             INFO EventStreamInfo: ItemList:
 ReadData             INFO CLID = 2101, key = McEventInfo
@@ -246,32 +272,34 @@ ReadData             INFO TagInfo:
 ReadData             INFO EventInfo event: 10 run: 1
 ReadData             INFO Get Smart data ptr 1
 SimplePoolFile3.root Debug --> Access   DbContainer  READ      [ROOT_Tree] CollectionTree(ExampleTrackContainer_p1/MyTracks)
-???? Debug Opened container CollectionTree(ExampleTrackContainer_p1/MyTracks) of type ROOT_Tree
+CollectionTree(ExampleTrackContainer_p1/MyTracks) Debug Opening
+CollectionTree(ExampleTrackContainer_p1/MyTracks) Debug    attributes# = 1
+CollectionTree(ExampleTrackContainer_p1/MyTracks) Debug Branch container 'ExampleTrackContainer_p1_MyTracks'
+CollectionTree(ExampleTrackContainer_p1/MyTracks) Debug Opened container CollectionTree(ExampleTrackContainer_p1/MyTracks) of type ROOT_Tree
 ReadData             INFO Track pt = 1018.38 eta = -11.0052 phi = 149.134 detector = Track made in: DummyHitDetector
 ReadData          WARNING Could not follow ExampleTrackContainer/MyTracks ElementLinks to ExampleHitContainer/MyHits
 ReadData             INFO Could not find ExampleHitContainer/MyHits
 DbSession Info     Open     DbSession    
 Domain[ROOT_All] Info >   Access   DbDomain     UPDATE    [ROOT_All] 
-PoolXMLFileCatalog Debug filename SimplePoolFile5.root does not exist
-XMLFileCatalog Debug lookupFilebyPFN: Empty File ID found
-PoolXMLFileCatalog Debug filename SimplePoolFile5.root does not exist
-XMLFileCatalog Debug lookupFilebyPFN: Empty File ID found
 Domain[ROOT_All] Info ->  Access   DbDatabase   CREATE    [ROOT_All] ????
 Domain[ROOT_All] Info                           SimplePoolFile5.root
 SimplePoolFile5.root Debug --> Access   DbContainer  CREATE    [ROOT_All] ##Shapes
-???? Debug Opened container ##Shapes of type ROOT_Tree
+##Shapes Debug Opening
+##Shapes Debug    attributes# = 1
+##Shapes Debug Opened container ##Shapes of type ROOT_Tree
 ##Shapes Debug No objects passing selection criteria... Container has 0 Entries in total.
 SimplePoolFile5.root Debug --> Access   DbContainer  CREATE    [ROOT_All] ##Links
-???? Debug Opened container ##Links of type ROOT_Tree
+##Links Debug Opening
+##Links Debug    attributes# = 1
+##Links Debug Opened container ##Links of type ROOT_Tree
 ##Links Debug No objects passing selection criteria... Container has 0 Entries in total.
 SimplePoolFile5.root Debug --> Access   DbContainer  CREATE    [ROOT_All] ##Params
-???? Debug Opened container ##Params of type ROOT_Tree
+##Params Debug Opening
+##Params Debug    attributes# = 1
+##Params Debug Opened container ##Params of type ROOT_Tree
 SimplePoolFile5.root Debug --->Adding Assoc :????/##Params [200]  (2 , ffffffff)
 SimplePoolFile5.root Debug ---->ClassID:????
 ##Params Debug No objects passing selection criteria... Container has 0 Entries in total.
-RootDatabase.setOption Debug Request TREE_AUTO_FLUSH 
-RootDatabase.setOption Debug File name SimplePoolFile5.root
-RootDatabase.setOption Debug Demand to set AUTO_FLUSH for TTree: POOLContainer with value: 0
 Stream1             DEBUG addItemObjects(2101,"*") called
 Stream1             DEBUG            Key:*
 Stream1             DEBUG  Added object 2101,"McEventInfo"
@@ -282,36 +310,50 @@ Stream1             DEBUG  Collected objects:
 Stream1             DEBUG  Object/count: EventInfo_McEventInfo, 1
 Stream1             DEBUG  Object/count: ExampleTrackContainer_MyTracks, 1
 SimplePoolFile5.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_Tree] CollectionTree(EventInfo_p4/McEventInfo)
-???? Debug Opened container CollectionTree(EventInfo_p4/McEventInfo) of type ROOT_Tree
+CollectionTree(EventInfo_p4/McEventInfo) Debug Opening
+CollectionTree(EventInfo_p4/McEventInfo) Debug    attributes# = 1
+CollectionTree(EventInfo_p4/McEventInfo) Debug Branch container 'EventInfo_p4_McEventInfo'
+CollectionTree(EventInfo_p4/McEventInfo) Debug Opened container CollectionTree(EventInfo_p4/McEventInfo) of type ROOT_Tree
 SimplePoolFile5.root Debug --->Adding Assoc :????/CollectionTree(EventInfo_p4/McEventInfo) [202]  (3 , ffffffff)
 SimplePoolFile5.root Debug ---->ClassID:????
 SimplePoolFile5.root Debug --->Adding Shape[0 , ????]:  [1 Column(s)] 
 SimplePoolFile5.root Debug ---->Class:EventInfo_p4
 SimplePoolFile5.root Debug ---->[0]:EventInfo_p4 Typ:EventInfo_p4 [21] Size:0 Offset:0 #Elements:1
 SimplePoolFile5.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_Tree] CollectionTree(ExampleTrackContainer_p1/MyTracks)
-???? Debug Opened container CollectionTree(ExampleTrackContainer_p1/MyTracks) of type ROOT_Tree
+CollectionTree(ExampleTrackContainer_p1/MyTracks) Debug Opening
+CollectionTree(ExampleTrackContainer_p1/MyTracks) Debug    attributes# = 1
+CollectionTree(ExampleTrackContainer_p1/MyTracks) Debug Branch container 'ExampleTrackContainer_p1_MyTracks'
+CollectionTree(ExampleTrackContainer_p1/MyTracks) Debug Opened container CollectionTree(ExampleTrackContainer_p1/MyTracks) of type ROOT_Tree
 SimplePoolFile5.root Debug --->Adding Assoc :????/CollectionTree(ExampleTrackContainer_p1/MyTracks) [202]  (4 , ffffffff)
 SimplePoolFile5.root Debug ---->ClassID:????
 SimplePoolFile5.root Debug --->Adding Shape[1 , ????]:  [1 Column(s)] 
 SimplePoolFile5.root Debug ---->Class:ExampleTrackContainer_p1
 SimplePoolFile5.root Debug ---->[0]:ExampleTrackContainer_p1 Typ:ExampleTrackContainer_p1 [21] Size:0 Offset:0 #Elements:1
 SimplePoolFile5.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_Tree] POOLContainerForm(DataHeaderForm)
-???? Debug Opened container POOLContainerForm(DataHeaderForm) of type ROOT_Tree
+POOLContainerForm(DataHeaderForm) Debug Opening
+POOLContainerForm(DataHeaderForm) Debug    attributes# = 1
+POOLContainerForm(DataHeaderForm) Debug Branch container 'DataHeaderForm'
+POOLContainerForm(DataHeaderForm) Debug Opened container POOLContainerForm(DataHeaderForm) of type ROOT_Tree
 SimplePoolFile5.root Debug --->Adding Assoc :????/POOLContainerForm(DataHeaderForm) [202]  (5 , ffffffff)
 SimplePoolFile5.root Debug ---->ClassID:????
 SimplePoolFile5.root Debug --->Adding Shape[2 , ????]:  [1 Column(s)] 
 SimplePoolFile5.root Debug ---->Class:DataHeaderForm_p5
 SimplePoolFile5.root Debug ---->[0]:DataHeaderForm_p5 Typ:DataHeaderForm_p5 [21] Size:0 Offset:0 #Elements:1
 SimplePoolFile5.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_Tree] POOLContainer(DataHeader)
-???? Debug Opened container POOLContainer(DataHeader) of type ROOT_Tree
-POOLContainer(DataHeader) Debug Setting AUTO_FLUSH for TTree: POOLContainer to value: 0
+POOLContainer(DataHeader) Debug Opening
+POOLContainer(DataHeader) Debug    attributes# = 1
+POOLContainer(DataHeader) Debug Branch container 'DataHeader'
+POOLContainer(DataHeader) Debug Opened container POOLContainer(DataHeader) of type ROOT_Tree
 SimplePoolFile5.root Debug --->Adding Assoc :????/POOLContainer(DataHeader) [202]  (6 , ffffffff)
 SimplePoolFile5.root Debug ---->ClassID:????
 SimplePoolFile5.root Debug --->Adding Shape[3 , ????]:  [1 Column(s)] 
 SimplePoolFile5.root Debug ---->Class:DataHeader_p5
 SimplePoolFile5.root Debug ---->[0]:DataHeader_p5 Typ:DataHeader_p5 [21] Size:0 Offset:0 #Elements:1
 SimplePoolFile5.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_Tree] POOLContainer(basic/DataHeader)
-???? Debug Opened container POOLContainer(basic/DataHeader) of type ROOT_Tree
+POOLContainer(basic/DataHeader) Debug Opening
+POOLContainer(basic/DataHeader) Debug    attributes# = 1
+POOLContainer(basic/DataHeader) Debug Branch container 'basic_DataHeader'
+POOLContainer(basic/DataHeader) Debug Opened container POOLContainer(basic/DataHeader) of type ROOT_Tree
 SimplePoolFile5.root Debug --->Adding Assoc :????/POOLContainer(basic/DataHeader) [202]  (7 , ffffffff)
 SimplePoolFile5.root Debug ---->ClassID:????
 WriteTag             INFO EventInfo event: 10  run: 1
@@ -780,21 +822,7 @@ AthenaEventLoopMgr   INFO   ===>>>  done processing event #19, run #1 10 events
 RootCollection Info Closing open collection 'SimplePoolCollection3.root'
 MetaDataSvc         DEBUG handle() EndInputFile for FID:????
 MetaDataSvc         DEBUG handle() EndTagFile for SimplePoolCollection3.root
-SimplePoolFile3.root Info Database being retired...
-SimplePoolFile3.root Debug --> Deaccess DbContainer  READ      [ROOT_All] ##Links
-SimplePoolFile3.root Debug --> Deaccess DbContainer  READ      [ROOT_All] ##Shapes
-SimplePoolFile3.root Debug --> Deaccess DbContainer  READ      [ROOT_All] ##Params
-RootDatabase.close Debug I/O READ  Bytes: ????
-RootDatabase.close Debug I/O WRITE Bytes: 0
-RootDatabase.close Debug I/O OTHER Bytes: 0
 Domain[ROOT_All] Info ->  Deaccess DbDatabase   READ      [ROOT_All] ????
-SimplePoolFile3.root Debug --> Deaccess DbContainer  READ      [ROOT_Tree] CollectionTree(EventInfo_p4/McEventInfo)
-SimplePoolFile3.root Debug --> Deaccess DbContainer  READ      [ROOT_Tree] CollectionTree(ExampleTrackContainer_p1/MyTracks)
-SimplePoolFile3.root Debug --> Deaccess DbContainer  READ      [ROOT_Tree] MetaData(EventStreamInfo_p3/Stream1)
-SimplePoolFile3.root Debug --> Deaccess DbContainer  READ      [ROOT_Tree] MetaDataHdr(DataHeader)
-SimplePoolFile3.root Debug --> Deaccess DbContainer  READ      [ROOT_Tree] MetaDataHdrForm(DataHeaderForm)
-SimplePoolFile3.root Debug --> Deaccess DbContainer  READ      [ROOT_Tree] POOLContainer(DataHeader)
-SimplePoolFile3.root Debug --> Deaccess DbContainer  READ      [ROOT_Tree] POOLContainerForm(DataHeaderForm)
 Domain[ROOT_All] Info >   Deaccess DbDomain     READ      [ROOT_All] 
 MetaDataSvc         DEBUG handle() LastInputFile for end
 AthenaEventLoopMgr   INFO No more events in event selection 
@@ -808,83 +836,45 @@ Stream1             DEBUG            Key:*
 StorageSvc Info Building shape according to reflection information using shape ID for:
 StorageSvc Info EventStreamInfo_p3 [????]
 SimplePoolFile5.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_Tree] MetaData(EventStreamInfo_p3/Stream1)
-???? Debug Opened container MetaData(EventStreamInfo_p3/Stream1) of type ROOT_Tree
+MetaData(EventStreamInfo_p3/Stream1) Debug Opening
+MetaData(EventStreamInfo_p3/Stream1) Debug    attributes# = 1
+MetaData(EventStreamInfo_p3/Stream1) Debug Branch container 'EventStreamInfo_p3_Stream1'
+MetaData(EventStreamInfo_p3/Stream1) Debug Opened container MetaData(EventStreamInfo_p3/Stream1) of type ROOT_Tree
 SimplePoolFile5.root Debug --->Adding Assoc :????/MetaData(EventStreamInfo_p3/Stream1) [202]  (8 , ffffffff)
 SimplePoolFile5.root Debug ---->ClassID:????
 SimplePoolFile5.root Debug --->Adding Shape[4 , ????]:  [1 Column(s)] 
 SimplePoolFile5.root Debug ---->Class:EventStreamInfo_p3
 SimplePoolFile5.root Debug ---->[0]:EventStreamInfo_p3 Typ:EventStreamInfo_p3 [21] Size:0 Offset:0 #Elements:1
 SimplePoolFile5.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_Tree] MetaDataHdrForm(DataHeaderForm)
-???? Debug Opened container MetaDataHdrForm(DataHeaderForm) of type ROOT_Tree
+MetaDataHdrForm(DataHeaderForm) Debug Opening
+MetaDataHdrForm(DataHeaderForm) Debug    attributes# = 1
+MetaDataHdrForm(DataHeaderForm) Debug Branch container 'DataHeaderForm'
+MetaDataHdrForm(DataHeaderForm) Debug Opened container MetaDataHdrForm(DataHeaderForm) of type ROOT_Tree
 SimplePoolFile5.root Debug --->Adding Assoc :????/MetaDataHdrForm(DataHeaderForm) [202]  (9 , ffffffff)
 SimplePoolFile5.root Debug ---->ClassID:????
 SimplePoolFile5.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_Tree] MetaDataHdr(DataHeader)
-???? Debug Opened container MetaDataHdr(DataHeader) of type ROOT_Tree
+MetaDataHdr(DataHeader) Debug Opening
+MetaDataHdr(DataHeader) Debug    attributes# = 1
+MetaDataHdr(DataHeader) Debug Branch container 'DataHeader'
+MetaDataHdr(DataHeader) Debug Opened container MetaDataHdr(DataHeader) of type ROOT_Tree
 SimplePoolFile5.root Debug --->Adding Assoc :????/MetaDataHdr(DataHeader) [202]  (a , ffffffff)
 SimplePoolFile5.root Debug ---->ClassID:????
-CollectionTree(EventInfo_p4/McEventInfo) Debug endTransaction: go to finish
-CollectionTree(ExampleTrackContainer_p1/MyTracks) Debug endTransaction: go to finish
-MetaData(EventStreamInfo_p3/Stream1) Debug endTransaction: go to finish
-MetaDataHdr(DataHeader) Debug endTransaction: go to finish
-MetaDataHdrForm(DataHeaderForm) Debug endTransaction: go to finish
-POOLContainer(DataHeader) Debug endTransaction: go to finish
-POOLContainer(basic/DataHeader) Debug endTransaction: go to finish
-POOLContainerForm(DataHeaderForm) Debug endTransaction: go to finish
-##Params Debug endTransaction:  tree AutoSave
-##Shapes Debug endTransaction:  tree AutoSave
-##Links Debug endTransaction:  tree AutoSave
 Stream1              INFO Records written: 11
 Stream1             DEBUG Leaving handle
 RegStream1          DEBUG handle() incident type: MetaDataStop
 RegStream1.TagTool   INFO Collection Events output: 10
-XMLFileCatalog Debug There were no updates in the catalog
-XMLFileCatalog Info Updating the catalog
 POOLCollFactory Debug Registering existing collection PFN=RootCollection||PFN:SimplePoolCollection5.root, LFN=
-PoolXMLFileCatalog Debug filename RootCollection||PFN:SimplePoolCollection5.root does not exist
-XMLFileCatalog Debug lookupFilebyPFN: Empty File ID found
-PoolXMLFileCatalog Debug filename RootCollection||PFN:SimplePoolCollection5.root does not exist
-XMLFileCatalog Debug lookupFilebyPFN: Empty File ID found
-XMLFileCatalog Debug There were no updates in the catalog
-XMLFileCatalog Info Updating the catalog
 RootCollection::Metadata Debug  Using char buffer of size: 4100
 RootCollection::Metadata Debug  readKeys: found 1 metadata keys
 POOLCollFactory Debug  ---  found catalog guid=
 POOLCollFactory Debug  ---     collection guid=????
-XMLFileCatalog Debug There were no updates in the catalog
-XMLFileCatalog Info Updating the catalog
 RootCollection Debug Commit: saving collection TTree to file: SimplePoolCollection5.root
 RootCollection Debug    bytes written to TTree ????
 RootCollection::MetadataCommit Debug Bytes written to the Metadata TTree ????
 RootCollection Info Closing open collection 'SimplePoolCollection5.root'
 RootCollection Debug Retrieved Collection TTree  "POOLCollectionTree" from file SimplePoolCollection5.root
 RootCollectionSchemaEditor Debug ###### Writing schema....
-CollectionTree(EventInfo_p4/McEventInfo) Debug endTransaction: go to finish
-CollectionTree(ExampleTrackContainer_p1/MyTracks) Debug endTransaction: go to finish
-MetaData(EventStreamInfo_p3/Stream1) Debug endTransaction: go to finish
-MetaDataHdr(DataHeader) Debug endTransaction: go to finish
-MetaDataHdrForm(DataHeaderForm) Debug endTransaction: go to finish
-POOLContainer(DataHeader) Debug endTransaction: go to finish
-POOLContainer(basic/DataHeader) Debug endTransaction: go to finish
-POOLContainerForm(DataHeaderForm) Debug endTransaction: go to finish
-##Params Debug endTransaction:  tree AutoSave
-##Shapes Debug endTransaction:  tree AutoSave
-##Links Debug endTransaction:  tree AutoSave
-SimplePoolFile5.root Info Database being retired...
-SimplePoolFile5.root Debug --> Deaccess DbContainer  CREATE    [ROOT_All] ##Links
-SimplePoolFile5.root Debug --> Deaccess DbContainer  CREATE    [ROOT_All] ##Shapes
-SimplePoolFile5.root Debug --> Deaccess DbContainer  CREATE    [ROOT_All] ##Params
-RootDatabase.close Debug I/O READ  Bytes: 0
-RootDatabase.close Debug I/O WRITE Bytes: ????
-RootDatabase.close Debug I/O OTHER Bytes: 0
 Domain[ROOT_All] Info ->  Deaccess DbDatabase   CREATE    [ROOT_All] ????
-SimplePoolFile5.root Debug --> Deaccess DbContainer  CREA/UPDA [ROOT_Tree] CollectionTree(EventInfo_p4/McEventInfo)
-SimplePoolFile5.root Debug --> Deaccess DbContainer  CREA/UPDA [ROOT_Tree] CollectionTree(ExampleTrackContainer_p1/MyTracks)
-SimplePoolFile5.root Debug --> Deaccess DbContainer  CREA/UPDA [ROOT_Tree] MetaData(EventStreamInfo_p3/Stream1)
-SimplePoolFile5.root Debug --> Deaccess DbContainer  CREA/UPDA [ROOT_Tree] MetaDataHdr(DataHeader)
-SimplePoolFile5.root Debug --> Deaccess DbContainer  CREA/UPDA [ROOT_Tree] MetaDataHdrForm(DataHeaderForm)
-SimplePoolFile5.root Debug --> Deaccess DbContainer  CREA/UPDA [ROOT_Tree] POOLContainer(DataHeader)
-SimplePoolFile5.root Debug --> Deaccess DbContainer  CREA/UPDA [ROOT_Tree] POOLContainer(basic/DataHeader)
-SimplePoolFile5.root Debug --> Deaccess DbContainer  CREA/UPDA [ROOT_Tree] POOLContainerForm(DataHeaderForm)
 Domain[ROOT_All] Info >   Deaccess DbDomain     UPDATE    [ROOT_All] 
 ApplicationMgr       INFO Application Manager Stopped successfully
 ReadData             INFO in finalize()
@@ -897,14 +887,7 @@ ReadData            DEBUG Calling destructor
 AthOutSeq            INFO Finalizing AthOutSeq...
 AthRegSeq            INFO Finalizing AthRegSeq...
 AthMasterSeq         INFO Finalizing AthMasterSeq...
-DecisionSvc          INFO -- OUTPUT STREAM EVENT OVERLAP SUMMARY --
-DecisionSvc          INFO List of registered 2 Streams: RegStream1 Stream1 
 DecisionSvc          INFO Finalized successfully.
-XMLFileCatalog Debug There were no updates in the catalog
-XMLFileCatalog Info Updating the catalog
-PoolXMLFileCatalog Debug XercesC termination number 1
-PoolXMLFileCatalog Info XercesC termination number 0
-PoolSvc              INFO I/O finalization...
 AthDictLoaderSvc     INFO in finalize...
 ToolSvc              INFO Removing all tools created by ToolSvc
 EventSelector.Q...   INFO in finalize()
@@ -913,6 +896,7 @@ EventSelector.Q...   INFO in finalize()
 *****Chrono*****     INFO ****************************************************************************************************
 *****Chrono*****     INFO ****************************************************************************************************
 ChronoStatSvc.f...   INFO  Service finalized successfully 
+FileMgr           WARNING At finalize, the following files remained open:
 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_RCond.ref b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_RCond.ref
index c383ec75d6aa3876b96fbf01ac0b7e3ee0d90427..5130f615abc5a4b53f3432e4e788d609fbadc7ac 100755
--- a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_RCond.ref
+++ b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_RCond.ref
@@ -1,5 +1,4 @@
-Warning in <TInterpreter::ReadRootmapFile>: class  Event found in libG4AtlasControlDict.so  is already in libtest_GPyTestDict.so 
-Warning in <TInterpreter::ReadRootmapFile>: class  UCharDbArray found in libStorageSvcDict.so  is already in libRootCnvDict.so 
+Warning in <TInterpreter::ReadRootmapFile>: class  xAOD::TReturnCode found in libxAODRootAccessDict.so  is already in libxAODRootAccess.so 
 Preloading tcmalloc_minimal.so
 Athena               INFO including file "AthenaCommon/Preparation.py"
 Athena               INFO including file "AthenaCommon/Bootstrap.py"
@@ -7,7 +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_RCondJobOptions.py"
-Py:ConfigurableDb    INFO No duplicates have been found: that's good !
+Py:ConfigurableDb WARNING Found 3 duplicates among the 51 genConfDb files :
+Py:ConfigurableDb WARNING --------------------------------------------------
+Py:ConfigurableDb WARNING   -<component name>: <module> - [ <duplicates> ]
+Py:ConfigurableDb WARNING --------------------------------------------------
+Py:ConfigurableDb WARNING   -TrigEFRazorAllTE: TrigHLTJetHypo.TrigHLTJetHypoConf - ['TrigJetHypo.TrigJetHypoConf', 'TrigJetHypo.TrigJetHypoConf']
+Py:ConfigurableDb WARNING   -TrigL2JetHypo: TrigJetHypo.TrigJetHypoConf - ['TrigCaloHypo.TrigCaloHypoConf']
+Py:ConfigurableDb WARNING   -TrigEFDPhiMetJetAllTE: TrigHLTJetHypo.TrigHLTJetHypoConf - ['TrigJetHypo.TrigJetHypoConf', 'TrigJetHypo.TrigJetHypoConf']
+Py:ConfigurableDb WARNING Fix your cmt/requirements file !!
 Athena               INFO including file "AthenaCommon/runbatch.py"
 ApplicationMgr       INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0
 ApplicationMgr    SUCCESS 
@@ -21,7 +27,6 @@ AthDictLoaderSvc     INFO in initialize...
 AthDictLoaderSvc     INFO acquired Dso-registry
 ChronoStatSvc        INFO  Number of skipped events for MemStat-1
 CoreDumpSvc          INFO install f-a-t-a-l handler... (flag = -1)
-AthenaEventLoopMgr   INFO Initializing AthenaEventLoopMgr - package version AthenaServices-??-??-??
 AthMasterSeq         INFO Member list: AthSequencer/AthAlgSeq, AthSequencer/AthOutSeq, AthSequencer/AthRegSeq
 AthAlgSeq            INFO Member list: AthPoolEx::ReadCond/ReadCond, AthPoolEx::ReadData/ReadData
 ReadCond            DEBUG Property update for OutputLevel : new value = 2
@@ -32,52 +37,32 @@ ReadCond            DEBUG Data Deps for ReadCond
 ReadData            DEBUG Property update for OutputLevel : new value = 2
 ReadData             INFO in initialize()
 MetaDataSvc         DEBUG Property update for OutputLevel : new value = 2
-MetaDataSvc          INFO Initializing MetaDataSvc - package version AthenaServices-??-??-??
-AthenaPoolCnvSvc     INFO Initializing AthenaPoolCnvSvc - package version AthenaPoolCnvSvc-??-??-??
 PoolSvc             DEBUG Property update for OutputLevel : new value = 2
-PoolSvc              INFO Initializing PoolSvc - package version PoolSvc-??-??-??
 PoolSvc              INFO Set connectionsvc retry/timeout/IDLE timeout to  'ConnectionRetrialPeriod':300/ 'ConnectionRetrialTimeOut':3600/ 'ConnectionTimeOut':5 seconds with connection cleanup disabled
 PoolSvc              INFO Frontier compression level set to 5
 PoolSvc              INFO Successfully setup replica sorting algorithm
 PoolSvc             DEBUG OutputLevel is 2
-PoolSvc              INFO Re-initializing PoolSvc
+PoolSvc              INFO Setting up APR FileCatalog and Streams
 PoolSvc             DEBUG POOL ReadCatalog is file:Catalog0.xml
 PoolSvc             DEBUG POOL ReadCatalog is file:Catalog1.xml
 PoolSvc              INFO POOL WriteCatalog is file:Catalog2.xml
-XMLFileCatalog Info Connecting to the catalog
-PoolXMLFileCatalog Info Xerces-c initialization Number 0
-XMLFileCatalog Info Connecting to the catalog
-PoolXMLFileCatalog Debug Xerces-c initialization Number 1
-XMLFileCatalog Info Connecting to the catalog
-PoolXMLFileCatalog Debug Xerces-c initialization Number 2
-PoolXMLFileCatalog Info File Catalog0.xml does not exist, a new one is created
+PoolSvc              INFO Re-initializing PoolSvc
 EventSelector       DEBUG Property update for OutputLevel : new value = 2
-EventSelector        INFO Initializing EventSelector - package version EventSelectorAthenaPool-??-??-??
 EventSelector        INFO reinitialization...
 EventSelector        INFO EventSelection with query 
 EventSelector       DEBUG Try item: "SimplePoolFile1.root" from the collection list.
-PoolXMLFileCatalog Debug filename SimplePoolFile1.root does not exist
-XMLFileCatalog Debug lookupFilebyPFN: Empty File ID found
-PoolXMLFileCatalog Debug filename SimplePoolFile1.root does not exist
-XMLFileCatalog Debug lookupFilebyPFN: Empty File ID found
 RootCollection Info Opening Collection File SimplePoolFile1.root in mode: READ
 RootCollection Debug File SimplePoolFile1.root exists.
 RootCollection Info File SimplePoolFile1.root opened
 RootCollection Debug Open() failed with expception: POOL Collection TTree not found in file SimplePoolFile1.root ( POOL : "RootCollection::open" from "RootCollection" )
-PoolXMLFileCatalog Debug filename SimplePoolFile1.root does not exist
-XMLFileCatalog Debug lookupFilebyPFN: Empty File ID found
-PoolXMLFileCatalog Debug filename SimplePoolFile1.root does not exist
-XMLFileCatalog Debug lookupFilebyPFN: Empty File ID found
-PoolXMLFileCatalog Debug filename SimplePoolFile1.root does not exist
-XMLFileCatalog Debug lookupFilebyPFN: Empty File ID found
-PoolXMLFileCatalog Debug filename SimplePoolFile1.root does not exist
-XMLFileCatalog Debug lookupFilebyPFN: Empty File ID found
 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.root Debug --> Access   DbContainer  READ      [ROOT_All] ##Shapes
-???? Debug Opened container ##Shapes of type ROOT_Tree
+##Shapes Debug Opening
+##Shapes Debug    attributes# = 1
+##Shapes Debug Opened container ##Shapes of type ROOT_Tree
 SimplePoolFile1.root Debug --->Reading Shape[0 , ????]: [1 Column(s)]
 SimplePoolFile1.root Debug ---->[0]:EventInfo_p4 Typ:EventInfo_p4 [21] Size:0 Offset:0 #Elements:1
 SimplePoolFile1.root Debug --->Reading Shape[1 , ????]: [1 Column(s)]
@@ -90,7 +75,9 @@ SimplePoolFile1.root Debug --->Reading Shape[4 , ????]: [1 Column(s)]
 SimplePoolFile1.root 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.root Debug --> Access   DbContainer  READ      [ROOT_All] ##Links
-???? Debug Opened container ##Links of type ROOT_Tree
+##Links Debug Opening
+##Links Debug    attributes# = 1
+##Links Debug Opened container ##Links of type ROOT_Tree
 SimplePoolFile1.root Debug --->Reading Assoc:????/##Params [200]  (2 , ffffffff)
 SimplePoolFile1.root Debug ---->ClassID:????
 SimplePoolFile1.root Debug --->Reading Assoc:????/CollectionTree(EventInfo_p4/McEventInfo) [202]  (3 , ffffffff)
@@ -111,7 +98,9 @@ SimplePoolFile1.root Debug --->Reading Assoc:????/MetaDataHdr(DataHeader) [202]
 SimplePoolFile1.root Debug ---->ClassID:????
 ##Links Debug No objects passing selection criteria... Container has 9 Entries in total.
 SimplePoolFile1.root Debug --> Access   DbContainer  READ      [ROOT_All] ##Params
-???? Debug Opened container ##Params of type ROOT_Tree
+##Params Debug Opening
+##Params Debug    attributes# = 1
+##Params Debug Opened container ##Params of type ROOT_Tree
 SimplePoolFile1.root Debug --->Reading Param:FID=[????]
 SimplePoolFile1.root Debug --->Reading Param:PFN=[SimplePoolFile1.root]
 SimplePoolFile1.root Debug --->Reading Param:POOL_VSN=[1.1]
@@ -120,41 +109,47 @@ SimplePoolFile1.root Debug --->Reading Param:FORMAT_VSN=[1.1]
 ImplicitCollection Info Opened the implicit collection with connection string "PFN:SimplePoolFile1.root"
 ImplicitCollection Info and a name "POOLContainer(DataHeader)"
 SimplePoolFile1.root Debug --> Access   DbContainer  READ      [ROOT_Tree] POOLContainer(DataHeader)
-???? Debug Opened container POOLContainer(DataHeader) of type ROOT_Tree
+POOLContainer(DataHeader) Debug Opening
+POOLContainer(DataHeader) Debug    attributes# = 1
+POOLContainer(DataHeader) Debug Branch container 'DataHeader'
+POOLContainer(DataHeader) Debug Opened container POOLContainer(DataHeader) of type ROOT_Tree
 MetaDataSvc         DEBUG handle() FirstInputFile for FID:????
 MetaDataSvc         DEBUG initInputMetaDataStore: file name FID:????
 SimplePoolFile1.root Debug --> Access   DbContainer  READ      [ROOT_Tree] MetaDataHdr(DataHeader)
-???? Debug Opened container MetaDataHdr(DataHeader) of type ROOT_Tree
+MetaDataHdr(DataHeader) Debug Opening
+MetaDataHdr(DataHeader) Debug    attributes# = 1
+MetaDataHdr(DataHeader) Debug Branch container 'DataHeader'
+MetaDataHdr(DataHeader) Debug Opened container MetaDataHdr(DataHeader) of type ROOT_Tree
 PoolSvc              INFO Failed to find container MetaDataHdrDataHeader to get Token.
 EventPersistenc...   INFO Added successfully Conversion service:AthenaPoolCnvSvc
 SimplePoolFile1.root Debug --> Access   DbContainer  READ      [ROOT_Tree] MetaDataHdrForm(DataHeaderForm)
-???? Debug Opened container MetaDataHdrForm(DataHeaderForm) of type ROOT_Tree
+MetaDataHdrForm(DataHeaderForm) Debug Opening
+MetaDataHdrForm(DataHeaderForm) Debug    attributes# = 1
+MetaDataHdrForm(DataHeaderForm) Debug Branch container 'DataHeaderForm'
+MetaDataHdrForm(DataHeaderForm) Debug Opened container MetaDataHdrForm(DataHeaderForm) of type ROOT_Tree
 MetaDataSvc         DEBUG Loaded input meta data store proxies
+EventSelector        INFO reinitialization...
+EventSelector        INFO EventSelection with query 
+EventSelector       DEBUG Try item: "SimplePoolFile1.root" from the collection list.
+RootCollection Info Opening Collection File SimplePoolFile1.root in mode: READ
+RootCollection Debug File SimplePoolFile1.root exists.
+RootCollection Info File SimplePoolFile1.root opened
+RootCollection Debug Open() failed with expception: POOL Collection TTree not found in file SimplePoolFile1.root ( POOL : "RootCollection::open" from "RootCollection" )
+ImplicitCollection Info Opened the implicit collection with connection string "PFN:SimplePoolFile1.root"
+ImplicitCollection Info and a name "POOLContainer(DataHeader)"
 AthenaPoolAddre...  DEBUG Property update for OutputLevel : new value = 2
-AthenaPoolAddre...   INFO Initializing AthenaPoolAddressProviderSvc - package version EventSelectorAthenaPool-??-??-??
 CondProxyProvider   DEBUG Property update for OutputLevel : new value = 2
-CondProxyProvider    INFO Initializing CondProxyProvider - package version EventSelectorAthenaPool-??-??-??
 CondProxyProvider   DEBUG Try item: "SimplePoolFile4.root" from the collection list.
-PoolXMLFileCatalog Debug filename SimplePoolFile4.root does not exist
-XMLFileCatalog Debug lookupFilebyPFN: Empty File ID found
-PoolXMLFileCatalog Debug filename SimplePoolFile4.root does not exist
-XMLFileCatalog Debug lookupFilebyPFN: Empty File ID found
 RootCollection Info Opening Collection File SimplePoolFile4.root in mode: READ
 RootCollection Debug File SimplePoolFile4.root exists.
 RootCollection Info File SimplePoolFile4.root opened
 RootCollection Debug Open() failed with expception: POOL Collection TTree not found in file SimplePoolFile4.root ( POOL : "RootCollection::open" from "RootCollection" )
-PoolXMLFileCatalog Debug filename SimplePoolFile4.root does not exist
-XMLFileCatalog Debug lookupFilebyPFN: Empty File ID found
-PoolXMLFileCatalog Debug filename SimplePoolFile4.root does not exist
-XMLFileCatalog Debug lookupFilebyPFN: Empty File ID found
-PoolXMLFileCatalog Debug filename SimplePoolFile4.root does not exist
-XMLFileCatalog Debug lookupFilebyPFN: Empty File ID found
-PoolXMLFileCatalog Debug filename SimplePoolFile4.root does not exist
-XMLFileCatalog Debug lookupFilebyPFN: Empty File ID found
 Domain[ROOT_All] Info ->  Access   DbDatabase   READ      [ROOT_All] ????
 Domain[ROOT_All] Info                           SimplePoolFile4.root
 SimplePoolFile4.root Debug --> Access   DbContainer  READ      [ROOT_All] ##Shapes
-???? Debug Opened container ##Shapes of type ROOT_Tree
+##Shapes Debug Opening
+##Shapes Debug    attributes# = 1
+##Shapes Debug Opened container ##Shapes of type ROOT_Tree
 SimplePoolFile4.root Debug --->Reading Shape[0 , ????]: [1 Column(s)]
 SimplePoolFile4.root Debug ---->[0]:ExampleHitContainer_p1 Typ:ExampleHitContainer_p1 [21] Size:0 Offset:0 #Elements:1
 SimplePoolFile4.root Debug --->Reading Shape[1 , ????]: [1 Column(s)]
@@ -163,7 +158,9 @@ SimplePoolFile4.root Debug --->Reading Shape[2 , ????]: [1 Column(s)]
 SimplePoolFile4.root 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.root Debug --> Access   DbContainer  READ      [ROOT_All] ##Links
-???? Debug Opened container ##Links of type ROOT_Tree
+##Links Debug Opening
+##Links Debug    attributes# = 1
+##Links Debug Opened container ##Links of type ROOT_Tree
 SimplePoolFile4.root Debug --->Reading Assoc:????/##Params [200]  (2 , ffffffff)
 SimplePoolFile4.root Debug ---->ClassID:????
 SimplePoolFile4.root Debug --->Reading Assoc:????/ConditionsContainer(ExampleHitContainer_p1/PedestalWriteData) [202]  (3 , ffffffff)
@@ -176,7 +173,9 @@ SimplePoolFile4.root Debug --->Reading Assoc:????/ConditionsContainer(ExampleHit
 SimplePoolFile4.root Debug ---->ClassID:????
 ##Links Debug No objects passing selection criteria... Container has 5 Entries in total.
 SimplePoolFile4.root Debug --> Access   DbContainer  READ      [ROOT_All] ##Params
-???? Debug Opened container ##Params of type ROOT_Tree
+##Params Debug Opening
+##Params Debug    attributes# = 1
+##Params Debug Opened container ##Params of type ROOT_Tree
 SimplePoolFile4.root Debug --->Reading Param:FID=[????]
 SimplePoolFile4.root Debug --->Reading Param:PFN=[SimplePoolFile4.root]
 SimplePoolFile4.root Debug --->Reading Param:POOL_VSN=[1.1]
@@ -184,46 +183,24 @@ SimplePoolFile4.root Debug --->Reading Param:FORMAT_VSN=[1.1]
 ##Params Debug No objects passing selection criteria... Container has 4 Entries in total.
 ImplicitCollection Info Opened the implicit collection with connection string "PFN:SimplePoolFile4.root"
 ImplicitCollection Info and a name "POOLContainer(DataHeader)"
-ProxyProviderSvc     INFO Initializing ProxyProviderSvc - package version SGComps-??-??-??
 ReadData            DEBUG input handles: 0
 ReadData            DEBUG output handles: 0
 ReadData            DEBUG Data Deps for ReadData
 HistogramPersis...WARNING Histograms saving not required.
 AthenaEventLoopMgr   INFO Setup EventSelector service EventSelector
-ActiveStoreSvc       INFO Initializing ActiveStoreSvc - package version StoreGate-??-??-??
 ApplicationMgr       INFO Application Manager Initialized successfully
-SimplePoolFile1.root Info Database being retired...
-SimplePoolFile1.root Debug --> Deaccess DbContainer  READ      [ROOT_All] ##Links
-SimplePoolFile1.root Debug --> Deaccess DbContainer  READ      [ROOT_All] ##Shapes
-SimplePoolFile1.root Debug --> Deaccess DbContainer  READ      [ROOT_All] ##Params
-RootDatabase.close Debug I/O READ  Bytes: ????
-RootDatabase.close Debug I/O WRITE Bytes: 0
-RootDatabase.close Debug I/O OTHER Bytes: 0
 Domain[ROOT_All] Info ->  Deaccess DbDatabase   READ      [ROOT_All] ????
-SimplePoolFile1.root Debug --> Deaccess DbContainer  READ      [ROOT_Tree] MetaDataHdr(DataHeader)
-SimplePoolFile1.root Debug --> Deaccess DbContainer  READ      [ROOT_Tree] MetaDataHdrForm(DataHeaderForm)
-SimplePoolFile1.root Debug --> Deaccess DbContainer  READ      [ROOT_Tree] POOLContainer(DataHeader)
 EventSelector       DEBUG Try item: "SimplePoolFile1.root" from the collection list.
-PoolXMLFileCatalog Debug filename SimplePoolFile1.root does not exist
-XMLFileCatalog Debug lookupFilebyPFN: Empty File ID found
-PoolXMLFileCatalog Debug filename SimplePoolFile1.root does not exist
-XMLFileCatalog Debug lookupFilebyPFN: Empty File ID found
 RootCollection Info Opening Collection File SimplePoolFile1.root in mode: READ
 RootCollection Debug File SimplePoolFile1.root exists.
 RootCollection Info File SimplePoolFile1.root opened
 RootCollection Debug Open() failed with expception: POOL Collection TTree not found in file SimplePoolFile1.root ( POOL : "RootCollection::open" from "RootCollection" )
-PoolXMLFileCatalog Debug filename SimplePoolFile1.root does not exist
-XMLFileCatalog Debug lookupFilebyPFN: Empty File ID found
-PoolXMLFileCatalog Debug filename SimplePoolFile1.root does not exist
-XMLFileCatalog Debug lookupFilebyPFN: Empty File ID found
-PoolXMLFileCatalog Debug filename SimplePoolFile1.root does not exist
-XMLFileCatalog Debug lookupFilebyPFN: Empty File ID found
-PoolXMLFileCatalog Debug filename SimplePoolFile1.root does not exist
-XMLFileCatalog Debug lookupFilebyPFN: Empty File ID found
 Domain[ROOT_All] Info ->  Access   DbDatabase   READ      [ROOT_All] ????
 Domain[ROOT_All] Info                           SimplePoolFile1.root
 SimplePoolFile1.root Debug --> Access   DbContainer  READ      [ROOT_All] ##Shapes
-???? Debug Opened container ##Shapes of type ROOT_Tree
+##Shapes Debug Opening
+##Shapes Debug    attributes# = 1
+##Shapes Debug Opened container ##Shapes of type ROOT_Tree
 SimplePoolFile1.root Debug --->Reading Shape[0 , ????]: [1 Column(s)]
 SimplePoolFile1.root Debug ---->[0]:EventInfo_p4 Typ:EventInfo_p4 [21] Size:0 Offset:0 #Elements:1
 SimplePoolFile1.root Debug --->Reading Shape[1 , ????]: [1 Column(s)]
@@ -236,7 +213,9 @@ SimplePoolFile1.root Debug --->Reading Shape[4 , ????]: [1 Column(s)]
 SimplePoolFile1.root 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.root Debug --> Access   DbContainer  READ      [ROOT_All] ##Links
-???? Debug Opened container ##Links of type ROOT_Tree
+##Links Debug Opening
+##Links Debug    attributes# = 1
+##Links Debug Opened container ##Links of type ROOT_Tree
 SimplePoolFile1.root Debug --->Reading Assoc:????/##Params [200]  (2 , ffffffff)
 SimplePoolFile1.root Debug ---->ClassID:????
 SimplePoolFile1.root Debug --->Reading Assoc:????/CollectionTree(EventInfo_p4/McEventInfo) [202]  (3 , ffffffff)
@@ -257,7 +236,9 @@ SimplePoolFile1.root Debug --->Reading Assoc:????/MetaDataHdr(DataHeader) [202]
 SimplePoolFile1.root Debug ---->ClassID:????
 ##Links Debug No objects passing selection criteria... Container has 9 Entries in total.
 SimplePoolFile1.root Debug --> Access   DbContainer  READ      [ROOT_All] ##Params
-???? Debug Opened container ##Params of type ROOT_Tree
+##Params Debug Opening
+##Params Debug    attributes# = 1
+##Params Debug Opened container ##Params of type ROOT_Tree
 SimplePoolFile1.root Debug --->Reading Param:FID=[????]
 SimplePoolFile1.root Debug --->Reading Param:PFN=[SimplePoolFile1.root]
 SimplePoolFile1.root Debug --->Reading Param:POOL_VSN=[1.1]
@@ -267,12 +248,18 @@ ImplicitCollection Info Opened the implicit collection with connection string "P
 ImplicitCollection Info and a name "POOLContainer(DataHeader)"
 MetaDataSvc         DEBUG handle() BeginTagFile for SimplePoolFile1.root
 SimplePoolFile1.root Debug --> Access   DbContainer  READ      [ROOT_Tree] POOLContainer(DataHeader)
-???? Debug Opened container POOLContainer(DataHeader) of type ROOT_Tree
+POOLContainer(DataHeader) Debug Opening
+POOLContainer(DataHeader) Debug    attributes# = 1
+POOLContainer(DataHeader) Debug Branch container 'DataHeader'
+POOLContainer(DataHeader) Debug Opened container POOLContainer(DataHeader) of type ROOT_Tree
 ApplicationMgr       INFO Application Manager Started successfully
 MetaDataSvc         DEBUG handle() BeginInputFile for SimplePoolFile1.root
 MetaDataSvc         DEBUG initInputMetaDataStore: file name SimplePoolFile1.root
 SimplePoolFile1.root Debug --> Access   DbContainer  READ      [ROOT_Tree] MetaDataHdr(DataHeader)
-???? Debug Opened container MetaDataHdr(DataHeader) of type ROOT_Tree
+MetaDataHdr(DataHeader) Debug Opening
+MetaDataHdr(DataHeader) Debug    attributes# = 1
+MetaDataHdr(DataHeader) Debug Branch container 'DataHeader'
+MetaDataHdr(DataHeader) Debug Opened container MetaDataHdr(DataHeader) of type ROOT_Tree
 PoolSvc              INFO Failed to find container MetaDataHdrDataHeader to get Token.
 MetaDataSvc         DEBUG Loaded input meta data store proxies
 EventSelector       DEBUG Get AttributeList from the collection
@@ -281,37 +268,35 @@ EventSelector       DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=P
 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.root Debug --> Access   DbContainer  READ      [ROOT_Tree] POOLContainerForm(DataHeaderForm)
-???? Debug Opened container POOLContainerForm(DataHeaderForm) of type ROOT_Tree
+POOLContainerForm(DataHeaderForm) Debug Opening
+POOLContainerForm(DataHeaderForm) Debug    attributes# = 1
+POOLContainerForm(DataHeaderForm) Debug Branch container 'DataHeaderForm'
+POOLContainerForm(DataHeaderForm) Debug Opened container POOLContainerForm(DataHeaderForm) of type ROOT_Tree
 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
 SimplePoolFile1.root Debug --> Access   DbContainer  READ      [ROOT_Tree] CollectionTree(EventInfo_p4/McEventInfo)
-???? Debug Opened container CollectionTree(EventInfo_p4/McEventInfo) of type ROOT_Tree
+CollectionTree(EventInfo_p4/McEventInfo) Debug Opening
+CollectionTree(EventInfo_p4/McEventInfo) Debug    attributes# = 1
+CollectionTree(EventInfo_p4/McEventInfo) Debug Branch container 'EventInfo_p4_McEventInfo'
+CollectionTree(EventInfo_p4/McEventInfo) Debug Opened container CollectionTree(EventInfo_p4/McEventInfo) of type ROOT_Tree
+AthenaPoolConve...   INFO massageEventInfo: unable to get OverrideRunNumberFromInput property from EventSelector 
 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.root Debug --> Access   DbContainer  READ      [ROOT_Tree] POOLContainer(DataHeader)
-???? Debug Opened container POOLContainer(DataHeader) of type ROOT_Tree
-SimplePoolFile4.root Info Database being retired...
-SimplePoolFile4.root Debug --> Deaccess DbContainer  READ      [ROOT_All] ##Links
-SimplePoolFile4.root Debug --> Deaccess DbContainer  READ      [ROOT_All] ##Shapes
-SimplePoolFile4.root Debug --> Deaccess DbContainer  READ      [ROOT_All] ##Params
-RootDatabase.close Debug I/O READ  Bytes: ????
-RootDatabase.close Debug I/O WRITE Bytes: 0
-RootDatabase.close Debug I/O OTHER Bytes: 0
+POOLContainer(DataHeader) Debug Opening
+POOLContainer(DataHeader) Debug    attributes# = 1
+POOLContainer(DataHeader) Debug Branch container 'DataHeader'
+POOLContainer(DataHeader) Debug Opened container POOLContainer(DataHeader) of type ROOT_Tree
 Domain[ROOT_All] Info ->  Deaccess DbDatabase   READ      [ROOT_All] ????
-SimplePoolFile4.root Debug --> Deaccess DbContainer  READ      [ROOT_Tree] POOLContainer(DataHeader)
-PoolXMLFileCatalog Debug FileID ???? is not in the catalog
-XMLFileCatalog Debug empty physical filename found
-PoolXMLFileCatalog Debug PFname  is not in the xml file
-PoolXMLFileCatalog Debug FileID ???? is not in the catalog
-XMLFileCatalog Debug empty physical filename found
-PoolXMLFileCatalog Debug PFname  is not in the xml file
 Domain[ROOT_All] Info ->  Access   DbDatabase   READ      [ROOT_All] ????
 Domain[ROOT_All] Info                           SimplePoolFile4.root
 SimplePoolFile4.root Debug --> Access   DbContainer  READ      [ROOT_All] ##Shapes
-???? Debug Opened container ##Shapes of type ROOT_Tree
+##Shapes Debug Opening
+##Shapes Debug    attributes# = 1
+##Shapes Debug Opened container ##Shapes of type ROOT_Tree
 SimplePoolFile4.root Debug --->Reading Shape[0 , ????]: [1 Column(s)]
 SimplePoolFile4.root Debug ---->[0]:ExampleHitContainer_p1 Typ:ExampleHitContainer_p1 [21] Size:0 Offset:0 #Elements:1
 SimplePoolFile4.root Debug --->Reading Shape[1 , ????]: [1 Column(s)]
@@ -320,7 +305,9 @@ SimplePoolFile4.root Debug --->Reading Shape[2 , ????]: [1 Column(s)]
 SimplePoolFile4.root 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.root Debug --> Access   DbContainer  READ      [ROOT_All] ##Links
-???? Debug Opened container ##Links of type ROOT_Tree
+##Links Debug Opening
+##Links Debug    attributes# = 1
+##Links Debug Opened container ##Links of type ROOT_Tree
 SimplePoolFile4.root Debug --->Reading Assoc:????/##Params [200]  (2 , ffffffff)
 SimplePoolFile4.root Debug ---->ClassID:????
 SimplePoolFile4.root Debug --->Reading Assoc:????/ConditionsContainer(ExampleHitContainer_p1/PedestalWriteData) [202]  (3 , ffffffff)
@@ -333,29 +320,46 @@ SimplePoolFile4.root Debug --->Reading Assoc:????/ConditionsContainer(ExampleHit
 SimplePoolFile4.root Debug ---->ClassID:????
 ##Links Debug No objects passing selection criteria... Container has 5 Entries in total.
 SimplePoolFile4.root Debug --> Access   DbContainer  READ      [ROOT_All] ##Params
-???? Debug Opened container ##Params of type ROOT_Tree
+##Params Debug Opening
+##Params Debug    attributes# = 1
+##Params Debug Opened container ##Params of type ROOT_Tree
 SimplePoolFile4.root Debug --->Reading Param:FID=[????]
 SimplePoolFile4.root Debug --->Reading Param:PFN=[SimplePoolFile4.root]
 SimplePoolFile4.root Debug --->Reading Param:POOL_VSN=[1.1]
 SimplePoolFile4.root Debug --->Reading Param:FORMAT_VSN=[1.1]
 ##Params Debug No objects passing selection criteria... Container has 4 Entries in total.
 SimplePoolFile4.root Debug --> Access   DbContainer  READ      [ROOT_Tree] POOLContainer(DataHeader)
-???? Debug Opened container POOLContainer(DataHeader) of type ROOT_Tree
+POOLContainer(DataHeader) Debug Opening
+POOLContainer(DataHeader) Debug    attributes# = 1
+POOLContainer(DataHeader) Debug Branch container 'DataHeader'
+POOLContainer(DataHeader) Debug Opened container POOLContainer(DataHeader) of type ROOT_Tree
 SimplePoolFile4.root Debug --> Access   DbContainer  READ      [ROOT_Tree] POOLContainerForm(DataHeaderForm)
-???? Debug Opened container POOLContainerForm(DataHeaderForm) of type ROOT_Tree
+POOLContainerForm(DataHeaderForm) Debug Opening
+POOLContainerForm(DataHeaderForm) Debug    attributes# = 1
+POOLContainerForm(DataHeaderForm) Debug Branch container 'DataHeaderForm'
+POOLContainerForm(DataHeaderForm) Debug Opened container POOLContainerForm(DataHeaderForm) of type ROOT_Tree
 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.root Debug --> Access   DbContainer  READ      [ROOT_Tree] ConditionsContainer(ExampleHitContainer_p1/PedestalWriteData)
-???? Debug Opened container ConditionsContainer(ExampleHitContainer_p1/PedestalWriteData) of type ROOT_Tree
+ConditionsContainer(ExampleHitContainer_p1/PedestalWriteData) Debug Opening
+ConditionsContainer(ExampleHitContainer_p1/PedestalWriteData) Debug    attributes# = 1
+ConditionsContainer(ExampleHitContainer_p1/PedestalWriteData) Debug Branch container 'ExampleHitContainer_p1_PedestalWriteData'
+ConditionsContainer(ExampleHitContainer_p1/PedestalWriteData) 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>
 SimplePoolFile4.root Debug --> Access   DbContainer  READ      [ROOT_Tree] ConditionsContainer(ExampleHitContainer_p1/PedestalAppendData)
-???? Debug Opened container ConditionsContainer(ExampleHitContainer_p1/PedestalAppendData) of type ROOT_Tree
+ConditionsContainer(ExampleHitContainer_p1/PedestalAppendData) Debug Opening
+ConditionsContainer(ExampleHitContainer_p1/PedestalAppendData) Debug    attributes# = 1
+ConditionsContainer(ExampleHitContainer_p1/PedestalAppendData) Debug Branch container 'ExampleHitContainer_p1_PedestalAppendData'
+ConditionsContainer(ExampleHitContainer_p1/PedestalAppendData) 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.root Debug --> Access   DbContainer  READ      [ROOT_Tree] MetaData(EventStreamInfo_p3/Stream1)
-???? Debug Opened container MetaData(EventStreamInfo_p3/Stream1) of type ROOT_Tree
+MetaData(EventStreamInfo_p3/Stream1) Debug Opening
+MetaData(EventStreamInfo_p3/Stream1) Debug    attributes# = 1
+MetaData(EventStreamInfo_p3/Stream1) Debug Branch container 'EventStreamInfo_p3_Stream1'
+MetaData(EventStreamInfo_p3/Stream1) Debug Opened container MetaData(EventStreamInfo_p3/Stream1) of type ROOT_Tree
 ReadData             INFO EventStreamInfo: Number of events = 20
 ReadData             INFO EventStreamInfo: ItemList:
 ReadData             INFO CLID = 2101, key = McEventInfo
@@ -367,7 +371,10 @@ ReadData             INFO EventInfo event: 0 run: 1
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 SimplePoolFile1.root Debug --> Access   DbContainer  READ      [ROOT_Tree] CollectionTree(ExampleHitContainer_p1/MyHits)
-???? Debug Opened container CollectionTree(ExampleHitContainer_p1/MyHits) of type ROOT_Tree
+CollectionTree(ExampleHitContainer_p1/MyHits) Debug Opening
+CollectionTree(ExampleHitContainer_p1/MyHits) Debug    attributes# = 1
+CollectionTree(ExampleHitContainer_p1/MyHits) Debug Branch container 'ExampleHitContainer_p1_MyHits'
+CollectionTree(ExampleHitContainer_p1/MyHits) Debug Opened container CollectionTree(ExampleHitContainer_p1/MyHits) of type ROOT_Tree
 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
@@ -1025,45 +1032,13 @@ ReadData             INFO Hit x = 1923.7 y = 57.9027 z = -1853.68 detector = Dum
 ReadData             INFO Hit x = 1926.91 y = 52.2238 z = -1855.07 detector = DummyHitDetector
 ReadData             INFO Hit x = 1930.12 y = 46.5449 z = -1856.17 detector = DummyHitDetector
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #19, run #1 20 events processed so far  <<<===
-SimplePoolFile1.root Info Database being retired...
-SimplePoolFile1.root Debug --> Deaccess DbContainer  READ      [ROOT_All] ##Links
-SimplePoolFile1.root Debug --> Deaccess DbContainer  READ      [ROOT_All] ##Shapes
-SimplePoolFile1.root Debug --> Deaccess DbContainer  READ      [ROOT_All] ##Params
-RootDatabase.close Debug I/O READ  Bytes: ????
-RootDatabase.close Debug I/O WRITE Bytes: 0
-RootDatabase.close Debug I/O OTHER Bytes: 0
 Domain[ROOT_All] Info ->  Deaccess DbDatabase   READ      [ROOT_All] ????
-SimplePoolFile1.root Debug --> Deaccess DbContainer  READ      [ROOT_Tree] CollectionTree(EventInfo_p4/McEventInfo)
-SimplePoolFile1.root Debug --> Deaccess DbContainer  READ      [ROOT_Tree] CollectionTree(ExampleHitContainer_p1/MyHits)
-SimplePoolFile1.root Debug --> Deaccess DbContainer  READ      [ROOT_Tree] MetaData(EventStreamInfo_p3/Stream1)
-SimplePoolFile1.root Debug --> Deaccess DbContainer  READ      [ROOT_Tree] MetaDataHdr(DataHeader)
-SimplePoolFile1.root Debug --> Deaccess DbContainer  READ      [ROOT_Tree] POOLContainerForm(DataHeaderForm)
-SimplePoolFile1.root Debug --> Deaccess DbContainer  READ      [ROOT_Tree] POOLContainer(DataHeader)
 MetaDataSvc         DEBUG handle() EndInputFile for FID:????
 MetaDataSvc         DEBUG handle() EndTagFile for SimplePoolFile1.root
 MetaDataSvc         DEBUG handle() LastInputFile for end
 AthenaEventLoopMgr   INFO No more events in event selection 
 MetaDataSvc         DEBUG Releasing MetaDataTools
-ConditionsContainer(ExampleHitContainer_p1/PedestalAppendData) Debug endTransaction: go to finish
-ConditionsContainer(ExampleHitContainer_p1/PedestalWriteData) Debug endTransaction: go to finish
-POOLContainer(DataHeader) Debug endTransaction: go to finish
-POOLContainerForm(DataHeaderForm) Debug endTransaction: go to finish
-##Params Debug endTransaction:  tree AutoSave
-##Shapes Debug endTransaction:  tree AutoSave
-##Links Debug endTransaction:  tree AutoSave
-SimplePoolFile4.root Info Database being retired...
-SimplePoolFile4.root Debug --> Deaccess DbContainer  READ      [ROOT_All] ##Links
-SimplePoolFile4.root Debug --> Deaccess DbContainer  READ      [ROOT_All] ##Shapes
-SimplePoolFile4.root Debug --> Deaccess DbContainer  READ      [ROOT_All] ##Params
-RootDatabase.close Debug I/O READ  Bytes: ????
-RootDatabase.close Debug I/O WRITE Bytes: 0
-RootDatabase.close Debug I/O OTHER Bytes: 0
 Domain[ROOT_All] Info ->  Deaccess DbDatabase   READ      [ROOT_All] ????
-SimplePoolFile4.root Debug --> Deaccess DbContainer  READ      [ROOT_Tree] ConditionsContainer(ExampleHitContainer_p1/PedestalAppendData)
-SimplePoolFile4.root Debug --> Deaccess DbContainer  READ      [ROOT_Tree] ConditionsContainer(ExampleHitContainer_p1/PedestalWriteData)
-SimplePoolFile4.root Debug --> Deaccess DbContainer  READ      [ROOT_Tree] POOLContainer(DataHeader)
-SimplePoolFile4.root Debug --> Deaccess DbContainer  READ      [ROOT_Tree] POOLContainerForm(DataHeaderForm)
-Domain[ROOT_All] Info >   Deaccess DbDomain     READ      [ROOT_All] 
 ApplicationMgr       INFO Application Manager Stopped successfully
 ReadCond             INFO in finalize()
 ReadData             INFO in finalize()
@@ -1073,13 +1048,6 @@ ReadData            DEBUG Calling destructor
 AthOutSeq            INFO Finalizing AthOutSeq...
 AthRegSeq            INFO Finalizing AthRegSeq...
 AthMasterSeq         INFO Finalizing AthMasterSeq...
-XMLFileCatalog Debug There were no updates in the catalog
-XMLFileCatalog Debug There were no updates in the catalog
-XMLFileCatalog Debug There were no updates in the catalog
-PoolXMLFileCatalog Debug XercesC termination number 2
-PoolXMLFileCatalog Debug XercesC termination number 1
-PoolXMLFileCatalog Info XercesC termination number 0
-PoolSvc              INFO I/O finalization...
 AthDictLoaderSvc     INFO in finalize...
 ToolSvc              INFO Removing all tools created by ToolSvc
 *****Chrono*****     INFO ****************************************************************************************************
diff --git a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_RFilter.ref b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_RFilter.ref
index ee6a3eafd3a7c055f171069797218abada6ca439..b83b4bc68979ed4ccfef08794376bee0ee41c3c7 100644
--- a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_RFilter.ref
+++ b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_RFilter.ref
@@ -1,5 +1,4 @@
-Warning in <TInterpreter::ReadRootmapFile>: class  Event found in libG4AtlasControlDict.so  is already in libtest_GPyTestDict.so 
-Warning in <TInterpreter::ReadRootmapFile>: class  UCharDbArray found in libStorageSvcDict.so  is already in libRootCnvDict.so 
+Warning in <TInterpreter::ReadRootmapFile>: class  xAOD::TReturnCode found in libxAODRootAccessDict.so  is already in libxAODRootAccess.so 
 Preloading tcmalloc_minimal.so
 Athena               INFO including file "AthenaCommon/Preparation.py"
 Athena               INFO including file "AthenaCommon/Bootstrap.py"
@@ -7,7 +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_RFilterJobOptions.py"
-Py:ConfigurableDb    INFO No duplicates have been found: that's good !
+Py:ConfigurableDb WARNING Found 3 duplicates among the 49 genConfDb files :
+Py:ConfigurableDb WARNING --------------------------------------------------
+Py:ConfigurableDb WARNING   -<component name>: <module> - [ <duplicates> ]
+Py:ConfigurableDb WARNING --------------------------------------------------
+Py:ConfigurableDb WARNING   -TrigEFRazorAllTE: TrigHLTJetHypo.TrigHLTJetHypoConf - ['TrigJetHypo.TrigJetHypoConf', 'TrigJetHypo.TrigJetHypoConf']
+Py:ConfigurableDb WARNING   -TrigL2JetHypo: TrigJetHypo.TrigJetHypoConf - ['TrigCaloHypo.TrigCaloHypoConf']
+Py:ConfigurableDb WARNING   -TrigEFDPhiMetJetAllTE: TrigHLTJetHypo.TrigHLTJetHypoConf - ['TrigJetHypo.TrigJetHypoConf', 'TrigJetHypo.TrigJetHypoConf']
+Py:ConfigurableDb WARNING Fix your cmt/requirements file !!
 Athena               INFO including file "AthenaCommon/runbatch.py"
 ApplicationMgr       INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0
 ApplicationMgr    SUCCESS 
@@ -21,33 +27,31 @@ AthDictLoaderSvc     INFO in initialize...
 AthDictLoaderSvc     INFO acquired Dso-registry
 ChronoStatSvc        INFO  Number of skipped events for MemStat-1
 CoreDumpSvc          INFO install f-a-t-a-l handler... (flag = -1)
-AthenaEventLoopMgr   INFO Initializing AthenaEventLoopMgr - package version AthenaServices-??-??-??
 AthMasterSeq         INFO Member list: AthSequencer/AthAlgSeq, AthSequencer/AthOutSeq, AthSequencer/AthRegSeq
 AthAlgSeq            INFO Member list: AthPoolEx::ReadData/ReadData
 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-??-??-??
-AthenaPoolCnvSvc     INFO Initializing AthenaPoolCnvSvc - package version AthenaPoolCnvSvc-??-??-??
 PoolSvc             DEBUG Property update for OutputLevel : new value = 2
-PoolSvc              INFO Initializing PoolSvc - package version PoolSvc-??-??-??
 PoolSvc              INFO Set connectionsvc retry/timeout/IDLE timeout to  'ConnectionRetrialPeriod':300/ 'ConnectionRetrialTimeOut':3600/ 'ConnectionTimeOut':5 seconds with connection cleanup disabled
 PoolSvc              INFO Frontier compression level set to 5
 PoolSvc              INFO Successfully setup replica sorting algorithm
 PoolSvc             DEBUG OutputLevel is 2
-PoolSvc              INFO Re-initializing PoolSvc
+PoolSvc              INFO Setting up APR FileCatalog and Streams
 PoolSvc             DEBUG POOL ReadCatalog is file:Catalog.xml
 PoolSvc             DEBUG POOL ReadCatalog is file:Catalog1.xml
 PoolSvc              INFO POOL WriteCatalog is file:Catalog2.xml
-XMLFileCatalog Info Connecting to the catalog
-PoolXMLFileCatalog Info Xerces-c initialization Number 0
-XMLFileCatalog Info Connecting to the catalog
-PoolXMLFileCatalog Debug Xerces-c initialization Number 1
-XMLFileCatalog Info Connecting to the catalog
-PoolXMLFileCatalog Debug Xerces-c initialization Number 2
-PoolXMLFileCatalog Info File Catalog2.xml does not exist, a new one is created
+PoolSvc              INFO Re-initializing PoolSvc
 EventSelector       DEBUG Property update for OutputLevel : new value = 2
-EventSelector        INFO Initializing EventSelector - package version EventSelectorAthenaPool-??-??-??
+EventSelector        INFO reinitialization...
+EventSelector        INFO EventSelection with query EventNumber > 9
+EventSelector       DEBUG Try item: "SimplePoolCollection5.root" from the collection list.
+RootCollection Info Opening Collection File SimplePoolCollection5.root in mode: READ
+RootCollection Debug File SimplePoolCollection5.root exists.
+RootCollection Info File SimplePoolCollection5.root opened
+RootCollection Debug Retrieved Collection TTree  "POOLCollectionTree" from file SimplePoolCollection5.root
+RootCollection Info Root collection opened, size = 10
+EventSelector        INFO Using standard collection ref 
 EventSelector        INFO reinitialization...
 EventSelector        INFO EventSelection with query EventNumber > 9
 EventSelector       DEBUG Try item: "SimplePoolCollection5.root" from the collection list.
@@ -58,14 +62,11 @@ RootCollection Debug Retrieved Collection TTree  "POOLCollectionTree" from file
 RootCollection Info Root collection opened, size = 10
 EventSelector        INFO Using standard collection ref 
 AthenaPoolAddre...  DEBUG Property update for OutputLevel : new value = 2
-AthenaPoolAddre...   INFO Initializing AthenaPoolAddressProviderSvc - package version EventSelectorAthenaPool-??-??-??
-ProxyProviderSvc     INFO Initializing ProxyProviderSvc - package version SGComps-??-??-??
 ReadData            DEBUG input handles: 0
 ReadData            DEBUG output handles: 0
 ReadData            DEBUG Data Deps for ReadData
 HistogramPersis...WARNING Histograms saving not required.
 AthenaEventLoopMgr   INFO Setup EventSelector service EventSelector
-ActiveStoreSvc       INFO Initializing ActiveStoreSvc - package version StoreGate-??-??-??
 ApplicationMgr       INFO Application Manager Initialized successfully
 RootCollection Info Closing open collection 'SimplePoolCollection5.root'
 EventSelector       DEBUG Try item: "SimplePoolCollection5.root" from the collection list.
@@ -82,18 +83,14 @@ EventSelector       DEBUG record AthenaAttribute, name = Stream1_ref = [DB=????]
 EventSelector       DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000000].
 EventSelector       DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000000]
 EventPersistenc...   INFO Added successfully Conversion service:AthenaPoolCnvSvc
-PoolXMLFileCatalog Debug FileID ???? is not in the catalog
-XMLFileCatalog Debug empty physical filename found
-PoolXMLFileCatalog Debug PFname  is not in the xml file
-PoolXMLFileCatalog Debug FileID ???? is not in the catalog
-XMLFileCatalog Debug empty physical filename found
-PoolXMLFileCatalog Debug PFname  is not in the xml file
 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                           SimplePoolFile5.root
 SimplePoolFile5.root Debug --> Access   DbContainer  READ      [ROOT_All] ##Shapes
-???? Debug Opened container ##Shapes of type ROOT_Tree
+##Shapes Debug Opening
+##Shapes Debug    attributes# = 1
+##Shapes Debug Opened container ##Shapes of type ROOT_Tree
 SimplePoolFile5.root Debug --->Reading Shape[0 , ????]: [1 Column(s)]
 SimplePoolFile5.root Debug ---->[0]:EventInfo_p4 Typ:EventInfo_p4 [21] Size:0 Offset:0 #Elements:1
 SimplePoolFile5.root Debug --->Reading Shape[1 , ????]: [1 Column(s)]
@@ -106,7 +103,9 @@ SimplePoolFile5.root Debug --->Reading Shape[4 , ????]: [1 Column(s)]
 SimplePoolFile5.root Debug ---->[0]:EventStreamInfo_p3 Typ:EventStreamInfo_p3 [21] Size:0 Offset:0 #Elements:1
 ##Shapes Debug No objects passing selection criteria... Container has 5 Entries in total.
 SimplePoolFile5.root Debug --> Access   DbContainer  READ      [ROOT_All] ##Links
-???? Debug Opened container ##Links of type ROOT_Tree
+##Links Debug Opening
+##Links Debug    attributes# = 1
+##Links Debug Opened container ##Links of type ROOT_Tree
 SimplePoolFile5.root Debug --->Reading Assoc:????/##Params [200]  (2 , ffffffff)
 SimplePoolFile5.root Debug ---->ClassID:????
 SimplePoolFile5.root Debug --->Reading Assoc:????/CollectionTree(EventInfo_p4/McEventInfo) [202]  (3 , ffffffff)
@@ -127,21 +126,33 @@ SimplePoolFile5.root Debug --->Reading Assoc:????/MetaDataHdr(DataHeader) [202]
 SimplePoolFile5.root Debug ---->ClassID:????
 ##Links Debug No objects passing selection criteria... Container has 9 Entries in total.
 SimplePoolFile5.root Debug --> Access   DbContainer  READ      [ROOT_All] ##Params
-???? Debug Opened container ##Params of type ROOT_Tree
+##Params Debug Opening
+##Params Debug    attributes# = 1
+##Params Debug Opened container ##Params of type ROOT_Tree
 SimplePoolFile5.root Debug --->Reading Param:FID=[????]
 SimplePoolFile5.root Debug --->Reading Param:PFN=[SimplePoolFile5.root]
 SimplePoolFile5.root Debug --->Reading Param:POOL_VSN=[1.1]
 SimplePoolFile5.root Debug --->Reading Param:FORMAT_VSN=[1.1]
 ##Params Debug No objects passing selection criteria... Container has 4 Entries in total.
 SimplePoolFile5.root Debug --> Access   DbContainer  READ      [ROOT_Tree] POOLContainer(DataHeader)
-???? Debug Opened container POOLContainer(DataHeader) of type ROOT_Tree
+POOLContainer(DataHeader) Debug Opening
+POOLContainer(DataHeader) Debug    attributes# = 1
+POOLContainer(DataHeader) Debug Branch container 'DataHeader'
+POOLContainer(DataHeader) Debug Opened container POOLContainer(DataHeader) of type ROOT_Tree
 SimplePoolFile5.root Debug --> Access   DbContainer  READ      [ROOT_Tree] POOLContainerForm(DataHeaderForm)
-???? Debug Opened container POOLContainerForm(DataHeaderForm) of type ROOT_Tree
+POOLContainerForm(DataHeaderForm) Debug Opening
+POOLContainerForm(DataHeaderForm) Debug    attributes# = 1
+POOLContainerForm(DataHeaderForm) Debug Branch container 'DataHeaderForm'
+POOLContainerForm(DataHeaderForm) Debug Opened container POOLContainerForm(DataHeaderForm) of type ROOT_Tree
 AthenaPoolAddre...  DEBUG The current Event contains: 3 objects
 AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 2101, name = McEventInfo
 AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 9103, name = MyTracks
 SimplePoolFile5.root Debug --> Access   DbContainer  READ      [ROOT_Tree] CollectionTree(EventInfo_p4/McEventInfo)
-???? Debug Opened container CollectionTree(EventInfo_p4/McEventInfo) of type ROOT_Tree
+CollectionTree(EventInfo_p4/McEventInfo) Debug Opening
+CollectionTree(EventInfo_p4/McEventInfo) Debug    attributes# = 1
+CollectionTree(EventInfo_p4/McEventInfo) Debug Branch container 'EventInfo_p4_McEventInfo'
+CollectionTree(EventInfo_p4/McEventInfo) Debug Opened container CollectionTree(EventInfo_p4/McEventInfo) of type ROOT_Tree
+AthenaPoolConve...   INFO massageEventInfo: unable to get OverrideRunNumberFromInput property from EventSelector 
 AthenaEventLoopMgr   INFO   ===>>>  start of run 1    <<<===
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #10, run #1 0 events processed so far  <<<===
 ReadData            DEBUG in execute()
@@ -149,7 +160,10 @@ ReadData          WARNING Could not find EventStreamInfo
 ReadData             INFO EventInfo event: 10 run: 1
 ReadData             INFO Get Smart data ptr 1
 SimplePoolFile5.root Debug --> Access   DbContainer  READ      [ROOT_Tree] CollectionTree(ExampleTrackContainer_p1/MyTracks)
-???? Debug Opened container CollectionTree(ExampleTrackContainer_p1/MyTracks) of type ROOT_Tree
+CollectionTree(ExampleTrackContainer_p1/MyTracks) Debug Opening
+CollectionTree(ExampleTrackContainer_p1/MyTracks) Debug    attributes# = 1
+CollectionTree(ExampleTrackContainer_p1/MyTracks) Debug Branch container 'ExampleTrackContainer_p1_MyTracks'
+CollectionTree(ExampleTrackContainer_p1/MyTracks) Debug Opened container CollectionTree(ExampleTrackContainer_p1/MyTracks) of type ROOT_Tree
 ReadData             INFO Track pt = 1018.38 eta = -11.0052 phi = 149.134 detector = Track made in: DummyHitDetector
 ReadData          WARNING Could not follow ExampleTrackContainer/MyTracks ElementLinks to ExampleHitContainer/MyHits
 ReadData             INFO Could not find ExampleHitContainer/MyHits
@@ -317,18 +331,7 @@ ReadData          WARNING Could not follow ExampleTrackContainer/MyTracks Elemen
 ReadData             INFO Could not find ExampleHitContainer/MyHits
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #19, run #1 10 events processed so far  <<<===
 RootCollection Info Closing open collection 'SimplePoolCollection5.root'
-SimplePoolFile5.root Info Database being retired...
-SimplePoolFile5.root Debug --> Deaccess DbContainer  READ      [ROOT_All] ##Links
-SimplePoolFile5.root Debug --> Deaccess DbContainer  READ      [ROOT_All] ##Shapes
-SimplePoolFile5.root Debug --> Deaccess DbContainer  READ      [ROOT_All] ##Params
-RootDatabase.close Debug I/O READ  Bytes: ????
-RootDatabase.close Debug I/O WRITE Bytes: 0
-RootDatabase.close Debug I/O OTHER Bytes: 0
 Domain[ROOT_All] Info ->  Deaccess DbDatabase   READ      [ROOT_All] ????
-SimplePoolFile5.root Debug --> Deaccess DbContainer  READ      [ROOT_Tree] CollectionTree(EventInfo_p4/McEventInfo)
-SimplePoolFile5.root Debug --> Deaccess DbContainer  READ      [ROOT_Tree] CollectionTree(ExampleTrackContainer_p1/MyTracks)
-SimplePoolFile5.root Debug --> Deaccess DbContainer  READ      [ROOT_Tree] POOLContainer(DataHeader)
-SimplePoolFile5.root Debug --> Deaccess DbContainer  READ      [ROOT_Tree] POOLContainerForm(DataHeaderForm)
 Domain[ROOT_All] Info >   Deaccess DbDomain     READ      [ROOT_All] 
 AthenaEventLoopMgr   INFO No more events in event selection 
 MetaDataSvc         DEBUG Releasing MetaDataTools
@@ -339,13 +342,6 @@ ReadData            DEBUG Calling destructor
 AthOutSeq            INFO Finalizing AthOutSeq...
 AthRegSeq            INFO Finalizing AthRegSeq...
 AthMasterSeq         INFO Finalizing AthMasterSeq...
-XMLFileCatalog Debug There were no updates in the catalog
-XMLFileCatalog Debug There were no updates in the catalog
-XMLFileCatalog Debug There were no updates in the catalog
-PoolXMLFileCatalog Debug XercesC termination number 2
-PoolXMLFileCatalog Debug XercesC termination number 1
-PoolXMLFileCatalog Info XercesC termination number 0
-PoolSvc              INFO I/O finalization...
 AthDictLoaderSvc     INFO in finalize...
 ToolSvc              INFO Removing all tools created by ToolSvc
 *****Chrono*****     INFO ****************************************************************************************************
@@ -353,6 +349,7 @@ ToolSvc              INFO Removing all tools created by ToolSvc
 *****Chrono*****     INFO ****************************************************************************************************
 *****Chrono*****     INFO ****************************************************************************************************
 ChronoStatSvc.f...   INFO  Service finalized successfully 
+FileMgr           WARNING At finalize, the following files remained open:
 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_RWBs.ref b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_RWBs.ref
index 56ee18695676aafef798ebfe52846e047dcfbe59..579cf3339e316722490ec7eea781040daed1bf2a 100644
--- a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_RWBs.ref
+++ b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_RWBs.ref
@@ -1,5 +1,4 @@
-Warning in <TInterpreter::ReadRootmapFile>: class  Event found in libG4AtlasControlDict.so  is already in libtest_GPyTestDict.so 
-Warning in <TInterpreter::ReadRootmapFile>: class  UCharDbArray found in libStorageSvcDict.so  is already in libRootCnvDict.so 
+Warning in <TInterpreter::ReadRootmapFile>: class  xAOD::TReturnCode found in libxAODRootAccessDict.so  is already in libxAODRootAccess.so 
 Preloading tcmalloc_minimal.so
 Athena               INFO including file "AthenaCommon/Preparation.py"
 Athena               INFO including file "AthenaCommon/Bootstrap.py"
@@ -8,7 +7,14 @@ Athena               INFO executing ROOT6Setup
 Athena               INFO including file "AthenaCommon/Execution.py"
 Athena               INFO including file "AthenaPoolExampleAlgorithms/AthenaPoolExample_RWBsJobOptions.py"
 Athena               INFO including file "ByteStreamCnvSvc/BSEventStorageEventSelector_jobOptions.py"
-Py:ConfigurableDb    INFO No duplicates have been found: that's good !
+Py:ConfigurableDb WARNING Found 3 duplicates among the 51 genConfDb files :
+Py:ConfigurableDb WARNING --------------------------------------------------
+Py:ConfigurableDb WARNING   -<component name>: <module> - [ <duplicates> ]
+Py:ConfigurableDb WARNING --------------------------------------------------
+Py:ConfigurableDb WARNING   -TrigEFRazorAllTE: TrigHLTJetHypo.TrigHLTJetHypoConf - ['TrigJetHypo.TrigJetHypoConf', 'TrigJetHypo.TrigJetHypoConf']
+Py:ConfigurableDb WARNING   -TrigL2JetHypo: TrigJetHypo.TrigJetHypoConf - ['TrigCaloHypo.TrigCaloHypoConf']
+Py:ConfigurableDb WARNING   -TrigEFDPhiMetJetAllTE: TrigHLTJetHypo.TrigHLTJetHypoConf - ['TrigJetHypo.TrigJetHypoConf', 'TrigJetHypo.TrigJetHypoConf']
+Py:ConfigurableDb WARNING Fix your cmt/requirements file !!
 Athena               INFO including file "AthenaCommon/runbatch.py"
 ApplicationMgr       INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0
 ApplicationMgr    SUCCESS 
@@ -22,13 +28,10 @@ AthDictLoaderSvc     INFO in initialize...
 AthDictLoaderSvc     INFO acquired Dso-registry
 ChronoStatSvc        INFO  Number of skipped events for MemStat-1
 CoreDumpSvc          INFO install f-a-t-a-l handler... (flag = -1)
-AthenaEventLoopMgr   INFO Initializing AthenaEventLoopMgr - package version AthenaServices-??-??-??
 AthMasterSeq         INFO Member list: AthSequencer/AthAlgSeq, AthSequencer/AthOutSeq, AthSequencer/AthRegSeq
 AthAlgSeq            INFO Member list: AthPoolEx::ReadBs/ReadBs, AthPoolEx::ReadData/ReadData, AthenaOutputStream/Stream1, AthPoolEx::WriteTag/WriteTag, RegistrationStream/RegStream1
 ReadBs              DEBUG Property update for OutputLevel : new value = 2
 ReadBs               INFO in initialize()
-ByteStreamAddre...   INFO Initializing ByteStreamAddressProviderSvc - package version ByteStreamCnvSvcBase-??-??-??
-ROBDataProviderSvc   INFO Initializing ROBDataProviderSvc - package version ByteStreamCnvSvcBase-??-??-??
 ROBDataProviderSvc   INFO  ---> Filter out empty ROB fragments                               =  'filterEmptyROB':False
 ROBDataProviderSvc   INFO  ---> Filter out specific ROBs by Status Code: # ROBs = 0
 ROBDataProviderSvc   INFO  ---> Filter out Sub Detector ROBs by Status Code: # Sub Detectors = 0
@@ -41,23 +44,16 @@ ByteStreamAddre...   INFO    Calorimeter Jet/Energy Processor RoI = 0xac, 0xad
 ByteStreamAddre...   INFO    Topo Processor RoI = 0x81, 0x91
 ByteStreamAddre...   INFO -- Will fill Store with id =  0
 MetaDataSvc         DEBUG Property update for OutputLevel : new value = 2
-MetaDataSvc          INFO Initializing MetaDataSvc - package version AthenaServices-??-??-??
 AthenaPoolCnvSvc    DEBUG Property update for OutputLevel : new value = 2
-AthenaPoolCnvSvc     INFO Initializing AthenaPoolCnvSvc - package version AthenaPoolCnvSvc-??-??-??
 PoolSvc             DEBUG Property update for OutputLevel : new value = 2
-PoolSvc              INFO Initializing PoolSvc - package version PoolSvc-??-??-??
 PoolSvc              INFO io_register[PoolSvc](xmlcatalog_file:PoolFileCatalog.xml) [ok]
 PoolSvc              INFO Set connectionsvc retry/timeout/IDLE timeout to  'ConnectionRetrialPeriod':300/ 'ConnectionRetrialTimeOut':3600/ 'ConnectionTimeOut':5 seconds with connection cleanup disabled
 PoolSvc              INFO Frontier compression level set to 5
 PoolSvc              INFO Successfully setup replica sorting algorithm
 PoolSvc             DEBUG OutputLevel is 2
-PoolSvc              INFO Re-initializing PoolSvc
+PoolSvc              INFO Setting up APR FileCatalog and Streams
 PoolSvc              INFO POOL WriteCatalog is xmlcatalog_file:PoolFileCatalog.xml
-XMLFileCatalog Info Connecting to the catalog
-PoolXMLFileCatalog Info Xerces-c initialization Number 0
-PoolXMLFileCatalog Info File PoolFileCatalog.xml does not exist, a new one is created
-ToolSvc.ByteStr...   INFO Initializing ToolSvc.ByteStreamMetadataTool - package version ByteStreamCnvSvc-??-??-??
-ProxyProviderSvc     INFO Initializing ProxyProviderSvc - package version SGComps-??-??-??
+PoolSvc              INFO Re-initializing PoolSvc
 ReadBs              DEBUG input handles: 0
 ReadBs              DEBUG output handles: 0
 ReadBs              DEBUG Data Deps for ReadBs
@@ -75,12 +71,9 @@ Stream1             DEBUG End initialize
 Stream1             DEBUG In initialize
 Stream1             DEBUG Found StoreGateSvc store.
 Stream1             DEBUG Found MetaDataStore store.
-OutputStreamSeq...   INFO Initializing OutputStreamSequencerSvc - package version AthenaServices-??-??-??
 Stream1.Stream1...  DEBUG Property update for OutputLevel : new value = 2
-Stream1.Stream1...   INFO Initializing Stream1.Stream1Tool - package version OutputStreamAthenaPool-??-??-??
 Stream1.Stream1...   INFO streamProperty ProcessingTag = Stream1
 Stream1.Stream1...  DEBUG Property update for OutputLevel : new value = 2
-Stream1.Stream1...   INFO Initializing Stream1.Stream1_MakeEventStreamInfo - package version OutputStreamAthenaPool-??-??-??
 Stream1              INFO Found HelperTools = PrivateToolHandleArray(['MakeEventStreamInfo/Stream1_MakeEventStreamInfo'])
 Stream1              INFO Data output: SimplePoolFromRaw.root
 Stream1              INFO I/O reinitialization...
@@ -112,15 +105,14 @@ RegStream1          DEBUG output handles: 0
 RegStream1          DEBUG Adding private ToolHandle tool RegStream1.TagTool (RegistrationStreamTagTool)
 RegStream1          DEBUG Data Deps for RegStream1
 HistogramPersis...WARNING Histograms saving not required.
-EventSelector        INFO Initializing EventSelector - package version ByteStreamCnvSvc-??-??-??
+EventSelector        INFO reinitialization...
 EventSelector     WARNING InputCollections not properly set, checking EventStorageInputSvc properties
-EventSelector        INFO Retrieved StoreGateSvc name of  '':[  ]
+EventSelector        INFO Retrieved StoreGateSvc name of  '':StoreGateSvc
+EventSelector        INFO reinitialization...
 EventSelector        INFO Retrieved InputCollections from InputSvc
-ByteStreamInputSvc   INFO Initializing ByteStreamInputSvc - package version ByteStreamCnvSvc-??-??-??
 ByteStreamInputSvcWARNING ProcessBadEvent property has been moved to EventSelector, please use svgMgr.EventSelector.ProcessBadEvent instead
 EventSelector        INFO reinitialization...
 AthenaEventLoopMgr   INFO Setup EventSelector service EventSelector
-ActiveStoreSvc       INFO Initializing ActiveStoreSvc - package version StoreGate-??-??-??
 ApplicationMgr       INFO Application Manager Initialized successfully
 MetaDataSvc         DEBUG handle() FirstInputFile for BSF:/afs/cern.ch/atlas/offline/test/daq.m4_combined.0020720.extract.L1TT-b00000010._0001.data
 MetaDataSvc         DEBUG initInputMetaDataStore: file name BSF:/afs/cern.ch/atlas/offline/test/daq.m4_combined.0020720.extract.L1TT-b00000010._0001.data
@@ -154,25 +146,25 @@ AthenaPoolCnvSvc    DEBUG setAttribute TREE_MAX_SIZE to 1099511627776L
 AthenaPoolCnvSvc    DEBUG setAttribute DEFAULT_SPLITLEVEL to 0
 AthenaPoolCnvSvc    DEBUG setAttribute STREAM_MEMBER_WISE to 1
 AthenaPoolCnvSvc    DEBUG setAttribute DEFAULT_BUFFERSIZE to 32000
-PoolXMLFileCatalog Debug filename SimplePoolFromRaw.root does not exist
-XMLFileCatalog Debug lookupFilebyPFN: Empty File ID found
 Domain[ROOT_All] Info ->  Access   DbDatabase   CREATE    [ROOT_All] ????
 Domain[ROOT_All] Info                           SimplePoolFromRaw.root
 SimplePoolFromRaw.root Debug --> Access   DbContainer  CREATE    [ROOT_All] ##Shapes
-???? Debug Opened container ##Shapes of type ROOT_Tree
+##Shapes Debug Opening
+##Shapes Debug    attributes# = 1
+##Shapes Debug Opened container ##Shapes of type ROOT_Tree
 ##Shapes Debug No objects passing selection criteria... Container has 0 Entries in total.
 SimplePoolFromRaw.root Debug --> Access   DbContainer  CREATE    [ROOT_All] ##Links
-???? Debug Opened container ##Links of type ROOT_Tree
+##Links Debug Opening
+##Links Debug    attributes# = 1
+##Links Debug Opened container ##Links of type ROOT_Tree
 ##Links Debug No objects passing selection criteria... Container has 0 Entries in total.
 SimplePoolFromRaw.root Debug --> Access   DbContainer  CREATE    [ROOT_All] ##Params
-???? Debug Opened container ##Params of type ROOT_Tree
+##Params Debug Opening
+##Params Debug    attributes# = 1
+##Params Debug Opened container ##Params of type ROOT_Tree
 SimplePoolFromRaw.root Debug --->Adding Assoc :????/##Params [200]  (2 , ffffffff)
 SimplePoolFromRaw.root Debug ---->ClassID:????
 ##Params Debug No objects passing selection criteria... Container has 0 Entries in total.
-RootDatabase.setOption Debug Request TREE_AUTO_FLUSH 
-RootDatabase.setOption Debug File name SimplePoolFromRaw.root
-RootDatabase.setOption Debug Demand to set AUTO_FLUSH for TTree: POOLContainer with value: 0
-AthenaPoolCnvSvc    DEBUG setAttribute TREE_AUTO_FLUSH to 0 for db: SimplePoolFromRaw.root and cont: TTree=POOLContainer
 AthenaPoolCnvSvc    DEBUG setAttribute CONTAINER_SPLITLEVEL to 99 for db: SimplePoolFromRaw.root and cont: TTree=POOLContainerForm(DataHeaderForm)
 Stream1             DEBUG addItemObjects(2101,"*") called
 Stream1             DEBUG            Key:*
@@ -182,7 +174,10 @@ Stream1             DEBUG  Object/count: EventInfo_ByteStreamEventInfo, 1
 StorageSvc Info Building shape according to reflection information using shape ID for:
 StorageSvc Info EventInfo_p4 [????]
 SimplePoolFromRaw.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_Tree] CollectionTree(EventInfo_p4/ByteStreamEventInfo)
-???? Debug Opened container CollectionTree(EventInfo_p4/ByteStreamEventInfo) of type ROOT_Tree
+CollectionTree(EventInfo_p4/ByteStreamEventInfo) Debug Opening
+CollectionTree(EventInfo_p4/ByteStreamEventInfo) Debug    attributes# = 1
+CollectionTree(EventInfo_p4/ByteStreamEventInfo) Debug Branch container 'EventInfo_p4_ByteStreamEventInfo'
+CollectionTree(EventInfo_p4/ByteStreamEventInfo) Debug Opened container CollectionTree(EventInfo_p4/ByteStreamEventInfo) of type ROOT_Tree
 SimplePoolFromRaw.root Debug --->Adding Assoc :????/CollectionTree(EventInfo_p4/ByteStreamEventInfo) [202]  (3 , ffffffff)
 SimplePoolFromRaw.root Debug ---->ClassID:????
 SimplePoolFromRaw.root Debug --->Adding Shape[0 , ????]:  [1 Column(s)] 
@@ -191,7 +186,10 @@ SimplePoolFromRaw.root Debug ---->[0]:EventInfo_p4 Typ:EventInfo_p4 [21] Size:0
 StorageSvc Info Building shape according to reflection information using shape ID for:
 StorageSvc Info DataHeaderForm_p5 [????]
 SimplePoolFromRaw.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_Tree] POOLContainerForm(DataHeaderForm)
-???? Debug Opened container POOLContainerForm(DataHeaderForm) of type ROOT_Tree
+POOLContainerForm(DataHeaderForm) Debug Opening
+POOLContainerForm(DataHeaderForm) Debug    attributes# = 1
+POOLContainerForm(DataHeaderForm) Debug Branch container 'DataHeaderForm'
+POOLContainerForm(DataHeaderForm) Debug Opened container POOLContainerForm(DataHeaderForm) of type ROOT_Tree
 SimplePoolFromRaw.root Debug --->Adding Assoc :????/POOLContainerForm(DataHeaderForm) [202]  (4 , ffffffff)
 SimplePoolFromRaw.root Debug ---->ClassID:????
 SimplePoolFromRaw.root Debug --->Adding Shape[1 , ????]:  [1 Column(s)] 
@@ -200,18 +198,24 @@ SimplePoolFromRaw.root Debug ---->[0]:DataHeaderForm_p5 Typ:DataHeaderForm_p5 [2
 StorageSvc Info Building shape according to reflection information using shape ID for:
 StorageSvc Info DataHeader_p5 [????]
 SimplePoolFromRaw.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_Tree] POOLContainer(DataHeader)
-???? Debug Opened container POOLContainer(DataHeader) of type ROOT_Tree
-POOLContainer(DataHeader) Debug Setting AUTO_FLUSH for TTree: POOLContainer to value: 0
+POOLContainer(DataHeader) Debug Opening
+POOLContainer(DataHeader) Debug    attributes# = 1
+POOLContainer(DataHeader) Debug Branch container 'DataHeader'
+POOLContainer(DataHeader) Debug Opened container POOLContainer(DataHeader) of type ROOT_Tree
 SimplePoolFromRaw.root Debug --->Adding Assoc :????/POOLContainer(DataHeader) [202]  (5 , ffffffff)
 SimplePoolFromRaw.root Debug ---->ClassID:????
 SimplePoolFromRaw.root Debug --->Adding Shape[2 , ????]:  [1 Column(s)] 
 SimplePoolFromRaw.root Debug ---->Class:DataHeader_p5
 SimplePoolFromRaw.root Debug ---->[0]:DataHeader_p5 Typ:DataHeader_p5 [21] Size:0 Offset:0 #Elements:1
 SimplePoolFromRaw.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_Tree] POOLContainer(basic/DataHeader)
-???? Debug Opened container POOLContainer(basic/DataHeader) of type ROOT_Tree
+POOLContainer(basic/DataHeader) Debug Opening
+POOLContainer(basic/DataHeader) Debug    attributes# = 1
+POOLContainer(basic/DataHeader) Debug Branch container 'basic_DataHeader'
+POOLContainer(basic/DataHeader) Debug Opened container POOLContainer(basic/DataHeader) of type ROOT_Tree
 SimplePoolFromRaw.root Debug --->Adding Assoc :????/POOLContainer(basic/DataHeader) [202]  (6 , ffffffff)
 SimplePoolFromRaw.root Debug ---->ClassID:????
-AthenaPoolCnvSvc    DEBUG setAttribute BRANCH_BASKET_SIZE to 256000 for db: SimplePoolFromRaw.root and cont: POOLContainerForm(DataHeaderForm)
+AthenaPoolCnvSvc    DEBUG setAttribute BRANCH_BASKET_SIZE to 256000 for db: SimplePoolFromRaw.root and cont: POOLContainer(DataHeader)
+AthenaPoolCnvSvc    DEBUG setAttribute BRANCH_BASKET_SIZE to 1024000 for db: SimplePoolFromRaw.root and cont: POOLContainerForm(DataHeaderForm)
 WriteTag             INFO EventInfo event: 14350  run: 20720
 WriteTag             INFO registered all data
 RegStream1          DEBUG RegistrationStream execute
@@ -318,7 +322,10 @@ Stream1             DEBUG            Key:*
 StorageSvc Info Building shape according to reflection information using shape ID for:
 StorageSvc Info EventStreamInfo_p3 [????]
 SimplePoolFromRaw.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_Tree] MetaData(EventStreamInfo_p3/Stream1)
-???? Debug Opened container MetaData(EventStreamInfo_p3/Stream1) of type ROOT_Tree
+MetaData(EventStreamInfo_p3/Stream1) Debug Opening
+MetaData(EventStreamInfo_p3/Stream1) Debug    attributes# = 1
+MetaData(EventStreamInfo_p3/Stream1) Debug Branch container 'EventStreamInfo_p3_Stream1'
+MetaData(EventStreamInfo_p3/Stream1) Debug Opened container MetaData(EventStreamInfo_p3/Stream1) of type ROOT_Tree
 SimplePoolFromRaw.root Debug --->Adding Assoc :????/MetaData(EventStreamInfo_p3/Stream1) [202]  (7 , ffffffff)
 SimplePoolFromRaw.root Debug ---->ClassID:????
 SimplePoolFromRaw.root Debug --->Adding Shape[3 , ????]:  [1 Column(s)] 
@@ -327,67 +334,45 @@ SimplePoolFromRaw.root Debug ---->[0]:EventStreamInfo_p3 Typ:EventStreamInfo_p3
 StorageSvc Info Building shape according to reflection information using shape ID for:
 StorageSvc Info ByteStreamMetadataContainer_p1 [????]
 SimplePoolFromRaw.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_Tree] MetaData(ByteStreamMetadataContainer_p1/ByteStreamMetadata)
-???? Debug Opened container MetaData(ByteStreamMetadataContainer_p1/ByteStreamMetadata) of type ROOT_Tree
+MetaData(ByteStreamMetadataContainer_p1/ByteStreamMetadata) Debug Opening
+MetaData(ByteStreamMetadataContainer_p1/ByteStreamMetadata) Debug    attributes# = 1
+MetaData(ByteStreamMetadataContainer_p1/ByteStreamMetadata) Debug Branch container 'ByteStreamMetadataContainer_p1_ByteStreamMetadata'
+MetaData(ByteStreamMetadataContainer_p1/ByteStreamMetadata) Debug Opened container MetaData(ByteStreamMetadataContainer_p1/ByteStreamMetadata) of type ROOT_Tree
 SimplePoolFromRaw.root Debug --->Adding Assoc :????/MetaData(ByteStreamMetadataContainer_p1/ByteStreamMetadata) [202]  (8 , ffffffff)
 SimplePoolFromRaw.root Debug ---->ClassID:????
 SimplePoolFromRaw.root Debug --->Adding Shape[4 , ????]:  [1 Column(s)] 
 SimplePoolFromRaw.root Debug ---->Class:ByteStreamMetadataContainer_p1
 SimplePoolFromRaw.root Debug ---->[0]:ByteStreamMetadataContainer_p1 Typ:ByteStreamMetadataContainer_p1 [21] Size:0 Offset:0 #Elements:1
 SimplePoolFromRaw.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_Tree] MetaDataHdrForm(DataHeaderForm)
-???? Debug Opened container MetaDataHdrForm(DataHeaderForm) of type ROOT_Tree
+MetaDataHdrForm(DataHeaderForm) Debug Opening
+MetaDataHdrForm(DataHeaderForm) Debug    attributes# = 1
+MetaDataHdrForm(DataHeaderForm) Debug Branch container 'DataHeaderForm'
+MetaDataHdrForm(DataHeaderForm) Debug Opened container MetaDataHdrForm(DataHeaderForm) of type ROOT_Tree
 SimplePoolFromRaw.root Debug --->Adding Assoc :????/MetaDataHdrForm(DataHeaderForm) [202]  (9 , ffffffff)
 SimplePoolFromRaw.root Debug ---->ClassID:????
 SimplePoolFromRaw.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_Tree] MetaDataHdr(DataHeader)
-???? Debug Opened container MetaDataHdr(DataHeader) of type ROOT_Tree
+MetaDataHdr(DataHeader) Debug Opening
+MetaDataHdr(DataHeader) Debug    attributes# = 1
+MetaDataHdr(DataHeader) Debug Branch container 'DataHeader'
+MetaDataHdr(DataHeader) Debug Opened container MetaDataHdr(DataHeader) of type ROOT_Tree
 SimplePoolFromRaw.root Debug --->Adding Assoc :????/MetaDataHdr(DataHeader) [202]  (a , ffffffff)
 SimplePoolFromRaw.root Debug ---->ClassID:????
 Stream1              INFO Records written: 4
 Stream1             DEBUG Leaving handle
 RegStream1          DEBUG handle() incident type: MetaDataStop
 RegStream1.TagTool   INFO Collection Events output: 3
-XMLFileCatalog Info Updating the catalog
 POOLCollFactory Debug Registering existing collection PFN=RootCollection||PFN:SimpleRawCollection.root, LFN=
-PoolXMLFileCatalog Debug filename RootCollection||PFN:SimpleRawCollection.root does not exist
-XMLFileCatalog Debug lookupFilebyPFN: Empty File ID found
-XMLFileCatalog Info Updating the catalog
 RootCollection::Metadata Debug  Using char buffer of size: 4100
 RootCollection::Metadata Debug  readKeys: found 1 metadata keys
 POOLCollFactory Debug  ---  found catalog guid=
 POOLCollFactory Debug  ---     collection guid=????
-XMLFileCatalog Info Updating the catalog
 RootCollection Debug Commit: saving collection TTree to file: SimpleRawCollection.root
 RootCollection Debug    bytes written to TTree ????
 RootCollection::MetadataCommit Debug Bytes written to the Metadata TTree ????
 RootCollection Info Closing open collection 'SimpleRawCollection.root'
 RootCollection Debug Retrieved Collection TTree  "POOLCollectionTree" from file SimpleRawCollection.root
 RootCollectionSchemaEditor Debug ###### Writing schema....
-CollectionTree(EventInfo_p4/ByteStreamEventInfo) Debug endTransaction: go to finish
-MetaData(ByteStreamMetadataContainer_p1/ByteStreamMetadata) Debug endTransaction: go to finish
-MetaData(EventStreamInfo_p3/Stream1) Debug endTransaction: go to finish
-MetaDataHdr(DataHeader) Debug endTransaction: go to finish
-MetaDataHdrForm(DataHeaderForm) Debug endTransaction: go to finish
-POOLContainer(DataHeader) Debug endTransaction: go to finish
-POOLContainer(basic/DataHeader) Debug endTransaction: go to finish
-POOLContainerForm(DataHeaderForm) Debug endTransaction: go to finish
-##Params Debug endTransaction:  tree AutoSave
-##Shapes Debug endTransaction:  tree AutoSave
-##Links Debug endTransaction:  tree AutoSave
-SimplePoolFromRaw.root Info Database being retired...
-SimplePoolFromRaw.root Debug --> Deaccess DbContainer  CREATE    [ROOT_All] ##Links
-SimplePoolFromRaw.root Debug --> Deaccess DbContainer  CREATE    [ROOT_All] ##Shapes
-SimplePoolFromRaw.root Debug --> Deaccess DbContainer  CREATE    [ROOT_All] ##Params
-RootDatabase.close Debug I/O READ  Bytes: 0
-RootDatabase.close Debug I/O WRITE Bytes: ????
-RootDatabase.close Debug I/O OTHER Bytes: 0
 Domain[ROOT_All] Info ->  Deaccess DbDatabase   CREATE    [ROOT_All] ????
-SimplePoolFromRaw.root Debug --> Deaccess DbContainer  CREA/UPDA [ROOT_Tree] CollectionTree(EventInfo_p4/ByteStreamEventInfo)
-SimplePoolFromRaw.root Debug --> Deaccess DbContainer  CREA/UPDA [ROOT_Tree] MetaData(ByteStreamMetadataContainer_p1/ByteStreamMetadata)
-SimplePoolFromRaw.root Debug --> Deaccess DbContainer  CREA/UPDA [ROOT_Tree] MetaData(EventStreamInfo_p3/Stream1)
-SimplePoolFromRaw.root Debug --> Deaccess DbContainer  CREA/UPDA [ROOT_Tree] MetaDataHdr(DataHeader)
-SimplePoolFromRaw.root Debug --> Deaccess DbContainer  CREA/UPDA [ROOT_Tree] MetaDataHdrForm(DataHeaderForm)
-SimplePoolFromRaw.root Debug --> Deaccess DbContainer  CREA/UPDA [ROOT_Tree] POOLContainer(DataHeader)
-SimplePoolFromRaw.root Debug --> Deaccess DbContainer  CREA/UPDA [ROOT_Tree] POOLContainer(basic/DataHeader)
-SimplePoolFromRaw.root Debug --> Deaccess DbContainer  CREA/UPDA [ROOT_Tree] POOLContainerForm(DataHeaderForm)
 Domain[ROOT_All] Info >   Deaccess DbDomain     UPDATE    [ROOT_All] 
 ApplicationMgr       INFO Application Manager Stopped successfully
 ReadBs               INFO in finalize()
@@ -403,13 +388,8 @@ AthOutSeq            INFO Finalizing AthOutSeq...
 AthRegSeq            INFO Finalizing AthRegSeq...
 AthMasterSeq         INFO Finalizing AthMasterSeq...
 EventInfoByteSt...   INFO finalize 
-DecisionSvc          INFO -- OUTPUT STREAM EVENT OVERLAP SUMMARY --
-DecisionSvc          INFO List of registered 2 Streams: RegStream1 Stream1 
 DecisionSvc          INFO Finalized successfully.
 AthenaPoolCnvSvc    DEBUG releasing all workers
-XMLFileCatalog Info Updating the catalog
-PoolXMLFileCatalog Info XercesC termination number 0
-PoolSvc              INFO I/O finalization...
 AthDictLoaderSvc     INFO in finalize...
 ToolSvc              INFO Removing all tools created by ToolSvc
 ToolSvc.ByteStr...   INFO in finalize()
diff --git a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_RWcBs.ref b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_RWcBs.ref
index 106900639d8605398df8787ec6496370f5e4511c..7a53f875cf47d61f95096c4d37d4eb730be8aa00 100644
--- a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_RWcBs.ref
+++ b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_RWcBs.ref
@@ -1,5 +1,4 @@
-Warning in <TInterpreter::ReadRootmapFile>: class  Event found in libG4AtlasControlDict.so  is already in libtest_GPyTestDict.so 
-Warning in <TInterpreter::ReadRootmapFile>: class  UCharDbArray found in libStorageSvcDict.so  is already in libRootCnvDict.so 
+Warning in <TInterpreter::ReadRootmapFile>: class  xAOD::TReturnCode found in libxAODRootAccessDict.so  is already in libxAODRootAccess.so 
 Preloading tcmalloc_minimal.so
 Athena               INFO including file "AthenaCommon/Preparation.py"
 Athena               INFO including file "AthenaCommon/Bootstrap.py"
@@ -8,7 +7,14 @@ Athena               INFO executing ROOT6Setup
 Athena               INFO including file "AthenaCommon/Execution.py"
 Athena               INFO including file "AthenaPoolExampleAlgorithms/AthenaPoolExample_RWcBsJobOptions.py"
 Athena               INFO including file "ByteStreamCnvSvc/BSEventStorageEventSelector_jobOptions.py"
-Py:ConfigurableDb    INFO No duplicates have been found: that's good !
+Py:ConfigurableDb WARNING Found 3 duplicates among the 51 genConfDb files :
+Py:ConfigurableDb WARNING --------------------------------------------------
+Py:ConfigurableDb WARNING   -<component name>: <module> - [ <duplicates> ]
+Py:ConfigurableDb WARNING --------------------------------------------------
+Py:ConfigurableDb WARNING   -TrigEFRazorAllTE: TrigHLTJetHypo.TrigHLTJetHypoConf - ['TrigJetHypo.TrigJetHypoConf', 'TrigJetHypo.TrigJetHypoConf']
+Py:ConfigurableDb WARNING   -TrigL2JetHypo: TrigJetHypo.TrigJetHypoConf - ['TrigCaloHypo.TrigCaloHypoConf']
+Py:ConfigurableDb WARNING   -TrigEFDPhiMetJetAllTE: TrigHLTJetHypo.TrigHLTJetHypoConf - ['TrigJetHypo.TrigJetHypoConf', 'TrigJetHypo.TrigJetHypoConf']
+Py:ConfigurableDb WARNING Fix your cmt/requirements file !!
 Athena               INFO including file "AthenaCommon/runbatch.py"
 ApplicationMgr       INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0
 ApplicationMgr    SUCCESS 
@@ -22,13 +28,10 @@ AthDictLoaderSvc     INFO in initialize...
 AthDictLoaderSvc     INFO acquired Dso-registry
 ChronoStatSvc        INFO  Number of skipped events for MemStat-1
 CoreDumpSvc          INFO install f-a-t-a-l handler... (flag = -1)
-AthenaEventLoopMgr   INFO Initializing AthenaEventLoopMgr - package version AthenaServices-??-??-??
 AthMasterSeq         INFO Member list: AthSequencer/AthAlgSeq, AthSequencer/AthOutSeq, AthSequencer/AthRegSeq
 AthAlgSeq            INFO Member list: AthPoolEx::ReadBs/ReadBs, AthPoolEx::ReadData/ReadData, AthenaOutputStream/Stream1, AthPoolEx::WriteTag/WriteTag, RegistrationStream/RegStream1
 ReadBs              DEBUG Property update for OutputLevel : new value = 2
 ReadBs               INFO in initialize()
-ByteStreamAddre...   INFO Initializing ByteStreamAddressProviderSvc - package version ByteStreamCnvSvcBase-??-??-??
-ROBDataProviderSvc   INFO Initializing ROBDataProviderSvc - package version ByteStreamCnvSvcBase-??-??-??
 ROBDataProviderSvc   INFO  ---> Filter out empty ROB fragments                               =  'filterEmptyROB':False
 ROBDataProviderSvc   INFO  ---> Filter out specific ROBs by Status Code: # ROBs = 0
 ROBDataProviderSvc   INFO  ---> Filter out Sub Detector ROBs by Status Code: # Sub Detectors = 0
@@ -41,22 +44,16 @@ ByteStreamAddre...   INFO    Calorimeter Jet/Energy Processor RoI = 0xac, 0xad
 ByteStreamAddre...   INFO    Topo Processor RoI = 0x81, 0x91
 ByteStreamAddre...   INFO -- Will fill Store with id =  0
 MetaDataSvc         DEBUG Property update for OutputLevel : new value = 2
-MetaDataSvc          INFO Initializing MetaDataSvc - package version AthenaServices-??-??-??
 AthenaPoolCnvSvc    DEBUG Property update for OutputLevel : new value = 2
-AthenaPoolCnvSvc     INFO Initializing AthenaPoolCnvSvc - package version AthenaPoolCnvSvc-??-??-??
 PoolSvc             DEBUG Property update for OutputLevel : new value = 2
-PoolSvc              INFO Initializing PoolSvc - package version PoolSvc-??-??-??
 PoolSvc              INFO io_register[PoolSvc](xmlcatalog_file:PoolFileCatalog.xml) [ok]
 PoolSvc              INFO Set connectionsvc retry/timeout/IDLE timeout to  'ConnectionRetrialPeriod':300/ 'ConnectionRetrialTimeOut':3600/ 'ConnectionTimeOut':5 seconds with connection cleanup disabled
 PoolSvc              INFO Frontier compression level set to 5
 PoolSvc              INFO Successfully setup replica sorting algorithm
 PoolSvc             DEBUG OutputLevel is 2
-PoolSvc              INFO Re-initializing PoolSvc
+PoolSvc              INFO Setting up APR FileCatalog and Streams
 PoolSvc              INFO POOL WriteCatalog is xmlcatalog_file:PoolFileCatalog.xml
-XMLFileCatalog Info Connecting to the catalog
-PoolXMLFileCatalog Info Xerces-c initialization Number 0
-ToolSvc.ByteStr...   INFO Initializing ToolSvc.ByteStreamMetadataTool - package version ByteStreamCnvSvc-??-??-??
-ProxyProviderSvc     INFO Initializing ProxyProviderSvc - package version SGComps-??-??-??
+PoolSvc              INFO Re-initializing PoolSvc
 ReadBs              DEBUG input handles: 0
 ReadBs              DEBUG output handles: 0
 ReadBs              DEBUG Data Deps for ReadBs
@@ -74,12 +71,9 @@ Stream1             DEBUG End initialize
 Stream1             DEBUG In initialize
 Stream1             DEBUG Found StoreGateSvc store.
 Stream1             DEBUG Found MetaDataStore store.
-OutputStreamSeq...   INFO Initializing OutputStreamSequencerSvc - package version AthenaServices-??-??-??
 Stream1.Stream1...  DEBUG Property update for OutputLevel : new value = 2
-Stream1.Stream1...   INFO Initializing Stream1.Stream1Tool - package version OutputStreamAthenaPool-??-??-??
 Stream1.Stream1...   INFO streamProperty ProcessingTag = Stream1
 Stream1.Stream1...  DEBUG Property update for OutputLevel : new value = 2
-Stream1.Stream1...   INFO Initializing Stream1.Stream1_MakeEventStreamInfo - package version OutputStreamAthenaPool-??-??-??
 Stream1              INFO Found HelperTools = PrivateToolHandleArray(['MakeEventStreamInfo/Stream1_MakeEventStreamInfo'])
 Stream1              INFO Data output: SimplePoolFromRaw.root
 Stream1              INFO I/O reinitialization...
@@ -111,15 +105,14 @@ RegStream1          DEBUG output handles: 0
 RegStream1          DEBUG Adding private ToolHandle tool RegStream1.TagTool (RegistrationStreamTagTool)
 RegStream1          DEBUG Data Deps for RegStream1
 HistogramPersis...WARNING Histograms saving not required.
-EventSelector        INFO Initializing EventSelector - package version ByteStreamCnvSvc-??-??-??
+EventSelector        INFO reinitialization...
 EventSelector     WARNING InputCollections not properly set, checking EventStorageInputSvc properties
-EventSelector        INFO Retrieved StoreGateSvc name of  '':[  ]
+EventSelector        INFO Retrieved StoreGateSvc name of  '':StoreGateSvc
+EventSelector        INFO reinitialization...
 EventSelector        INFO Retrieved InputCollections from InputSvc
-ByteStreamInputSvc   INFO Initializing ByteStreamInputSvc - package version ByteStreamCnvSvc-??-??-??
 ByteStreamInputSvcWARNING ProcessBadEvent property has been moved to EventSelector, please use svgMgr.EventSelector.ProcessBadEvent instead
 EventSelector        INFO reinitialization...
 AthenaEventLoopMgr   INFO Setup EventSelector service EventSelector
-ActiveStoreSvc       INFO Initializing ActiveStoreSvc - package version StoreGate-??-??-??
 ApplicationMgr       INFO Application Manager Initialized successfully
 MetaDataSvc         DEBUG handle() FirstInputFile for BSF:test_defl.data
 MetaDataSvc         DEBUG initInputMetaDataStore: file name BSF:test_defl.data
@@ -156,20 +149,22 @@ AthenaPoolCnvSvc    DEBUG setAttribute DEFAULT_BUFFERSIZE to 32000
 Domain[ROOT_All] Info ->  Access   DbDatabase   CREATE    [ROOT_All] ????
 Domain[ROOT_All] Info                           SimplePoolFromRaw.root
 SimplePoolFromRaw.root Debug --> Access   DbContainer  CREATE    [ROOT_All] ##Shapes
-???? Debug Opened container ##Shapes of type ROOT_Tree
+##Shapes Debug Opening
+##Shapes Debug    attributes# = 1
+##Shapes Debug Opened container ##Shapes of type ROOT_Tree
 ##Shapes Debug No objects passing selection criteria... Container has 0 Entries in total.
 SimplePoolFromRaw.root Debug --> Access   DbContainer  CREATE    [ROOT_All] ##Links
-???? Debug Opened container ##Links of type ROOT_Tree
+##Links Debug Opening
+##Links Debug    attributes# = 1
+##Links Debug Opened container ##Links of type ROOT_Tree
 ##Links Debug No objects passing selection criteria... Container has 0 Entries in total.
 SimplePoolFromRaw.root Debug --> Access   DbContainer  CREATE    [ROOT_All] ##Params
-???? Debug Opened container ##Params of type ROOT_Tree
+##Params Debug Opening
+##Params Debug    attributes# = 1
+##Params Debug Opened container ##Params of type ROOT_Tree
 SimplePoolFromRaw.root Debug --->Adding Assoc :????/##Params [200]  (2 , ffffffff)
 SimplePoolFromRaw.root Debug ---->ClassID:????
 ##Params Debug No objects passing selection criteria... Container has 0 Entries in total.
-RootDatabase.setOption Debug Request TREE_AUTO_FLUSH 
-RootDatabase.setOption Debug File name SimplePoolFromRaw.root
-RootDatabase.setOption Debug Demand to set AUTO_FLUSH for TTree: POOLContainer with value: 0
-AthenaPoolCnvSvc    DEBUG setAttribute TREE_AUTO_FLUSH to 0 for db: SimplePoolFromRaw.root and cont: TTree=POOLContainer
 AthenaPoolCnvSvc    DEBUG setAttribute CONTAINER_SPLITLEVEL to 99 for db: SimplePoolFromRaw.root and cont: TTree=POOLContainerForm(DataHeaderForm)
 Stream1             DEBUG addItemObjects(2101,"*") called
 Stream1             DEBUG            Key:*
@@ -179,7 +174,10 @@ Stream1             DEBUG  Object/count: EventInfo_ByteStreamEventInfo, 1
 StorageSvc Info Building shape according to reflection information using shape ID for:
 StorageSvc Info EventInfo_p4 [????]
 SimplePoolFromRaw.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_Tree] CollectionTree(EventInfo_p4/ByteStreamEventInfo)
-???? Debug Opened container CollectionTree(EventInfo_p4/ByteStreamEventInfo) of type ROOT_Tree
+CollectionTree(EventInfo_p4/ByteStreamEventInfo) Debug Opening
+CollectionTree(EventInfo_p4/ByteStreamEventInfo) Debug    attributes# = 1
+CollectionTree(EventInfo_p4/ByteStreamEventInfo) Debug Branch container 'EventInfo_p4_ByteStreamEventInfo'
+CollectionTree(EventInfo_p4/ByteStreamEventInfo) Debug Opened container CollectionTree(EventInfo_p4/ByteStreamEventInfo) of type ROOT_Tree
 SimplePoolFromRaw.root Debug --->Adding Assoc :????/CollectionTree(EventInfo_p4/ByteStreamEventInfo) [202]  (3 , ffffffff)
 SimplePoolFromRaw.root Debug ---->ClassID:????
 SimplePoolFromRaw.root Debug --->Adding Shape[0 , ????]:  [1 Column(s)] 
@@ -188,7 +186,10 @@ SimplePoolFromRaw.root Debug ---->[0]:EventInfo_p4 Typ:EventInfo_p4 [21] Size:0
 StorageSvc Info Building shape according to reflection information using shape ID for:
 StorageSvc Info DataHeaderForm_p5 [????]
 SimplePoolFromRaw.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_Tree] POOLContainerForm(DataHeaderForm)
-???? Debug Opened container POOLContainerForm(DataHeaderForm) of type ROOT_Tree
+POOLContainerForm(DataHeaderForm) Debug Opening
+POOLContainerForm(DataHeaderForm) Debug    attributes# = 1
+POOLContainerForm(DataHeaderForm) Debug Branch container 'DataHeaderForm'
+POOLContainerForm(DataHeaderForm) Debug Opened container POOLContainerForm(DataHeaderForm) of type ROOT_Tree
 SimplePoolFromRaw.root Debug --->Adding Assoc :????/POOLContainerForm(DataHeaderForm) [202]  (4 , ffffffff)
 SimplePoolFromRaw.root Debug ---->ClassID:????
 SimplePoolFromRaw.root Debug --->Adding Shape[1 , ????]:  [1 Column(s)] 
@@ -197,18 +198,24 @@ SimplePoolFromRaw.root Debug ---->[0]:DataHeaderForm_p5 Typ:DataHeaderForm_p5 [2
 StorageSvc Info Building shape according to reflection information using shape ID for:
 StorageSvc Info DataHeader_p5 [????]
 SimplePoolFromRaw.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_Tree] POOLContainer(DataHeader)
-???? Debug Opened container POOLContainer(DataHeader) of type ROOT_Tree
-POOLContainer(DataHeader) Debug Setting AUTO_FLUSH for TTree: POOLContainer to value: 0
+POOLContainer(DataHeader) Debug Opening
+POOLContainer(DataHeader) Debug    attributes# = 1
+POOLContainer(DataHeader) Debug Branch container 'DataHeader'
+POOLContainer(DataHeader) Debug Opened container POOLContainer(DataHeader) of type ROOT_Tree
 SimplePoolFromRaw.root Debug --->Adding Assoc :????/POOLContainer(DataHeader) [202]  (5 , ffffffff)
 SimplePoolFromRaw.root Debug ---->ClassID:????
 SimplePoolFromRaw.root Debug --->Adding Shape[2 , ????]:  [1 Column(s)] 
 SimplePoolFromRaw.root Debug ---->Class:DataHeader_p5
 SimplePoolFromRaw.root Debug ---->[0]:DataHeader_p5 Typ:DataHeader_p5 [21] Size:0 Offset:0 #Elements:1
 SimplePoolFromRaw.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_Tree] POOLContainer(basic/DataHeader)
-???? Debug Opened container POOLContainer(basic/DataHeader) of type ROOT_Tree
+POOLContainer(basic/DataHeader) Debug Opening
+POOLContainer(basic/DataHeader) Debug    attributes# = 1
+POOLContainer(basic/DataHeader) Debug Branch container 'basic_DataHeader'
+POOLContainer(basic/DataHeader) Debug Opened container POOLContainer(basic/DataHeader) of type ROOT_Tree
 SimplePoolFromRaw.root Debug --->Adding Assoc :????/POOLContainer(basic/DataHeader) [202]  (6 , ffffffff)
 SimplePoolFromRaw.root Debug ---->ClassID:????
-AthenaPoolCnvSvc    DEBUG setAttribute BRANCH_BASKET_SIZE to 256000 for db: SimplePoolFromRaw.root and cont: POOLContainerForm(DataHeaderForm)
+AthenaPoolCnvSvc    DEBUG setAttribute BRANCH_BASKET_SIZE to 256000 for db: SimplePoolFromRaw.root and cont: POOLContainer(DataHeader)
+AthenaPoolCnvSvc    DEBUG setAttribute BRANCH_BASKET_SIZE to 1024000 for db: SimplePoolFromRaw.root and cont: POOLContainerForm(DataHeaderForm)
 WriteTag             INFO EventInfo event: 14350  run: 20720
 WriteTag             INFO registered all data
 RegStream1          DEBUG RegistrationStream execute
@@ -315,7 +322,10 @@ Stream1             DEBUG            Key:*
 StorageSvc Info Building shape according to reflection information using shape ID for:
 StorageSvc Info EventStreamInfo_p3 [????]
 SimplePoolFromRaw.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_Tree] MetaData(EventStreamInfo_p3/Stream1)
-???? Debug Opened container MetaData(EventStreamInfo_p3/Stream1) of type ROOT_Tree
+MetaData(EventStreamInfo_p3/Stream1) Debug Opening
+MetaData(EventStreamInfo_p3/Stream1) Debug    attributes# = 1
+MetaData(EventStreamInfo_p3/Stream1) Debug Branch container 'EventStreamInfo_p3_Stream1'
+MetaData(EventStreamInfo_p3/Stream1) Debug Opened container MetaData(EventStreamInfo_p3/Stream1) of type ROOT_Tree
 SimplePoolFromRaw.root Debug --->Adding Assoc :????/MetaData(EventStreamInfo_p3/Stream1) [202]  (7 , ffffffff)
 SimplePoolFromRaw.root Debug ---->ClassID:????
 SimplePoolFromRaw.root Debug --->Adding Shape[3 , ????]:  [1 Column(s)] 
@@ -324,67 +334,46 @@ SimplePoolFromRaw.root Debug ---->[0]:EventStreamInfo_p3 Typ:EventStreamInfo_p3
 StorageSvc Info Building shape according to reflection information using shape ID for:
 StorageSvc Info ByteStreamMetadataContainer_p1 [????]
 SimplePoolFromRaw.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_Tree] MetaData(ByteStreamMetadataContainer_p1/ByteStreamMetadata)
-???? Debug Opened container MetaData(ByteStreamMetadataContainer_p1/ByteStreamMetadata) of type ROOT_Tree
+MetaData(ByteStreamMetadataContainer_p1/ByteStreamMetadata) Debug Opening
+MetaData(ByteStreamMetadataContainer_p1/ByteStreamMetadata) Debug    attributes# = 1
+MetaData(ByteStreamMetadataContainer_p1/ByteStreamMetadata) Debug Branch container 'ByteStreamMetadataContainer_p1_ByteStreamMetadata'
+MetaData(ByteStreamMetadataContainer_p1/ByteStreamMetadata) Debug Opened container MetaData(ByteStreamMetadataContainer_p1/ByteStreamMetadata) of type ROOT_Tree
 SimplePoolFromRaw.root Debug --->Adding Assoc :????/MetaData(ByteStreamMetadataContainer_p1/ByteStreamMetadata) [202]  (8 , ffffffff)
 SimplePoolFromRaw.root Debug ---->ClassID:????
 SimplePoolFromRaw.root Debug --->Adding Shape[4 , ????]:  [1 Column(s)] 
 SimplePoolFromRaw.root Debug ---->Class:ByteStreamMetadataContainer_p1
 SimplePoolFromRaw.root Debug ---->[0]:ByteStreamMetadataContainer_p1 Typ:ByteStreamMetadataContainer_p1 [21] Size:0 Offset:0 #Elements:1
 SimplePoolFromRaw.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_Tree] MetaDataHdrForm(DataHeaderForm)
-???? Debug Opened container MetaDataHdrForm(DataHeaderForm) of type ROOT_Tree
+MetaDataHdrForm(DataHeaderForm) Debug Opening
+MetaDataHdrForm(DataHeaderForm) Debug    attributes# = 1
+MetaDataHdrForm(DataHeaderForm) Debug Branch container 'DataHeaderForm'
+MetaDataHdrForm(DataHeaderForm) Debug Opened container MetaDataHdrForm(DataHeaderForm) of type ROOT_Tree
 SimplePoolFromRaw.root Debug --->Adding Assoc :????/MetaDataHdrForm(DataHeaderForm) [202]  (9 , ffffffff)
 SimplePoolFromRaw.root Debug ---->ClassID:????
 SimplePoolFromRaw.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_Tree] MetaDataHdr(DataHeader)
-???? Debug Opened container MetaDataHdr(DataHeader) of type ROOT_Tree
+MetaDataHdr(DataHeader) Debug Opening
+MetaDataHdr(DataHeader) Debug    attributes# = 1
+MetaDataHdr(DataHeader) Debug Branch container 'DataHeader'
+MetaDataHdr(DataHeader) Debug Opened container MetaDataHdr(DataHeader) of type ROOT_Tree
 SimplePoolFromRaw.root Debug --->Adding Assoc :????/MetaDataHdr(DataHeader) [202]  (a , ffffffff)
 SimplePoolFromRaw.root Debug ---->ClassID:????
 Stream1              INFO Records written: 4
 Stream1             DEBUG Leaving handle
 RegStream1          DEBUG handle() incident type: MetaDataStop
 RegStream1.TagTool   INFO Collection Events output: 3
-XMLFileCatalog Debug There were no updates in the catalog
 POOLCollFactory Debug Registering existing collection PFN=RootCollection||PFN:SimpleRawCollection.root, LFN=
-XMLFileCatalog Debug There were no updates in the catalog
 RootCollection::Metadata Debug  Using char buffer of size: 4100
 RootCollection::Metadata Debug  readKeys: found 1 metadata keys
 POOLCollFactory Debug  ---  found catalog guid=????
 POOLCollFactory Debug  ---     collection guid=????
 POOLCollFactory Info  -- removing ???? from the catalog 
-XMLFileCatalog Info Updating the catalog
-XMLFileCatalog Info Updating the catalog
 RootCollection Debug Commit: saving collection TTree to file: SimpleRawCollection.root
 RootCollection Debug    bytes written to TTree ????
 RootCollection::MetadataCommit Debug Bytes written to the Metadata TTree ????
 RootCollection Info Closing open collection 'SimpleRawCollection.root'
 RootCollection Debug Retrieved Collection TTree  "POOLCollectionTree" from file SimpleRawCollection.root
 RootCollectionSchemaEditor Debug ###### Writing schema....
-CollectionTree(EventInfo_p4/ByteStreamEventInfo) Debug endTransaction: go to finish
-MetaData(ByteStreamMetadataContainer_p1/ByteStreamMetadata) Debug endTransaction: go to finish
-MetaData(EventStreamInfo_p3/Stream1) Debug endTransaction: go to finish
-MetaDataHdr(DataHeader) Debug endTransaction: go to finish
-MetaDataHdrForm(DataHeaderForm) Debug endTransaction: go to finish
-POOLContainer(DataHeader) Debug endTransaction: go to finish
-POOLContainer(basic/DataHeader) Debug endTransaction: go to finish
-POOLContainerForm(DataHeaderForm) Debug endTransaction: go to finish
-##Params Debug endTransaction:  tree AutoSave
-##Shapes Debug endTransaction:  tree AutoSave
-##Links Debug endTransaction:  tree AutoSave
-SimplePoolFromRaw.root Info Database being retired...
-SimplePoolFromRaw.root Debug --> Deaccess DbContainer  CREATE    [ROOT_All] ##Links
-SimplePoolFromRaw.root Debug --> Deaccess DbContainer  CREATE    [ROOT_All] ##Shapes
-SimplePoolFromRaw.root Debug --> Deaccess DbContainer  CREATE    [ROOT_All] ##Params
-RootDatabase.close Debug I/O READ  Bytes: 0
-RootDatabase.close Debug I/O WRITE Bytes: ????
-RootDatabase.close Debug I/O OTHER Bytes: 0
 Domain[ROOT_All] Info ->  Deaccess DbDatabase   CREATE    [ROOT_All] ????
-SimplePoolFromRaw.root Debug --> Deaccess DbContainer  CREA/UPDA [ROOT_Tree] CollectionTree(EventInfo_p4/ByteStreamEventInfo)
-SimplePoolFromRaw.root Debug --> Deaccess DbContainer  CREA/UPDA [ROOT_Tree] MetaData(ByteStreamMetadataContainer_p1/ByteStreamMetadata)
-SimplePoolFromRaw.root Debug --> Deaccess DbContainer  CREA/UPDA [ROOT_Tree] MetaData(EventStreamInfo_p3/Stream1)
-SimplePoolFromRaw.root Debug --> Deaccess DbContainer  CREA/UPDA [ROOT_Tree] MetaDataHdr(DataHeader)
-SimplePoolFromRaw.root Debug --> Deaccess DbContainer  CREA/UPDA [ROOT_Tree] MetaDataHdrForm(DataHeaderForm)
-SimplePoolFromRaw.root Debug --> Deaccess DbContainer  CREA/UPDA [ROOT_Tree] POOLContainer(DataHeader)
-SimplePoolFromRaw.root Debug --> Deaccess DbContainer  CREA/UPDA [ROOT_Tree] POOLContainer(basic/DataHeader)
-SimplePoolFromRaw.root Debug --> Deaccess DbContainer  CREA/UPDA [ROOT_Tree] POOLContainerForm(DataHeaderForm)
 Domain[ROOT_All] Info >   Deaccess DbDomain     UPDATE    [ROOT_All] 
 ApplicationMgr       INFO Application Manager Stopped successfully
 ReadBs               INFO in finalize()
@@ -400,13 +389,8 @@ AthOutSeq            INFO Finalizing AthOutSeq...
 AthRegSeq            INFO Finalizing AthRegSeq...
 AthMasterSeq         INFO Finalizing AthMasterSeq...
 EventInfoByteSt...   INFO finalize 
-DecisionSvc          INFO -- OUTPUT STREAM EVENT OVERLAP SUMMARY --
-DecisionSvc          INFO List of registered 2 Streams: RegStream1 Stream1 
 DecisionSvc          INFO Finalized successfully.
 AthenaPoolCnvSvc    DEBUG releasing all workers
-XMLFileCatalog Info Updating the catalog
-PoolXMLFileCatalog Info XercesC termination number 0
-PoolSvc              INFO I/O finalization...
 AthDictLoaderSvc     INFO in finalize...
 ToolSvc              INFO Removing all tools created by ToolSvc
 ToolSvc.ByteStr...   INFO in finalize()
diff --git a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_ReadBs.ref b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_ReadBs.ref
index de0e58cf6a34a15bc5a013bbdeea703ea305c33d..d1ee25ed0b445141bc450d574b17f5782c116061 100644
--- a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_ReadBs.ref
+++ b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_ReadBs.ref
@@ -1,5 +1,4 @@
-Warning in <TInterpreter::ReadRootmapFile>: class  Event found in libG4AtlasControlDict.so  is already in libtest_GPyTestDict.so 
-Warning in <TInterpreter::ReadRootmapFile>: class  UCharDbArray found in libStorageSvcDict.so  is already in libRootCnvDict.so 
+Warning in <TInterpreter::ReadRootmapFile>: class  xAOD::TReturnCode found in libxAODRootAccessDict.so  is already in libxAODRootAccess.so 
 Preloading tcmalloc_minimal.so
 Athena               INFO including file "AthenaCommon/Preparation.py"
 Athena               INFO including file "AthenaCommon/Bootstrap.py"
@@ -7,7 +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_ReadBsJobOptions.py"
-Py:ConfigurableDb    INFO No duplicates have been found: that's good !
+Py:ConfigurableDb WARNING Found 3 duplicates among the 51 genConfDb files :
+Py:ConfigurableDb WARNING --------------------------------------------------
+Py:ConfigurableDb WARNING   -<component name>: <module> - [ <duplicates> ]
+Py:ConfigurableDb WARNING --------------------------------------------------
+Py:ConfigurableDb WARNING   -TrigEFRazorAllTE: TrigHLTJetHypo.TrigHLTJetHypoConf - ['TrigJetHypo.TrigJetHypoConf', 'TrigJetHypo.TrigJetHypoConf']
+Py:ConfigurableDb WARNING   -TrigL2JetHypo: TrigJetHypo.TrigJetHypoConf - ['TrigCaloHypo.TrigCaloHypoConf']
+Py:ConfigurableDb WARNING   -TrigEFDPhiMetJetAllTE: TrigHLTJetHypo.TrigHLTJetHypoConf - ['TrigJetHypo.TrigJetHypoConf', 'TrigJetHypo.TrigJetHypoConf']
+Py:ConfigurableDb WARNING Fix your cmt/requirements file !!
 Athena               INFO including file "AthenaCommon/runbatch.py"
 ApplicationMgr       INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0
 ApplicationMgr    SUCCESS 
@@ -21,27 +27,20 @@ AthDictLoaderSvc     INFO in initialize...
 AthDictLoaderSvc     INFO acquired Dso-registry
 ChronoStatSvc        INFO  Number of skipped events for MemStat-1
 CoreDumpSvc          INFO install f-a-t-a-l handler... (flag = -1)
-AthenaEventLoopMgr   INFO Initializing AthenaEventLoopMgr - package version AthenaServices-??-??-??
 AthMasterSeq         INFO Member list: AthSequencer/AthAlgSeq, AthSequencer/AthOutSeq, AthSequencer/AthRegSeq
 AthAlgSeq            INFO Member list: AthPoolEx::ReadBs/ReadBs, AthPoolEx::ReadData/ReadData
 ReadBs               INFO in initialize()
 MetaDataSvc         DEBUG Property update for OutputLevel : new value = 2
-MetaDataSvc          INFO Initializing MetaDataSvc - package version AthenaServices-??-??-??
-AthenaPoolCnvSvc     INFO Initializing AthenaPoolCnvSvc - package version AthenaPoolCnvSvc-??-??-??
 PoolSvc             DEBUG Property update for OutputLevel : new value = 2
-PoolSvc              INFO Initializing PoolSvc - package version PoolSvc-??-??-??
 PoolSvc              INFO io_register[PoolSvc](xmlcatalog_file:PoolFileCatalog.xml) [ok]
 PoolSvc              INFO Set connectionsvc retry/timeout/IDLE timeout to  'ConnectionRetrialPeriod':300/ 'ConnectionRetrialTimeOut':3600/ 'ConnectionTimeOut':5 seconds with connection cleanup disabled
 PoolSvc              INFO Frontier compression level set to 5
 PoolSvc              INFO Successfully setup replica sorting algorithm
 PoolSvc             DEBUG OutputLevel is 2
-PoolSvc              INFO Re-initializing PoolSvc
+PoolSvc              INFO Setting up APR FileCatalog and Streams
 PoolSvc              INFO POOL WriteCatalog is xmlcatalog_file:PoolFileCatalog.xml
-XMLFileCatalog Info Connecting to the catalog
-PoolXMLFileCatalog Info Xerces-c initialization Number 0
-ToolSvc.ByteStr...   INFO Initializing ToolSvc.ByteStreamMetadataTool - package version ByteStreamCnvSvc-??-??-??
+PoolSvc              INFO Re-initializing PoolSvc
 EventSelector       DEBUG Property update for OutputLevel : new value = 2
-EventSelector        INFO Initializing EventSelector - package version EventSelectorAthenaPool-??-??-??
 EventSelector        INFO reinitialization...
 EventSelector        INFO EventSelection with query 
 EventSelector       DEBUG Try item: "SimplePoolFromRaw.root" from the collection list.
@@ -54,7 +53,9 @@ Domain[ROOT_All] Info >   Access   DbDomain     READ      [ROOT_All]
 Domain[ROOT_All] Info ->  Access   DbDatabase   READ      [ROOT_All] ????
 Domain[ROOT_All] Info                           SimplePoolFromRaw.root
 SimplePoolFromRaw.root Debug --> Access   DbContainer  READ      [ROOT_All] ##Shapes
-???? Debug Opened container ##Shapes of type ROOT_Tree
+##Shapes Debug Opening
+##Shapes Debug    attributes# = 1
+##Shapes Debug Opened container ##Shapes of type ROOT_Tree
 SimplePoolFromRaw.root Debug --->Reading Shape[0 , ????]: [1 Column(s)]
 SimplePoolFromRaw.root Debug ---->[0]:EventInfo_p4 Typ:EventInfo_p4 [21] Size:0 Offset:0 #Elements:1
 SimplePoolFromRaw.root Debug --->Reading Shape[1 , ????]: [1 Column(s)]
@@ -67,7 +68,9 @@ SimplePoolFromRaw.root Debug --->Reading Shape[4 , ????]: [1 Column(s)]
 SimplePoolFromRaw.root Debug ---->[0]:ByteStreamMetadataContainer_p1 Typ:ByteStreamMetadataContainer_p1 [21] Size:0 Offset:0 #Elements:1
 ##Shapes Debug No objects passing selection criteria... Container has 5 Entries in total.
 SimplePoolFromRaw.root Debug --> Access   DbContainer  READ      [ROOT_All] ##Links
-???? Debug Opened container ##Links of type ROOT_Tree
+##Links Debug Opening
+##Links Debug    attributes# = 1
+##Links Debug Opened container ##Links of type ROOT_Tree
 SimplePoolFromRaw.root Debug --->Reading Assoc:????/##Params [200]  (2 , ffffffff)
 SimplePoolFromRaw.root Debug ---->ClassID:????
 SimplePoolFromRaw.root Debug --->Reading Assoc:????/CollectionTree(EventInfo_p4/ByteStreamEventInfo) [202]  (3 , ffffffff)
@@ -88,7 +91,9 @@ SimplePoolFromRaw.root Debug --->Reading Assoc:????/MetaDataHdr(DataHeader) [202
 SimplePoolFromRaw.root Debug ---->ClassID:????
 ##Links Debug No objects passing selection criteria... Container has 9 Entries in total.
 SimplePoolFromRaw.root Debug --> Access   DbContainer  READ      [ROOT_All] ##Params
-???? Debug Opened container ##Params of type ROOT_Tree
+##Params Debug Opening
+##Params Debug    attributes# = 1
+##Params Debug Opened container ##Params of type ROOT_Tree
 SimplePoolFromRaw.root Debug --->Reading Param:FID=[????]
 SimplePoolFromRaw.root Debug --->Reading Param:PFN=[SimplePoolFromRaw.root]
 SimplePoolFromRaw.root Debug --->Reading Param:POOL_VSN=[1.1]
@@ -97,20 +102,36 @@ SimplePoolFromRaw.root Debug --->Reading Param:FORMAT_VSN=[1.1]
 ImplicitCollection Info Opened the implicit collection with connection string "PFN:SimplePoolFromRaw.root"
 ImplicitCollection Info and a name "POOLContainer(DataHeader)"
 SimplePoolFromRaw.root Debug --> Access   DbContainer  READ      [ROOT_Tree] POOLContainer(DataHeader)
-???? Debug Opened container POOLContainer(DataHeader) of type ROOT_Tree
+POOLContainer(DataHeader) Debug Opening
+POOLContainer(DataHeader) Debug    attributes# = 1
+POOLContainer(DataHeader) Debug Branch container 'DataHeader'
+POOLContainer(DataHeader) Debug Opened container POOLContainer(DataHeader) of type ROOT_Tree
 MetaDataSvc         DEBUG handle() FirstInputFile for FID:????
 MetaDataSvc         DEBUG initInputMetaDataStore: file name FID:????
 SimplePoolFromRaw.root Debug --> Access   DbContainer  READ      [ROOT_Tree] MetaDataHdr(DataHeader)
-???? Debug Opened container MetaDataHdr(DataHeader) of type ROOT_Tree
+MetaDataHdr(DataHeader) Debug Opening
+MetaDataHdr(DataHeader) Debug    attributes# = 1
+MetaDataHdr(DataHeader) Debug Branch container 'DataHeader'
+MetaDataHdr(DataHeader) Debug Opened container MetaDataHdr(DataHeader) of type ROOT_Tree
 PoolSvc              INFO Failed to find container MetaDataHdrDataHeader to get Token.
 EventPersistenc...   INFO Added successfully Conversion service:AthenaPoolCnvSvc
 SimplePoolFromRaw.root Debug --> Access   DbContainer  READ      [ROOT_Tree] MetaDataHdrForm(DataHeaderForm)
-???? Debug Opened container MetaDataHdrForm(DataHeaderForm) of type ROOT_Tree
+MetaDataHdrForm(DataHeaderForm) Debug Opening
+MetaDataHdrForm(DataHeaderForm) Debug    attributes# = 1
+MetaDataHdrForm(DataHeaderForm) Debug Branch container 'DataHeaderForm'
+MetaDataHdrForm(DataHeaderForm) Debug Opened container MetaDataHdrForm(DataHeaderForm) of type ROOT_Tree
 MetaDataSvc         DEBUG Loaded input meta data store proxies
 ToolSvc.ByteStr...   INFO handle() FirstInputFile, filename = FID:????
+EventSelector        INFO reinitialization...
+EventSelector        INFO EventSelection with query 
+EventSelector       DEBUG Try item: "SimplePoolFromRaw.root" from the collection list.
+RootCollection Info Opening Collection File SimplePoolFromRaw.root in mode: READ
+RootCollection Debug File SimplePoolFromRaw.root exists.
+RootCollection Info File SimplePoolFromRaw.root opened
+RootCollection Debug Open() failed with expception: POOL Collection TTree not found in file SimplePoolFromRaw.root ( POOL : "RootCollection::open" from "RootCollection" )
+ImplicitCollection Info Opened the implicit collection with connection string "PFN:SimplePoolFromRaw.root"
+ImplicitCollection Info and a name "POOLContainer(DataHeader)"
 AthenaPoolAddre...  DEBUG Property update for OutputLevel : new value = 2
-AthenaPoolAddre...   INFO Initializing AthenaPoolAddressProviderSvc - package version EventSelectorAthenaPool-??-??-??
-ProxyProviderSvc     INFO Initializing ProxyProviderSvc - package version SGComps-??-??-??
 ReadData            DEBUG Property update for OutputLevel : new value = 2
 ReadData             INFO in initialize()
 ReadData            DEBUG input handles: 0
@@ -118,20 +139,8 @@ ReadData            DEBUG output handles: 0
 ReadData            DEBUG Data Deps for ReadData
 HistogramPersis...WARNING Histograms saving not required.
 AthenaEventLoopMgr   INFO Setup EventSelector service EventSelector
-ActiveStoreSvc       INFO Initializing ActiveStoreSvc - package version StoreGate-??-??-??
 ApplicationMgr       INFO Application Manager Initialized successfully
-SimplePoolFromRaw.root Info Database being retired...
-SimplePoolFromRaw.root Debug --> Deaccess DbContainer  READ      [ROOT_All] ##Links
-SimplePoolFromRaw.root Debug --> Deaccess DbContainer  READ      [ROOT_All] ##Shapes
-SimplePoolFromRaw.root Debug --> Deaccess DbContainer  READ      [ROOT_All] ##Params
-RootDatabase.close Debug I/O READ  Bytes: ????
-RootDatabase.close Debug I/O WRITE Bytes: 0
-RootDatabase.close Debug I/O OTHER Bytes: 0
 Domain[ROOT_All] Info ->  Deaccess DbDatabase   READ      [ROOT_All] ????
-SimplePoolFromRaw.root Debug --> Deaccess DbContainer  READ      [ROOT_Tree] MetaDataHdr(DataHeader)
-SimplePoolFromRaw.root Debug --> Deaccess DbContainer  READ      [ROOT_Tree] MetaDataHdrForm(DataHeaderForm)
-SimplePoolFromRaw.root Debug --> Deaccess DbContainer  READ      [ROOT_Tree] POOLContainer(DataHeader)
-Domain[ROOT_All] Info >   Deaccess DbDomain     READ      [ROOT_All] 
 EventSelector       DEBUG Try item: "SimplePoolFromRaw.root" from the collection list.
 RootCollection Info Opening Collection File SimplePoolFromRaw.root in mode: READ
 RootCollection Debug File SimplePoolFromRaw.root exists.
@@ -142,7 +151,9 @@ Domain[ROOT_All] Info >   Access   DbDomain     READ      [ROOT_All]
 Domain[ROOT_All] Info ->  Access   DbDatabase   READ      [ROOT_All] ????
 Domain[ROOT_All] Info                           SimplePoolFromRaw.root
 SimplePoolFromRaw.root Debug --> Access   DbContainer  READ      [ROOT_All] ##Shapes
-???? Debug Opened container ##Shapes of type ROOT_Tree
+##Shapes Debug Opening
+##Shapes Debug    attributes# = 1
+##Shapes Debug Opened container ##Shapes of type ROOT_Tree
 SimplePoolFromRaw.root Debug --->Reading Shape[0 , ????]: [1 Column(s)]
 SimplePoolFromRaw.root Debug ---->[0]:EventInfo_p4 Typ:EventInfo_p4 [21] Size:0 Offset:0 #Elements:1
 SimplePoolFromRaw.root Debug --->Reading Shape[1 , ????]: [1 Column(s)]
@@ -155,7 +166,9 @@ SimplePoolFromRaw.root Debug --->Reading Shape[4 , ????]: [1 Column(s)]
 SimplePoolFromRaw.root Debug ---->[0]:ByteStreamMetadataContainer_p1 Typ:ByteStreamMetadataContainer_p1 [21] Size:0 Offset:0 #Elements:1
 ##Shapes Debug No objects passing selection criteria... Container has 5 Entries in total.
 SimplePoolFromRaw.root Debug --> Access   DbContainer  READ      [ROOT_All] ##Links
-???? Debug Opened container ##Links of type ROOT_Tree
+##Links Debug Opening
+##Links Debug    attributes# = 1
+##Links Debug Opened container ##Links of type ROOT_Tree
 SimplePoolFromRaw.root Debug --->Reading Assoc:????/##Params [200]  (2 , ffffffff)
 SimplePoolFromRaw.root Debug ---->ClassID:????
 SimplePoolFromRaw.root Debug --->Reading Assoc:????/CollectionTree(EventInfo_p4/ByteStreamEventInfo) [202]  (3 , ffffffff)
@@ -176,7 +189,9 @@ SimplePoolFromRaw.root Debug --->Reading Assoc:????/MetaDataHdr(DataHeader) [202
 SimplePoolFromRaw.root Debug ---->ClassID:????
 ##Links Debug No objects passing selection criteria... Container has 9 Entries in total.
 SimplePoolFromRaw.root Debug --> Access   DbContainer  READ      [ROOT_All] ##Params
-???? Debug Opened container ##Params of type ROOT_Tree
+##Params Debug Opening
+##Params Debug    attributes# = 1
+##Params Debug Opened container ##Params of type ROOT_Tree
 SimplePoolFromRaw.root Debug --->Reading Param:FID=[????]
 SimplePoolFromRaw.root Debug --->Reading Param:PFN=[SimplePoolFromRaw.root]
 SimplePoolFromRaw.root Debug --->Reading Param:POOL_VSN=[1.1]
@@ -186,34 +201,53 @@ ImplicitCollection Info Opened the implicit collection with connection string "P
 ImplicitCollection Info and a name "POOLContainer(DataHeader)"
 MetaDataSvc         DEBUG handle() BeginTagFile for SimplePoolFromRaw.root
 SimplePoolFromRaw.root Debug --> Access   DbContainer  READ      [ROOT_Tree] POOLContainer(DataHeader)
-???? Debug Opened container POOLContainer(DataHeader) of type ROOT_Tree
+POOLContainer(DataHeader) Debug Opening
+POOLContainer(DataHeader) Debug    attributes# = 1
+POOLContainer(DataHeader) Debug Branch container 'DataHeader'
+POOLContainer(DataHeader) Debug Opened container POOLContainer(DataHeader) of type ROOT_Tree
 ApplicationMgr       INFO Application Manager Started successfully
 MetaDataSvc         DEBUG handle() BeginInputFile for SimplePoolFromRaw.root
 MetaDataSvc         DEBUG initInputMetaDataStore: file name SimplePoolFromRaw.root
 SimplePoolFromRaw.root Debug --> Access   DbContainer  READ      [ROOT_Tree] MetaDataHdr(DataHeader)
-???? Debug Opened container MetaDataHdr(DataHeader) of type ROOT_Tree
+MetaDataHdr(DataHeader) Debug Opening
+MetaDataHdr(DataHeader) Debug    attributes# = 1
+MetaDataHdr(DataHeader) Debug Branch container 'DataHeader'
+MetaDataHdr(DataHeader) Debug Opened container MetaDataHdr(DataHeader) of type ROOT_Tree
 PoolSvc              INFO Failed to find container MetaDataHdrDataHeader to get Token.
 MetaDataSvc         DEBUG Loaded input meta data store proxies
 ToolSvc.ByteStr...   INFO handle() BeginInputFile, filename = SimplePoolFromRaw.root
 SimplePoolFromRaw.root Debug --> Access   DbContainer  READ      [ROOT_Tree] MetaData(ByteStreamMetadataContainer_p1/ByteStreamMetadata)
-???? Debug Opened container MetaData(ByteStreamMetadataContainer_p1/ByteStreamMetadata) of type ROOT_Tree
+MetaData(ByteStreamMetadataContainer_p1/ByteStreamMetadata) Debug Opening
+MetaData(ByteStreamMetadataContainer_p1/ByteStreamMetadata) Debug    attributes# = 1
+MetaData(ByteStreamMetadataContainer_p1/ByteStreamMetadata) Debug Branch container 'ByteStreamMetadataContainer_p1_ByteStreamMetadata'
+MetaData(ByteStreamMetadataContainer_p1/ByteStreamMetadata) Debug Opened container MetaData(ByteStreamMetadataContainer_p1/ByteStreamMetadata) of type ROOT_Tree
 EventSelector       DEBUG Get AttributeList from the collection
 EventSelector       DEBUG AttributeList size 0
 EventSelector       DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000000].
 EventSelector       DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000000].
 EventSelector       DEBUG found AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000000]
 SimplePoolFromRaw.root Debug --> Access   DbContainer  READ      [ROOT_Tree] POOLContainerForm(DataHeaderForm)
-???? Debug Opened container POOLContainerForm(DataHeaderForm) of type ROOT_Tree
+POOLContainerForm(DataHeaderForm) Debug Opening
+POOLContainerForm(DataHeaderForm) Debug    attributes# = 1
+POOLContainerForm(DataHeaderForm) Debug Branch container 'DataHeaderForm'
+POOLContainerForm(DataHeaderForm) Debug Opened container POOLContainerForm(DataHeaderForm) of type ROOT_Tree
 AthenaPoolAddre...  DEBUG The current Event contains: 2 objects
 AthenaPoolAddre...  DEBUG loadAddresses: DataObject address, clid = 2101, name = ByteStreamEventInfo
 SimplePoolFromRaw.root Debug --> Access   DbContainer  READ      [ROOT_Tree] CollectionTree(EventInfo_p4/ByteStreamEventInfo)
-???? Debug Opened container CollectionTree(EventInfo_p4/ByteStreamEventInfo) of type ROOT_Tree
+CollectionTree(EventInfo_p4/ByteStreamEventInfo) Debug Opening
+CollectionTree(EventInfo_p4/ByteStreamEventInfo) Debug    attributes# = 1
+CollectionTree(EventInfo_p4/ByteStreamEventInfo) Debug Branch container 'EventInfo_p4_ByteStreamEventInfo'
+CollectionTree(EventInfo_p4/ByteStreamEventInfo) Debug Opened container CollectionTree(EventInfo_p4/ByteStreamEventInfo) of type ROOT_Tree
+AthenaPoolConve...   INFO massageEventInfo: unable to get OverrideRunNumberFromInput property from EventSelector 
 AthenaEventLoopMgr   INFO   ===>>>  start of run 20720    <<<===
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #14350, run #20720 0 events processed so far  <<<===
 ReadBs               INFO ByteStreamMetadataContainer, size =  1
 ReadData            DEBUG in execute()
 SimplePoolFromRaw.root Debug --> Access   DbContainer  READ      [ROOT_Tree] MetaData(EventStreamInfo_p3/Stream1)
-???? Debug Opened container MetaData(EventStreamInfo_p3/Stream1) of type ROOT_Tree
+MetaData(EventStreamInfo_p3/Stream1) Debug Opening
+MetaData(EventStreamInfo_p3/Stream1) Debug    attributes# = 1
+MetaData(EventStreamInfo_p3/Stream1) Debug Branch container 'EventStreamInfo_p3_Stream1'
+MetaData(EventStreamInfo_p3/Stream1) Debug Opened container MetaData(EventStreamInfo_p3/Stream1) of type ROOT_Tree
 ReadData             INFO EventStreamInfo: Number of events = 3
 ReadData             INFO EventStreamInfo: ItemList:
 ReadData             INFO CLID = 2101, key = ByteStreamEventInfo
@@ -267,20 +301,7 @@ ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 ReadData             INFO Could not find ExampleHitContainer/MyHits
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #14382, run #20720 3 events processed so far  <<<===
-SimplePoolFromRaw.root Info Database being retired...
-SimplePoolFromRaw.root Debug --> Deaccess DbContainer  READ      [ROOT_All] ##Links
-SimplePoolFromRaw.root Debug --> Deaccess DbContainer  READ      [ROOT_All] ##Shapes
-SimplePoolFromRaw.root Debug --> Deaccess DbContainer  READ      [ROOT_All] ##Params
-RootDatabase.close Debug I/O READ  Bytes: ????
-RootDatabase.close Debug I/O WRITE Bytes: 0
-RootDatabase.close Debug I/O OTHER Bytes: 0
 Domain[ROOT_All] Info ->  Deaccess DbDatabase   READ      [ROOT_All] ????
-SimplePoolFromRaw.root Debug --> Deaccess DbContainer  READ      [ROOT_Tree] CollectionTree(EventInfo_p4/ByteStreamEventInfo)
-SimplePoolFromRaw.root Debug --> Deaccess DbContainer  READ      [ROOT_Tree] MetaData(ByteStreamMetadataContainer_p1/ByteStreamMetadata)
-SimplePoolFromRaw.root Debug --> Deaccess DbContainer  READ      [ROOT_Tree] MetaData(EventStreamInfo_p3/Stream1)
-SimplePoolFromRaw.root Debug --> Deaccess DbContainer  READ      [ROOT_Tree] MetaDataHdr(DataHeader)
-SimplePoolFromRaw.root Debug --> Deaccess DbContainer  READ      [ROOT_Tree] POOLContainerForm(DataHeaderForm)
-SimplePoolFromRaw.root Debug --> Deaccess DbContainer  READ      [ROOT_Tree] POOLContainer(DataHeader)
 Domain[ROOT_All] Info >   Deaccess DbDomain     READ      [ROOT_All] 
 ToolSvc.ByteStr...   INFO handle() EndInputFile, filename = FID:????
 MetaDataSvc         DEBUG handle() EndInputFile for FID:????
@@ -297,9 +318,6 @@ ReadData            DEBUG Calling destructor
 AthOutSeq            INFO Finalizing AthOutSeq...
 AthRegSeq            INFO Finalizing AthRegSeq...
 AthMasterSeq         INFO Finalizing AthMasterSeq...
-XMLFileCatalog Debug There were no updates in the catalog
-PoolXMLFileCatalog Info XercesC termination number 0
-PoolSvc              INFO I/O finalization...
 AthDictLoaderSvc     INFO in finalize...
 ToolSvc              INFO Removing all tools created by ToolSvc
 ToolSvc.ByteStr...   INFO in finalize()
diff --git a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_ReadBsTag.ref b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_ReadBsTag.ref
index af5b75aba72280494597ef468a837c52204d4731..f800557d6e0bb213937349f94424520d6e96fde5 100644
--- a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_ReadBsTag.ref
+++ b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_ReadBsTag.ref
@@ -95,37 +95,16 @@ EventSelector       DEBUG record AthenaAttribute, name = StreamRAW_ref = [DB=???
 EventSelector       DEBUG record AthenaAttribute, name = eventRef = [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000001].
 EventSelector       DEBUG found AthenaAttribute, name = StreamRAW_ref = [DB=????][CNT=][CLID=!!!!][TECH=00001000][OID=00000000-0091678C]
 EventPersistenc...   INFO Added successfully Conversion service:AthenaPoolCnvSvc
+PoolXMLFileCatalog Debug FileID ???? is not in the catalog
+XMLFileCatalog Debug empty physical filename found
+PoolXMLFileCatalog Debug PFname  is not in the xml file
 AthenaPoolAddre...  DEBUG The current Event contains: 1 objects
-MetaDataSvc         DEBUG handle() FirstInputFile for BSF:????
-MetaDataSvc         DEBUG initInputMetaDataStore: file name BSF:????
-MetaDataSvc         DEBUG MetaDataSvc called for non ROOT file.
-MetaDataSvc         DEBUG Loaded input meta data store proxies
-ToolSvc.ByteStr...   INFO handle() FirstInputFile, filename = BSF:????
-MetaDataSvc         DEBUG handle() BeginInputFile for BSF:????
-ToolSvc.ByteStr...   INFO handle() BeginInputFile, filename = BSF:????
-EventPersistenc...   INFO Added successfully Conversion service:ByteStreamCnvSvc
-EventInfoByteSt...   INFO UserType : RawEvent
-EventInfoByteSt...   INFO IsSimulation : 0
-EventInfoByteSt...   INFO IsTestbeam : 0
-EventInfoByteSt...   INFO IsCalibration : 0
-AthenaEventLoopMgr   INFO   ===>>>  start of run 20720    <<<===
-AthenaEventLoopMgr   INFO   ===>>>  start processing event #14356, run #20720 0 events processed so far  <<<===
-ReadBs               INFO ByteStreamMetadata, run# = 20720, #events = 3
-ReadBs               INFO ByteStreamMetadataContainer, size =  1
-ReadData            DEBUG in execute()
-ReadData             INFO CollectionMetadata, key = Name, value = PFN:SimpleRawCollection.root
-ReadData             INFO CollectionMetadata, key = POOLCollectionID, value = ????
-ReadData          WARNING Could not find EventStreamInfo
-ReadData             INFO EventInfo event: 14356 run: 20720
-ReadData             INFO Get Smart data ptr 1
-ReadData             INFO Could not find ExampleTrackContainer/MyTracks
-ReadData             INFO Could not find ExampleHitContainer/MyHits
-AthenaEventLoopMgr   INFO   ===>>>  done processing event #14356, run #20720 1 events processed so far  <<<===
-RootCollection Info Closing open collection 'SimpleRawCollection.root'
-ToolSvc.ByteStr...   INFO handle() EndInputFile, filename = FID:????
-MetaDataSvc         DEBUG handle() EndInputFile for FID:????
-MetaDataSvc         DEBUG handle() EndTagFile for SimpleRawCollection.root
-AthenaEventLoopMgr   INFO No more events in event selection 
+StoreGateSvc      WARNING retrieve(const): No valid proxy for object [DB=????][CNT=][CLID=!!!!][TECH=00001000][OID=00000000-0091678C]  of type DataHeader(CLID 222376821)
+StoreGateSvc      WARNING retrieve(const): No valid proxy for object [DB=????][CNT=][CLID=!!!!][TECH=00001000][OID=00000000-0091678C]  of type DataHeader(CLID 222376821)
+StoreGateSvc      WARNING retrieve(default): No valid proxy for default object 
+ of type EventInfo(CLID 2101)
+AthenaEventLoopMgr  ERROR Unable to retrieve Event root object
+AthenaEventLoopMgr  ERROR Terminating event processing loop due to errors
 ToolSvc.ByteStr...   INFO handle() LastInputFile, filename = end
 MetaDataSvc         DEBUG handle() LastInputFile for end
 MetaDataSvc         DEBUG Releasing MetaDataTools
@@ -137,7 +116,7 @@ ReadData            DEBUG Calling destructor
 AthOutSeq            INFO Finalizing AthOutSeq...
 AthRegSeq            INFO Finalizing AthRegSeq...
 AthMasterSeq         INFO Finalizing AthMasterSeq...
-EventInfoByteSt...   INFO finalize 
+RootCollection Info Closing open collection 'SimpleRawCollection.root'
 XMLFileCatalog Debug There were no updates in the catalog
 PoolXMLFileCatalog Info XercesC termination number 0
 PoolSvc              INFO I/O finalization...
@@ -151,5 +130,5 @@ ToolSvc.ByteStr...   INFO in finalize()
 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"
+Athena               INFO leaving with code 65: "failure in an algorithm execute"
 CORAL/Services/ConnectionService Info Deleting the ConnectionPool
diff --git a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_WCond.ref b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_WCond.ref
index 478d91ec05f9df2aa6fc5474c1f255698d347e3e..942c2283ecaa9f14795a4c689b41286f809abbfe 100755
--- a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_WCond.ref
+++ b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_WCond.ref
@@ -1,5 +1,4 @@
-Warning in <TInterpreter::ReadRootmapFile>: class  Event found in libG4AtlasControlDict.so  is already in libtest_GPyTestDict.so 
-Warning in <TInterpreter::ReadRootmapFile>: class  UCharDbArray found in libStorageSvcDict.so  is already in libRootCnvDict.so 
+Warning in <TInterpreter::ReadRootmapFile>: class  xAOD::TReturnCode found in libxAODRootAccessDict.so  is already in libxAODRootAccess.so 
 Preloading tcmalloc_minimal.so
 Athena               INFO including file "AthenaCommon/Preparation.py"
 Athena               INFO including file "AthenaCommon/Bootstrap.py"
@@ -7,7 +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_WCondJobOptions.py"
-Py:ConfigurableDb    INFO No duplicates have been found: that's good !
+Py:ConfigurableDb WARNING Found 3 duplicates among the 51 genConfDb files :
+Py:ConfigurableDb WARNING --------------------------------------------------
+Py:ConfigurableDb WARNING   -<component name>: <module> - [ <duplicates> ]
+Py:ConfigurableDb WARNING --------------------------------------------------
+Py:ConfigurableDb WARNING   -TrigEFRazorAllTE: TrigHLTJetHypo.TrigHLTJetHypoConf - ['TrigJetHypo.TrigJetHypoConf', 'TrigJetHypo.TrigJetHypoConf']
+Py:ConfigurableDb WARNING   -TrigL2JetHypo: TrigJetHypo.TrigJetHypoConf - ['TrigCaloHypo.TrigCaloHypoConf']
+Py:ConfigurableDb WARNING   -TrigEFDPhiMetJetAllTE: TrigHLTJetHypo.TrigHLTJetHypoConf - ['TrigJetHypo.TrigJetHypoConf', 'TrigJetHypo.TrigJetHypoConf']
+Py:ConfigurableDb WARNING Fix your cmt/requirements file !!
 Athena               INFO including file "AthenaCommon/runbatch.py"
 ApplicationMgr       INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0
 ApplicationMgr    SUCCESS 
@@ -21,32 +27,25 @@ AthDictLoaderSvc     INFO in initialize...
 AthDictLoaderSvc     INFO acquired Dso-registry
 ChronoStatSvc        INFO  Number of skipped events for MemStat-1
 CoreDumpSvc          INFO install f-a-t-a-l handler... (flag = -1)
-AthenaEventLoopMgr   INFO Initializing AthenaEventLoopMgr - package version AthenaServices-??-??-??
 AthMasterSeq         INFO Member list: AthSequencer/AthAlgSeq, AthSequencer/AthOutSeq, AthSequencer/AthRegSeq
 AthAlgSeq            INFO Member list: OutputConditionsAlg/Stream1, AthPoolEx::ReadData/ReadData, AthPoolEx::WriteCond/WriteCond
 Stream1             DEBUG Property update for OutputLevel : new value = 2
 Stream1             DEBUG in initialize()
-ToolSvc.Stream1...   INFO Initializing ToolSvc.Stream1Tool - package version OutputStreamAthenaPool-??-??-??
-AthenaPoolCnvSvc     INFO Initializing AthenaPoolCnvSvc - package version AthenaPoolCnvSvc-??-??-??
 PoolSvc             DEBUG Property update for OutputLevel : new value = 2
-PoolSvc              INFO Initializing PoolSvc - package version PoolSvc-??-??-??
 PoolSvc              INFO Set connectionsvc retry/timeout/IDLE timeout to  'ConnectionRetrialPeriod':300/ 'ConnectionRetrialTimeOut':3600/ 'ConnectionTimeOut':5 seconds with connection cleanup disabled
 PoolSvc              INFO Frontier compression level set to 5
 PoolSvc              INFO Successfully setup replica sorting algorithm
 PoolSvc             DEBUG OutputLevel is 2
-PoolSvc              INFO Re-initializing PoolSvc
+PoolSvc              INFO Setting up APR FileCatalog and Streams
 PoolSvc              INFO POOL WriteCatalog is file:Catalog1.xml
-XMLFileCatalog Info Connecting to the catalog
-PoolXMLFileCatalog Info Xerces-c initialization Number 0
+PoolSvc              INFO Re-initializing PoolSvc
 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-??-??-??
 EventSelector       DEBUG Property update for OutputLevel : new value = 2
-EventSelector        INFO Initializing EventSelector - package version EventSelectorAthenaPool-??-??-??
 EventSelector        INFO reinitialization...
 EventSelector        INFO EventSelection with query 
 EventSelector       DEBUG Try item: "SimplePoolFile1.root" from the collection list.
@@ -59,7 +58,9 @@ 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.root Debug --> Access   DbContainer  READ      [ROOT_All] ##Shapes
-???? Debug Opened container ##Shapes of type ROOT_Tree
+##Shapes Debug Opening
+##Shapes Debug    attributes# = 1
+##Shapes Debug Opened container ##Shapes of type ROOT_Tree
 SimplePoolFile1.root Debug --->Reading Shape[0 , ????]: [1 Column(s)]
 SimplePoolFile1.root Debug ---->[0]:EventInfo_p4 Typ:EventInfo_p4 [21] Size:0 Offset:0 #Elements:1
 SimplePoolFile1.root Debug --->Reading Shape[1 , ????]: [1 Column(s)]
@@ -72,7 +73,9 @@ SimplePoolFile1.root Debug --->Reading Shape[4 , ????]: [1 Column(s)]
 SimplePoolFile1.root 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.root Debug --> Access   DbContainer  READ      [ROOT_All] ##Links
-???? Debug Opened container ##Links of type ROOT_Tree
+##Links Debug Opening
+##Links Debug    attributes# = 1
+##Links Debug Opened container ##Links of type ROOT_Tree
 SimplePoolFile1.root Debug --->Reading Assoc:????/##Params [200]  (2 , ffffffff)
 SimplePoolFile1.root Debug ---->ClassID:????
 SimplePoolFile1.root Debug --->Reading Assoc:????/CollectionTree(EventInfo_p4/McEventInfo) [202]  (3 , ffffffff)
@@ -93,7 +96,9 @@ SimplePoolFile1.root Debug --->Reading Assoc:????/MetaDataHdr(DataHeader) [202]
 SimplePoolFile1.root Debug ---->ClassID:????
 ##Links Debug No objects passing selection criteria... Container has 9 Entries in total.
 SimplePoolFile1.root Debug --> Access   DbContainer  READ      [ROOT_All] ##Params
-???? Debug Opened container ##Params of type ROOT_Tree
+##Params Debug Opening
+##Params Debug    attributes# = 1
+##Params Debug Opened container ##Params of type ROOT_Tree
 SimplePoolFile1.root Debug --->Reading Param:FID=[????]
 SimplePoolFile1.root Debug --->Reading Param:PFN=[SimplePoolFile1.root]
 SimplePoolFile1.root Debug --->Reading Param:POOL_VSN=[1.1]
@@ -102,19 +107,35 @@ SimplePoolFile1.root Debug --->Reading Param:FORMAT_VSN=[1.1]
 ImplicitCollection Info Opened the implicit collection with connection string "PFN:SimplePoolFile1.root"
 ImplicitCollection Info and a name "POOLContainer(DataHeader)"
 SimplePoolFile1.root Debug --> Access   DbContainer  READ      [ROOT_Tree] POOLContainer(DataHeader)
-???? Debug Opened container POOLContainer(DataHeader) of type ROOT_Tree
+POOLContainer(DataHeader) Debug Opening
+POOLContainer(DataHeader) Debug    attributes# = 1
+POOLContainer(DataHeader) Debug Branch container 'DataHeader'
+POOLContainer(DataHeader) Debug Opened container POOLContainer(DataHeader) of type ROOT_Tree
 MetaDataSvc         DEBUG handle() FirstInputFile for FID:????
 MetaDataSvc         DEBUG initInputMetaDataStore: file name FID:????
 SimplePoolFile1.root Debug --> Access   DbContainer  READ      [ROOT_Tree] MetaDataHdr(DataHeader)
-???? Debug Opened container MetaDataHdr(DataHeader) of type ROOT_Tree
+MetaDataHdr(DataHeader) Debug Opening
+MetaDataHdr(DataHeader) Debug    attributes# = 1
+MetaDataHdr(DataHeader) Debug Branch container 'DataHeader'
+MetaDataHdr(DataHeader) Debug Opened container MetaDataHdr(DataHeader) of type ROOT_Tree
 PoolSvc              INFO Failed to find container MetaDataHdrDataHeader to get Token.
 EventPersistenc...   INFO Added successfully Conversion service:AthenaPoolCnvSvc
 SimplePoolFile1.root Debug --> Access   DbContainer  READ      [ROOT_Tree] MetaDataHdrForm(DataHeaderForm)
-???? Debug Opened container MetaDataHdrForm(DataHeaderForm) of type ROOT_Tree
+MetaDataHdrForm(DataHeaderForm) Debug Opening
+MetaDataHdrForm(DataHeaderForm) Debug    attributes# = 1
+MetaDataHdrForm(DataHeaderForm) Debug Branch container 'DataHeaderForm'
+MetaDataHdrForm(DataHeaderForm) Debug Opened container MetaDataHdrForm(DataHeaderForm) of type ROOT_Tree
 MetaDataSvc         DEBUG Loaded input meta data store proxies
+EventSelector        INFO reinitialization...
+EventSelector        INFO EventSelection with query 
+EventSelector       DEBUG Try item: "SimplePoolFile1.root" from the collection list.
+RootCollection Info Opening Collection File SimplePoolFile1.root in mode: READ
+RootCollection Debug File SimplePoolFile1.root exists.
+RootCollection Info File SimplePoolFile1.root opened
+RootCollection Debug Open() failed with expception: POOL Collection TTree not found in file SimplePoolFile1.root ( POOL : "RootCollection::open" from "RootCollection" )
+ImplicitCollection Info Opened the implicit collection with connection string "PFN:SimplePoolFile1.root"
+ImplicitCollection Info and a name "POOLContainer(DataHeader)"
 AthenaPoolAddre...  DEBUG Property update for OutputLevel : new value = 2
-AthenaPoolAddre...   INFO Initializing AthenaPoolAddressProviderSvc - package version EventSelectorAthenaPool-??-??-??
-ProxyProviderSvc     INFO Initializing ProxyProviderSvc - package version SGComps-??-??-??
 ReadData            DEBUG input handles: 0
 ReadData            DEBUG output handles: 0
 ReadData            DEBUG Data Deps for ReadData
@@ -126,20 +147,8 @@ WriteCond           DEBUG output handles: 0
 WriteCond           DEBUG Data Deps for WriteCond
 HistogramPersis...WARNING Histograms saving not required.
 AthenaEventLoopMgr   INFO Setup EventSelector service EventSelector
-ActiveStoreSvc       INFO Initializing ActiveStoreSvc - package version StoreGate-??-??-??
 ApplicationMgr       INFO Application Manager Initialized successfully
-SimplePoolFile1.root Info Database being retired...
-SimplePoolFile1.root Debug --> Deaccess DbContainer  READ      [ROOT_All] ##Links
-SimplePoolFile1.root Debug --> Deaccess DbContainer  READ      [ROOT_All] ##Shapes
-SimplePoolFile1.root Debug --> Deaccess DbContainer  READ      [ROOT_All] ##Params
-RootDatabase.close Debug I/O READ  Bytes: ????
-RootDatabase.close Debug I/O WRITE Bytes: 0
-RootDatabase.close Debug I/O OTHER Bytes: 0
 Domain[ROOT_All] Info ->  Deaccess DbDatabase   READ      [ROOT_All] ????
-SimplePoolFile1.root Debug --> Deaccess DbContainer  READ      [ROOT_Tree] MetaDataHdr(DataHeader)
-SimplePoolFile1.root Debug --> Deaccess DbContainer  READ      [ROOT_Tree] MetaDataHdrForm(DataHeaderForm)
-SimplePoolFile1.root Debug --> Deaccess DbContainer  READ      [ROOT_Tree] POOLContainer(DataHeader)
-Domain[ROOT_All] Info >   Deaccess DbDomain     READ      [ROOT_All] 
 EventSelector       DEBUG Try item: "SimplePoolFile1.root" from the collection list.
 RootCollection Info Opening Collection File SimplePoolFile1.root in mode: READ
 RootCollection Debug File SimplePoolFile1.root exists.
@@ -150,7 +159,9 @@ 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.root Debug --> Access   DbContainer  READ      [ROOT_All] ##Shapes
-???? Debug Opened container ##Shapes of type ROOT_Tree
+##Shapes Debug Opening
+##Shapes Debug    attributes# = 1
+##Shapes Debug Opened container ##Shapes of type ROOT_Tree
 SimplePoolFile1.root Debug --->Reading Shape[0 , ????]: [1 Column(s)]
 SimplePoolFile1.root Debug ---->[0]:EventInfo_p4 Typ:EventInfo_p4 [21] Size:0 Offset:0 #Elements:1
 SimplePoolFile1.root Debug --->Reading Shape[1 , ????]: [1 Column(s)]
@@ -163,7 +174,9 @@ SimplePoolFile1.root Debug --->Reading Shape[4 , ????]: [1 Column(s)]
 SimplePoolFile1.root 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.root Debug --> Access   DbContainer  READ      [ROOT_All] ##Links
-???? Debug Opened container ##Links of type ROOT_Tree
+##Links Debug Opening
+##Links Debug    attributes# = 1
+##Links Debug Opened container ##Links of type ROOT_Tree
 SimplePoolFile1.root Debug --->Reading Assoc:????/##Params [200]  (2 , ffffffff)
 SimplePoolFile1.root Debug ---->ClassID:????
 SimplePoolFile1.root Debug --->Reading Assoc:????/CollectionTree(EventInfo_p4/McEventInfo) [202]  (3 , ffffffff)
@@ -184,7 +197,9 @@ SimplePoolFile1.root Debug --->Reading Assoc:????/MetaDataHdr(DataHeader) [202]
 SimplePoolFile1.root Debug ---->ClassID:????
 ##Links Debug No objects passing selection criteria... Container has 9 Entries in total.
 SimplePoolFile1.root Debug --> Access   DbContainer  READ      [ROOT_All] ##Params
-???? Debug Opened container ##Params of type ROOT_Tree
+##Params Debug Opening
+##Params Debug    attributes# = 1
+##Params Debug Opened container ##Params of type ROOT_Tree
 SimplePoolFile1.root Debug --->Reading Param:FID=[????]
 SimplePoolFile1.root Debug --->Reading Param:PFN=[SimplePoolFile1.root]
 SimplePoolFile1.root Debug --->Reading Param:POOL_VSN=[1.1]
@@ -194,12 +209,18 @@ ImplicitCollection Info Opened the implicit collection with connection string "P
 ImplicitCollection Info and a name "POOLContainer(DataHeader)"
 MetaDataSvc         DEBUG handle() BeginTagFile for SimplePoolFile1.root
 SimplePoolFile1.root Debug --> Access   DbContainer  READ      [ROOT_Tree] POOLContainer(DataHeader)
-???? Debug Opened container POOLContainer(DataHeader) of type ROOT_Tree
+POOLContainer(DataHeader) Debug Opening
+POOLContainer(DataHeader) Debug    attributes# = 1
+POOLContainer(DataHeader) Debug Branch container 'DataHeader'
+POOLContainer(DataHeader) Debug Opened container POOLContainer(DataHeader) of type ROOT_Tree
 ApplicationMgr       INFO Application Manager Started successfully
 MetaDataSvc         DEBUG handle() BeginInputFile for SimplePoolFile1.root
 MetaDataSvc         DEBUG initInputMetaDataStore: file name SimplePoolFile1.root
 SimplePoolFile1.root Debug --> Access   DbContainer  READ      [ROOT_Tree] MetaDataHdr(DataHeader)
-???? Debug Opened container MetaDataHdr(DataHeader) of type ROOT_Tree
+MetaDataHdr(DataHeader) Debug Opening
+MetaDataHdr(DataHeader) Debug    attributes# = 1
+MetaDataHdr(DataHeader) Debug Branch container 'DataHeader'
+MetaDataHdr(DataHeader) Debug Opened container MetaDataHdr(DataHeader) of type ROOT_Tree
 PoolSvc              INFO Failed to find container MetaDataHdrDataHeader to get Token.
 MetaDataSvc         DEBUG Loaded input meta data store proxies
 EventSelector       DEBUG Get AttributeList from the collection
@@ -208,17 +229,27 @@ EventSelector       DEBUG record AthenaAttribute, name = Token = [DB=????][CNT=P
 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.root Debug --> Access   DbContainer  READ      [ROOT_Tree] POOLContainerForm(DataHeaderForm)
-???? Debug Opened container POOLContainerForm(DataHeaderForm) of type ROOT_Tree
+POOLContainerForm(DataHeaderForm) Debug Opening
+POOLContainerForm(DataHeaderForm) Debug    attributes# = 1
+POOLContainerForm(DataHeaderForm) Debug Branch container 'DataHeaderForm'
+POOLContainerForm(DataHeaderForm) Debug Opened container POOLContainerForm(DataHeaderForm) of type ROOT_Tree
 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
 SimplePoolFile1.root Debug --> Access   DbContainer  READ      [ROOT_Tree] CollectionTree(EventInfo_p4/McEventInfo)
-???? Debug Opened container CollectionTree(EventInfo_p4/McEventInfo) of type ROOT_Tree
+CollectionTree(EventInfo_p4/McEventInfo) Debug Opening
+CollectionTree(EventInfo_p4/McEventInfo) Debug    attributes# = 1
+CollectionTree(EventInfo_p4/McEventInfo) Debug Branch container 'EventInfo_p4_McEventInfo'
+CollectionTree(EventInfo_p4/McEventInfo) Debug Opened container CollectionTree(EventInfo_p4/McEventInfo) of type ROOT_Tree
+AthenaPoolConve...   INFO massageEventInfo: unable to get OverrideRunNumberFromInput property from EventSelector 
 AthenaEventLoopMgr   INFO   ===>>>  start of run 1    <<<===
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #0, run #1 0 events processed so far  <<<===
 ReadData            DEBUG in execute()
 SimplePoolFile1.root Debug --> Access   DbContainer  READ      [ROOT_Tree] MetaData(EventStreamInfo_p3/Stream1)
-???? Debug Opened container MetaData(EventStreamInfo_p3/Stream1) of type ROOT_Tree
+MetaData(EventStreamInfo_p3/Stream1) Debug Opening
+MetaData(EventStreamInfo_p3/Stream1) Debug    attributes# = 1
+MetaData(EventStreamInfo_p3/Stream1) Debug Branch container 'EventStreamInfo_p3_Stream1'
+MetaData(EventStreamInfo_p3/Stream1) Debug Opened container MetaData(EventStreamInfo_p3/Stream1) of type ROOT_Tree
 ReadData             INFO EventStreamInfo: Number of events = 20
 ReadData             INFO EventStreamInfo: ItemList:
 ReadData             INFO CLID = 2101, key = McEventInfo
@@ -230,7 +261,10 @@ ReadData             INFO EventInfo event: 0 run: 1
 ReadData             INFO Get Smart data ptr 1
 ReadData             INFO Could not find ExampleTrackContainer/MyTracks
 SimplePoolFile1.root Debug --> Access   DbContainer  READ      [ROOT_Tree] CollectionTree(ExampleHitContainer_p1/MyHits)
-???? Debug Opened container CollectionTree(ExampleHitContainer_p1/MyHits) of type ROOT_Tree
+CollectionTree(ExampleHitContainer_p1/MyHits) Debug Opening
+CollectionTree(ExampleHitContainer_p1/MyHits) Debug    attributes# = 1
+CollectionTree(ExampleHitContainer_p1/MyHits) Debug Branch container 'ExampleHitContainer_p1_MyHits'
+CollectionTree(ExampleHitContainer_p1/MyHits) Debug Opened container CollectionTree(ExampleHitContainer_p1/MyHits) of type ROOT_Tree
 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
@@ -1071,20 +1105,7 @@ WriteCond            INFO Hit x = 1926.91 y = 52.2238 z = -1855.07 detector = Du
 WriteCond            INFO Hit x = 1930.12 y = 46.5449 z = -1856.17 detector = DummyHitDetector
 WriteCond            INFO registered all data
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #19, run #1 20 events processed so far  <<<===
-SimplePoolFile1.root Info Database being retired...
-SimplePoolFile1.root Debug --> Deaccess DbContainer  READ      [ROOT_All] ##Links
-SimplePoolFile1.root Debug --> Deaccess DbContainer  READ      [ROOT_All] ##Shapes
-SimplePoolFile1.root Debug --> Deaccess DbContainer  READ      [ROOT_All] ##Params
-RootDatabase.close Debug I/O READ  Bytes: ????
-RootDatabase.close Debug I/O WRITE Bytes: 0
-RootDatabase.close Debug I/O OTHER Bytes: 0
 Domain[ROOT_All] Info ->  Deaccess DbDatabase   READ      [ROOT_All] ????
-SimplePoolFile1.root Debug --> Deaccess DbContainer  READ      [ROOT_Tree] CollectionTree(EventInfo_p4/McEventInfo)
-SimplePoolFile1.root Debug --> Deaccess DbContainer  READ      [ROOT_Tree] CollectionTree(ExampleHitContainer_p1/MyHits)
-SimplePoolFile1.root Debug --> Deaccess DbContainer  READ      [ROOT_Tree] MetaData(EventStreamInfo_p3/Stream1)
-SimplePoolFile1.root Debug --> Deaccess DbContainer  READ      [ROOT_Tree] MetaDataHdr(DataHeader)
-SimplePoolFile1.root Debug --> Deaccess DbContainer  READ      [ROOT_Tree] POOLContainerForm(DataHeaderForm)
-SimplePoolFile1.root Debug --> Deaccess DbContainer  READ      [ROOT_Tree] POOLContainer(DataHeader)
 Domain[ROOT_All] Info >   Deaccess DbDomain     READ      [ROOT_All] 
 MetaDataSvc         DEBUG handle() EndInputFile for FID:????
 MetaDataSvc         DEBUG handle() EndTagFile for SimplePoolFile1.root
@@ -1100,25 +1121,31 @@ Domain[ROOT_All] Info >   Access   DbDomain     UPDATE    [ROOT_All]
 Domain[ROOT_All] Info ->  Access   DbDatabase   CREATE    [ROOT_All] ????
 Domain[ROOT_All] Info                           SimplePoolFile4.root
 SimplePoolFile4.root Debug --> Access   DbContainer  CREATE    [ROOT_All] ##Shapes
-???? Debug Opened container ##Shapes of type ROOT_Tree
+##Shapes Debug Opening
+##Shapes Debug    attributes# = 1
+##Shapes Debug Opened container ##Shapes of type ROOT_Tree
 ##Shapes Debug No objects passing selection criteria... Container has 0 Entries in total.
 SimplePoolFile4.root Debug --> Access   DbContainer  CREATE    [ROOT_All] ##Links
-???? Debug Opened container ##Links of type ROOT_Tree
+##Links Debug Opening
+##Links Debug    attributes# = 1
+##Links Debug Opened container ##Links of type ROOT_Tree
 ##Links Debug No objects passing selection criteria... Container has 0 Entries in total.
 SimplePoolFile4.root Debug --> Access   DbContainer  CREATE    [ROOT_All] ##Params
-???? Debug Opened container ##Params of type ROOT_Tree
+##Params Debug Opening
+##Params Debug    attributes# = 1
+##Params Debug Opened container ##Params of type ROOT_Tree
 SimplePoolFile4.root Debug --->Adding Assoc :????/##Params [200]  (2 , ffffffff)
 SimplePoolFile4.root Debug ---->ClassID:????
 ##Params Debug No objects passing selection criteria... Container has 0 Entries in total.
-RootDatabase.setOption Debug Request TREE_AUTO_FLUSH 
-RootDatabase.setOption Debug File name SimplePoolFile4.root
-RootDatabase.setOption Debug Demand to set AUTO_FLUSH for TTree: POOLContainer with value: 0
 Stream1              INFO Identified a total of 1 objects to write out:
 Stream1              INFO 0: ExampleHitContainer#PedestalWriteData#PedestalWriteData
 StorageSvc Info Building shape according to reflection information using shape ID for:
 StorageSvc Info ExampleHitContainer_p1 [????]
 SimplePoolFile4.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_Tree] ConditionsContainer(ExampleHitContainer_p1/PedestalWriteData)
-???? Debug Opened container ConditionsContainer(ExampleHitContainer_p1/PedestalWriteData) of type ROOT_Tree
+ConditionsContainer(ExampleHitContainer_p1/PedestalWriteData) Debug Opening
+ConditionsContainer(ExampleHitContainer_p1/PedestalWriteData) Debug    attributes# = 1
+ConditionsContainer(ExampleHitContainer_p1/PedestalWriteData) Debug Branch container 'ExampleHitContainer_p1_PedestalWriteData'
+ConditionsContainer(ExampleHitContainer_p1/PedestalWriteData) Debug Opened container ConditionsContainer(ExampleHitContainer_p1/PedestalWriteData) of type ROOT_Tree
 SimplePoolFile4.root Debug --->Adding Assoc :????/ConditionsContainer(ExampleHitContainer_p1/PedestalWriteData) [202]  (3 , ffffffff)
 SimplePoolFile4.root Debug ---->ClassID:????
 SimplePoolFile4.root Debug --->Adding Shape[0 , ????]:  [1 Column(s)] 
@@ -1127,7 +1154,10 @@ SimplePoolFile4.root Debug ---->[0]:ExampleHitContainer_p1 Typ:ExampleHitContain
 StorageSvc Info Building shape according to reflection information using shape ID for:
 StorageSvc Info DataHeaderForm_p5 [????]
 SimplePoolFile4.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_Tree] POOLContainerForm(DataHeaderForm)
-???? Debug Opened container POOLContainerForm(DataHeaderForm) of type ROOT_Tree
+POOLContainerForm(DataHeaderForm) Debug Opening
+POOLContainerForm(DataHeaderForm) Debug    attributes# = 1
+POOLContainerForm(DataHeaderForm) Debug Branch container 'DataHeaderForm'
+POOLContainerForm(DataHeaderForm) Debug Opened container POOLContainerForm(DataHeaderForm) of type ROOT_Tree
 SimplePoolFile4.root Debug --->Adding Assoc :????/POOLContainerForm(DataHeaderForm) [202]  (4 , ffffffff)
 SimplePoolFile4.root Debug ---->ClassID:????
 SimplePoolFile4.root Debug --->Adding Shape[1 , ????]:  [1 Column(s)] 
@@ -1136,8 +1166,10 @@ SimplePoolFile4.root Debug ---->[0]:DataHeaderForm_p5 Typ:DataHeaderForm_p5 [21]
 StorageSvc Info Building shape according to reflection information using shape ID for:
 StorageSvc Info DataHeader_p5 [????]
 SimplePoolFile4.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_Tree] POOLContainer(DataHeader)
-???? Debug Opened container POOLContainer(DataHeader) of type ROOT_Tree
-POOLContainer(DataHeader) Debug Setting AUTO_FLUSH for TTree: POOLContainer to value: 0
+POOLContainer(DataHeader) Debug Opening
+POOLContainer(DataHeader) Debug    attributes# = 1
+POOLContainer(DataHeader) Debug Branch container 'DataHeader'
+POOLContainer(DataHeader) Debug Opened container POOLContainer(DataHeader) of type ROOT_Tree
 SimplePoolFile4.root Debug --->Adding Assoc :????/POOLContainer(DataHeader) [202]  (5 , ffffffff)
 SimplePoolFile4.root Debug ---->ClassID:????
 SimplePoolFile4.root Debug --->Adding Shape[2 , ????]:  [1 Column(s)] 
@@ -1153,21 +1185,8 @@ WriteCond           DEBUG Calling destructor
 AthOutSeq            INFO Finalizing AthOutSeq...
 AthRegSeq            INFO Finalizing AthRegSeq...
 AthMasterSeq         INFO Finalizing AthMasterSeq...
-SimplePoolFile4.root Info Database being retired...
-SimplePoolFile4.root Debug --> Deaccess DbContainer  CREATE    [ROOT_All] ##Links
-SimplePoolFile4.root Debug --> Deaccess DbContainer  CREATE    [ROOT_All] ##Shapes
-SimplePoolFile4.root Debug --> Deaccess DbContainer  CREATE    [ROOT_All] ##Params
-RootDatabase.close Debug I/O READ  Bytes: 0
-RootDatabase.close Debug I/O WRITE Bytes: ????
-RootDatabase.close Debug I/O OTHER Bytes: 0
 Domain[ROOT_All] Info ->  Deaccess DbDatabase   CREATE    [ROOT_All] ????
-SimplePoolFile4.root Debug --> Deaccess DbContainer  CREA/UPDA [ROOT_Tree] ConditionsContainer(ExampleHitContainer_p1/PedestalWriteData)
-SimplePoolFile4.root Debug --> Deaccess DbContainer  CREA/UPDA [ROOT_Tree] POOLContainer(DataHeader)
-SimplePoolFile4.root Debug --> Deaccess DbContainer  CREA/UPDA [ROOT_Tree] POOLContainerForm(DataHeaderForm)
 Domain[ROOT_All] Info >   Deaccess DbDomain     UPDATE    [ROOT_All] 
-XMLFileCatalog Debug There were no updates in the catalog
-PoolXMLFileCatalog Info XercesC termination number 0
-PoolSvc              INFO I/O finalization...
 AthDictLoaderSvc     INFO in finalize...
 ToolSvc              INFO Removing all tools created by ToolSvc
 *****Chrono*****     INFO ****************************************************************************************************
diff --git a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_WMeta.ref b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_WMeta.ref
index cf782c37ea167aca61639289230b7ec760b6c48e..7c511603d499d59a85c69f4e748013d8d8979531 100755
--- a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_WMeta.ref
+++ b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_WMeta.ref
@@ -1,5 +1,4 @@
-Warning in <TInterpreter::ReadRootmapFile>: class  Event found in libG4AtlasControlDict.so  is already in libtest_GPyTestDict.so 
-Warning in <TInterpreter::ReadRootmapFile>: class  UCharDbArray found in libStorageSvcDict.so  is already in libRootCnvDict.so 
+Warning in <TInterpreter::ReadRootmapFile>: class  xAOD::TReturnCode found in libxAODRootAccessDict.so  is already in libxAODRootAccess.so 
 Preloading tcmalloc_minimal.so
 Athena               INFO including file "AthenaCommon/Preparation.py"
 Athena               INFO including file "AthenaCommon/Bootstrap.py"
@@ -7,7 +6,14 @@ Athena               INFO including file "AthenaCommon/Atlas.UnixStandardJob.py"
 Athena               INFO executing ROOT6Setup
 Athena               INFO including file "AthenaCommon/Execution.py"
 Athena               INFO including file "AthenaPoolExampleAlgorithms/AthenaPoolExample_WMetaJobOptions.py"
-Py:ConfigurableDb    INFO No duplicates have been found: that's good !
+Py:ConfigurableDb WARNING Found 3 duplicates among the 51 genConfDb files :
+Py:ConfigurableDb WARNING --------------------------------------------------
+Py:ConfigurableDb WARNING   -<component name>: <module> - [ <duplicates> ]
+Py:ConfigurableDb WARNING --------------------------------------------------
+Py:ConfigurableDb WARNING   -TrigEFRazorAllTE: TrigHLTJetHypo.TrigHLTJetHypoConf - ['TrigJetHypo.TrigJetHypoConf', 'TrigJetHypo.TrigJetHypoConf']
+Py:ConfigurableDb WARNING   -TrigL2JetHypo: TrigJetHypo.TrigJetHypoConf - ['TrigCaloHypo.TrigCaloHypoConf']
+Py:ConfigurableDb WARNING   -TrigEFDPhiMetJetAllTE: TrigHLTJetHypo.TrigHLTJetHypoConf - ['TrigJetHypo.TrigJetHypoConf', 'TrigJetHypo.TrigJetHypoConf']
+Py:ConfigurableDb WARNING Fix your cmt/requirements file !!
 Athena               INFO including file "AthenaCommon/runbatch.py"
 ApplicationMgr       INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0
 ApplicationMgr    SUCCESS 
@@ -21,7 +27,6 @@ AthDictLoaderSvc     INFO in initialize...
 AthDictLoaderSvc     INFO acquired Dso-registry
 ChronoStatSvc        INFO  Number of skipped events for MemStat-1
 CoreDumpSvc          INFO install f-a-t-a-l handler... (flag = -1)
-AthenaEventLoopMgr   INFO Initializing AthenaEventLoopMgr - package version AthenaServices-??-??-??
 AthMasterSeq         INFO Member list: AthSequencer/AthAlgSeq, AthSequencer/AthOutSeq, AthSequencer/AthRegSeq
 AthAlgSeq            INFO Member list: AthPoolEx::WriteData/WriteData, AthPoolEx::WriteCond/WriteCond
 WriteData           DEBUG Property update for OutputLevel : new value = 2
@@ -30,22 +35,16 @@ WriteData           DEBUG input handles: 0
 WriteData           DEBUG output handles: 0
 WriteData           DEBUG Data Deps for WriteData
 WriteCond            INFO in initialize()
-MetaDataSvc          INFO Initializing MetaDataSvc - package version AthenaServices-??-??-??
 AthenaPoolCnvSvc    DEBUG Property update for OutputLevel : new value = 2
-AthenaPoolCnvSvc     INFO Initializing AthenaPoolCnvSvc - package version AthenaPoolCnvSvc-??-??-??
 PoolSvc             DEBUG Property update for OutputLevel : new value = 2
-PoolSvc              INFO Initializing PoolSvc - package version PoolSvc-??-??-??
 PoolSvc              INFO io_register[PoolSvc](xmlcatalog_file:Catalog2.xml) [ok]
 PoolSvc              INFO Set connectionsvc retry/timeout/IDLE timeout to  'ConnectionRetrialPeriod':300/ 'ConnectionRetrialTimeOut':3600/ 'ConnectionTimeOut':5 seconds with connection cleanup disabled
 PoolSvc              INFO Frontier compression level set to 5
 PoolSvc              INFO Successfully setup replica sorting algorithm
 PoolSvc             DEBUG OutputLevel is 2
-PoolSvc              INFO Re-initializing PoolSvc
+PoolSvc              INFO Setting up APR FileCatalog and Streams
 PoolSvc              INFO POOL WriteCatalog is xmlcatalog_file:Catalog2.xml
-XMLFileCatalog Info Connecting to the catalog
-PoolXMLFileCatalog Info Xerces-c initialization Number 0
-PoolXMLFileCatalog Info File Catalog2.xml does not exist, a new one is created
-ProxyProviderSvc     INFO Initializing ProxyProviderSvc - package version SGComps-??-??-??
+PoolSvc              INFO Re-initializing PoolSvc
 Stream1.Stream1...  DEBUG Property update for OutputLevel : new value = 2
 Stream1             DEBUG Property update for OutputLevel : new value = 2
 Stream1             DEBUG In initialize 
@@ -55,12 +54,9 @@ Stream1             DEBUG End initialize
 Stream1             DEBUG In initialize
 Stream1             DEBUG Found StoreGateSvc store.
 Stream1             DEBUG Found MetaDataStore store.
-OutputStreamSeq...   INFO Initializing OutputStreamSequencerSvc - package version AthenaServices-??-??-??
 Stream1.Stream1...  DEBUG Property update for OutputLevel : new value = 2
-Stream1.Stream1...   INFO Initializing Stream1.Stream1Tool - package version OutputStreamAthenaPool-??-??-??
 Stream1.Stream1...   INFO streamProperty ProcessingTag = Stream1
 Stream1.Stream1...  DEBUG Property update for OutputLevel : new value = 2
-Stream1.Stream1...   INFO Initializing Stream1.Stream1_MakeEventStreamInfo - package version OutputStreamAthenaPool-??-??-??
 Stream1              INFO Found HelperTools = PrivateToolHandleArray(['MakeEventStreamInfo/Stream1_MakeEventStreamInfo'])
 Stream1              INFO Data output: ROOTTREE:SimplePoolFile5.root
 Stream1              INFO I/O reinitialization...
@@ -74,7 +70,6 @@ Stream1             DEBUG Data Deps for Stream1
 HistogramPersis...WARNING Histograms saving not required.
 EventSelector        INFO  Enter McEventSelector Initialization 
 AthenaEventLoopMgr   INFO Setup EventSelector service EventSelector
-ActiveStoreSvc       INFO Initializing ActiveStoreSvc - package version StoreGate-??-??-??
 ApplicationMgr       INFO Application Manager Initialized successfully
 ApplicationMgr       INFO Application Manager Started successfully
 EventPersistenc...   INFO Added successfully Conversion service:McCnvSvc
@@ -100,25 +95,25 @@ AthenaPoolCnvSvc    DEBUG setAttribute TREE_MAX_SIZE to 1099511627776L
 AthenaPoolCnvSvc    DEBUG setAttribute DEFAULT_SPLITLEVEL to 0
 AthenaPoolCnvSvc    DEBUG setAttribute STREAM_MEMBER_WISE to 1
 AthenaPoolCnvSvc    DEBUG setAttribute DEFAULT_BUFFERSIZE to 32000
-PoolXMLFileCatalog Debug filename SimplePoolFile5.root does not exist
-XMLFileCatalog Debug lookupFilebyPFN: Empty File ID found
 Domain[ROOT_All] Info ->  Access   DbDatabase   CREATE    [ROOT_All] ????
 Domain[ROOT_All] Info                           SimplePoolFile5.root
 SimplePoolFile5.root Debug --> Access   DbContainer  CREATE    [ROOT_All] ##Shapes
-???? Debug Opened container ##Shapes of type ROOT_Tree
+##Shapes Debug Opening
+##Shapes Debug    attributes# = 1
+##Shapes Debug Opened container ##Shapes of type ROOT_Tree
 ##Shapes Debug No objects passing selection criteria... Container has 0 Entries in total.
 SimplePoolFile5.root Debug --> Access   DbContainer  CREATE    [ROOT_All] ##Links
-???? Debug Opened container ##Links of type ROOT_Tree
+##Links Debug Opening
+##Links Debug    attributes# = 1
+##Links Debug Opened container ##Links of type ROOT_Tree
 ##Links Debug No objects passing selection criteria... Container has 0 Entries in total.
 SimplePoolFile5.root Debug --> Access   DbContainer  CREATE    [ROOT_All] ##Params
-???? Debug Opened container ##Params of type ROOT_Tree
+##Params Debug Opening
+##Params Debug    attributes# = 1
+##Params Debug Opened container ##Params of type ROOT_Tree
 SimplePoolFile5.root Debug --->Adding Assoc :????/##Params [200]  (2 , ffffffff)
 SimplePoolFile5.root Debug ---->ClassID:????
 ##Params Debug No objects passing selection criteria... Container has 0 Entries in total.
-RootDatabase.setOption Debug Request TREE_AUTO_FLUSH 
-RootDatabase.setOption Debug File name SimplePoolFile5.root
-RootDatabase.setOption Debug Demand to set AUTO_FLUSH for TTree: POOLContainer with value: 0
-AthenaPoolCnvSvc    DEBUG setAttribute TREE_AUTO_FLUSH to 0 for db: SimplePoolFile5.root and cont: TTree=POOLContainer
 AthenaPoolCnvSvc    DEBUG setAttribute CONTAINER_SPLITLEVEL to 99 for db: SimplePoolFile5.root and cont: TTree=POOLContainerForm(DataHeaderForm)
 Stream1             DEBUG addItemObjects(2101,"*") called
 Stream1             DEBUG            Key:*
@@ -132,7 +127,10 @@ Stream1             DEBUG  Object/count: ExampleHitContainer_MyHits, 1
 StorageSvc Info Building shape according to reflection information using shape ID for:
 StorageSvc Info EventInfo_p4 [????]
 SimplePoolFile5.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_Tree] CollectionTree(EventInfo_p4/McEventInfo)
-???? Debug Opened container CollectionTree(EventInfo_p4/McEventInfo) of type ROOT_Tree
+CollectionTree(EventInfo_p4/McEventInfo) Debug Opening
+CollectionTree(EventInfo_p4/McEventInfo) Debug    attributes# = 1
+CollectionTree(EventInfo_p4/McEventInfo) Debug Branch container 'EventInfo_p4_McEventInfo'
+CollectionTree(EventInfo_p4/McEventInfo) Debug Opened container CollectionTree(EventInfo_p4/McEventInfo) of type ROOT_Tree
 SimplePoolFile5.root Debug --->Adding Assoc :????/CollectionTree(EventInfo_p4/McEventInfo) [202]  (3 , ffffffff)
 SimplePoolFile5.root Debug ---->ClassID:????
 SimplePoolFile5.root Debug --->Adding Shape[0 , ????]:  [1 Column(s)] 
@@ -141,7 +139,10 @@ SimplePoolFile5.root Debug ---->[0]:EventInfo_p4 Typ:EventInfo_p4 [21] Size:0 Of
 StorageSvc Info Building shape according to reflection information using shape ID for:
 StorageSvc Info ExampleHitContainer_p1 [????]
 SimplePoolFile5.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_Tree] CollectionTree(ExampleHitContainer_p1/MyHits)
-???? Debug Opened container CollectionTree(ExampleHitContainer_p1/MyHits) of type ROOT_Tree
+CollectionTree(ExampleHitContainer_p1/MyHits) Debug Opening
+CollectionTree(ExampleHitContainer_p1/MyHits) Debug    attributes# = 1
+CollectionTree(ExampleHitContainer_p1/MyHits) Debug Branch container 'ExampleHitContainer_p1_MyHits'
+CollectionTree(ExampleHitContainer_p1/MyHits) Debug Opened container CollectionTree(ExampleHitContainer_p1/MyHits) of type ROOT_Tree
 SimplePoolFile5.root Debug --->Adding Assoc :????/CollectionTree(ExampleHitContainer_p1/MyHits) [202]  (4 , ffffffff)
 SimplePoolFile5.root Debug ---->ClassID:????
 SimplePoolFile5.root Debug --->Adding Shape[1 , ????]:  [1 Column(s)] 
@@ -150,7 +151,10 @@ SimplePoolFile5.root Debug ---->[0]:ExampleHitContainer_p1 Typ:ExampleHitContain
 StorageSvc Info Building shape according to reflection information using shape ID for:
 StorageSvc Info DataHeaderForm_p5 [????]
 SimplePoolFile5.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_Tree] POOLContainerForm(DataHeaderForm)
-???? Debug Opened container POOLContainerForm(DataHeaderForm) of type ROOT_Tree
+POOLContainerForm(DataHeaderForm) Debug Opening
+POOLContainerForm(DataHeaderForm) Debug    attributes# = 1
+POOLContainerForm(DataHeaderForm) Debug Branch container 'DataHeaderForm'
+POOLContainerForm(DataHeaderForm) Debug Opened container POOLContainerForm(DataHeaderForm) of type ROOT_Tree
 SimplePoolFile5.root Debug --->Adding Assoc :????/POOLContainerForm(DataHeaderForm) [202]  (5 , ffffffff)
 SimplePoolFile5.root Debug ---->ClassID:????
 SimplePoolFile5.root Debug --->Adding Shape[2 , ????]:  [1 Column(s)] 
@@ -159,18 +163,24 @@ SimplePoolFile5.root Debug ---->[0]:DataHeaderForm_p5 Typ:DataHeaderForm_p5 [21]
 StorageSvc Info Building shape according to reflection information using shape ID for:
 StorageSvc Info DataHeader_p5 [????]
 SimplePoolFile5.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_Tree] POOLContainer(DataHeader)
-???? Debug Opened container POOLContainer(DataHeader) of type ROOT_Tree
-POOLContainer(DataHeader) Debug Setting AUTO_FLUSH for TTree: POOLContainer to value: 0
+POOLContainer(DataHeader) Debug Opening
+POOLContainer(DataHeader) Debug    attributes# = 1
+POOLContainer(DataHeader) Debug Branch container 'DataHeader'
+POOLContainer(DataHeader) Debug Opened container POOLContainer(DataHeader) of type ROOT_Tree
 SimplePoolFile5.root Debug --->Adding Assoc :????/POOLContainer(DataHeader) [202]  (6 , ffffffff)
 SimplePoolFile5.root Debug ---->ClassID:????
 SimplePoolFile5.root Debug --->Adding Shape[3 , ????]:  [1 Column(s)] 
 SimplePoolFile5.root Debug ---->Class:DataHeader_p5
 SimplePoolFile5.root Debug ---->[0]:DataHeader_p5 Typ:DataHeader_p5 [21] Size:0 Offset:0 #Elements:1
 SimplePoolFile5.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_Tree] POOLContainer(basic/DataHeader)
-???? Debug Opened container POOLContainer(basic/DataHeader) of type ROOT_Tree
+POOLContainer(basic/DataHeader) Debug Opening
+POOLContainer(basic/DataHeader) Debug    attributes# = 1
+POOLContainer(basic/DataHeader) Debug Branch container 'basic_DataHeader'
+POOLContainer(basic/DataHeader) Debug Opened container POOLContainer(basic/DataHeader) of type ROOT_Tree
 SimplePoolFile5.root Debug --->Adding Assoc :????/POOLContainer(basic/DataHeader) [202]  (7 , ffffffff)
 SimplePoolFile5.root Debug ---->ClassID:????
-AthenaPoolCnvSvc    DEBUG setAttribute BRANCH_BASKET_SIZE to 256000 for db: SimplePoolFile5.root and cont: POOLContainerForm(DataHeaderForm)
+AthenaPoolCnvSvc    DEBUG setAttribute BRANCH_BASKET_SIZE to 256000 for db: SimplePoolFile5.root and cont: POOLContainer(DataHeader)
+AthenaPoolCnvSvc    DEBUG setAttribute BRANCH_BASKET_SIZE to 1024000 for db: SimplePoolFile5.root and cont: POOLContainerForm(DataHeaderForm)
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #0, run #0 1 events processed so far  <<<===
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #1, run #0 1 events processed so far  <<<===
 WriteData           DEBUG in execute()
@@ -421,14 +431,6 @@ Stream1             DEBUG  Added object 9102,"MyHits"
 Stream1             DEBUG  Collected objects:
 Stream1             DEBUG  Object/count: EventInfo_McEventInfo, 11
 Stream1             DEBUG  Object/count: ExampleHitContainer_MyHits, 11
-CollectionTree(EventInfo_p4/McEventInfo) Debug endTransaction: go to finish
-CollectionTree(ExampleHitContainer_p1/MyHits) Debug endTransaction: go to finish
-POOLContainer(DataHeader) Debug endTransaction: go to finish
-POOLContainer(basic/DataHeader) Debug endTransaction: go to finish
-POOLContainerForm(DataHeaderForm) Debug endTransaction: go to finish
-##Params Debug endTransaction:  tree AutoSave
-##Shapes Debug endTransaction:  tree AutoSave
-##Links Debug endTransaction:  tree AutoSave
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #10, run #0 11 events processed so far  <<<===
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #11, run #0 11 events processed so far  <<<===
 WriteData           DEBUG in execute()
@@ -668,57 +670,41 @@ Stream1             DEBUG  Added object 167728019,"Stream1"
 Stream1             DEBUG addItemObjects(1316383046,"*") called
 Stream1             DEBUG            Key:*
 SimplePoolFile5.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_Tree] MetaData(ExampleHitContainer_p1/PedestalWriteData)
-???? Debug Opened container MetaData(ExampleHitContainer_p1/PedestalWriteData) of type ROOT_Tree
+MetaData(ExampleHitContainer_p1/PedestalWriteData) Debug Opening
+MetaData(ExampleHitContainer_p1/PedestalWriteData) Debug    attributes# = 1
+MetaData(ExampleHitContainer_p1/PedestalWriteData) Debug Branch container 'ExampleHitContainer_p1_PedestalWriteData'
+MetaData(ExampleHitContainer_p1/PedestalWriteData) Debug Opened container MetaData(ExampleHitContainer_p1/PedestalWriteData) of type ROOT_Tree
 SimplePoolFile5.root Debug --->Adding Assoc :????/MetaData(ExampleHitContainer_p1/PedestalWriteData) [202]  (8 , ffffffff)
 SimplePoolFile5.root Debug ---->ClassID:????
 StorageSvc Info Building shape according to reflection information using shape ID for:
 StorageSvc Info EventStreamInfo_p3 [????]
 SimplePoolFile5.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_Tree] MetaData(EventStreamInfo_p3/Stream1)
-???? Debug Opened container MetaData(EventStreamInfo_p3/Stream1) of type ROOT_Tree
+MetaData(EventStreamInfo_p3/Stream1) Debug Opening
+MetaData(EventStreamInfo_p3/Stream1) Debug    attributes# = 1
+MetaData(EventStreamInfo_p3/Stream1) Debug Branch container 'EventStreamInfo_p3_Stream1'
+MetaData(EventStreamInfo_p3/Stream1) Debug Opened container MetaData(EventStreamInfo_p3/Stream1) of type ROOT_Tree
 SimplePoolFile5.root Debug --->Adding Assoc :????/MetaData(EventStreamInfo_p3/Stream1) [202]  (9 , ffffffff)
 SimplePoolFile5.root Debug ---->ClassID:????
 SimplePoolFile5.root Debug --->Adding Shape[4 , ????]:  [1 Column(s)] 
 SimplePoolFile5.root Debug ---->Class:EventStreamInfo_p3
 SimplePoolFile5.root Debug ---->[0]:EventStreamInfo_p3 Typ:EventStreamInfo_p3 [21] Size:0 Offset:0 #Elements:1
 SimplePoolFile5.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_Tree] MetaDataHdrForm(DataHeaderForm)
-???? Debug Opened container MetaDataHdrForm(DataHeaderForm) of type ROOT_Tree
+MetaDataHdrForm(DataHeaderForm) Debug Opening
+MetaDataHdrForm(DataHeaderForm) Debug    attributes# = 1
+MetaDataHdrForm(DataHeaderForm) Debug Branch container 'DataHeaderForm'
+MetaDataHdrForm(DataHeaderForm) Debug Opened container MetaDataHdrForm(DataHeaderForm) of type ROOT_Tree
 SimplePoolFile5.root Debug --->Adding Assoc :????/MetaDataHdrForm(DataHeaderForm) [202]  (a , ffffffff)
 SimplePoolFile5.root Debug ---->ClassID:????
 SimplePoolFile5.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_Tree] MetaDataHdr(DataHeader)
-???? Debug Opened container MetaDataHdr(DataHeader) of type ROOT_Tree
+MetaDataHdr(DataHeader) Debug Opening
+MetaDataHdr(DataHeader) Debug    attributes# = 1
+MetaDataHdr(DataHeader) Debug Branch container 'DataHeader'
+MetaDataHdr(DataHeader) Debug Opened container MetaDataHdr(DataHeader) of type ROOT_Tree
 SimplePoolFile5.root Debug --->Adding Assoc :????/MetaDataHdr(DataHeader) [202]  (b , ffffffff)
 SimplePoolFile5.root Debug ---->ClassID:????
 Stream1              INFO Records written: 21
 Stream1             DEBUG Leaving handle
-CollectionTree(EventInfo_p4/McEventInfo) Debug endTransaction: go to finish
-CollectionTree(ExampleHitContainer_p1/MyHits) Debug endTransaction: go to finish
-MetaData(EventStreamInfo_p3/Stream1) Debug endTransaction: go to finish
-MetaData(ExampleHitContainer_p1/PedestalWriteData) Debug endTransaction: go to finish
-MetaDataHdr(DataHeader) Debug endTransaction: go to finish
-MetaDataHdrForm(DataHeaderForm) Debug endTransaction: go to finish
-POOLContainer(DataHeader) Debug endTransaction: go to finish
-POOLContainer(basic/DataHeader) Debug endTransaction: go to finish
-POOLContainerForm(DataHeaderForm) Debug endTransaction: go to finish
-##Params Debug endTransaction:  tree AutoSave
-##Shapes Debug endTransaction:  tree AutoSave
-##Links Debug endTransaction:  tree AutoSave
-SimplePoolFile5.root Info Database being retired...
-SimplePoolFile5.root Debug --> Deaccess DbContainer  CREATE    [ROOT_All] ##Links
-SimplePoolFile5.root Debug --> Deaccess DbContainer  CREATE    [ROOT_All] ##Shapes
-SimplePoolFile5.root Debug --> Deaccess DbContainer  CREATE    [ROOT_All] ##Params
-RootDatabase.close Debug I/O READ  Bytes: 0
-RootDatabase.close Debug I/O WRITE Bytes: ????
-RootDatabase.close Debug I/O OTHER Bytes: 0
 Domain[ROOT_All] Info ->  Deaccess DbDatabase   CREATE    [ROOT_All] ????
-SimplePoolFile5.root Debug --> Deaccess DbContainer  CREA/UPDA [ROOT_Tree] CollectionTree(EventInfo_p4/McEventInfo)
-SimplePoolFile5.root Debug --> Deaccess DbContainer  CREA/UPDA [ROOT_Tree] CollectionTree(ExampleHitContainer_p1/MyHits)
-SimplePoolFile5.root Debug --> Deaccess DbContainer  CREA/UPDA [ROOT_Tree] MetaData(EventStreamInfo_p3/Stream1)
-SimplePoolFile5.root Debug --> Deaccess DbContainer  CREA/UPDA [ROOT_Tree] MetaData(ExampleHitContainer_p1/PedestalWriteData)
-SimplePoolFile5.root Debug --> Deaccess DbContainer  CREA/UPDA [ROOT_Tree] MetaDataHdr(DataHeader)
-SimplePoolFile5.root Debug --> Deaccess DbContainer  CREA/UPDA [ROOT_Tree] MetaDataHdrForm(DataHeaderForm)
-SimplePoolFile5.root Debug --> Deaccess DbContainer  CREA/UPDA [ROOT_Tree] POOLContainer(DataHeader)
-SimplePoolFile5.root Debug --> Deaccess DbContainer  CREA/UPDA [ROOT_Tree] POOLContainer(basic/DataHeader)
-SimplePoolFile5.root Debug --> Deaccess DbContainer  CREA/UPDA [ROOT_Tree] POOLContainerForm(DataHeaderForm)
 Domain[ROOT_All] Info >   Deaccess DbDomain     UPDATE    [ROOT_All] 
 ApplicationMgr       INFO Application Manager Stopped successfully
 WriteData            INFO in finalize()
@@ -730,13 +716,8 @@ AthMasterSeq         INFO Finalizing AthMasterSeq...
 Stream1             DEBUG finalize: Optimize output
 Stream1             DEBUG finalize: end optimize output
 EventSelector        INFO finalize
-DecisionSvc          INFO -- OUTPUT STREAM EVENT OVERLAP SUMMARY --
-DecisionSvc          INFO List of registered 1 Streams: Stream1 
 DecisionSvc          INFO Finalized successfully.
 AthenaPoolCnvSvc    DEBUG releasing all workers
-XMLFileCatalog Info Updating the catalog
-PoolXMLFileCatalog Info XercesC termination number 0
-PoolSvc              INFO I/O finalization...
 AthDictLoaderSvc     INFO in finalize...
 ToolSvc              INFO Removing all tools created by ToolSvc
 *****Chrono*****     INFO ****************************************************************************************************
diff --git a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_Write.ref b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_Write.ref
new file mode 100755
index 0000000000000000000000000000000000000000..066faad5c934ddd8d887f70e35cc1077241c3837
--- /dev/null
+++ b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/share/AthenaPoolExample_Write.ref
@@ -0,0 +1,1533 @@
+Warning in <TInterpreter::ReadRootmapFile>: class  xAOD::TReturnCode found in libxAODRootAccessDict.so  is already in libxAODRootAccess.so 
+Preloading tcmalloc_minimal.so
+Athena               INFO including file "AthenaCommon/Preparation.py"
+Athena               INFO including file "AthenaCommon/Bootstrap.py"
+Athena               INFO including file "AthenaCommon/Atlas.UnixStandardJob.py"
+Athena               INFO executing ROOT6Setup
+Athena               INFO including file "AthenaCommon/Execution.py"
+Athena               INFO including file "AthenaPoolExampleAlgorithms/AthenaPoolExample_WriteJobOptions.py"
+Py:ConfigurableDb WARNING Found 3 duplicates among the 51 genConfDb files :
+Py:ConfigurableDb WARNING --------------------------------------------------
+Py:ConfigurableDb WARNING   -<component name>: <module> - [ <duplicates> ]
+Py:ConfigurableDb WARNING --------------------------------------------------
+Py:ConfigurableDb WARNING   -TrigEFRazorAllTE: TrigHLTJetHypo.TrigHLTJetHypoConf - ['TrigJetHypo.TrigJetHypoConf', 'TrigJetHypo.TrigJetHypoConf']
+Py:ConfigurableDb WARNING   -TrigL2JetHypo: TrigJetHypo.TrigJetHypoConf - ['TrigCaloHypo.TrigCaloHypoConf']
+Py:ConfigurableDb WARNING   -TrigEFDPhiMetJetAllTE: TrigHLTJetHypo.TrigHLTJetHypoConf - ['TrigJetHypo.TrigJetHypoConf', 'TrigJetHypo.TrigJetHypoConf']
+Py:ConfigurableDb WARNING Fix your cmt/requirements file !!
+Athena               INFO including file "AthenaCommon/runbatch.py"
+ApplicationMgr       INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0
+ApplicationMgr    SUCCESS 
+====================================================================================================================================
+====================================================================================================================================
+ApplicationMgr       INFO Successfully loaded modules : AthenaServices
+ApplicationMgr       INFO Application Manager Configured successfully
+ApplicationMgr       INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0
+StatusCodeSvc        INFO initialize
+AthDictLoaderSvc     INFO in initialize...
+AthDictLoaderSvc     INFO acquired Dso-registry
+ChronoStatSvc        INFO  Number of skipped events for MemStat-1
+CoreDumpSvc          INFO install f-a-t-a-l handler... (flag = -1)
+AthMasterSeq         INFO Member list: AthSequencer/AthAlgSeq, AthSequencer/AthOutSeq, AthSequencer/AthRegSeq
+AthAlgSeq            INFO Member list: AthPoolEx::WriteData/WriteData, AthPoolEx::WriteTag/WriteTag, AthPoolEx::WriteTag/MagicWriteTag, AthenaOutputStream/Stream1, AthenaOutputStream/Stream2, AthPoolEx::PassNoneFilter/PassNoneFilter, AthenaOutputStream/Stream3, RegistrationStream/RegStream1, RegistrationStream/RegStream2, RegistrationStream/RegStream3
+WriteData           DEBUG Property update for OutputLevel : new value = 2
+WriteData            INFO in initialize()
+WriteData           DEBUG input handles: 0
+WriteData           DEBUG output handles: 0
+WriteData           DEBUG Data Deps for WriteData
+WriteTag             INFO in initialize()
+MagicWriteTag        INFO in initialize()
+Stream1.Stream1...  DEBUG Property update for OutputLevel : new value = 2
+Stream1             DEBUG Property update for OutputLevel : new value = 2
+Stream1             DEBUG In initialize 
+Stream1             DEBUG Found IDecisionSvc.
+DecisionSvc          INFO Inserting stream: Stream1 with no Algs
+Stream1             DEBUG End initialize 
+Stream1             DEBUG In initialize
+AthenaPoolCnvSvc    DEBUG Property update for OutputLevel : new value = 2
+PoolSvc             DEBUG Property update for OutputLevel : new value = 2
+PoolSvc              INFO io_register[PoolSvc](xmlcatalog_file:Catalog1.xml) [ok]
+PoolSvc              INFO Set connectionsvc retry/timeout/IDLE timeout to  'ConnectionRetrialPeriod':300/ 'ConnectionRetrialTimeOut':3600/ 'ConnectionTimeOut':5 seconds with connection cleanup disabled
+PoolSvc              INFO Frontier compression level set to 5
+PoolSvc              INFO Successfully setup replica sorting algorithm
+PoolSvc             DEBUG OutputLevel is 2
+PoolSvc              INFO Setting up APR FileCatalog and Streams
+PoolSvc              INFO POOL WriteCatalog is xmlcatalog_file:Catalog1.xml
+PoolSvc              INFO Re-initializing PoolSvc
+Stream1             DEBUG Found StoreGateSvc store.
+Stream1             DEBUG Found MetaDataStore store.
+Stream1.Stream1...  DEBUG Property update for OutputLevel : new value = 2
+Stream1.Stream1...   INFO streamProperty ProcessingTag = Stream1
+Stream1.Stream1...  DEBUG Property update for OutputLevel : new value = 2
+Stream1              INFO Found HelperTools = PrivateToolHandleArray(['MakeEventStreamInfo/Stream1_MakeEventStreamInfo'])
+Stream1              INFO Data output: SimplePoolFile1.root
+Stream1              INFO I/O reinitialization...
+Stream1             DEBUG End initialize
+Stream1             DEBUG input handles: 0
+Stream1             DEBUG output handles: 0
+Stream1             DEBUG Registering all Tools in ToolHandleArray HelperTools
+Stream1             DEBUG Adding private ToolHandle tool Stream1.Stream1_MakeEventStreamInfo (MakeEventStreamInfo) from ToolHandleArray HelperTools
+Stream1             DEBUG Adding private ToolHandle tool Stream1.Stream1Tool (AthenaPoolOutputStreamTool)
+Stream1             DEBUG Data Deps for Stream1
+Stream2.Stream2...  DEBUG Property update for OutputLevel : new value = 2
+Stream2             DEBUG Property update for OutputLevel : new value = 2
+Stream2             DEBUG In initialize 
+Stream2             DEBUG Found IDecisionSvc.
+DecisionSvc          INFO Inserting stream: Stream2 with no Algs
+Stream2             DEBUG End initialize 
+Stream2             DEBUG In initialize
+Stream2             DEBUG Found StoreGateSvc store.
+Stream2             DEBUG Found MetaDataStore store.
+Stream2.Stream2...  DEBUG Property update for OutputLevel : new value = 2
+Stream2.Stream2...   INFO streamProperty ProcessingTag = Stream2
+Stream2.Stream2...  DEBUG Property update for OutputLevel : new value = 2
+Stream2              INFO Found HelperTools = PrivateToolHandleArray(['MakeEventStreamInfo/Stream2_MakeEventStreamInfo'])
+Stream2              INFO Data output: SimplePoolFile2.root
+Stream2              INFO I/O reinitialization...
+Stream2             DEBUG End initialize
+Stream2             DEBUG input handles: 0
+Stream2             DEBUG output handles: 0
+Stream2             DEBUG Registering all Tools in ToolHandleArray HelperTools
+Stream2             DEBUG Adding private ToolHandle tool Stream2.Stream2_MakeEventStreamInfo (MakeEventStreamInfo) from ToolHandleArray HelperTools
+Stream2             DEBUG Adding private ToolHandle tool Stream2.Stream2Tool (AthenaPoolOutputStreamTool)
+Stream2             DEBUG Data Deps for Stream2
+DecisionSvc          INFO Inserting stream: Stream3 with no Algs
+Stream3.Stream3...   INFO streamProperty ProcessingTag = Stream3
+Stream3              INFO Found HelperTools = PrivateToolHandleArray(['MakeEventStreamInfo/Stream3_MakeEventStreamInfo'])
+Stream3              INFO Data output: EmptyPoolFile.root
+Stream3              INFO I/O reinitialization...
+RegStream1.RegS...  DEBUG Property update for OutputLevel : new value = 2
+RegStream1          DEBUG Property update for OutputLevel : new value = 2
+RegStream1          DEBUG In initialize 
+RegStream1          DEBUG Found IDecisionSvc.
+DecisionSvc          INFO Inserting stream: RegStream1 with no Algs
+RegStream1          DEBUG End initialize 
+RegStream1          DEBUG In initialize 
+RegStream1          DEBUG Found  'StoreName':StoreGateSvc store.
+RegStream1.TagTool  DEBUG Property update for OutputLevel : new value = 2
+RegStream1          DEBUG  Tool initialized
+RegStream1          DEBUG Retrieved IncidentSvc
+RegStream1          DEBUG Added MetaDataStop listener
+RegStream1          DEBUG  Not class requested by Tool, skipping (40774349,"MagicTag") 
+RegStream1          DEBUG  Not class requested by Tool, skipping (222376821,"Stream1") 
+RegStream1          DEBUG End initialize 
+RegStream1          DEBUG input handles: 0
+RegStream1          DEBUG output handles: 0
+RegStream1          DEBUG Adding private ToolHandle tool RegStream1.TagTool (RegistrationStreamTagTool)
+RegStream1          DEBUG Data Deps for RegStream1
+RegStream2.RegS...  DEBUG Property update for OutputLevel : new value = 2
+RegStream2          DEBUG Property update for OutputLevel : new value = 2
+RegStream2          DEBUG In initialize 
+RegStream2          DEBUG Found IDecisionSvc.
+DecisionSvc          INFO Inserting stream: RegStream2 with no Algs
+RegStream2          DEBUG End initialize 
+RegStream2          DEBUG In initialize 
+RegStream2          DEBUG Found  'StoreName':StoreGateSvc store.
+RegStream2.TagTool  DEBUG Property update for OutputLevel : new value = 2
+RegStream2          DEBUG  Tool initialized
+RegStream2          DEBUG Retrieved IncidentSvc
+RegStream2          DEBUG Added MetaDataStop listener
+RegStream2          DEBUG  Not class requested by Tool, skipping (40774349,"RunEventTag") 
+RegStream2          DEBUG  Not class requested by Tool, skipping (222376821,"Stream2") 
+RegStream2          DEBUG End initialize 
+RegStream2          DEBUG input handles: 0
+RegStream2          DEBUG output handles: 0
+RegStream2          DEBUG Adding private ToolHandle tool RegStream2.TagTool (RegistrationStreamTagTool)
+RegStream2          DEBUG Data Deps for RegStream2
+RegStream3.RegS...  DEBUG Property update for OutputLevel : new value = 2
+RegStream3          DEBUG Property update for OutputLevel : new value = 2
+RegStream3          DEBUG In initialize 
+RegStream3          DEBUG Found IDecisionSvc.
+DecisionSvc          INFO Inserting stream: RegStream3 with no Algs
+RegStream3          DEBUG Trying to add PassNoneFilter of stream RegStream3 to RequireAlg list
+RegStream3          DEBUG End initialize 
+RegStream3          DEBUG In initialize 
+RegStream3          DEBUG Found  'StoreName':StoreGateSvc store.
+RegStream3.TagTool  DEBUG Property update for OutputLevel : new value = 2
+RegStream3          DEBUG  Tool initialized
+RegStream3          DEBUG Retrieved IncidentSvc
+RegStream3          DEBUG Added MetaDataStop listener
+RegStream3          DEBUG  Not class requested by Tool, skipping (40774349,"MagicTag") 
+RegStream3          DEBUG  Not class requested by Tool, skipping (222376821,"Stream2") 
+RegStream3          DEBUG End initialize 
+RegStream3          DEBUG input handles: 0
+RegStream3          DEBUG output handles: 0
+RegStream3          DEBUG Adding private ToolHandle tool RegStream3.TagTool (RegistrationStreamTagTool)
+RegStream3          DEBUG Data Deps for RegStream3
+HistogramPersis...WARNING Histograms saving not required.
+EventSelector        INFO  Enter McEventSelector Initialization 
+AthenaEventLoopMgr   INFO Setup EventSelector service EventSelector
+ApplicationMgr       INFO Application Manager Initialized successfully
+ApplicationMgr       INFO Application Manager Started successfully
+EventPersistenc...   INFO Added successfully Conversion service:McCnvSvc
+AthenaEventLoopMgr   INFO   ===>>>  start of run 1    <<<===
+AthenaEventLoopMgr   INFO   ===>>>  start processing event #0, run #1 0 events processed so far  <<<===
+WriteData           DEBUG in execute()
+WriteData            INFO EventInfo event: 0  run: 1
+WriteData            INFO registered all data
+WriteTag             INFO EventInfo event: 0  run: 1
+WriteTag             INFO registered all data
+MagicWriteTag        INFO EventInfo event: 0  run: 1
+MagicWriteTag        INFO registered all data
+DbSession Info     Open     DbSession    
+Domain[ROOT_All] Info >   Access   DbDomain     UPDATE    [ROOT_All] 
+AthenaPoolCnvSvc    DEBUG setAttribute TREE_MAX_SIZE to 1099511627776L
+AthenaPoolCnvSvc    DEBUG setAttribute DEFAULT_SPLITLEVEL to 0
+AthenaPoolCnvSvc    DEBUG setAttribute STREAM_MEMBER_WISE to 1
+AthenaPoolCnvSvc    DEBUG setAttribute DEFAULT_BUFFERSIZE to 32000
+Domain[ROOT_All] Info ->  Access   DbDatabase   CREATE    [ROOT_All] ????
+Domain[ROOT_All] Info                           SimplePoolFile1.root
+SimplePoolFile1.root Debug --> Access   DbContainer  CREATE    [ROOT_All] ##Shapes
+##Shapes Debug Opening
+##Shapes Debug    attributes# = 1
+##Shapes Debug Opened container ##Shapes of type ROOT_Tree
+##Shapes Debug No objects passing selection criteria... Container has 0 Entries in total.
+SimplePoolFile1.root Debug --> Access   DbContainer  CREATE    [ROOT_All] ##Links
+##Links Debug Opening
+##Links Debug    attributes# = 1
+##Links Debug Opened container ##Links of type ROOT_Tree
+##Links Debug No objects passing selection criteria... Container has 0 Entries in total.
+SimplePoolFile1.root Debug --> Access   DbContainer  CREATE    [ROOT_All] ##Params
+##Params Debug Opening
+##Params Debug    attributes# = 1
+##Params Debug Opened container ##Params of type ROOT_Tree
+SimplePoolFile1.root Debug --->Adding Assoc :????/##Params [200]  (2 , ffffffff)
+SimplePoolFile1.root Debug ---->ClassID:????
+##Params Debug No objects passing selection criteria... Container has 0 Entries in total.
+AthenaPoolCnvSvc    DEBUG setAttribute CONTAINER_SPLITLEVEL to 99 for db: SimplePoolFile1.root and cont: TTree=POOLContainerForm(DataHeaderForm)
+Stream1             DEBUG addItemObjects(2101,"*") called
+Stream1             DEBUG            Key:*
+Stream1             DEBUG  Added object 2101,"McEventInfo"
+Stream1             DEBUG addItemObjects(9102,"MyHits") called
+Stream1             DEBUG            Key:MyHits
+Stream1             DEBUG  Added object 9102,"MyHits"
+Stream1             DEBUG addItemObjects(9102,"PetersHits") called
+Stream1             DEBUG            Key:PetersHits
+Stream1             DEBUG  No object matching 9102,"PetersHits" found
+Stream1             DEBUG  Collected objects:
+Stream1             DEBUG  Object/count: EventInfo_McEventInfo, 1
+Stream1             DEBUG  Object/count: ExampleHitContainer_MyHits, 1
+StorageSvc Info Building shape according to reflection information using shape ID for:
+StorageSvc Info EventInfo_p4 [????]
+SimplePoolFile1.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_Tree] CollectionTree(EventInfo_p4/McEventInfo)
+CollectionTree(EventInfo_p4/McEventInfo) Debug Opening
+CollectionTree(EventInfo_p4/McEventInfo) Debug    attributes# = 1
+CollectionTree(EventInfo_p4/McEventInfo) Debug Branch container 'EventInfo_p4_McEventInfo'
+CollectionTree(EventInfo_p4/McEventInfo) Debug Opened container CollectionTree(EventInfo_p4/McEventInfo) of type ROOT_Tree
+SimplePoolFile1.root Debug --->Adding Assoc :????/CollectionTree(EventInfo_p4/McEventInfo) [202]  (3 , ffffffff)
+SimplePoolFile1.root Debug ---->ClassID:????
+SimplePoolFile1.root Debug --->Adding Shape[0 , ????]:  [1 Column(s)] 
+SimplePoolFile1.root Debug ---->Class:EventInfo_p4
+SimplePoolFile1.root Debug ---->[0]:EventInfo_p4 Typ:EventInfo_p4 [21] Size:0 Offset:0 #Elements:1
+StorageSvc Info Building shape according to reflection information using shape ID for:
+StorageSvc Info ExampleHitContainer_p1 [????]
+SimplePoolFile1.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_Tree] CollectionTree(ExampleHitContainer_p1/MyHits)
+CollectionTree(ExampleHitContainer_p1/MyHits) Debug Opening
+CollectionTree(ExampleHitContainer_p1/MyHits) Debug    attributes# = 1
+CollectionTree(ExampleHitContainer_p1/MyHits) Debug Branch container 'ExampleHitContainer_p1_MyHits'
+CollectionTree(ExampleHitContainer_p1/MyHits) Debug Opened container CollectionTree(ExampleHitContainer_p1/MyHits) of type ROOT_Tree
+SimplePoolFile1.root Debug --->Adding Assoc :????/CollectionTree(ExampleHitContainer_p1/MyHits) [202]  (4 , ffffffff)
+SimplePoolFile1.root Debug ---->ClassID:????
+SimplePoolFile1.root Debug --->Adding Shape[1 , ????]:  [1 Column(s)] 
+SimplePoolFile1.root Debug ---->Class:ExampleHitContainer_p1
+SimplePoolFile1.root Debug ---->[0]:ExampleHitContainer_p1 Typ:ExampleHitContainer_p1 [21] Size:0 Offset:0 #Elements:1
+StorageSvc Info Building shape according to reflection information using shape ID for:
+StorageSvc Info DataHeaderForm_p5 [????]
+SimplePoolFile1.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_Tree] POOLContainerForm(DataHeaderForm)
+POOLContainerForm(DataHeaderForm) Debug Opening
+POOLContainerForm(DataHeaderForm) Debug    attributes# = 1
+POOLContainerForm(DataHeaderForm) Debug Branch container 'DataHeaderForm'
+POOLContainerForm(DataHeaderForm) Debug Opened container POOLContainerForm(DataHeaderForm) of type ROOT_Tree
+SimplePoolFile1.root Debug --->Adding Assoc :????/POOLContainerForm(DataHeaderForm) [202]  (5 , ffffffff)
+SimplePoolFile1.root Debug ---->ClassID:????
+SimplePoolFile1.root Debug --->Adding Shape[2 , ????]:  [1 Column(s)] 
+SimplePoolFile1.root Debug ---->Class:DataHeaderForm_p5
+SimplePoolFile1.root Debug ---->[0]:DataHeaderForm_p5 Typ:DataHeaderForm_p5 [21] Size:0 Offset:0 #Elements:1
+StorageSvc Info Building shape according to reflection information using shape ID for:
+StorageSvc Info DataHeader_p5 [????]
+SimplePoolFile1.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_Tree] POOLContainer(DataHeader)
+POOLContainer(DataHeader) Debug Opening
+POOLContainer(DataHeader) Debug    attributes# = 1
+POOLContainer(DataHeader) Debug Branch container 'DataHeader'
+POOLContainer(DataHeader) Debug Opened container POOLContainer(DataHeader) of type ROOT_Tree
+SimplePoolFile1.root Debug --->Adding Assoc :????/POOLContainer(DataHeader) [202]  (6 , ffffffff)
+SimplePoolFile1.root Debug ---->ClassID:????
+SimplePoolFile1.root Debug --->Adding Shape[3 , ????]:  [1 Column(s)] 
+SimplePoolFile1.root Debug ---->Class:DataHeader_p5
+SimplePoolFile1.root Debug ---->[0]:DataHeader_p5 Typ:DataHeader_p5 [21] Size:0 Offset:0 #Elements:1
+StorageSvc Info Building shape according to reflection information using shape ID for:
+StorageSvc Info Token [????]
+SimplePoolFile1.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_Tree] POOLCollectionTree(Token)
+POOLCollectionTree(Token) Debug Opening
+POOLCollectionTree(Token) Debug    attributes# = 1
+POOLCollectionTree(Token) Debug Branch container 'Token'
+POOLCollectionTree(Token) Debug Opened container POOLCollectionTree(Token) of type ROOT_Tree
+SimplePoolFile1.root Debug --->Adding Assoc :????/POOLCollectionTree(Token) [202]  (7 , ffffffff)
+SimplePoolFile1.root Debug ---->ClassID:????
+SimplePoolFile1.root Debug --->Adding Shape[4 , ????]:  [1 Column(s)] 
+SimplePoolFile1.root Debug ---->Class:Token
+SimplePoolFile1.root Debug ---->[0]:Token Typ:Token [18] Size:0 Offset:0 #Elements:1
+StorageSvc Info Building shape according to reflection information using shape ID for:
+StorageSvc Info unsigned int [????]
+SimplePoolFile1.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_Tree] POOLCollectionTree(RunNumber)
+POOLCollectionTree(RunNumber) Debug Opening
+POOLCollectionTree(RunNumber) Debug    attributes# = 1
+POOLCollectionTree(RunNumber) Debug Branch container 'RunNumber'
+POOLCollectionTree(RunNumber) Debug Opened container POOLCollectionTree(RunNumber) of type ROOT_Tree
+SimplePoolFile1.root Debug --->Adding Assoc :????/POOLCollectionTree(RunNumber) [202]  (8 , ffffffff)
+SimplePoolFile1.root Debug ---->ClassID:????
+SimplePoolFile1.root Debug --->Adding Shape[5 , ????]:  [1 Column(s)] 
+SimplePoolFile1.root Debug ---->Class:unsigned int
+SimplePoolFile1.root Debug ---->[0]:unsigned int Typ:unsigned int [3] Size:0 Offset:0 #Elements:1
+SimplePoolFile1.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_Tree] POOLCollectionTree(EventNumber)
+POOLCollectionTree(EventNumber) Debug Opening
+POOLCollectionTree(EventNumber) Debug    attributes# = 1
+POOLCollectionTree(EventNumber) Debug Branch container 'EventNumber'
+POOLCollectionTree(EventNumber) Debug Opened container POOLCollectionTree(EventNumber) of type ROOT_Tree
+SimplePoolFile1.root Debug --->Adding Assoc :????/POOLCollectionTree(EventNumber) [202]  (9 , ffffffff)
+SimplePoolFile1.root Debug ---->ClassID:????
+SimplePoolFile1.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_Tree] POOLCollectionTree(MagicNumber)
+POOLCollectionTree(MagicNumber) Debug Opening
+POOLCollectionTree(MagicNumber) Debug    attributes# = 1
+POOLCollectionTree(MagicNumber) Debug Branch container 'MagicNumber'
+POOLCollectionTree(MagicNumber) Debug Opened container POOLCollectionTree(MagicNumber) of type ROOT_Tree
+SimplePoolFile1.root Debug --->Adding Assoc :????/POOLCollectionTree(MagicNumber) [202]  (a , ffffffff)
+SimplePoolFile1.root Debug ---->ClassID:????
+SimplePoolFile1.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_Tree] POOLContainer(basic/DataHeader)
+POOLContainer(basic/DataHeader) Debug Opening
+POOLContainer(basic/DataHeader) Debug    attributes# = 1
+POOLContainer(basic/DataHeader) Debug Branch container 'basic_DataHeader'
+POOLContainer(basic/DataHeader) Debug Opened container POOLContainer(basic/DataHeader) of type ROOT_Tree
+SimplePoolFile1.root Debug --->Adding Assoc :????/POOLContainer(basic/DataHeader) [202]  (b , ffffffff)
+SimplePoolFile1.root Debug ---->ClassID:????
+AthenaPoolCnvSvc    DEBUG setAttribute BRANCH_BASKET_SIZE to 256000 for db: SimplePoolFile1.root and cont: POOLContainer(DataHeader)
+AthenaPoolCnvSvc    DEBUG setAttribute BRANCH_BASKET_SIZE to 1024000 for db: SimplePoolFile1.root and cont: POOLContainerForm(DataHeaderForm)
+Domain[ROOT_All] Info ->  Access   DbDatabase   CREATE    [ROOT_All] ????
+Domain[ROOT_All] Info                           SimplePoolFile2.root
+SimplePoolFile2.root Debug --> Access   DbContainer  CREATE    [ROOT_All] ##Shapes
+##Shapes Debug Opening
+##Shapes Debug    attributes# = 1
+##Shapes Debug Opened container ##Shapes of type ROOT_Tree
+##Shapes Debug No objects passing selection criteria... Container has 0 Entries in total.
+SimplePoolFile2.root Debug --> Access   DbContainer  CREATE    [ROOT_All] ##Links
+##Links Debug Opening
+##Links Debug    attributes# = 1
+##Links Debug Opened container ##Links of type ROOT_Tree
+##Links Debug No objects passing selection criteria... Container has 0 Entries in total.
+SimplePoolFile2.root Debug --> Access   DbContainer  CREATE    [ROOT_All] ##Params
+##Params Debug Opening
+##Params Debug    attributes# = 1
+##Params Debug Opened container ##Params of type ROOT_Tree
+SimplePoolFile2.root Debug --->Adding Assoc :????/##Params [200]  (2 , ffffffff)
+SimplePoolFile2.root Debug ---->ClassID:????
+##Params Debug No objects passing selection criteria... Container has 0 Entries in total.
+AthenaPoolCnvSvc    DEBUG setAttribute CONTAINER_SPLITLEVEL to 99 for db: SimplePoolFile2.root and cont: TTree=POOLContainerForm(DataHeaderForm)
+Stream2             DEBUG addItemObjects(2101,"*") called
+Stream2             DEBUG            Key:*
+Stream2             DEBUG  Added object 2101,"McEventInfo"
+Stream2             DEBUG addItemObjects(9102,"*") called
+Stream2             DEBUG            Key:*
+Stream2             DEBUG  Collected objects:
+Stream2             DEBUG  Object/count: EventInfo_McEventInfo, 1
+SimplePoolFile2.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_Tree] CollectionTree(EventInfo_p4/McEventInfo)
+CollectionTree(EventInfo_p4/McEventInfo) Debug Opening
+CollectionTree(EventInfo_p4/McEventInfo) Debug    attributes# = 1
+CollectionTree(EventInfo_p4/McEventInfo) Debug Branch container 'EventInfo_p4_McEventInfo'
+CollectionTree(EventInfo_p4/McEventInfo) Debug Opened container CollectionTree(EventInfo_p4/McEventInfo) of type ROOT_Tree
+SimplePoolFile2.root Debug --->Adding Assoc :????/CollectionTree(EventInfo_p4/McEventInfo) [202]  (3 , ffffffff)
+SimplePoolFile2.root Debug ---->ClassID:????
+SimplePoolFile2.root Debug --->Adding Shape[0 , ????]:  [1 Column(s)] 
+SimplePoolFile2.root Debug ---->Class:EventInfo_p4
+SimplePoolFile2.root Debug ---->[0]:EventInfo_p4 Typ:EventInfo_p4 [21] Size:0 Offset:0 #Elements:1
+SimplePoolFile2.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_Tree] POOLContainerForm(DataHeaderForm)
+POOLContainerForm(DataHeaderForm) Debug Opening
+POOLContainerForm(DataHeaderForm) Debug    attributes# = 1
+POOLContainerForm(DataHeaderForm) Debug Branch container 'DataHeaderForm'
+POOLContainerForm(DataHeaderForm) Debug Opened container POOLContainerForm(DataHeaderForm) of type ROOT_Tree
+SimplePoolFile2.root Debug --->Adding Assoc :????/POOLContainerForm(DataHeaderForm) [202]  (4 , ffffffff)
+SimplePoolFile2.root Debug ---->ClassID:????
+SimplePoolFile2.root Debug --->Adding Shape[1 , ????]:  [1 Column(s)] 
+SimplePoolFile2.root Debug ---->Class:DataHeaderForm_p5
+SimplePoolFile2.root Debug ---->[0]:DataHeaderForm_p5 Typ:DataHeaderForm_p5 [21] Size:0 Offset:0 #Elements:1
+SimplePoolFile2.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_Tree] POOLContainer(DataHeader)
+POOLContainer(DataHeader) Debug Opening
+POOLContainer(DataHeader) Debug    attributes# = 1
+POOLContainer(DataHeader) Debug Branch container 'DataHeader'
+POOLContainer(DataHeader) Debug Opened container POOLContainer(DataHeader) of type ROOT_Tree
+SimplePoolFile2.root Debug --->Adding Assoc :????/POOLContainer(DataHeader) [202]  (5 , ffffffff)
+SimplePoolFile2.root Debug ---->ClassID:????
+SimplePoolFile2.root Debug --->Adding Shape[2 , ????]:  [1 Column(s)] 
+SimplePoolFile2.root Debug ---->Class:DataHeader_p5
+SimplePoolFile2.root Debug ---->[0]:DataHeader_p5 Typ:DataHeader_p5 [21] Size:0 Offset:0 #Elements:1
+SimplePoolFile2.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_Tree] POOLCollectionTree(Token)
+POOLCollectionTree(Token) Debug Opening
+POOLCollectionTree(Token) Debug    attributes# = 1
+POOLCollectionTree(Token) Debug Branch container 'Token'
+POOLCollectionTree(Token) Debug Opened container POOLCollectionTree(Token) of type ROOT_Tree
+SimplePoolFile2.root Debug --->Adding Assoc :????/POOLCollectionTree(Token) [202]  (6 , ffffffff)
+SimplePoolFile2.root Debug ---->ClassID:????
+SimplePoolFile2.root Debug --->Adding Shape[3 , ????]:  [1 Column(s)] 
+SimplePoolFile2.root Debug ---->Class:Token
+SimplePoolFile2.root Debug ---->[0]:Token Typ:Token [18] Size:0 Offset:0 #Elements:1
+SimplePoolFile2.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_Tree] POOLCollectionTree(RunNumber)
+POOLCollectionTree(RunNumber) Debug Opening
+POOLCollectionTree(RunNumber) Debug    attributes# = 1
+POOLCollectionTree(RunNumber) Debug Branch container 'RunNumber'
+POOLCollectionTree(RunNumber) Debug Opened container POOLCollectionTree(RunNumber) of type ROOT_Tree
+SimplePoolFile2.root Debug --->Adding Assoc :????/POOLCollectionTree(RunNumber) [202]  (7 , ffffffff)
+SimplePoolFile2.root Debug ---->ClassID:????
+SimplePoolFile2.root Debug --->Adding Shape[4 , ????]:  [1 Column(s)] 
+SimplePoolFile2.root Debug ---->Class:unsigned int
+SimplePoolFile2.root Debug ---->[0]:unsigned int Typ:unsigned int [3] Size:0 Offset:0 #Elements:1
+SimplePoolFile2.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_Tree] POOLCollectionTree(EventNumber)
+POOLCollectionTree(EventNumber) Debug Opening
+POOLCollectionTree(EventNumber) Debug    attributes# = 1
+POOLCollectionTree(EventNumber) Debug Branch container 'EventNumber'
+POOLCollectionTree(EventNumber) Debug Opened container POOLCollectionTree(EventNumber) of type ROOT_Tree
+SimplePoolFile2.root Debug --->Adding Assoc :????/POOLCollectionTree(EventNumber) [202]  (8 , ffffffff)
+SimplePoolFile2.root Debug ---->ClassID:????
+SimplePoolFile2.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_Tree] POOLCollectionTree(MagicNumber)
+POOLCollectionTree(MagicNumber) Debug Opening
+POOLCollectionTree(MagicNumber) Debug    attributes# = 1
+POOLCollectionTree(MagicNumber) Debug Branch container 'MagicNumber'
+POOLCollectionTree(MagicNumber) Debug Opened container POOLCollectionTree(MagicNumber) of type ROOT_Tree
+SimplePoolFile2.root Debug --->Adding Assoc :????/POOLCollectionTree(MagicNumber) [202]  (9 , ffffffff)
+SimplePoolFile2.root Debug ---->ClassID:????
+SimplePoolFile2.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_Tree] POOLContainer(basic/DataHeader)
+POOLContainer(basic/DataHeader) Debug Opening
+POOLContainer(basic/DataHeader) Debug    attributes# = 1
+POOLContainer(basic/DataHeader) Debug Branch container 'basic_DataHeader'
+POOLContainer(basic/DataHeader) Debug Opened container POOLContainer(basic/DataHeader) of type ROOT_Tree
+SimplePoolFile2.root Debug --->Adding Assoc :????/POOLContainer(basic/DataHeader) [202]  (a , ffffffff)
+SimplePoolFile2.root Debug ---->ClassID:????
+AthenaPoolCnvSvc    DEBUG setAttribute BRANCH_BASKET_SIZE to 256000 for db: SimplePoolFile2.root and cont: POOLContainer(DataHeader)
+AthenaPoolCnvSvc    DEBUG setAttribute BRANCH_BASKET_SIZE to 1024000 for db: SimplePoolFile2.root and cont: POOLContainerForm(DataHeaderForm)
+RegStream1          DEBUG RegistrationStream execute
+RegStream1          DEBUG getRefs: Not DataHeader, skipping (40774349,"MagicTag") 
+RegStream1          DEBUG  get ref for (222376821,"Stream1") 
+RegStream1          DEBUG Retrieved DataHeader with key Stream1
+RegStream1          DEBUG Pushing back ref [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000000] for Stream1
+RegStream1          DEBUG Setting tagKey to MagicTag
+RegStream1          DEBUG  Not class requested by Tool, skipping (222376821,"Stream1") 
+PoolSvc              INFO Writing ExplicitROOT Collection - do not pass session pointer
+RootCollection Info Opening Collection File SimplePoolCollection1.root in mode: UPDATE
+RootCollection Debug File SimplePoolCollection1.root does not exist.
+RootCollection Info File SimplePoolCollection1.root opened
+RootCollection Debug Created Collection TTree. Collection file will be SimplePoolCollection1.root
+RootCollectionSchemaEditor Debug Created Branch Token, Type=Token
+RootCollection Info Root collection opened, size = 0
+POOLCollFactory Debug Generated new ID for collection PFN:SimplePoolCollection1.root GUID=????
+RootCollection::Metadata Info  ****** Created metadata tree in the collection file
+RootCollection Debug Commit: saving collection TTree to file: SimplePoolCollection1.root
+RootCollection Debug    bytes written to TTree ????
+RootCollection::MetadataCommit Debug Bytes written to the Metadata TTree ????
+RootCollectionSchemaEditor Debug Created Branch RunNumber, Type=unsigned int
+RootCollectionSchemaEditor Debug Created Branch EventNumber, Type=unsigned int
+RootCollectionSchemaEditor Debug Created Branch MagicNumber, Type=unsigned int
+RegStream1.TagTool   INFO No Primary Key defined
+RootCollection Debug Collection size=1
+RegStream2          DEBUG RegistrationStream execute
+RegStream2          DEBUG getRefs: Not DataHeader, skipping (40774349,"RunEventTag") 
+RegStream2          DEBUG  get ref for (222376821,"Stream2") 
+RegStream2          DEBUG Retrieved DataHeader with key Stream2
+RegStream2          DEBUG Pushing back ref [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000000] for Stream2
+RegStream2          DEBUG Setting tagKey to RunEventTag
+RegStream2          DEBUG  Not class requested by Tool, skipping (222376821,"Stream2") 
+PoolSvc              INFO Writing ExplicitROOT Collection - do not pass session pointer
+RootCollection Info Opening Collection File SimplePoolCollection2.root in mode: UPDATE
+RootCollection Debug File SimplePoolCollection2.root does not exist.
+RootCollection Info File SimplePoolCollection2.root opened
+RootCollection Debug Created Collection TTree. Collection file will be SimplePoolCollection2.root
+RootCollectionSchemaEditor Debug Created Branch Token, Type=Token
+RootCollection Info Root collection opened, size = 0
+POOLCollFactory Debug Generated new ID for collection PFN:SimplePoolCollection2.root GUID=????
+RootCollection::Metadata Info  ****** Created metadata tree in the collection file
+RootCollection Debug Commit: saving collection TTree to file: SimplePoolCollection2.root
+RootCollection Debug    bytes written to TTree ????
+RootCollection::MetadataCommit Debug Bytes written to the Metadata TTree ????
+RootCollectionSchemaEditor Debug Created Branch RunNumber, Type=unsigned int
+RootCollectionSchemaEditor Debug Created Branch EventNumber, Type=unsigned int
+RootCollectionSchemaEditor Debug Created Branch MagicNumber, Type=unsigned int
+RegStream2.TagTool   INFO No Primary Key defined
+RootCollection Debug Collection size=1
+RegStream3          DEBUG RegistrationStream execute
+RegStream3          DEBUG Event rejected by filtering
+AthenaEventLoopMgr   INFO   ===>>>  done processing event #0, run #1 1 events processed so far  <<<===
+AthenaEventLoopMgr   INFO   ===>>>  start processing event #1, run #1 1 events processed so far  <<<===
+WriteData           DEBUG in execute()
+WriteData            INFO EventInfo event: 1  run: 1
+WriteData            INFO registered all data
+WriteTag             INFO EventInfo event: 1  run: 1
+WriteTag             INFO registered all data
+MagicWriteTag        INFO EventInfo event: 1  run: 1
+MagicWriteTag        INFO registered all data
+Stream1             DEBUG addItemObjects(2101,"*") called
+Stream1             DEBUG            Key:*
+Stream1             DEBUG  Added object 2101,"McEventInfo"
+Stream1             DEBUG addItemObjects(9102,"MyHits") called
+Stream1             DEBUG            Key:MyHits
+Stream1             DEBUG  Added object 9102,"MyHits"
+Stream1             DEBUG addItemObjects(9102,"PetersHits") called
+Stream1             DEBUG            Key:PetersHits
+Stream1             DEBUG  No object matching 9102,"PetersHits" found
+Stream1             DEBUG  Collected objects:
+Stream1             DEBUG  Object/count: EventInfo_McEventInfo, 2
+Stream1             DEBUG  Object/count: ExampleHitContainer_MyHits, 2
+Stream2             DEBUG addItemObjects(2101,"*") called
+Stream2             DEBUG            Key:*
+Stream2             DEBUG  Added object 2101,"McEventInfo"
+Stream2             DEBUG addItemObjects(9102,"*") called
+Stream2             DEBUG            Key:*
+Stream2             DEBUG  Collected objects:
+Stream2             DEBUG  Object/count: EventInfo_McEventInfo, 2
+RegStream1          DEBUG RegistrationStream execute
+RegStream1          DEBUG getRefs: Not DataHeader, skipping (40774349,"MagicTag") 
+RegStream1          DEBUG  get ref for (222376821,"Stream1") 
+RegStream1          DEBUG Retrieved DataHeader with key Stream1
+RegStream1          DEBUG Pushing back ref [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000001] for Stream1
+RegStream1          DEBUG Setting tagKey to MagicTag
+RegStream1          DEBUG  Not class requested by Tool, skipping (222376821,"Stream1") 
+RootCollection Debug Collection size=2
+RegStream2          DEBUG RegistrationStream execute
+RegStream2          DEBUG getRefs: Not DataHeader, skipping (40774349,"RunEventTag") 
+RegStream2          DEBUG  get ref for (222376821,"Stream2") 
+RegStream2          DEBUG Retrieved DataHeader with key Stream2
+RegStream2          DEBUG Pushing back ref [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000001] for Stream2
+RegStream2          DEBUG Setting tagKey to RunEventTag
+RegStream2          DEBUG  Not class requested by Tool, skipping (222376821,"Stream2") 
+RootCollection Debug Collection size=2
+RegStream3          DEBUG RegistrationStream execute
+RegStream3          DEBUG Event rejected by filtering
+AthenaEventLoopMgr   INFO   ===>>>  done processing event #1, run #1 2 events processed so far  <<<===
+AthenaEventLoopMgr   INFO   ===>>>  start processing event #2, run #1 2 events processed so far  <<<===
+WriteData           DEBUG in execute()
+WriteData            INFO EventInfo event: 2  run: 1
+WriteData            INFO registered all data
+WriteTag             INFO EventInfo event: 2  run: 1
+WriteTag             INFO registered all data
+MagicWriteTag        INFO EventInfo event: 2  run: 1
+MagicWriteTag        INFO registered all data
+Stream1             DEBUG addItemObjects(2101,"*") called
+Stream1             DEBUG            Key:*
+Stream1             DEBUG  Added object 2101,"McEventInfo"
+Stream1             DEBUG addItemObjects(9102,"MyHits") called
+Stream1             DEBUG            Key:MyHits
+Stream1             DEBUG  Added object 9102,"MyHits"
+Stream1             DEBUG addItemObjects(9102,"PetersHits") called
+Stream1             DEBUG            Key:PetersHits
+Stream1             DEBUG  No object matching 9102,"PetersHits" found
+Stream1             DEBUG  Collected objects:
+Stream1             DEBUG  Object/count: EventInfo_McEventInfo, 3
+Stream1             DEBUG  Object/count: ExampleHitContainer_MyHits, 3
+Stream2             DEBUG addItemObjects(2101,"*") called
+Stream2             DEBUG            Key:*
+Stream2             DEBUG  Added object 2101,"McEventInfo"
+Stream2             DEBUG addItemObjects(9102,"*") called
+Stream2             DEBUG            Key:*
+Stream2             DEBUG  Collected objects:
+Stream2             DEBUG  Object/count: EventInfo_McEventInfo, 3
+RegStream1          DEBUG RegistrationStream execute
+RegStream1          DEBUG getRefs: Not DataHeader, skipping (40774349,"MagicTag") 
+RegStream1          DEBUG  get ref for (222376821,"Stream1") 
+RegStream1          DEBUG Retrieved DataHeader with key Stream1
+RegStream1          DEBUG Pushing back ref [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000002] for Stream1
+RegStream1          DEBUG Setting tagKey to MagicTag
+RegStream1          DEBUG  Not class requested by Tool, skipping (222376821,"Stream1") 
+RootCollection Debug Collection size=3
+RegStream2          DEBUG RegistrationStream execute
+RegStream2          DEBUG getRefs: Not DataHeader, skipping (40774349,"RunEventTag") 
+RegStream2          DEBUG  get ref for (222376821,"Stream2") 
+RegStream2          DEBUG Retrieved DataHeader with key Stream2
+RegStream2          DEBUG Pushing back ref [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000002] for Stream2
+RegStream2          DEBUG Setting tagKey to RunEventTag
+RegStream2          DEBUG  Not class requested by Tool, skipping (222376821,"Stream2") 
+RootCollection Debug Collection size=3
+RegStream3          DEBUG RegistrationStream execute
+RegStream3          DEBUG Event rejected by filtering
+AthenaEventLoopMgr   INFO   ===>>>  done processing event #2, run #1 3 events processed so far  <<<===
+AthenaEventLoopMgr   INFO   ===>>>  start processing event #3, run #1 3 events processed so far  <<<===
+WriteData           DEBUG in execute()
+WriteData            INFO EventInfo event: 3  run: 1
+WriteData            INFO registered all data
+WriteTag             INFO EventInfo event: 3  run: 1
+WriteTag             INFO registered all data
+MagicWriteTag        INFO EventInfo event: 3  run: 1
+MagicWriteTag        INFO registered all data
+Stream1             DEBUG addItemObjects(2101,"*") called
+Stream1             DEBUG            Key:*
+Stream1             DEBUG  Added object 2101,"McEventInfo"
+Stream1             DEBUG addItemObjects(9102,"MyHits") called
+Stream1             DEBUG            Key:MyHits
+Stream1             DEBUG  Added object 9102,"MyHits"
+Stream1             DEBUG addItemObjects(9102,"PetersHits") called
+Stream1             DEBUG            Key:PetersHits
+Stream1             DEBUG  No object matching 9102,"PetersHits" found
+Stream1             DEBUG  Collected objects:
+Stream1             DEBUG  Object/count: EventInfo_McEventInfo, 4
+Stream1             DEBUG  Object/count: ExampleHitContainer_MyHits, 4
+Stream2             DEBUG addItemObjects(2101,"*") called
+Stream2             DEBUG            Key:*
+Stream2             DEBUG  Added object 2101,"McEventInfo"
+Stream2             DEBUG addItemObjects(9102,"*") called
+Stream2             DEBUG            Key:*
+Stream2             DEBUG  Collected objects:
+Stream2             DEBUG  Object/count: EventInfo_McEventInfo, 4
+RegStream1          DEBUG RegistrationStream execute
+RegStream1          DEBUG getRefs: Not DataHeader, skipping (40774349,"MagicTag") 
+RegStream1          DEBUG  get ref for (222376821,"Stream1") 
+RegStream1          DEBUG Retrieved DataHeader with key Stream1
+RegStream1          DEBUG Pushing back ref [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000003] for Stream1
+RegStream1          DEBUG Setting tagKey to MagicTag
+RegStream1          DEBUG  Not class requested by Tool, skipping (222376821,"Stream1") 
+RootCollection Debug Collection size=4
+RegStream2          DEBUG RegistrationStream execute
+RegStream2          DEBUG getRefs: Not DataHeader, skipping (40774349,"RunEventTag") 
+RegStream2          DEBUG  get ref for (222376821,"Stream2") 
+RegStream2          DEBUG Retrieved DataHeader with key Stream2
+RegStream2          DEBUG Pushing back ref [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000003] for Stream2
+RegStream2          DEBUG Setting tagKey to RunEventTag
+RegStream2          DEBUG  Not class requested by Tool, skipping (222376821,"Stream2") 
+RootCollection Debug Collection size=4
+RegStream3          DEBUG RegistrationStream execute
+RegStream3          DEBUG Event rejected by filtering
+AthenaEventLoopMgr   INFO   ===>>>  done processing event #3, run #1 4 events processed so far  <<<===
+AthenaEventLoopMgr   INFO   ===>>>  start processing event #4, run #1 4 events processed so far  <<<===
+WriteData           DEBUG in execute()
+WriteData            INFO EventInfo event: 4  run: 1
+WriteData            INFO registered all data
+WriteTag             INFO EventInfo event: 4  run: 1
+WriteTag             INFO registered all data
+MagicWriteTag        INFO EventInfo event: 4  run: 1
+MagicWriteTag        INFO registered all data
+Stream1             DEBUG addItemObjects(2101,"*") called
+Stream1             DEBUG            Key:*
+Stream1             DEBUG  Added object 2101,"McEventInfo"
+Stream1             DEBUG addItemObjects(9102,"MyHits") called
+Stream1             DEBUG            Key:MyHits
+Stream1             DEBUG  Added object 9102,"MyHits"
+Stream1             DEBUG addItemObjects(9102,"PetersHits") called
+Stream1             DEBUG            Key:PetersHits
+Stream1             DEBUG  No object matching 9102,"PetersHits" found
+Stream1             DEBUG  Collected objects:
+Stream1             DEBUG  Object/count: EventInfo_McEventInfo, 5
+Stream1             DEBUG  Object/count: ExampleHitContainer_MyHits, 5
+Stream2             DEBUG addItemObjects(2101,"*") called
+Stream2             DEBUG            Key:*
+Stream2             DEBUG  Added object 2101,"McEventInfo"
+Stream2             DEBUG addItemObjects(9102,"*") called
+Stream2             DEBUG            Key:*
+Stream2             DEBUG  Collected objects:
+Stream2             DEBUG  Object/count: EventInfo_McEventInfo, 5
+RegStream1          DEBUG RegistrationStream execute
+RegStream1          DEBUG getRefs: Not DataHeader, skipping (40774349,"MagicTag") 
+RegStream1          DEBUG  get ref for (222376821,"Stream1") 
+RegStream1          DEBUG Retrieved DataHeader with key Stream1
+RegStream1          DEBUG Pushing back ref [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000004] for Stream1
+RegStream1          DEBUG Setting tagKey to MagicTag
+RegStream1          DEBUG  Not class requested by Tool, skipping (222376821,"Stream1") 
+RootCollection Debug Collection size=5
+RegStream2          DEBUG RegistrationStream execute
+RegStream2          DEBUG getRefs: Not DataHeader, skipping (40774349,"RunEventTag") 
+RegStream2          DEBUG  get ref for (222376821,"Stream2") 
+RegStream2          DEBUG Retrieved DataHeader with key Stream2
+RegStream2          DEBUG Pushing back ref [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000004] for Stream2
+RegStream2          DEBUG Setting tagKey to RunEventTag
+RegStream2          DEBUG  Not class requested by Tool, skipping (222376821,"Stream2") 
+RootCollection Debug Collection size=5
+RegStream3          DEBUG RegistrationStream execute
+RegStream3          DEBUG Event rejected by filtering
+AthenaEventLoopMgr   INFO   ===>>>  done processing event #4, run #1 5 events processed so far  <<<===
+AthenaEventLoopMgr   INFO   ===>>>  start processing event #5, run #1 5 events processed so far  <<<===
+WriteData           DEBUG in execute()
+WriteData            INFO EventInfo event: 5  run: 1
+WriteData            INFO registered all data
+WriteTag             INFO EventInfo event: 5  run: 1
+WriteTag             INFO registered all data
+MagicWriteTag        INFO EventInfo event: 5  run: 1
+MagicWriteTag        INFO registered all data
+Stream1             DEBUG addItemObjects(2101,"*") called
+Stream1             DEBUG            Key:*
+Stream1             DEBUG  Added object 2101,"McEventInfo"
+Stream1             DEBUG addItemObjects(9102,"MyHits") called
+Stream1             DEBUG            Key:MyHits
+Stream1             DEBUG  Added object 9102,"MyHits"
+Stream1             DEBUG addItemObjects(9102,"PetersHits") called
+Stream1             DEBUG            Key:PetersHits
+Stream1             DEBUG  No object matching 9102,"PetersHits" found
+Stream1             DEBUG  Collected objects:
+Stream1             DEBUG  Object/count: EventInfo_McEventInfo, 6
+Stream1             DEBUG  Object/count: ExampleHitContainer_MyHits, 6
+Stream2             DEBUG addItemObjects(2101,"*") called
+Stream2             DEBUG            Key:*
+Stream2             DEBUG  Added object 2101,"McEventInfo"
+Stream2             DEBUG addItemObjects(9102,"*") called
+Stream2             DEBUG            Key:*
+Stream2             DEBUG  Collected objects:
+Stream2             DEBUG  Object/count: EventInfo_McEventInfo, 6
+RegStream1          DEBUG RegistrationStream execute
+RegStream1          DEBUG getRefs: Not DataHeader, skipping (40774349,"MagicTag") 
+RegStream1          DEBUG  get ref for (222376821,"Stream1") 
+RegStream1          DEBUG Retrieved DataHeader with key Stream1
+RegStream1          DEBUG Pushing back ref [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000005] for Stream1
+RegStream1          DEBUG Setting tagKey to MagicTag
+RegStream1          DEBUG  Not class requested by Tool, skipping (222376821,"Stream1") 
+RootCollection Debug Collection size=6
+RegStream2          DEBUG RegistrationStream execute
+RegStream2          DEBUG getRefs: Not DataHeader, skipping (40774349,"RunEventTag") 
+RegStream2          DEBUG  get ref for (222376821,"Stream2") 
+RegStream2          DEBUG Retrieved DataHeader with key Stream2
+RegStream2          DEBUG Pushing back ref [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000005] for Stream2
+RegStream2          DEBUG Setting tagKey to RunEventTag
+RegStream2          DEBUG  Not class requested by Tool, skipping (222376821,"Stream2") 
+RootCollection Debug Collection size=6
+RegStream3          DEBUG RegistrationStream execute
+RegStream3          DEBUG Event rejected by filtering
+AthenaEventLoopMgr   INFO   ===>>>  done processing event #5, run #1 6 events processed so far  <<<===
+AthenaEventLoopMgr   INFO   ===>>>  start processing event #6, run #1 6 events processed so far  <<<===
+WriteData           DEBUG in execute()
+WriteData            INFO EventInfo event: 6  run: 1
+WriteData            INFO registered all data
+WriteTag             INFO EventInfo event: 6  run: 1
+WriteTag             INFO registered all data
+MagicWriteTag        INFO EventInfo event: 6  run: 1
+MagicWriteTag        INFO registered all data
+Stream1             DEBUG addItemObjects(2101,"*") called
+Stream1             DEBUG            Key:*
+Stream1             DEBUG  Added object 2101,"McEventInfo"
+Stream1             DEBUG addItemObjects(9102,"MyHits") called
+Stream1             DEBUG            Key:MyHits
+Stream1             DEBUG  Added object 9102,"MyHits"
+Stream1             DEBUG addItemObjects(9102,"PetersHits") called
+Stream1             DEBUG            Key:PetersHits
+Stream1             DEBUG  No object matching 9102,"PetersHits" found
+Stream1             DEBUG  Collected objects:
+Stream1             DEBUG  Object/count: EventInfo_McEventInfo, 7
+Stream1             DEBUG  Object/count: ExampleHitContainer_MyHits, 7
+Stream2             DEBUG addItemObjects(2101,"*") called
+Stream2             DEBUG            Key:*
+Stream2             DEBUG  Added object 2101,"McEventInfo"
+Stream2             DEBUG addItemObjects(9102,"*") called
+Stream2             DEBUG            Key:*
+Stream2             DEBUG  Collected objects:
+Stream2             DEBUG  Object/count: EventInfo_McEventInfo, 7
+RegStream1          DEBUG RegistrationStream execute
+RegStream1          DEBUG getRefs: Not DataHeader, skipping (40774349,"MagicTag") 
+RegStream1          DEBUG  get ref for (222376821,"Stream1") 
+RegStream1          DEBUG Retrieved DataHeader with key Stream1
+RegStream1          DEBUG Pushing back ref [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000006] for Stream1
+RegStream1          DEBUG Setting tagKey to MagicTag
+RegStream1          DEBUG  Not class requested by Tool, skipping (222376821,"Stream1") 
+RootCollection Debug Collection size=7
+RegStream2          DEBUG RegistrationStream execute
+RegStream2          DEBUG getRefs: Not DataHeader, skipping (40774349,"RunEventTag") 
+RegStream2          DEBUG  get ref for (222376821,"Stream2") 
+RegStream2          DEBUG Retrieved DataHeader with key Stream2
+RegStream2          DEBUG Pushing back ref [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000006] for Stream2
+RegStream2          DEBUG Setting tagKey to RunEventTag
+RegStream2          DEBUG  Not class requested by Tool, skipping (222376821,"Stream2") 
+RootCollection Debug Collection size=7
+RegStream3          DEBUG RegistrationStream execute
+RegStream3          DEBUG Event rejected by filtering
+AthenaEventLoopMgr   INFO   ===>>>  done processing event #6, run #1 7 events processed so far  <<<===
+AthenaEventLoopMgr   INFO   ===>>>  start processing event #7, run #1 7 events processed so far  <<<===
+WriteData           DEBUG in execute()
+WriteData            INFO EventInfo event: 7  run: 1
+WriteData            INFO registered all data
+WriteTag             INFO EventInfo event: 7  run: 1
+WriteTag             INFO registered all data
+MagicWriteTag        INFO EventInfo event: 7  run: 1
+MagicWriteTag        INFO registered all data
+Stream1             DEBUG addItemObjects(2101,"*") called
+Stream1             DEBUG            Key:*
+Stream1             DEBUG  Added object 2101,"McEventInfo"
+Stream1             DEBUG addItemObjects(9102,"MyHits") called
+Stream1             DEBUG            Key:MyHits
+Stream1             DEBUG  Added object 9102,"MyHits"
+Stream1             DEBUG addItemObjects(9102,"PetersHits") called
+Stream1             DEBUG            Key:PetersHits
+Stream1             DEBUG  No object matching 9102,"PetersHits" found
+Stream1             DEBUG  Collected objects:
+Stream1             DEBUG  Object/count: EventInfo_McEventInfo, 8
+Stream1             DEBUG  Object/count: ExampleHitContainer_MyHits, 8
+Stream2             DEBUG addItemObjects(2101,"*") called
+Stream2             DEBUG            Key:*
+Stream2             DEBUG  Added object 2101,"McEventInfo"
+Stream2             DEBUG addItemObjects(9102,"*") called
+Stream2             DEBUG            Key:*
+Stream2             DEBUG  Collected objects:
+Stream2             DEBUG  Object/count: EventInfo_McEventInfo, 8
+RegStream1          DEBUG RegistrationStream execute
+RegStream1          DEBUG getRefs: Not DataHeader, skipping (40774349,"MagicTag") 
+RegStream1          DEBUG  get ref for (222376821,"Stream1") 
+RegStream1          DEBUG Retrieved DataHeader with key Stream1
+RegStream1          DEBUG Pushing back ref [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000007] for Stream1
+RegStream1          DEBUG Setting tagKey to MagicTag
+RegStream1          DEBUG  Not class requested by Tool, skipping (222376821,"Stream1") 
+RootCollection Debug Collection size=8
+RegStream2          DEBUG RegistrationStream execute
+RegStream2          DEBUG getRefs: Not DataHeader, skipping (40774349,"RunEventTag") 
+RegStream2          DEBUG  get ref for (222376821,"Stream2") 
+RegStream2          DEBUG Retrieved DataHeader with key Stream2
+RegStream2          DEBUG Pushing back ref [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000007] for Stream2
+RegStream2          DEBUG Setting tagKey to RunEventTag
+RegStream2          DEBUG  Not class requested by Tool, skipping (222376821,"Stream2") 
+RootCollection Debug Collection size=8
+RegStream3          DEBUG RegistrationStream execute
+RegStream3          DEBUG Event rejected by filtering
+AthenaEventLoopMgr   INFO   ===>>>  done processing event #7, run #1 8 events processed so far  <<<===
+AthenaEventLoopMgr   INFO   ===>>>  start processing event #8, run #1 8 events processed so far  <<<===
+WriteData           DEBUG in execute()
+WriteData            INFO EventInfo event: 8  run: 1
+WriteData            INFO registered all data
+WriteTag             INFO EventInfo event: 8  run: 1
+WriteTag             INFO registered all data
+MagicWriteTag        INFO EventInfo event: 8  run: 1
+MagicWriteTag        INFO registered all data
+Stream1             DEBUG addItemObjects(2101,"*") called
+Stream1             DEBUG            Key:*
+Stream1             DEBUG  Added object 2101,"McEventInfo"
+Stream1             DEBUG addItemObjects(9102,"MyHits") called
+Stream1             DEBUG            Key:MyHits
+Stream1             DEBUG  Added object 9102,"MyHits"
+Stream1             DEBUG addItemObjects(9102,"PetersHits") called
+Stream1             DEBUG            Key:PetersHits
+Stream1             DEBUG  No object matching 9102,"PetersHits" found
+Stream1             DEBUG  Collected objects:
+Stream1             DEBUG  Object/count: EventInfo_McEventInfo, 9
+Stream1             DEBUG  Object/count: ExampleHitContainer_MyHits, 9
+Stream2             DEBUG addItemObjects(2101,"*") called
+Stream2             DEBUG            Key:*
+Stream2             DEBUG  Added object 2101,"McEventInfo"
+Stream2             DEBUG addItemObjects(9102,"*") called
+Stream2             DEBUG            Key:*
+Stream2             DEBUG  Collected objects:
+Stream2             DEBUG  Object/count: EventInfo_McEventInfo, 9
+RegStream1          DEBUG RegistrationStream execute
+RegStream1          DEBUG getRefs: Not DataHeader, skipping (40774349,"MagicTag") 
+RegStream1          DEBUG  get ref for (222376821,"Stream1") 
+RegStream1          DEBUG Retrieved DataHeader with key Stream1
+RegStream1          DEBUG Pushing back ref [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000008] for Stream1
+RegStream1          DEBUG Setting tagKey to MagicTag
+RegStream1          DEBUG  Not class requested by Tool, skipping (222376821,"Stream1") 
+RootCollection Debug Collection size=9
+RegStream2          DEBUG RegistrationStream execute
+RegStream2          DEBUG getRefs: Not DataHeader, skipping (40774349,"RunEventTag") 
+RegStream2          DEBUG  get ref for (222376821,"Stream2") 
+RegStream2          DEBUG Retrieved DataHeader with key Stream2
+RegStream2          DEBUG Pushing back ref [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000008] for Stream2
+RegStream2          DEBUG Setting tagKey to RunEventTag
+RegStream2          DEBUG  Not class requested by Tool, skipping (222376821,"Stream2") 
+RootCollection Debug Collection size=9
+RegStream3          DEBUG RegistrationStream execute
+RegStream3          DEBUG Event rejected by filtering
+AthenaEventLoopMgr   INFO   ===>>>  done processing event #8, run #1 9 events processed so far  <<<===
+AthenaEventLoopMgr   INFO   ===>>>  start processing event #9, run #1 9 events processed so far  <<<===
+WriteData           DEBUG in execute()
+WriteData            INFO EventInfo event: 9  run: 1
+WriteData            INFO registered all data
+WriteTag             INFO EventInfo event: 9  run: 1
+WriteTag             INFO registered all data
+MagicWriteTag        INFO EventInfo event: 9  run: 1
+MagicWriteTag        INFO registered all data
+Stream1             DEBUG addItemObjects(2101,"*") called
+Stream1             DEBUG            Key:*
+Stream1             DEBUG  Added object 2101,"McEventInfo"
+Stream1             DEBUG addItemObjects(9102,"MyHits") called
+Stream1             DEBUG            Key:MyHits
+Stream1             DEBUG  Added object 9102,"MyHits"
+Stream1             DEBUG addItemObjects(9102,"PetersHits") called
+Stream1             DEBUG            Key:PetersHits
+Stream1             DEBUG  No object matching 9102,"PetersHits" found
+Stream1             DEBUG  Collected objects:
+Stream1             DEBUG  Object/count: EventInfo_McEventInfo, 10
+Stream1             DEBUG  Object/count: ExampleHitContainer_MyHits, 10
+Stream2             DEBUG addItemObjects(2101,"*") called
+Stream2             DEBUG            Key:*
+Stream2             DEBUG  Added object 2101,"McEventInfo"
+Stream2             DEBUG addItemObjects(9102,"*") called
+Stream2             DEBUG            Key:*
+Stream2             DEBUG  Collected objects:
+Stream2             DEBUG  Object/count: EventInfo_McEventInfo, 10
+RegStream1          DEBUG RegistrationStream execute
+RegStream1          DEBUG getRefs: Not DataHeader, skipping (40774349,"MagicTag") 
+RegStream1          DEBUG  get ref for (222376821,"Stream1") 
+RegStream1          DEBUG Retrieved DataHeader with key Stream1
+RegStream1          DEBUG Pushing back ref [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000009] for Stream1
+RegStream1          DEBUG Setting tagKey to MagicTag
+RegStream1          DEBUG  Not class requested by Tool, skipping (222376821,"Stream1") 
+RootCollection Debug Collection size=10
+RegStream2          DEBUG RegistrationStream execute
+RegStream2          DEBUG getRefs: Not DataHeader, skipping (40774349,"RunEventTag") 
+RegStream2          DEBUG  get ref for (222376821,"Stream2") 
+RegStream2          DEBUG Retrieved DataHeader with key Stream2
+RegStream2          DEBUG Pushing back ref [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000009] for Stream2
+RegStream2          DEBUG Setting tagKey to RunEventTag
+RegStream2          DEBUG  Not class requested by Tool, skipping (222376821,"Stream2") 
+RootCollection Debug Collection size=10
+RegStream3          DEBUG RegistrationStream execute
+RegStream3          DEBUG Event rejected by filtering
+AthenaEventLoopMgr   INFO   ===>>>  done processing event #9, run #1 10 events processed so far  <<<===
+AthenaEventLoopMgr   INFO   ===>>>  start processing event #10, run #1 10 events processed so far  <<<===
+WriteData           DEBUG in execute()
+WriteData            INFO EventInfo event: 10  run: 1
+WriteData            INFO registered all data
+WriteTag             INFO EventInfo event: 10  run: 1
+WriteTag             INFO registered all data
+MagicWriteTag        INFO EventInfo event: 10  run: 1
+MagicWriteTag        INFO registered all data
+Stream1             DEBUG addItemObjects(2101,"*") called
+Stream1             DEBUG            Key:*
+Stream1             DEBUG  Added object 2101,"McEventInfo"
+Stream1             DEBUG addItemObjects(9102,"MyHits") called
+Stream1             DEBUG            Key:MyHits
+Stream1             DEBUG  Added object 9102,"MyHits"
+Stream1             DEBUG addItemObjects(9102,"PetersHits") called
+Stream1             DEBUG            Key:PetersHits
+Stream1             DEBUG  No object matching 9102,"PetersHits" found
+Stream1             DEBUG  Collected objects:
+Stream1             DEBUG  Object/count: EventInfo_McEventInfo, 11
+Stream1             DEBUG  Object/count: ExampleHitContainer_MyHits, 11
+Stream2             DEBUG addItemObjects(2101,"*") called
+Stream2             DEBUG            Key:*
+Stream2             DEBUG  Added object 2101,"McEventInfo"
+Stream2             DEBUG addItemObjects(9102,"*") called
+Stream2             DEBUG            Key:*
+Stream2             DEBUG  Collected objects:
+Stream2             DEBUG  Object/count: EventInfo_McEventInfo, 11
+RegStream1          DEBUG RegistrationStream execute
+RegStream1          DEBUG getRefs: Not DataHeader, skipping (40774349,"MagicTag") 
+RegStream1          DEBUG  get ref for (222376821,"Stream1") 
+RegStream1          DEBUG Retrieved DataHeader with key Stream1
+RegStream1          DEBUG Pushing back ref [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000000A] for Stream1
+RegStream1          DEBUG Setting tagKey to MagicTag
+RegStream1          DEBUG  Not class requested by Tool, skipping (222376821,"Stream1") 
+RootCollection Debug Collection size=11
+RegStream2          DEBUG RegistrationStream execute
+RegStream2          DEBUG getRefs: Not DataHeader, skipping (40774349,"RunEventTag") 
+RegStream2          DEBUG  get ref for (222376821,"Stream2") 
+RegStream2          DEBUG Retrieved DataHeader with key Stream2
+RegStream2          DEBUG Pushing back ref [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-0000000A] for Stream2
+RegStream2          DEBUG Setting tagKey to RunEventTag
+RegStream2          DEBUG  Not class requested by Tool, skipping (222376821,"Stream2") 
+RootCollection Debug Collection size=11
+RegStream3          DEBUG RegistrationStream execute
+RegStream3          DEBUG Event rejected by filtering
+AthenaEventLoopMgr   INFO   ===>>>  done processing event #10, run #1 11 events processed so far  <<<===
+AthenaEventLoopMgr   INFO   ===>>>  start processing event #11, run #1 11 events processed so far  <<<===
+WriteData           DEBUG in execute()
+WriteData            INFO EventInfo event: 11  run: 1
+WriteData            INFO registered all data
+WriteTag             INFO EventInfo event: 11  run: 1
+WriteTag             INFO registered all data
+MagicWriteTag        INFO EventInfo event: 11  run: 1
+MagicWriteTag        INFO registered all data
+Stream1             DEBUG addItemObjects(2101,"*") called
+Stream1             DEBUG            Key:*
+Stream1             DEBUG  Added object 2101,"McEventInfo"
+Stream1             DEBUG addItemObjects(9102,"MyHits") called
+Stream1             DEBUG            Key:MyHits
+Stream1             DEBUG  Added object 9102,"MyHits"
+Stream1             DEBUG addItemObjects(9102,"PetersHits") called
+Stream1             DEBUG            Key:PetersHits
+Stream1             DEBUG  No object matching 9102,"PetersHits" found
+Stream1             DEBUG  Collected objects:
+Stream1             DEBUG  Object/count: EventInfo_McEventInfo, 12
+Stream1             DEBUG  Object/count: ExampleHitContainer_MyHits, 12
+Stream2             DEBUG addItemObjects(2101,"*") called
+Stream2             DEBUG            Key:*
+Stream2             DEBUG  Added object 2101,"McEventInfo"
+Stream2             DEBUG addItemObjects(9102,"*") called
+Stream2             DEBUG            Key:*
+Stream2             DEBUG  Collected objects:
+Stream2             DEBUG  Object/count: EventInfo_McEventInfo, 12
+RegStream1          DEBUG RegistrationStream execute
+RegStream1          DEBUG getRefs: Not DataHeader, skipping (40774349,"MagicTag") 
+RegStream1          DEBUG  get ref for (222376821,"Stream1") 
+RegStream1          DEBUG Retrieved DataHeader with key Stream1
+RegStream1          DEBUG Pushing back ref [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000000B] for Stream1
+RegStream1          DEBUG Setting tagKey to MagicTag
+RegStream1          DEBUG  Not class requested by Tool, skipping (222376821,"Stream1") 
+RootCollection Debug Collection size=12
+RegStream2          DEBUG RegistrationStream execute
+RegStream2          DEBUG getRefs: Not DataHeader, skipping (40774349,"RunEventTag") 
+RegStream2          DEBUG  get ref for (222376821,"Stream2") 
+RegStream2          DEBUG Retrieved DataHeader with key Stream2
+RegStream2          DEBUG Pushing back ref [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-0000000B] for Stream2
+RegStream2          DEBUG Setting tagKey to RunEventTag
+RegStream2          DEBUG  Not class requested by Tool, skipping (222376821,"Stream2") 
+RootCollection Debug Collection size=12
+RegStream3          DEBUG RegistrationStream execute
+RegStream3          DEBUG Event rejected by filtering
+AthenaEventLoopMgr   INFO   ===>>>  done processing event #11, run #1 12 events processed so far  <<<===
+AthenaEventLoopMgr   INFO   ===>>>  start processing event #12, run #1 12 events processed so far  <<<===
+WriteData           DEBUG in execute()
+WriteData            INFO EventInfo event: 12  run: 1
+WriteData            INFO registered all data
+WriteTag             INFO EventInfo event: 12  run: 1
+WriteTag             INFO registered all data
+MagicWriteTag        INFO EventInfo event: 12  run: 1
+MagicWriteTag        INFO registered all data
+Stream1             DEBUG addItemObjects(2101,"*") called
+Stream1             DEBUG            Key:*
+Stream1             DEBUG  Added object 2101,"McEventInfo"
+Stream1             DEBUG addItemObjects(9102,"MyHits") called
+Stream1             DEBUG            Key:MyHits
+Stream1             DEBUG  Added object 9102,"MyHits"
+Stream1             DEBUG addItemObjects(9102,"PetersHits") called
+Stream1             DEBUG            Key:PetersHits
+Stream1             DEBUG  No object matching 9102,"PetersHits" found
+Stream1             DEBUG  Collected objects:
+Stream1             DEBUG  Object/count: EventInfo_McEventInfo, 13
+Stream1             DEBUG  Object/count: ExampleHitContainer_MyHits, 13
+Stream2             DEBUG addItemObjects(2101,"*") called
+Stream2             DEBUG            Key:*
+Stream2             DEBUG  Added object 2101,"McEventInfo"
+Stream2             DEBUG addItemObjects(9102,"*") called
+Stream2             DEBUG            Key:*
+Stream2             DEBUG  Collected objects:
+Stream2             DEBUG  Object/count: EventInfo_McEventInfo, 13
+RegStream1          DEBUG RegistrationStream execute
+RegStream1          DEBUG getRefs: Not DataHeader, skipping (40774349,"MagicTag") 
+RegStream1          DEBUG  get ref for (222376821,"Stream1") 
+RegStream1          DEBUG Retrieved DataHeader with key Stream1
+RegStream1          DEBUG Pushing back ref [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000000C] for Stream1
+RegStream1          DEBUG Setting tagKey to MagicTag
+RegStream1          DEBUG  Not class requested by Tool, skipping (222376821,"Stream1") 
+RootCollection Debug Collection size=13
+RegStream2          DEBUG RegistrationStream execute
+RegStream2          DEBUG getRefs: Not DataHeader, skipping (40774349,"RunEventTag") 
+RegStream2          DEBUG  get ref for (222376821,"Stream2") 
+RegStream2          DEBUG Retrieved DataHeader with key Stream2
+RegStream2          DEBUG Pushing back ref [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-0000000C] for Stream2
+RegStream2          DEBUG Setting tagKey to RunEventTag
+RegStream2          DEBUG  Not class requested by Tool, skipping (222376821,"Stream2") 
+RootCollection Debug Collection size=13
+RegStream3          DEBUG RegistrationStream execute
+RegStream3          DEBUG Event rejected by filtering
+AthenaEventLoopMgr   INFO   ===>>>  done processing event #12, run #1 13 events processed so far  <<<===
+AthenaEventLoopMgr   INFO   ===>>>  start processing event #13, run #1 13 events processed so far  <<<===
+WriteData           DEBUG in execute()
+WriteData            INFO EventInfo event: 13  run: 1
+WriteData            INFO registered all data
+WriteTag             INFO EventInfo event: 13  run: 1
+WriteTag             INFO registered all data
+MagicWriteTag        INFO EventInfo event: 13  run: 1
+MagicWriteTag        INFO registered all data
+Stream1             DEBUG addItemObjects(2101,"*") called
+Stream1             DEBUG            Key:*
+Stream1             DEBUG  Added object 2101,"McEventInfo"
+Stream1             DEBUG addItemObjects(9102,"MyHits") called
+Stream1             DEBUG            Key:MyHits
+Stream1             DEBUG  Added object 9102,"MyHits"
+Stream1             DEBUG addItemObjects(9102,"PetersHits") called
+Stream1             DEBUG            Key:PetersHits
+Stream1             DEBUG  No object matching 9102,"PetersHits" found
+Stream1             DEBUG  Collected objects:
+Stream1             DEBUG  Object/count: EventInfo_McEventInfo, 14
+Stream1             DEBUG  Object/count: ExampleHitContainer_MyHits, 14
+Stream2             DEBUG addItemObjects(2101,"*") called
+Stream2             DEBUG            Key:*
+Stream2             DEBUG  Added object 2101,"McEventInfo"
+Stream2             DEBUG addItemObjects(9102,"*") called
+Stream2             DEBUG            Key:*
+Stream2             DEBUG  Collected objects:
+Stream2             DEBUG  Object/count: EventInfo_McEventInfo, 14
+RegStream1          DEBUG RegistrationStream execute
+RegStream1          DEBUG getRefs: Not DataHeader, skipping (40774349,"MagicTag") 
+RegStream1          DEBUG  get ref for (222376821,"Stream1") 
+RegStream1          DEBUG Retrieved DataHeader with key Stream1
+RegStream1          DEBUG Pushing back ref [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000000D] for Stream1
+RegStream1          DEBUG Setting tagKey to MagicTag
+RegStream1          DEBUG  Not class requested by Tool, skipping (222376821,"Stream1") 
+RootCollection Debug Collection size=14
+RegStream2          DEBUG RegistrationStream execute
+RegStream2          DEBUG getRefs: Not DataHeader, skipping (40774349,"RunEventTag") 
+RegStream2          DEBUG  get ref for (222376821,"Stream2") 
+RegStream2          DEBUG Retrieved DataHeader with key Stream2
+RegStream2          DEBUG Pushing back ref [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-0000000D] for Stream2
+RegStream2          DEBUG Setting tagKey to RunEventTag
+RegStream2          DEBUG  Not class requested by Tool, skipping (222376821,"Stream2") 
+RootCollection Debug Collection size=14
+RegStream3          DEBUG RegistrationStream execute
+RegStream3          DEBUG Event rejected by filtering
+AthenaEventLoopMgr   INFO   ===>>>  done processing event #13, run #1 14 events processed so far  <<<===
+AthenaEventLoopMgr   INFO   ===>>>  start processing event #14, run #1 14 events processed so far  <<<===
+WriteData           DEBUG in execute()
+WriteData            INFO EventInfo event: 14  run: 1
+WriteData            INFO Now creating ExampleHit alias for event: 14
+WriteData            INFO registered all data
+WriteTag             INFO EventInfo event: 14  run: 1
+WriteTag             INFO registered all data
+MagicWriteTag        INFO EventInfo event: 14  run: 1
+MagicWriteTag        INFO registered all data
+Stream1             DEBUG addItemObjects(2101,"*") called
+Stream1             DEBUG            Key:*
+Stream1             DEBUG  Added object 2101,"McEventInfo"
+Stream1             DEBUG addItemObjects(9102,"MyHits") called
+Stream1             DEBUG            Key:MyHits
+Stream1             DEBUG  Added object 9102,"MyHits"
+Stream1             DEBUG addItemObjects(9102,"PetersHits") called
+Stream1             DEBUG            Key:PetersHits
+Stream1             DEBUG  Collected objects:
+Stream1             DEBUG  Object/count: EventInfo_McEventInfo, 15
+Stream1             DEBUG  Object/count: ExampleHitContainer_MyHits, 15
+Stream2             DEBUG addItemObjects(2101,"*") called
+Stream2             DEBUG            Key:*
+Stream2             DEBUG  Added object 2101,"McEventInfo"
+Stream2             DEBUG addItemObjects(9102,"*") called
+Stream2             DEBUG            Key:*
+Stream2             DEBUG  Collected objects:
+Stream2             DEBUG  Object/count: EventInfo_McEventInfo, 15
+RegStream1          DEBUG RegistrationStream execute
+RegStream1          DEBUG getRefs: Not DataHeader, skipping (40774349,"MagicTag") 
+RegStream1          DEBUG  get ref for (222376821,"Stream1") 
+RegStream1          DEBUG Retrieved DataHeader with key Stream1
+RegStream1          DEBUG Pushing back ref [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000000E] for Stream1
+RegStream1          DEBUG Setting tagKey to MagicTag
+RegStream1          DEBUG  Not class requested by Tool, skipping (222376821,"Stream1") 
+RootCollection Debug Collection size=15
+RegStream2          DEBUG RegistrationStream execute
+RegStream2          DEBUG getRefs: Not DataHeader, skipping (40774349,"RunEventTag") 
+RegStream2          DEBUG  get ref for (222376821,"Stream2") 
+RegStream2          DEBUG Retrieved DataHeader with key Stream2
+RegStream2          DEBUG Pushing back ref [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-0000000E] for Stream2
+RegStream2          DEBUG Setting tagKey to RunEventTag
+RegStream2          DEBUG  Not class requested by Tool, skipping (222376821,"Stream2") 
+RootCollection Debug Collection size=15
+RegStream3          DEBUG RegistrationStream execute
+RegStream3          DEBUG Event rejected by filtering
+AthenaEventLoopMgr   INFO   ===>>>  done processing event #14, run #1 15 events processed so far  <<<===
+AthenaEventLoopMgr   INFO   ===>>>  start processing event #15, run #1 15 events processed so far  <<<===
+WriteData           DEBUG in execute()
+WriteData            INFO EventInfo event: 15  run: 1
+WriteData            INFO registered all data
+WriteTag             INFO EventInfo event: 15  run: 1
+WriteTag             INFO registered all data
+MagicWriteTag        INFO EventInfo event: 15  run: 1
+MagicWriteTag        INFO registered all data
+Stream1             DEBUG addItemObjects(2101,"*") called
+Stream1             DEBUG            Key:*
+Stream1             DEBUG  Added object 2101,"McEventInfo"
+Stream1             DEBUG addItemObjects(9102,"MyHits") called
+Stream1             DEBUG            Key:MyHits
+Stream1             DEBUG  Added object 9102,"MyHits"
+Stream1             DEBUG addItemObjects(9102,"PetersHits") called
+Stream1             DEBUG            Key:PetersHits
+Stream1             DEBUG  Collected objects:
+Stream1             DEBUG  Object/count: EventInfo_McEventInfo, 16
+Stream1             DEBUG  Object/count: ExampleHitContainer_MyHits, 16
+Stream2             DEBUG addItemObjects(2101,"*") called
+Stream2             DEBUG            Key:*
+Stream2             DEBUG  Added object 2101,"McEventInfo"
+Stream2             DEBUG addItemObjects(9102,"*") called
+Stream2             DEBUG            Key:*
+Stream2             DEBUG  Collected objects:
+Stream2             DEBUG  Object/count: EventInfo_McEventInfo, 16
+RegStream1          DEBUG RegistrationStream execute
+RegStream1          DEBUG getRefs: Not DataHeader, skipping (40774349,"MagicTag") 
+RegStream1          DEBUG  get ref for (222376821,"Stream1") 
+RegStream1          DEBUG Retrieved DataHeader with key Stream1
+RegStream1          DEBUG Pushing back ref [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-0000000F] for Stream1
+RegStream1          DEBUG Setting tagKey to MagicTag
+RegStream1          DEBUG  Not class requested by Tool, skipping (222376821,"Stream1") 
+RootCollection Debug Collection size=16
+RegStream2          DEBUG RegistrationStream execute
+RegStream2          DEBUG getRefs: Not DataHeader, skipping (40774349,"RunEventTag") 
+RegStream2          DEBUG  get ref for (222376821,"Stream2") 
+RegStream2          DEBUG Retrieved DataHeader with key Stream2
+RegStream2          DEBUG Pushing back ref [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-0000000F] for Stream2
+RegStream2          DEBUG Setting tagKey to RunEventTag
+RegStream2          DEBUG  Not class requested by Tool, skipping (222376821,"Stream2") 
+RootCollection Debug Collection size=16
+RegStream3          DEBUG RegistrationStream execute
+RegStream3          DEBUG Event rejected by filtering
+AthenaEventLoopMgr   INFO   ===>>>  done processing event #15, run #1 16 events processed so far  <<<===
+AthenaEventLoopMgr   INFO   ===>>>  start processing event #16, run #1 16 events processed so far  <<<===
+WriteData           DEBUG in execute()
+WriteData            INFO EventInfo event: 16  run: 1
+WriteData            INFO registered all data
+WriteTag             INFO EventInfo event: 16  run: 1
+WriteTag             INFO registered all data
+MagicWriteTag        INFO EventInfo event: 16  run: 1
+MagicWriteTag        INFO registered all data
+Stream1             DEBUG addItemObjects(2101,"*") called
+Stream1             DEBUG            Key:*
+Stream1             DEBUG  Added object 2101,"McEventInfo"
+Stream1             DEBUG addItemObjects(9102,"MyHits") called
+Stream1             DEBUG            Key:MyHits
+Stream1             DEBUG  Added object 9102,"MyHits"
+Stream1             DEBUG addItemObjects(9102,"PetersHits") called
+Stream1             DEBUG            Key:PetersHits
+Stream1             DEBUG  Collected objects:
+Stream1             DEBUG  Object/count: EventInfo_McEventInfo, 17
+Stream1             DEBUG  Object/count: ExampleHitContainer_MyHits, 17
+Stream2             DEBUG addItemObjects(2101,"*") called
+Stream2             DEBUG            Key:*
+Stream2             DEBUG  Added object 2101,"McEventInfo"
+Stream2             DEBUG addItemObjects(9102,"*") called
+Stream2             DEBUG            Key:*
+Stream2             DEBUG  Collected objects:
+Stream2             DEBUG  Object/count: EventInfo_McEventInfo, 17
+RegStream1          DEBUG RegistrationStream execute
+RegStream1          DEBUG getRefs: Not DataHeader, skipping (40774349,"MagicTag") 
+RegStream1          DEBUG  get ref for (222376821,"Stream1") 
+RegStream1          DEBUG Retrieved DataHeader with key Stream1
+RegStream1          DEBUG Pushing back ref [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000010] for Stream1
+RegStream1          DEBUG Setting tagKey to MagicTag
+RegStream1          DEBUG  Not class requested by Tool, skipping (222376821,"Stream1") 
+RootCollection Debug Collection size=17
+RegStream2          DEBUG RegistrationStream execute
+RegStream2          DEBUG getRefs: Not DataHeader, skipping (40774349,"RunEventTag") 
+RegStream2          DEBUG  get ref for (222376821,"Stream2") 
+RegStream2          DEBUG Retrieved DataHeader with key Stream2
+RegStream2          DEBUG Pushing back ref [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000010] for Stream2
+RegStream2          DEBUG Setting tagKey to RunEventTag
+RegStream2          DEBUG  Not class requested by Tool, skipping (222376821,"Stream2") 
+RootCollection Debug Collection size=17
+RegStream3          DEBUG RegistrationStream execute
+RegStream3          DEBUG Event rejected by filtering
+AthenaEventLoopMgr   INFO   ===>>>  done processing event #16, run #1 17 events processed so far  <<<===
+AthenaEventLoopMgr   INFO   ===>>>  start processing event #17, run #1 17 events processed so far  <<<===
+WriteData           DEBUG in execute()
+WriteData            INFO EventInfo event: 17  run: 1
+WriteData            INFO registered all data
+WriteTag             INFO EventInfo event: 17  run: 1
+WriteTag             INFO registered all data
+MagicWriteTag        INFO EventInfo event: 17  run: 1
+MagicWriteTag        INFO registered all data
+Stream1             DEBUG addItemObjects(2101,"*") called
+Stream1             DEBUG            Key:*
+Stream1             DEBUG  Added object 2101,"McEventInfo"
+Stream1             DEBUG addItemObjects(9102,"MyHits") called
+Stream1             DEBUG            Key:MyHits
+Stream1             DEBUG  Added object 9102,"MyHits"
+Stream1             DEBUG addItemObjects(9102,"PetersHits") called
+Stream1             DEBUG            Key:PetersHits
+Stream1             DEBUG  Collected objects:
+Stream1             DEBUG  Object/count: EventInfo_McEventInfo, 18
+Stream1             DEBUG  Object/count: ExampleHitContainer_MyHits, 18
+Stream2             DEBUG addItemObjects(2101,"*") called
+Stream2             DEBUG            Key:*
+Stream2             DEBUG  Added object 2101,"McEventInfo"
+Stream2             DEBUG addItemObjects(9102,"*") called
+Stream2             DEBUG            Key:*
+Stream2             DEBUG  Collected objects:
+Stream2             DEBUG  Object/count: EventInfo_McEventInfo, 18
+RegStream1          DEBUG RegistrationStream execute
+RegStream1          DEBUG getRefs: Not DataHeader, skipping (40774349,"MagicTag") 
+RegStream1          DEBUG  get ref for (222376821,"Stream1") 
+RegStream1          DEBUG Retrieved DataHeader with key Stream1
+RegStream1          DEBUG Pushing back ref [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000011] for Stream1
+RegStream1          DEBUG Setting tagKey to MagicTag
+RegStream1          DEBUG  Not class requested by Tool, skipping (222376821,"Stream1") 
+RootCollection Debug Collection size=18
+RegStream2          DEBUG RegistrationStream execute
+RegStream2          DEBUG getRefs: Not DataHeader, skipping (40774349,"RunEventTag") 
+RegStream2          DEBUG  get ref for (222376821,"Stream2") 
+RegStream2          DEBUG Retrieved DataHeader with key Stream2
+RegStream2          DEBUG Pushing back ref [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000011] for Stream2
+RegStream2          DEBUG Setting tagKey to RunEventTag
+RegStream2          DEBUG  Not class requested by Tool, skipping (222376821,"Stream2") 
+RootCollection Debug Collection size=18
+RegStream3          DEBUG RegistrationStream execute
+RegStream3          DEBUG Event rejected by filtering
+AthenaEventLoopMgr   INFO   ===>>>  done processing event #17, run #1 18 events processed so far  <<<===
+AthenaEventLoopMgr   INFO   ===>>>  start processing event #18, run #1 18 events processed so far  <<<===
+WriteData           DEBUG in execute()
+WriteData            INFO EventInfo event: 18  run: 1
+WriteData            INFO registered all data
+WriteTag             INFO EventInfo event: 18  run: 1
+WriteTag             INFO registered all data
+MagicWriteTag        INFO EventInfo event: 18  run: 1
+MagicWriteTag        INFO registered all data
+Stream1             DEBUG addItemObjects(2101,"*") called
+Stream1             DEBUG            Key:*
+Stream1             DEBUG  Added object 2101,"McEventInfo"
+Stream1             DEBUG addItemObjects(9102,"MyHits") called
+Stream1             DEBUG            Key:MyHits
+Stream1             DEBUG  Added object 9102,"MyHits"
+Stream1             DEBUG addItemObjects(9102,"PetersHits") called
+Stream1             DEBUG            Key:PetersHits
+Stream1             DEBUG  Collected objects:
+Stream1             DEBUG  Object/count: EventInfo_McEventInfo, 19
+Stream1             DEBUG  Object/count: ExampleHitContainer_MyHits, 19
+Stream2             DEBUG addItemObjects(2101,"*") called
+Stream2             DEBUG            Key:*
+Stream2             DEBUG  Added object 2101,"McEventInfo"
+Stream2             DEBUG addItemObjects(9102,"*") called
+Stream2             DEBUG            Key:*
+Stream2             DEBUG  Collected objects:
+Stream2             DEBUG  Object/count: EventInfo_McEventInfo, 19
+RegStream1          DEBUG RegistrationStream execute
+RegStream1          DEBUG getRefs: Not DataHeader, skipping (40774349,"MagicTag") 
+RegStream1          DEBUG  get ref for (222376821,"Stream1") 
+RegStream1          DEBUG Retrieved DataHeader with key Stream1
+RegStream1          DEBUG Pushing back ref [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000012] for Stream1
+RegStream1          DEBUG Setting tagKey to MagicTag
+RegStream1          DEBUG  Not class requested by Tool, skipping (222376821,"Stream1") 
+RootCollection Debug Collection size=19
+RegStream2          DEBUG RegistrationStream execute
+RegStream2          DEBUG getRefs: Not DataHeader, skipping (40774349,"RunEventTag") 
+RegStream2          DEBUG  get ref for (222376821,"Stream2") 
+RegStream2          DEBUG Retrieved DataHeader with key Stream2
+RegStream2          DEBUG Pushing back ref [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000012] for Stream2
+RegStream2          DEBUG Setting tagKey to RunEventTag
+RegStream2          DEBUG  Not class requested by Tool, skipping (222376821,"Stream2") 
+RootCollection Debug Collection size=19
+RegStream3          DEBUG RegistrationStream execute
+RegStream3          DEBUG Event rejected by filtering
+AthenaEventLoopMgr   INFO   ===>>>  done processing event #18, run #1 19 events processed so far  <<<===
+AthenaEventLoopMgr   INFO   ===>>>  start processing event #19, run #1 19 events processed so far  <<<===
+WriteData           DEBUG in execute()
+WriteData            INFO EventInfo event: 19  run: 1
+WriteData            INFO registered all data
+WriteTag             INFO EventInfo event: 19  run: 1
+WriteTag             INFO registered all data
+MagicWriteTag        INFO EventInfo event: 19  run: 1
+MagicWriteTag        INFO registered all data
+Stream1             DEBUG addItemObjects(2101,"*") called
+Stream1             DEBUG            Key:*
+Stream1             DEBUG  Added object 2101,"McEventInfo"
+Stream1             DEBUG addItemObjects(9102,"MyHits") called
+Stream1             DEBUG            Key:MyHits
+Stream1             DEBUG  Added object 9102,"MyHits"
+Stream1             DEBUG addItemObjects(9102,"PetersHits") called
+Stream1             DEBUG            Key:PetersHits
+Stream1             DEBUG  Collected objects:
+Stream1             DEBUG  Object/count: EventInfo_McEventInfo, 20
+Stream1             DEBUG  Object/count: ExampleHitContainer_MyHits, 20
+Stream2             DEBUG addItemObjects(2101,"*") called
+Stream2             DEBUG            Key:*
+Stream2             DEBUG  Added object 2101,"McEventInfo"
+Stream2             DEBUG addItemObjects(9102,"*") called
+Stream2             DEBUG            Key:*
+Stream2             DEBUG  Collected objects:
+Stream2             DEBUG  Object/count: EventInfo_McEventInfo, 20
+RegStream1          DEBUG RegistrationStream execute
+RegStream1          DEBUG getRefs: Not DataHeader, skipping (40774349,"MagicTag") 
+RegStream1          DEBUG  get ref for (222376821,"Stream1") 
+RegStream1          DEBUG Retrieved DataHeader with key Stream1
+RegStream1          DEBUG Pushing back ref [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000006-00000013] for Stream1
+RegStream1          DEBUG Setting tagKey to MagicTag
+RegStream1          DEBUG  Not class requested by Tool, skipping (222376821,"Stream1") 
+RootCollection Debug Collection size=20
+RegStream2          DEBUG RegistrationStream execute
+RegStream2          DEBUG getRefs: Not DataHeader, skipping (40774349,"RunEventTag") 
+RegStream2          DEBUG  get ref for (222376821,"Stream2") 
+RegStream2          DEBUG Retrieved DataHeader with key Stream2
+RegStream2          DEBUG Pushing back ref [DB=????][CNT=POOLContainer(DataHeader)][CLID=????][TECH=00000202][OID=00000005-00000013] for Stream2
+RegStream2          DEBUG Setting tagKey to RunEventTag
+RegStream2          DEBUG  Not class requested by Tool, skipping (222376821,"Stream2") 
+RootCollection Debug Collection size=20
+RegStream3          DEBUG RegistrationStream execute
+RegStream3          DEBUG Event rejected by filtering
+AthenaEventLoopMgr   INFO   ===>>>  done processing event #19, run #1 20 events processed so far  <<<===
+CutFlowSvc           INFO CutBookkeeper CutBookkeepers N/A PassNoneFilter Cyc=0 N=0 weight^2=0
+Stream1             DEBUG handle() incident type: MetaDataStop
+Stream1             DEBUG addItemObjects(167728019,"Stream1") called
+Stream1             DEBUG            Key:Stream1
+Stream1             DEBUG  Added object 167728019,"Stream1"
+Stream1             DEBUG addItemObjects(1316383046,"*") called
+Stream1             DEBUG            Key:*
+StorageSvc Info Building shape according to reflection information using shape ID for:
+StorageSvc Info EventStreamInfo_p3 [????]
+SimplePoolFile1.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_Tree] MetaData(EventStreamInfo_p3/Stream1)
+MetaData(EventStreamInfo_p3/Stream1) Debug Opening
+MetaData(EventStreamInfo_p3/Stream1) Debug    attributes# = 1
+MetaData(EventStreamInfo_p3/Stream1) Debug Branch container 'EventStreamInfo_p3_Stream1'
+MetaData(EventStreamInfo_p3/Stream1) Debug Opened container MetaData(EventStreamInfo_p3/Stream1) of type ROOT_Tree
+SimplePoolFile1.root Debug --->Adding Assoc :????/MetaData(EventStreamInfo_p3/Stream1) [202]  (c , ffffffff)
+SimplePoolFile1.root Debug ---->ClassID:????
+SimplePoolFile1.root Debug --->Adding Shape[6 , ????]:  [1 Column(s)] 
+SimplePoolFile1.root Debug ---->Class:EventStreamInfo_p3
+SimplePoolFile1.root Debug ---->[0]:EventStreamInfo_p3 Typ:EventStreamInfo_p3 [21] Size:0 Offset:0 #Elements:1
+SimplePoolFile1.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_Tree] MetaDataHdrForm(DataHeaderForm)
+MetaDataHdrForm(DataHeaderForm) Debug Opening
+MetaDataHdrForm(DataHeaderForm) Debug    attributes# = 1
+MetaDataHdrForm(DataHeaderForm) Debug Branch container 'DataHeaderForm'
+MetaDataHdrForm(DataHeaderForm) Debug Opened container MetaDataHdrForm(DataHeaderForm) of type ROOT_Tree
+SimplePoolFile1.root Debug --->Adding Assoc :????/MetaDataHdrForm(DataHeaderForm) [202]  (d , ffffffff)
+SimplePoolFile1.root Debug ---->ClassID:????
+SimplePoolFile1.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_Tree] MetaDataHdr(DataHeader)
+MetaDataHdr(DataHeader) Debug Opening
+MetaDataHdr(DataHeader) Debug    attributes# = 1
+MetaDataHdr(DataHeader) Debug Branch container 'DataHeader'
+MetaDataHdr(DataHeader) Debug Opened container MetaDataHdr(DataHeader) of type ROOT_Tree
+SimplePoolFile1.root Debug --->Adding Assoc :????/MetaDataHdr(DataHeader) [202]  (e , ffffffff)
+SimplePoolFile1.root Debug ---->ClassID:????
+Stream1              INFO Records written: 21
+Stream1             DEBUG Leaving handle
+Stream2             DEBUG handle() incident type: MetaDataStop
+Stream2             DEBUG addItemObjects(167728019,"Stream2") called
+Stream2             DEBUG            Key:Stream2
+Stream2             DEBUG  Added object 167728019,"Stream2"
+Stream2             DEBUG addItemObjects(1316383046,"*") called
+Stream2             DEBUG            Key:*
+SimplePoolFile2.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_Tree] MetaData(EventStreamInfo_p3/Stream2)
+MetaData(EventStreamInfo_p3/Stream2) Debug Opening
+MetaData(EventStreamInfo_p3/Stream2) Debug    attributes# = 1
+MetaData(EventStreamInfo_p3/Stream2) Debug Branch container 'EventStreamInfo_p3_Stream2'
+MetaData(EventStreamInfo_p3/Stream2) Debug Opened container MetaData(EventStreamInfo_p3/Stream2) of type ROOT_Tree
+SimplePoolFile2.root Debug --->Adding Assoc :????/MetaData(EventStreamInfo_p3/Stream2) [202]  (b , ffffffff)
+SimplePoolFile2.root Debug ---->ClassID:????
+SimplePoolFile2.root Debug --->Adding Shape[5 , ????]:  [1 Column(s)] 
+SimplePoolFile2.root Debug ---->Class:EventStreamInfo_p3
+SimplePoolFile2.root Debug ---->[0]:EventStreamInfo_p3 Typ:EventStreamInfo_p3 [21] Size:0 Offset:0 #Elements:1
+SimplePoolFile2.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_Tree] MetaDataHdrForm(DataHeaderForm)
+MetaDataHdrForm(DataHeaderForm) Debug Opening
+MetaDataHdrForm(DataHeaderForm) Debug    attributes# = 1
+MetaDataHdrForm(DataHeaderForm) Debug Branch container 'DataHeaderForm'
+MetaDataHdrForm(DataHeaderForm) Debug Opened container MetaDataHdrForm(DataHeaderForm) of type ROOT_Tree
+SimplePoolFile2.root Debug --->Adding Assoc :????/MetaDataHdrForm(DataHeaderForm) [202]  (c , ffffffff)
+SimplePoolFile2.root Debug ---->ClassID:????
+SimplePoolFile2.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_Tree] MetaDataHdr(DataHeader)
+MetaDataHdr(DataHeader) Debug Opening
+MetaDataHdr(DataHeader) Debug    attributes# = 1
+MetaDataHdr(DataHeader) Debug Branch container 'DataHeader'
+MetaDataHdr(DataHeader) Debug Opened container MetaDataHdr(DataHeader) of type ROOT_Tree
+SimplePoolFile2.root Debug --->Adding Assoc :????/MetaDataHdr(DataHeader) [202]  (d , ffffffff)
+SimplePoolFile2.root Debug ---->ClassID:????
+Stream2              INFO Records written: 21
+Stream2             DEBUG Leaving handle
+Domain[ROOT_All] Info ->  Access   DbDatabase   CREATE    [ROOT_All] ????
+Domain[ROOT_All] Info                           EmptyPoolFile.root
+EmptyPoolFile.root Debug --> Access   DbContainer  CREATE    [ROOT_All] ##Shapes
+##Shapes Debug Opening
+##Shapes Debug    attributes# = 1
+##Shapes Debug Opened container ##Shapes of type ROOT_Tree
+##Shapes Debug No objects passing selection criteria... Container has 0 Entries in total.
+EmptyPoolFile.root Debug --> Access   DbContainer  CREATE    [ROOT_All] ##Links
+##Links Debug Opening
+##Links Debug    attributes# = 1
+##Links Debug Opened container ##Links of type ROOT_Tree
+##Links Debug No objects passing selection criteria... Container has 0 Entries in total.
+EmptyPoolFile.root Debug --> Access   DbContainer  CREATE    [ROOT_All] ##Params
+##Params Debug Opening
+##Params Debug    attributes# = 1
+##Params Debug Opened container ##Params of type ROOT_Tree
+EmptyPoolFile.root Debug --->Adding Assoc :????/##Params [200]  (2 , ffffffff)
+EmptyPoolFile.root Debug ---->ClassID:????
+##Params Debug No objects passing selection criteria... Container has 0 Entries in total.
+AthenaPoolCnvSvc    DEBUG setAttribute CONTAINER_SPLITLEVEL to 99 for db: EmptyPoolFile.root and cont: TTree=POOLContainerForm(DataHeaderForm)
+EmptyPoolFile.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_Tree] MetaData(EventStreamInfo_p3/Stream3)
+MetaData(EventStreamInfo_p3/Stream3) Debug Opening
+MetaData(EventStreamInfo_p3/Stream3) Debug    attributes# = 1
+MetaData(EventStreamInfo_p3/Stream3) Debug Branch container 'EventStreamInfo_p3_Stream3'
+MetaData(EventStreamInfo_p3/Stream3) Debug Opened container MetaData(EventStreamInfo_p3/Stream3) of type ROOT_Tree
+EmptyPoolFile.root Debug --->Adding Assoc :????/MetaData(EventStreamInfo_p3/Stream3) [202]  (3 , ffffffff)
+EmptyPoolFile.root Debug ---->ClassID:????
+EmptyPoolFile.root Debug --->Adding Shape[0 , ????]:  [1 Column(s)] 
+EmptyPoolFile.root Debug ---->Class:EventStreamInfo_p3
+EmptyPoolFile.root Debug ---->[0]:EventStreamInfo_p3 Typ:EventStreamInfo_p3 [21] Size:0 Offset:0 #Elements:1
+EmptyPoolFile.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_Tree] MetaDataHdrForm(DataHeaderForm)
+MetaDataHdrForm(DataHeaderForm) Debug Opening
+MetaDataHdrForm(DataHeaderForm) Debug    attributes# = 1
+MetaDataHdrForm(DataHeaderForm) Debug Branch container 'DataHeaderForm'
+MetaDataHdrForm(DataHeaderForm) Debug Opened container MetaDataHdrForm(DataHeaderForm) of type ROOT_Tree
+EmptyPoolFile.root Debug --->Adding Assoc :????/MetaDataHdrForm(DataHeaderForm) [202]  (4 , ffffffff)
+EmptyPoolFile.root Debug ---->ClassID:????
+EmptyPoolFile.root Debug --->Adding Shape[1 , ????]:  [1 Column(s)] 
+EmptyPoolFile.root Debug ---->Class:DataHeaderForm_p5
+EmptyPoolFile.root Debug ---->[0]:DataHeaderForm_p5 Typ:DataHeaderForm_p5 [21] Size:0 Offset:0 #Elements:1
+EmptyPoolFile.root Debug --> Access   DbContainer  CREA/UPDA [ROOT_Tree] MetaDataHdr(DataHeader)
+MetaDataHdr(DataHeader) Debug Opening
+MetaDataHdr(DataHeader) Debug    attributes# = 1
+MetaDataHdr(DataHeader) Debug Branch container 'DataHeader'
+MetaDataHdr(DataHeader) Debug Opened container MetaDataHdr(DataHeader) of type ROOT_Tree
+EmptyPoolFile.root Debug --->Adding Assoc :????/MetaDataHdr(DataHeader) [202]  (5 , ffffffff)
+EmptyPoolFile.root Debug ---->ClassID:????
+EmptyPoolFile.root Debug --->Adding Shape[2 , ????]:  [1 Column(s)] 
+EmptyPoolFile.root Debug ---->Class:DataHeader_p5
+EmptyPoolFile.root Debug ---->[0]:DataHeader_p5 Typ:DataHeader_p5 [21] Size:0 Offset:0 #Elements:1
+PoolSvc             DEBUG Failed to get ContainerHandle for: POOLContainer(DataHeader)
+PoolSvc             DEBUG Failed to get ContainerHandle to set POOL property.
+AthenaPoolCnvSvc    DEBUG setAttribute failed for BRANCH_BASKET_SIZE to 256000 for db: EmptyPoolFile.root and cont: POOLContainer(DataHeader)
+PoolSvc             DEBUG Failed to get ContainerHandle for: POOLContainerForm(DataHeaderForm)
+PoolSvc             DEBUG Failed to get ContainerHandle to set POOL property.
+AthenaPoolCnvSvc    DEBUG setAttribute failed for BRANCH_BASKET_SIZE to 1024000 for db: EmptyPoolFile.root and cont: POOLContainerForm(DataHeaderForm)
+AthenaPoolCnvSvc    DEBUG commitOutput failed process POOL container attributes.
+Stream3              INFO Records written: 1
+RegStream1          DEBUG handle() incident type: MetaDataStop
+RegStream1.TagTool   INFO Collection Events output: 20
+POOLCollFactory Debug Registering existing collection PFN=RootCollection||PFN:SimplePoolCollection1.root, LFN=
+RootCollection::Metadata Debug  Using char buffer of size: 4100
+RootCollection::Metadata Debug  readKeys: found 1 metadata keys
+POOLCollFactory Debug  ---  found catalog guid=
+POOLCollFactory Debug  ---     collection guid=????
+RootCollection Debug Commit: saving collection TTree to file: SimplePoolCollection1.root
+RootCollection Debug    bytes written to TTree ????
+RootCollection::MetadataCommit Debug Bytes written to the Metadata TTree ????
+RootCollection Info Closing open collection 'SimplePoolCollection1.root'
+RootCollection Debug Retrieved Collection TTree  "POOLCollectionTree" from file SimplePoolCollection1.root
+RootCollectionSchemaEditor Debug ###### Writing schema....
+RegStream2          DEBUG handle() incident type: MetaDataStop
+RegStream2.TagTool   INFO Collection Events output: 20
+POOLCollFactory Debug Registering existing collection PFN=RootCollection||PFN:SimplePoolCollection2.root, LFN=
+RootCollection::Metadata Debug  Using char buffer of size: 4100
+RootCollection::Metadata Debug  readKeys: found 1 metadata keys
+POOLCollFactory Debug  ---  found catalog guid=
+POOLCollFactory Debug  ---     collection guid=????
+RootCollection Debug Commit: saving collection TTree to file: SimplePoolCollection2.root
+RootCollection Debug    bytes written to TTree ????
+RootCollection::MetadataCommit Debug Bytes written to the Metadata TTree ????
+RootCollection Info Closing open collection 'SimplePoolCollection2.root'
+RootCollection Debug Retrieved Collection TTree  "POOLCollectionTree" from file SimplePoolCollection2.root
+RootCollectionSchemaEditor Debug ###### Writing schema....
+RegStream3          DEBUG handle() incident type: MetaDataStop
+RegStream3.TagTool   INFO Collection Events output: 0
+PoolSvc              INFO Writing ExplicitROOT Collection - do not pass session pointer
+RootCollection Info Opening Collection File EmptyPoolCollection.root in mode: UPDATE
+RootCollection Debug File EmptyPoolCollection.root does not exist.
+RootCollection Info File EmptyPoolCollection.root opened
+RootCollection Debug Created Collection TTree. Collection file will be EmptyPoolCollection.root
+RootCollectionSchemaEditor Debug Created Branch Token, Type=Token
+RootCollection Info Root collection opened, size = 0
+POOLCollFactory Debug Generated new ID for collection PFN:EmptyPoolCollection.root GUID=????
+RootCollection::Metadata Info  ****** Created metadata tree in the collection file
+RootCollection Debug Commit: saving collection TTree to file: EmptyPoolCollection.root
+RootCollection Debug    bytes written to TTree ????
+RootCollection::MetadataCommit Debug Bytes written to the Metadata TTree ????
+POOLCollFactory Debug Registering existing collection PFN=RootCollection||PFN:EmptyPoolCollection.root, LFN=
+RootCollection::Metadata Debug  Using char buffer of size: 4100
+RootCollection::Metadata Debug  readKeys: found 1 metadata keys
+POOLCollFactory Debug  ---  found catalog guid=
+POOLCollFactory Debug  ---     collection guid=????
+RootCollection Debug Commit: saving collection TTree to file: EmptyPoolCollection.root
+RootCollection Debug    bytes written to TTree ????
+RootCollection::MetadataCommit Debug Bytes written to the Metadata TTree ????
+RootCollection Info Closing open collection 'EmptyPoolCollection.root'
+RootCollection Debug Retrieved Collection TTree  "POOLCollectionTree" from file EmptyPoolCollection.root
+RootCollectionSchemaEditor Debug ###### Writing schema....
+Domain[ROOT_All] Info ->  Deaccess DbDatabase   CREATE    [ROOT_All] ????
+Domain[ROOT_All] Info ->  Deaccess DbDatabase   CREATE    [ROOT_All] ????
+Domain[ROOT_All] Info ->  Deaccess DbDatabase   CREATE    [ROOT_All] ????
+Domain[ROOT_All] Info >   Deaccess DbDomain     UPDATE    [ROOT_All] 
+ApplicationMgr       INFO Application Manager Stopped successfully
+WriteData            INFO in finalize()
+WriteTag             INFO in finalize()
+MagicWriteTag        INFO in finalize()
+Stream1             DEBUG finalize: Optimize output
+Stream1             DEBUG finalize: end optimize output
+Stream2             DEBUG finalize: Optimize output
+Stream2             DEBUG finalize: end optimize output
+RegStream1          DEBUG In finalize
+RegStream2          DEBUG In finalize
+RegStream3          DEBUG In finalize
+AthAlgSeq            INFO Finalizing AthAlgSeq...
+WriteData           DEBUG Calling destructor
+AthOutSeq            INFO Finalizing AthOutSeq...
+AthRegSeq            INFO Finalizing AthRegSeq...
+AthMasterSeq         INFO Finalizing AthMasterSeq...
+EventSelector        INFO finalize
+AthenaPoolCnvSvc    DEBUG releasing all workers
+DecisionSvc          INFO Finalized successfully.
+AthDictLoaderSvc     INFO in finalize...
+ToolSvc              INFO Removing all tools created by ToolSvc
+*****Chrono*****     INFO ****************************************************************************************************
+*****Chrono*****     INFO  The Final CPU consumption ( Chrono ) Table (ordered)
+*****Chrono*****     INFO ****************************************************************************************************
+*****Chrono*****     INFO ****************************************************************************************************
+ChronoStatSvc.f...   INFO  Service finalized successfully 
+ApplicationMgr       INFO Application Manager Finalized successfully
+ApplicationMgr       INFO Application Manager Terminated successfully
+Athena               INFO leaving with code 0: "successful run"
+CORAL/Services/ConnectionService Info Deleting the ConnectionPool
diff --git a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/src/QueryTag.cxx b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/src/QueryTag.cxx
index 2719f1121baaaa2862c4d8103b639406c8029852..44fda468ed14622d7417a081b9c4a7c04bdb6778 100755
--- a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/src/QueryTag.cxx
+++ b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/src/QueryTag.cxx
@@ -43,11 +43,11 @@ StatusCode QueryTag::postInitialize() {
    return StatusCode::SUCCESS;
 }
 //__________________________________________________________________________
-StatusCode QueryTag::preNext() {
+StatusCode QueryTag::preNext() const {
    return StatusCode::SUCCESS;
 }
 //__________________________________________________________________________
-StatusCode QueryTag::postNext() {
+StatusCode QueryTag::postNext() const {
    if (!evtStore()->contains<AthenaAttributeList>(m_attrListKey)) {
       ATH_MSG_DEBUG("Can't get attributeList for preselection");
       return StatusCode::SUCCESS;
diff --git a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/src/QueryTag.h b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/src/QueryTag.h
index a97f2774b39738679c80fa8cae9a0f0e94926c38..054f987ebbd49c106c858c5256fd7a834b446eab 100755
--- a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/src/QueryTag.h
+++ b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/src/QueryTag.h
@@ -32,8 +32,8 @@ public:
    /// IAthenaSelectorTool Interface method implementations:
    virtual StatusCode initialize();
    virtual StatusCode postInitialize();
-   virtual StatusCode preNext();
-   virtual StatusCode postNext();
+   virtual StatusCode preNext() const;
+   virtual StatusCode postNext() const;
    virtual StatusCode preFinalize();
    virtual StatusCode finalize();
 
diff --git a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/test/athenarun_test.sh.in b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/test/athenarun_test.sh.in
index d424ee5d7ca13a5d17621fd0a5879a2134eaf5f9..c3fad80ebe49da3f40f41d2fdbb6b94a88f2e08b 100755
--- a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/test/athenarun_test.sh.in
+++ b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/test/athenarun_test.sh.in
@@ -21,6 +21,7 @@ set -e
 	grep -v "Welcome to ApplicationMgr " |\
 	grep -v "running on " |\
 	grep -v "Skipping" |\
+	grep -v "Debug endTransaction:" |\
 	# Py:Athena will be Athena
 	sed -e 's/^.*Py:Athena /Athena    /g' |\
 	# Pointer addresses (mark 0)
@@ -40,7 +41,7 @@ set -e
 	sed -e 's/fffffffff/f/g' |\
 	sed -e 's/000000000/0/g' |\
 	# package names e.g. Package-00-00-00
-	sed -e 's/-r[0-9]\{6\}/-r??????/g' |\
+	sed -e 's/-r[0-9]\{6\}/-??-??-??/g' |\
 	sed -e 's/-[0-9]\{2\}-[0-9]\{2\}-[0-9]\{2\}/-??-??-??/g' |\
 	# pool attributes values
 	sed -e 's/\[BYTES_READ\]: 0/\[BYTES_READ\]: !!!!/g' |\
@@ -91,7 +92,15 @@ set -e
 	grep -v "^ClassIDSvc" |\
 	grep -v "^ServiceManager" |\
 	grep -v "^CoreDumpSvc          INFO Handling signals" |\
+	grep -v "Initializing AddressRemappingSvc" |\
+	grep -v "SG::HiveMgrSvc" |\
 	# Strange Chars from ApplicationMgr
 	sed -e "s/^..*ApplicationMgr/ApplicationMgr/" |\
+        # Ordering sensitivities
+	egrep -v "Deaccess DbContainer|RootDatabase.close Debug I/O|Database being retired" |\
+        # Other
+        grep -v "Not a threaded app" |\
+        grep -v "package version" |\
+        grep -v "Fd:" |\
 	# Empty lines
 	grep -v '^$'
diff --git a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/test/post_check.sh b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/test/post_check.sh
index 0c771d849b777fb6e98774b2af431974aa94038f..4b9f0d39ee9a016d92bb7cbd534e37888aee9c4d 100755
--- a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/test/post_check.sh
+++ b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/test/post_check.sh
@@ -36,8 +36,8 @@ else
 	sed -e 's/0x0\{7\}/0x!!!!/g' |\
 	sed -e 's/0x[0-9a-f]\{7\}/0x????/g' |\
 	# Rounding error etc
-	sed -e 's/\.\([0-9]\{2\}\)[0-9]*/.\1/g' |\
-	sed -e 's/ nan / inf /g' |\
+	#sed -e 's/\.\([0-9]\{2\}\)[0-9]*/.\1/g' |\
+	#sed -e 's/ nan / inf /g' |\
 	# POOL id
 	sed -e 's/0\{8\}-0\{4\}-0\{4\}-0\{4\}-0\{12\}/!!!!/g' |\
 	sed -e 's/[0-9A-F]\{8\}-[0-9A-F]\{4\}-[0-9A-F]\{4\}-[0-9A-F]\{4\}-[0-9A-F]\{12\}/????/g' |\
@@ -46,6 +46,21 @@ else
 	# 64 bit offsets
 	sed -e 's/fffffffff/f/g' |\
 	sed -e 's/000000000/0/g' |\
+        # package names e.g. Package-00-00-00
+        sed -e 's/-r[0-9]\{6\}/-r??????/g' |\
+        sed -e 's/-[0-9]\{2\}-[0-9]\{2\}-[0-9]\{2\}/-??-??-??/g' |\
+        # pool attributes values
+        sed -e 's/\[BYTES_READ\]: 0/\[BYTES_READ\]: !!!!/g' |\
+        sed -e 's/\[BYTES_READ\]: [1-9][0-9]*/\[BYTES_READ\]: ????/g' |\
+        # ignore UnixTimestamp printouts
+        egrep -a -v 'ReadData             INFO CollectionMetadata, key = UnixTimestamp, value = ' |\
+        # ignore cpu usage printouts
+        egrep -a -v 'ChronoStatSvc +INFO Time' |\
+        egrep -a -v 'Time left.+ Seconds' |\
+        egrep -a -v 'Timeleft.+ sec' |\
+        egrep -a -v 'INFO Time User' |\
+        # ignore date and release
+        egrep -a -v '[Mon|Tue|Wed|Thu|Fri|Sat|Sun] [[:alpha:]]{3} +[[:digit:]]+ [[:digit:]]{2}:[[:digit:]]{2}:[[:digit:]]{2}' |\
 	# Collection MetaData
 	sed -e 's/Metadata TTree 0/Metadata TTree !!!/g' |\
 	sed -e 's/Metadata TTree [0-9]\{3\}/Metadata TTree ???/g' |\
diff --git a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/test/pre_check.sh b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/test/pre_check.sh
index 262b95894605d4710c45fb440ad395244c26ba80..1791ffaaef77ae5aa9c67eb47c69956ab77dda13 100755
--- a/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/test/pre_check.sh
+++ b/Database/AthenaPOOL/AthenaPoolExample/AthenaPoolExampleAlgorithms/test/pre_check.sh
@@ -12,10 +12,10 @@ 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*
+#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" ]
@@ -46,9 +46,9 @@ 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
+#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" ]
@@ -57,64 +57,64 @@ then
 #	#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
+#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_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
+        #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