From 8adc82c282b24ff4f0ae3d4dc3d703798bb7dead Mon Sep 17 00:00:00 2001
From: Vojtech Pleskot <vojtech.pleskot@cern.ch>
Date: Tue, 3 Dec 2019 13:20:22 +0000
Subject: [PATCH] Updating Tile software to run on 12-bit ADC as well as on
 10-bit ones.

The code is moved from an update that wasn't finished before ATLAS
opened its software in December 2018. The move to the public repository
was done via a patch file generated from the old repository.
The command git apply --reject patchfile.patch was used
together with a carefull inspection of the rejected hunks.
---
 .../TileCalibAlgs/TileCisDefaultCalibTool.h   |   11 +-
 .../TileCalibAlgs/TileExpertDump.h            |    6 +
 .../TileCalibAlgs/TileInfoDump.h              |    7 +-
 .../src/TileCisDefaultCalibTool.cxx           |   20 +-
 .../TileCalibAlgs/src/TileExpertDump.cxx      |    8 +-
 .../TileCalibAlgs/src/TileInfoDump.cxx        |   10 +-
 .../TileConditions/TileConditions/TileInfo.h  |    7 +-
 .../TileConditions/TileInfoLoader.h           |    3 +
 .../python/TileInfoConfigurator.py            |   20 +
 .../share/TileConditions_jobOptions.py        |    9 +
 .../TileConditions/src/TileInfo.cxx           |    3 +-
 .../TileConditions/src/TileInfoLoader.cxx     |    8 +
 .../TileMonitoring/TileDQFragLWMonTool.h      |   10 +-
 .../TileMonitoring/TileDQFragMonTool.h        |   10 +-
 .../TileMonitoring/TileDigitsMonTool.h        |   14 +-
 .../TileMonitoring/TileMBTSMonTool.h          |    7 +
 .../TileMonitoring/TileRawChannelMonTool.h    |    7 +-
 .../python/TileDQFragMonitorAlgorithm.py      |    4 +-
 .../src/TileDQFragLWMonTool.cxx               |   84 +-
 .../TileMonitoring/src/TileDQFragMonTool.cxx  |   84 +-
 .../src/TileDQFragMonitorAlgorithm.cxx        |    7 +-
 .../src/TileDQFragMonitorAlgorithm.h          |   12 +
 .../TileMonitoring/src/TileDigitsMonTool.cxx  |   89 +-
 .../TileMonitoring/src/TileMBTSMonTool.cxx    |    7 +-
 .../src/TileRawChannelMonTool.cxx             |   17 +-
 .../TileRecAlgs/src/TileCellSelector.cxx      |   30 +-
 .../TileRecAlgs/src/TileCellSelector.h        |    6 +
 .../TileRecAlgs/src/TileRawChannelToTTL1.cxx  |    2 +-
 .../TileRecUtils/TileCellBuilder.h            |    8 +-
 .../TileRecUtils/TileRawChannelBuilder.h      |   13 +-
 .../TileRecUtils/TileRawChannelBuilderMF.h    |    1 -
 .../TileRecUtils/TileRawChannelMaker.h        |    7 +
 .../TileRecUtils/TileRawChannelNoiseFilter.h  |    5 +
 .../python/TileCellBuilderConfig.py           |    3 +
 .../python/TileRawChannelCorrectionConfig.py  |    3 +
 .../python/TileRawChannelMakerConfig.py       |    3 +
 .../share/TileCellBuilderFromHit_test.ref     |  100 +-
 .../share/TileCellBuilder_test.ref            |  112 +-
 .../share/TileDQstatusAlg_test.ref            |   88 +-
 .../share/TileDQstatusTool_test.ref           |   92 +-
 .../share/TileRawChannelBuilder_test.ref      |  100 +-
 .../TileRecUtils/src/TileCellBuilder.cxx      |   30 +-
 .../src/TileCellBuilderFromHit.cxx            |    2 +-
 .../src/TileRawChannelBuilder.cxx             |   31 +-
 .../src/TileRawChannelBuilderFitFilter.cxx    |    5 +-
 .../src/TileRawChannelBuilderMF.cxx           |    8 +-
 .../src/TileRawChannelBuilderOpt2Filter.cxx   |    6 +-
 .../TileRecUtils/src/TileRawChannelMaker.cxx  |   34 +-
 .../src/TileRawChannelNoiseFilter.cxx         |    9 +-
 .../TileSimAlgs/TileDigitsFromPulse.h         |    6 +-
 .../TileSimAlgs/TileSimAlgs/TileDigitsMaker.h |    8 +-
 .../TileSimAlgs/src/TileDigitsFromPulse.cxx   |    7 +-
 .../TileSimAlgs/src/TileDigitsMaker.cxx       |   47 +-
 .../TileSimAlgs/src/TileHitToRawChannel.cxx   |    2 +-
 .../TileByteStream/TileROD_Decoder.h          |    2 +-
 .../TileBeamElemContByteStreamCnv_test.ref    | 1278 ++++++++--------
 .../TileDigitsContByteStreamCnv_test.ref      | 1284 ++++++++---------
 .../share/TileL2ContByteStreamCnv_test.ref    | 1280 ++++++++--------
 .../share/TileLaserObjByteStreamCnv_test.ref  | 1270 ++++++++--------
 .../share/TileMuRcvContByteStreamCnv_test.ref | 1280 ++++++++--------
 .../TileRawChannelContByteStreamCnv_test.ref  | 1280 ++++++++--------
 .../TileByteStream/src/TileROD_Decoder.cxx    |   25 +-
 62 files changed, 4623 insertions(+), 4308 deletions(-)

diff --git a/TileCalorimeter/TileCalib/TileCalibAlgs/TileCalibAlgs/TileCisDefaultCalibTool.h b/TileCalorimeter/TileCalib/TileCalibAlgs/TileCalibAlgs/TileCisDefaultCalibTool.h
index 11052fd715b..a01fc9b9f9d 100644
--- a/TileCalorimeter/TileCalib/TileCalibAlgs/TileCalibAlgs/TileCisDefaultCalibTool.h
+++ b/TileCalorimeter/TileCalib/TileCalibAlgs/TileCalibAlgs/TileCisDefaultCalibTool.h
@@ -22,7 +22,7 @@
 #include "TileEvent/TileDigitsContainer.h"
 #include "TileCalibBlobObjs/TileCalibUtils.h"
 #include "TileMonitoring/ITileStuckBitsProbsTool.h"
-
+#include "TileConditions/TileInfo.h"
 
 #include "TString.h"
 #include <stdint.h>
@@ -155,7 +155,14 @@ class TileCisDefaultCalibTool: public AthAlgTool
     //  TList *scanList;  // This is now deprecated and replaced by the map for speed -CT March 09
     TMap* m_scanMap;
     TMap* m_scanMapRMS;
-
+    
+    double m_dac2ChargeSmall;
+    double m_dac2ChargeLarge;
+
+    // TileInfo
+    std::string m_infoName;
+    const TileInfo* m_tileInfo;
+    
     // Functions
     inline int chanIsConnected(int ros, int chan) {
       if (m_cabling->channel2hole(ros, chan) < 0) return 0; //negative means not connected
diff --git a/TileCalorimeter/TileCalib/TileCalibAlgs/TileCalibAlgs/TileExpertDump.h b/TileCalorimeter/TileCalib/TileCalibAlgs/TileCalibAlgs/TileExpertDump.h
index 8f0a9f65da3..d0c0d0ad018 100755
--- a/TileCalorimeter/TileCalib/TileCalibAlgs/TileCalibAlgs/TileExpertDump.h
+++ b/TileCalorimeter/TileCalib/TileCalibAlgs/TileCalibAlgs/TileExpertDump.h
@@ -27,6 +27,7 @@
 #include "TileConditions/TileExpertToolEmscale.h"
 
 class TileHWID;
+class TileInfo;
 
 /**
  ** Algorithn to dump out calibration constants from the TileInfoSvc
@@ -73,6 +74,11 @@ class TileExpertDump: public AthAlgorithm {
       "TileExpertToolEmscale","TileExpertToolEmscale", "Tile expert tool em scale"};
 
     const TileHWID* m_tileHWID;
+
+    //=== TileInfo
+    std::string m_infoName;
+    const TileInfo* m_tileInfo;
+    int m_i_ADCmax;
 };
 
 #endif 
diff --git a/TileCalorimeter/TileCalib/TileCalibAlgs/TileCalibAlgs/TileInfoDump.h b/TileCalorimeter/TileCalib/TileCalibAlgs/TileCalibAlgs/TileInfoDump.h
index 9fa334b64d4..cec9b4aecf6 100755
--- a/TileCalorimeter/TileCalib/TileCalibAlgs/TileCalibAlgs/TileInfoDump.h
+++ b/TileCalorimeter/TileCalib/TileCalibAlgs/TileCalibAlgs/TileInfoDump.h
@@ -32,7 +32,7 @@
 #include "TileConditions/TileCondToolOfcCool.h"
 #include "TileConditions/TileCondToolMuID.h"
 #include "TileConditions/TileCondToolAutoCr.h"
-
+#include "TileConditions/TileInfo.h"
 
 class ITHistSvc;
 class TileHWID;
@@ -134,6 +134,11 @@ class TileInfoDump: public AthAlgorithm {
     unsigned int m_printOfcRos;
     unsigned int m_printOfcDrawer;
     unsigned int m_printOfcChannel;
+
+    //=== TileInfo
+    std::string m_infoName;
+    const TileInfo* m_tileInfo;
+    int m_i_ADCmax;
 };
 
 #endif 
diff --git a/TileCalorimeter/TileCalib/TileCalibAlgs/src/TileCisDefaultCalibTool.cxx b/TileCalorimeter/TileCalib/TileCalibAlgs/src/TileCisDefaultCalibTool.cxx
index 57094e5cf19..a4f5b220c13 100644
--- a/TileCalorimeter/TileCalib/TileCalibAlgs/src/TileCisDefaultCalibTool.cxx
+++ b/TileCalorimeter/TileCalib/TileCalibAlgs/src/TileCisDefaultCalibTool.cxx
@@ -20,6 +20,7 @@
 #include "TileEvent/TileDigitsContainer.h"
 #include "TileIdentifier/TileHWID.h"
 #include "TileConditions/TileCablingSvc.h"
+#include "TileConditions/TileInfo.h"
 
 
 #include "TFile.h"
@@ -31,8 +32,6 @@
 #include "TMath.h"
 #include <cmath>
 
-static const double c_dac2ChargeSmall(2.0 * 4.096 * 5.2 / 1023.0);
-static const double c_dac2ChargeLarge(2.0 * 4.096 * 100.0 / 1023.0);
 static const double c_defaultHiCalib(81.8);
 static const double c_defaultLoCalib(1.29);
 
@@ -44,6 +43,7 @@ TileCisDefaultCalibTool::TileCisDefaultCalibTool(const std::string& type, const
   , m_cablingSvc("TileCablingSvc", name)
   , m_scanMap(0)
   , m_scanMapRMS(0)
+  , m_tileInfo(0)
 {
   declareInterface<ITileCalibTool>(this);
 
@@ -63,6 +63,7 @@ TileCisDefaultCalibTool::TileCisDefaultCalibTool(const std::string& type, const
 
   declareProperty("doSampleChecking", m_doSampleChecking = true); // do sample checking by default
   declareProperty("TileDQstatus", m_dqStatusKey = "TileDQstatus");
+  declareProperty("TileInfoName", m_infoName = "TileInfo");
 
   // Initialize arrays for results
   m_calib = new float[Tile::MAX_ROS][Tile::MAX_DRAWER][Tile::MAX_CHAN][Tile::MAX_GAIN]();
@@ -107,6 +108,13 @@ StatusCode TileCisDefaultCalibTool::initialize() {
 
   CHECK( m_dqStatusKey.initialize() );
 
+  // get TileInfo
+  CHECK( detStore()->retrieve(m_tileInfo, m_infoName) );
+
+  // set important constants
+  m_dac2ChargeSmall = 2.0 * 4.096 * 5.2 / double(m_tileInfo->ADCmax());
+  m_dac2ChargeLarge = 2.0 * 4.096 * 100.0 / double(m_tileInfo->ADCmax());
+
   ATH_CHECK( m_rawChannelContainerKey.initialize() );
   ATH_CHECK( m_digitsContainerKey.initialize(m_doSampleChecking) );
 
@@ -145,8 +153,8 @@ StatusCode TileCisDefaultCalibTool::execute() {
   }
 
   // Find event's charge (for checking later that charge is in useful range)
-  double charge = (cispar[7] > 10) ? (double) dac * c_dac2ChargeLarge
-                                   : (double) dac * c_dac2ChargeSmall;
+  double charge = (cispar[7] > 10) ? (double) dac * m_dac2ChargeLarge
+                                   : (double) dac * m_dac2ChargeSmall;
 
   // Get TileRawChannelContainer
   SG::ReadHandle<TileRawChannelContainer> container(m_rawChannelContainerKey);
@@ -442,9 +450,9 @@ StatusCode TileCisDefaultCalibTool::finalizeCalculations() {
 
         // find charge for this dac
         if (m_useSmallCap)
-          charge = (double) dac * c_dac2ChargeSmall;
+          charge = (double) dac * m_dac2ChargeSmall;
         else
-          charge = (double) dac * c_dac2ChargeLarge;
+          charge = (double) dac * m_dac2ChargeLarge;
 
         // check for problems in calibration range
         if (gain == 0) {
diff --git a/TileCalorimeter/TileCalib/TileCalibAlgs/src/TileExpertDump.cxx b/TileCalorimeter/TileCalib/TileCalibAlgs/src/TileExpertDump.cxx
index 25582991634..096bf0ba014 100755
--- a/TileCalorimeter/TileCalib/TileCalibAlgs/src/TileExpertDump.cxx
+++ b/TileCalorimeter/TileCalib/TileCalibAlgs/src/TileExpertDump.cxx
@@ -27,6 +27,7 @@ TileExpertDump::TileExpertDump(const std::string& name, ISvcLocator* pSvcLocator
   : AthAlgorithm(name, pSvcLocator)
   , m_emExpertOptions(0)
   , m_tileHWID(0)
+  , m_tileInfo(0)
 {
   declareProperty("PrintExpertEmscale"     , m_printExpertEmscale=false      ,"Switch on expert calibration chain printout");
   declareProperty("PrintExpertEmscaleOnl"  , m_printExpertEmscaleOnl=false   ,"Switch on expert onl calibration chain printout");
@@ -45,6 +46,7 @@ TileExpertDump::TileExpertDump(const std::string& name, ISvcLocator* pSvcLocator
   declareProperty("useOnlLasLin"    , m_OnlLasLin     = false, "Use calibration of OnlLasLin");
   declareProperty("useOnlCes"       , m_OnlCes        = false, "Use calibration of OnlCes");
   declareProperty("useOnlEms"       , m_OnlEms        = false, "Use calibration of OnlEms");
+  declareProperty("TileInfoName", m_infoName = "TileInfo");
 }
 
 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
@@ -71,6 +73,10 @@ StatusCode TileExpertDump::initialize() {
 
   m_tileExpertToolEmscale->setEmOptions(m_emExpertOptions);
 
+  //=== Get TileInfo and set max ADC counts
+  CHECK( detStore()->retrieve(m_tileInfo, m_infoName) );
+  m_i_ADCmax = m_tileInfo->ADCmax();
+
   return StatusCode::SUCCESS;
 }
 
@@ -178,7 +184,7 @@ void TileExpertDump::printExpertEmscale() {
   unsigned int drawer = 0;
   unsigned int channel = 0;
   for (unsigned int adc = 0; adc < TileCalibUtils::MAX_GAIN; ++adc) {
-    for (unsigned int adcCounts = 0; adcCounts < 1024; ++adcCounts) {
+    for (int adcCounts = 0; adcCounts < m_i_ADCmax; ++adcCounts) {
       double energy = static_cast<float>(adcCounts);
       ATH_MSG_INFO( ros << "/" << drawer << "/" << channel << "/" << adc << " : "
                    << "ADC counts = " << adcCounts
diff --git a/TileCalorimeter/TileCalib/TileCalibAlgs/src/TileInfoDump.cxx b/TileCalorimeter/TileCalib/TileCalibAlgs/src/TileInfoDump.cxx
index d4df7e21687..76382f19ca7 100755
--- a/TileCalorimeter/TileCalib/TileCalibAlgs/src/TileInfoDump.cxx
+++ b/TileCalorimeter/TileCalib/TileCalibAlgs/src/TileInfoDump.cxx
@@ -23,6 +23,8 @@
 #include "TileIdentifier/TileFragHash.h"
 #include "TileCalibBlobObjs/TileCalibUtils.h"
 #include "TileConditions/TileCablingService.h"
+#include "TileConditions/TileInfo.h"
+
 #include "TH2.h"
 
 #include <iomanip>
@@ -42,6 +44,7 @@ TileInfoDump::TileInfoDump(const std::string& name, ISvcLocator* pSvcLocator)
     , m_h_badCellD(0)
     , m_h_badCellGap(0)
     , m_h_badCell(0)
+    , m_tileInfo(0)
 
 {
   declareProperty("AthenaIsOnline", m_isOnline = false, "Availability of COOL folders depends on Athena mode");
@@ -61,6 +64,7 @@ TileInfoDump::TileInfoDump(const std::string& name, ISvcLocator* pSvcLocator)
   declareProperty("PrintOfcRos", m_printOfcRos = 0, "Print OFC for this ros (0 by default)");
   declareProperty("PrintOfcDrawer", m_printOfcDrawer = 0, "Print OFC for this drawer (0 by default)");
   declareProperty("PrintOfcChannel", m_printOfcChannel = 0, "Print OFC for this channel (0 by default)");
+  declareProperty("TileInfoName", m_infoName = "TileInfo");
 }
 
 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
@@ -120,6 +124,10 @@ StatusCode TileInfoDump::initialize() {
   //--- Get a handle on the NTuple and histogramming service
   CHECK( service("THistSvc", m_thistSvc) );
 
+  //=== Get TileInfo and set max ADC counts
+  CHECK( detStore()->retrieve(m_tileInfo, m_infoName) );
+  m_i_ADCmax = m_tileInfo->ADCmax();
+
   //--- Histogram initialization
   m_h_badCellA = new TH2F("m_h_badCellA", "Etaphi_maskedCell A", 34, -1.7, 1.7, 64, -3.2, 3.2);
   m_h_badCellBC = new TH2F("m_h_badCellBC", "Etaphi_maskedCell BC", 34, -1.7, 1.7, 64, -3.2, 3.2);
@@ -229,7 +237,7 @@ void TileInfoDump::printEmscale() {
   unsigned int drawer = 0;
   unsigned int channel = 0;
   for (unsigned int adc = 0; adc < TileCalibUtils::MAX_GAIN; ++adc) {
-    for (unsigned int adcCounts = 0; adcCounts < 1024; ++adcCounts) {
+    for (int adcCounts = 0; adcCounts <= m_i_ADCmax; ++adcCounts) {
       double energy = static_cast<float>(adcCounts);
       ATH_MSG_INFO( ros << "/"  << drawer << "/" << channel << "/" << adc << " : "
                    << "ADC counts = " << adcCounts
diff --git a/TileCalorimeter/TileConditions/TileConditions/TileInfo.h b/TileCalorimeter/TileConditions/TileConditions/TileInfo.h
index 98564a97e01..e45e81f8340 100644
--- a/TileCalorimeter/TileConditions/TileConditions/TileInfo.h
+++ b/TileCalorimeter/TileConditions/TileConditions/TileInfo.h
@@ -68,7 +68,9 @@ class ATLAS_CHECK_THREAD_SAFETY TileInfo {
     { return m_tileID->is_tile_gapscin(cell_id) ? 1:2; }
 
   /** Returns the maximum ADC output (10 bits --> 1023) */
-  int ADCmax() const {return m_adcmax;}
+  int ADCmax() const {return m_ADCmax;}
+  /** Returns the overlay magic number that indicates channels which were masked in background dataset */
+  int ADCmaskValue() const {return m_ADCmaskValue;}
   /** Returns the number of sammples (digits) per event */
   int NdigitSamples() const {return m_nSamples;}
   /** The sample at which the pulse should ideally peak */
@@ -311,7 +313,8 @@ class ATLAS_CHECK_THREAD_SAFETY TileInfo {
   double m_emscaleE[16]; //!< 1/sampling fraction for special C10 and E1-E4 cells [9]=C10, [10]=E1, [11]=E2, [13]=E3, [15]=E4
   double m_emscaleMBTS[3]; //!< 1/sampling fraction for inner/outer MBTS and also for E4'
 
-  int    m_adcmax;
+  int    m_ADCmax;
+  int    m_ADCmaskValue;
   int    m_nSamples;
   int    m_iTrigSample;
 
diff --git a/TileCalorimeter/TileConditions/TileConditions/TileInfoLoader.h b/TileCalorimeter/TileConditions/TileConditions/TileInfoLoader.h
index d64b7331079..b01a4753250 100644
--- a/TileCalorimeter/TileConditions/TileConditions/TileInfoLoader.h
+++ b/TileCalorimeter/TileConditions/TileConditions/TileInfoLoader.h
@@ -116,6 +116,9 @@ private:
     double m_emscaleMBTS[3]; //!< 1/sampling fraction for inner/outer MBTS and also for E4'
     int    m_nPhElec;
     int    m_nPhElecVec[7];
+    int    m_ADCmax;
+    int    m_ADCmaskValue;
+    
 
 
     /** Pointer to Wiener Filtering weights*/
diff --git a/TileCalorimeter/TileConditions/python/TileInfoConfigurator.py b/TileCalorimeter/TileConditions/python/TileInfoConfigurator.py
index c157cfb68a0..ccf30156298 100644
--- a/TileCalorimeter/TileConditions/python/TileInfoConfigurator.py
+++ b/TileCalorimeter/TileConditions/python/TileInfoConfigurator.py
@@ -442,7 +442,27 @@ class _TileInfoConfigurator( TileInfoLoader ):
 
 
     #_______________________________________________________________
+    def setupAdcRange(self, Nbits = 10):
+        """
+        Call this function to setup maximum range of ADC counts
+        Input parameters:
+        - Nbits : Number of bits of an ADC (either 10 or 12)
+        """
+        self._msg.info("Setting {0}-bit Tile ADC".format(Nbits))
+        if Nbits == 10:
+            self.ADCmax = 1023
+            self.ADCmaskValue = 2047
+        elif Nbits == 12:
+            self.ADCmax = 4095
+            self.ADCmaskValue = 4800
+        # NOTE: For self.ADCmaskValue, value 4800 should work both for 10-bit and 12-bit settings.
+        #       It has to be a value between the interval of possible opt filter output values and
+        #       the interval of possible fit method output values. In case of 12-bit settings:
+        #         - opt filter values: (-500, 4600)
+        #         - fit method values: (5000, 9095) (here, 5000 is added to the output of the fit method itself to indicate that the fit method was used)
+        return
 
+    #_______________________________________________________________
 def TileInfoConfigurator(name="TileInfoLoader", **kwargs):
     """
     factory function to create readily configured TileInfoLoader instances
diff --git a/TileCalorimeter/TileConditions/share/TileConditions_jobOptions.py b/TileCalorimeter/TileConditions/share/TileConditions_jobOptions.py
index 56aa5d3e5b3..291f838516f 100644
--- a/TileCalorimeter/TileConditions/share/TileConditions_jobOptions.py
+++ b/TileCalorimeter/TileConditions/share/TileConditions_jobOptions.py
@@ -160,3 +160,12 @@ if TileCommissioning:
 else:
     msg.info("Adjusting TileInfo to return cell noise for Opt.Filter without iterations")
     tileInfoConfigurator.NoiseScaleIndex = 1; # Noise for Optimal Filter without iterations
+
+# setup for 12-bit ADCs
+TileUse12bit = False
+if not TileUse12bit:
+    msg.info("Setting 10-bit ADC configuration")
+    tileInfoConfigurator.setupAdcRange(10)
+else:
+    msg.info("Setting 12-bit ADC configuration")
+    tileInfoConfigurator.setupAdcRange(12)
diff --git a/TileCalorimeter/TileConditions/src/TileInfo.cxx b/TileCalorimeter/TileConditions/src/TileInfo.cxx
index 5dc6f187bfb..995d6176271 100644
--- a/TileCalorimeter/TileConditions/src/TileInfo.cxx
+++ b/TileCalorimeter/TileConditions/src/TileInfo.cxx
@@ -57,7 +57,8 @@ TileInfo::TileInfo(ISvcLocator *svcLocator)
   , m_emscaleA(0)
   , m_emscaleC()
   , m_emscaleMBTS()
-  , m_adcmax(1023)                
+  , m_ADCmax(0)
+  , m_ADCmaskValue(0)
   , m_nSamples(0)
   , m_iTrigSample(0)
   , m_tileNoise(0)
diff --git a/TileCalorimeter/TileConditions/src/TileInfoLoader.cxx b/TileCalorimeter/TileConditions/src/TileInfoLoader.cxx
index d01ec37e76f..1ce0fa20362 100644
--- a/TileCalorimeter/TileConditions/src/TileInfoLoader.cxx
+++ b/TileCalorimeter/TileConditions/src/TileInfoLoader.cxx
@@ -189,6 +189,12 @@ TileInfoLoader::TileInfoLoader(const std::string& name,
   //==========================================================
   declareProperty("filename_DecoCovaFilePrefix" ,m_DecoCovaFilePrefix  = "DecoCovaMatrix");
 
+  //==========================================================
+  //=== Digitization
+  //==========================================================
+  declareProperty("ADCmax"                     ,m_ADCmax = 1023);
+  declareProperty("ADCmaskValue"               ,m_ADCmaskValue = 2047);
+
   //==========================================================
   //=== TileWienerFilterWeights configuration
   //==========================================================
@@ -248,6 +254,8 @@ StatusCode TileInfoLoader::initialize() {
   std::copy (std::begin(m_emscaleE), std::end(m_emscaleE), std::begin(info->m_emscaleE));
   std::copy (std::begin(m_emscaleMBTS), std::end(m_emscaleMBTS), std::begin(info->m_emscaleMBTS));
   std::copy (std::begin(m_nPhElecVec), std::end(m_nPhElecVec), std::begin(info->m_nPhElecVec));
+  info->m_ADCmax = m_ADCmax;
+  info->m_ADCmaskValue = m_ADCmaskValue;
 
   m_WFWeights->m_NSamples_Phys = info->m_nSamples; // to make sure that everything is consistent
 
diff --git a/TileCalorimeter/TileMonitoring/TileMonitoring/TileDQFragLWMonTool.h b/TileCalorimeter/TileMonitoring/TileMonitoring/TileDQFragLWMonTool.h
index 038073f4f13..6d050ae1437 100644
--- a/TileCalorimeter/TileMonitoring/TileMonitoring/TileDQFragLWMonTool.h
+++ b/TileCalorimeter/TileMonitoring/TileMonitoring/TileDQFragLWMonTool.h
@@ -1,5 +1,5 @@
 /*
-  Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration
+  Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration
 */
 
 // ********************************************************************
@@ -25,6 +25,7 @@ class ITileBadChanTool;
 class TileDQstatus;
 class TileRawChannel;
 class TileRawChannelCollection;
+class TileInfo;
 
 
 /** @class TileDQFragLWMonTool
@@ -131,6 +132,13 @@ class TileDQFragLWMonTool: public TileFatherMonTool {
     float m_qualityCut;
     SG::ReadHandleKey<TileDQstatus> m_DQstatusKey;
     unsigned int m_nEventsWithAllDigits;
+
+    // TileInfo
+    std::string m_infoName;
+    const TileInfo* m_tileInfo;
+    int m_i_ADCmax;
+    float m_ADCmaxMinusEps;
+    float m_ADCmaskValueMinusEps;
     /*---------------------------------------------------------*/
 
 };
diff --git a/TileCalorimeter/TileMonitoring/TileMonitoring/TileDQFragMonTool.h b/TileCalorimeter/TileMonitoring/TileMonitoring/TileDQFragMonTool.h
index a826333dffa..7eb7a837bba 100644
--- a/TileCalorimeter/TileMonitoring/TileMonitoring/TileDQFragMonTool.h
+++ b/TileCalorimeter/TileMonitoring/TileMonitoring/TileDQFragMonTool.h
@@ -1,5 +1,5 @@
 /*
-  Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration
+  Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration
 */
 
 // ********************************************************************
@@ -25,6 +25,7 @@ class ITileBadChanTool;
 class TileDQstatus;
 class TileRawChannel;
 class TileRawChannelCollection;
+class TileInfo;
 
 
 /** @class TileDQFragMonTool
@@ -137,6 +138,13 @@ class TileDQFragMonTool: public TileFatherMonTool {
     float m_qualityCut;
     SG::ReadHandleKey<TileDQstatus> m_DQstatusKey;
     unsigned int m_nEventsWithAllDigits;
+
+    // TileInfo
+    std::string m_infoName;
+    const TileInfo* m_tileInfo;
+    int m_i_ADCmax;
+    float m_ADCmaxMinusEps;
+    float m_ADCmaskValueMinusEps;
     /*---------------------------------------------------------*/
 
 };
diff --git a/TileCalorimeter/TileMonitoring/TileMonitoring/TileDigitsMonTool.h b/TileCalorimeter/TileMonitoring/TileMonitoring/TileDigitsMonTool.h
index aced327dbab..9bf47cae94c 100644
--- a/TileCalorimeter/TileMonitoring/TileMonitoring/TileDigitsMonTool.h
+++ b/TileCalorimeter/TileMonitoring/TileMonitoring/TileDigitsMonTool.h
@@ -1,5 +1,5 @@
 /*
-  Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration
+  Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration
 */
 
 // ********************************************************************
@@ -20,6 +20,7 @@
 #include "TileMonitoring/ITileStuckBitsProbsTool.h"
 
 class TileCondToolNoiseSample;
+class TileInfo;
 
 
 /** @class TileDigitsMonTool
@@ -163,6 +164,17 @@ class TileDigitsMonTool: public TilePaterMonTool
     //int hb;
     bool m_fillPedestalDifference;
     std::string m_digitsContainerName;
+
+    // TileInfo
+    std::string m_infoName;
+    const TileInfo* m_tileInfo;
+    int m_i_ADCmax;
+    float m_f_ADCmax;
+    float m_ADCmaxMinusEps;
+
+    bool m_is12bit;
+    int m_shiftnbins;
+
     SG::ReadHandleKey<TileDQstatus> m_DQstatusKey;
 };
 
diff --git a/TileCalorimeter/TileMonitoring/TileMonitoring/TileMBTSMonTool.h b/TileCalorimeter/TileMonitoring/TileMonitoring/TileMBTSMonTool.h
index 8759aee7812..7f55c3ae2ce 100644
--- a/TileCalorimeter/TileMonitoring/TileMonitoring/TileMBTSMonTool.h
+++ b/TileCalorimeter/TileMonitoring/TileMonitoring/TileMBTSMonTool.h
@@ -24,6 +24,7 @@ class CTP_RDO;
 class CTP_RIO;
 class TileCell;
 class TileTBID;
+class TileInfo;
 
 namespace TrigConf {
   class ILVL1ConfigSvc;
@@ -159,6 +160,12 @@ class TileMBTSMonTool: public TileFatherMonTool {
 
     int32_t m_old_lumiblock;
     int m_nLumiblocks;
+
+    // TileInfo
+    std::string m_infoName;
+    const TileInfo* m_tileInfo;
+    int m_i_ADCmax;
+
     SG::ReadHandleKey<TileDQstatus> m_DQstatusKey;
 };
 
diff --git a/TileCalorimeter/TileMonitoring/TileMonitoring/TileRawChannelMonTool.h b/TileCalorimeter/TileMonitoring/TileMonitoring/TileRawChannelMonTool.h
index 43ab6e20bb9..0cac09dd72b 100644
--- a/TileCalorimeter/TileMonitoring/TileMonitoring/TileRawChannelMonTool.h
+++ b/TileCalorimeter/TileMonitoring/TileMonitoring/TileRawChannelMonTool.h
@@ -1,5 +1,5 @@
 /*
-  Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration
+  Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration
 */
 
 // ********************************************************************
@@ -21,6 +21,7 @@
 
 class TileRawChannel;
 class TileCondToolEmscale;
+class TileInfo;
 
 /** @class TileRawChannelMonTool
  *  @brief Class for TileCal monitoring at channel level
@@ -164,6 +165,10 @@ class TileRawChannelMonTool: public TilePaterMonTool {
     bool m_doLaserSummaryVsPMT;
     bool m_drawHists;
     float m_minAmpForCorrectedTime;
+    // TileInfo
+    std::string m_infoName;
+    const TileInfo* m_tileInfo;
+    bool m_is12bit;
     SG::ReadHandleKey<TileDQstatus> m_DQstatusKey;
 };
 
diff --git a/TileCalorimeter/TileMonitoring/python/TileDQFragMonitorAlgorithm.py b/TileCalorimeter/TileMonitoring/python/TileDQFragMonitorAlgorithm.py
index 9fcbb7e5499..53fa54d6623 100644
--- a/TileCalorimeter/TileMonitoring/python/TileDQFragMonitorAlgorithm.py
+++ b/TileCalorimeter/TileMonitoring/python/TileDQFragMonitorAlgorithm.py
@@ -11,7 +11,6 @@ def TileDQFragMonitoringConfig(flags, **kwargs):
 
     ''' Function to configure TileDQFragMonitorAlgorithm algorithm in the monitoring system.'''
 
-
     from AthenaConfiguration.ComponentAccumulator import ComponentAccumulator
     result = ComponentAccumulator()
 
@@ -24,6 +23,9 @@ def TileDQFragMonitoringConfig(flags, **kwargs):
     from TileRecUtils.TileDQstatusConfig import TileDQstatusAlgCfg
     result.merge( TileDQstatusAlgCfg(flags) )
 
+    from TileConditions.TileInfoLoaderConfig import TileInfoLoaderCfg
+    result.merge( TileInfoLoaderCfg(flags) )
+
     from TileConditions.TileBadChannelsConfig import TileBadChanToolCfg
     badChanTool = result.popToolsAndMerge( TileBadChanToolCfg(flags) )
     kwargs['TileBadChanTool'] = badChanTool
diff --git a/TileCalorimeter/TileMonitoring/src/TileDQFragLWMonTool.cxx b/TileCalorimeter/TileMonitoring/src/TileDQFragLWMonTool.cxx
index 8ba59e80e91..38f375ddbfe 100644
--- a/TileCalorimeter/TileMonitoring/src/TileDQFragLWMonTool.cxx
+++ b/TileCalorimeter/TileMonitoring/src/TileDQFragLWMonTool.cxx
@@ -1,5 +1,5 @@
 /*
-  Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration
+  Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration
 */
 
 // ********************************************************************
@@ -19,6 +19,7 @@
 #include "TileEvent/TileDigitsContainer.h"
 #include "TileEvent/TileRawChannelContainer.h"
 #include "TileRecUtils/TileRawChannelBuilder.h"
+#include "TileConditions/TileInfo.h"
 #include "StoreGate/ReadHandle.h"
 
 #include <iostream>
@@ -50,6 +51,7 @@ TileDQFragLWMonTool::TileDQFragLWMonTool(const std::string & type, const std::st
   , m_nLumiblocks(3000)
   , m_qualityCut(254.0)
   , m_nEventsWithAllDigits(0)
+  , m_tileInfo(0)
 /*---------------------------------------------------------*/
 {
   declareInterface<IMonitorToolBase>(this);
@@ -68,45 +70,10 @@ TileDQFragLWMonTool::TileDQFragLWMonTool(const std::string & type, const std::st
   declareProperty("TileBadChanTool", m_tileBadChanTool);
   declareProperty("NumberOfLumiblocks", m_nLumiblocks = 3000);
   declareProperty("QualityCut", m_qualityCut = 254.0);
+  declareProperty("TileInfoName", m_infoName = "TileInfo");
   declareProperty("TileDQstatus", m_DQstatusKey = "TileDQstatus");
 
   m_path = "/Tile/DMUErrors";
-  // starting up the label variable....
-  m_errorsLabels.clear();
-  m_errorsLabels.push_back("OK");                 // Error: 0
-  m_errorsLabels.push_back("HEADER_FORM");        // Error: 1
-  m_errorsLabels.push_back("HEADER_PAR");         // Error: 2
-  m_errorsLabels.push_back("MEMO_PAR");           // Error: 3
-  m_errorsLabels.push_back("FE_CRC");             // Error: 4
-  m_errorsLabels.push_back("ROD_CRC");            // Error: 5
-  m_errorsLabels.push_back("BCID");               // Error: 6
-  m_errorsLabels.push_back("SAMPLE_FORM");        // Error: 7
-  m_errorsLabels.push_back("SAMPLE_PAR");         // Error: 8
-  m_errorsLabels.push_back("DOUBLE_STB");         // Error: 9
-  m_errorsLabels.push_back("SINGLE_STB");         // Error: 10
-  m_errorsLabels.push_back("GLOBAL_CRC");         // Error: 11
-  m_errorsLabels.push_back("DUMMY_FRAG");         // Error: 12
-  m_errorsLabels.push_back("NO_RECO_FFAG");       // Error: 13
-  m_errorsLabels.push_back("MASKED");             // Error: 14
-  m_errorsLabels.push_back("ALL_M_BAD_DCS");      // Error: 15
-  m_errorsLabels.push_back("ANY_CH_BAD_HV");      // Error: 16
-  assert( m_errorsLabels.size() == NERROR );
-  // corrupted data
-  m_errorsLabels.push_back("0 -> 1023");          // Error: NERROR - 1 + 1
-  m_errorsLabels.push_back("Zeros");              // Error: NERROR - 1 + 2
-  m_errorsLabels.push_back("Two 1023 + ped");     // Error: NERROR - 1 + 3
-  m_errorsLabels.push_back("Jump 2 levels");      // Error: NERROR - 1 + 4
-  m_errorsLabels.push_back("Single Up + ped");    // Error: NERROR - 1 + 5
-  m_errorsLabels.push_back("Single Dn + ped");    // Error: NERROR - 1 + 6
-  m_errorsLabels.push_back("Single Up + sig");    // Error: NERROR - 1 + 7
-  m_errorsLabels.push_back("Single Dn + sig");    // Error: NERROR - 1 + 8
-  m_errorsLabels.push_back("Ped>200 LG");         // Error: NERROR - 1 + 9
-  m_errorsLabels.push_back("Single Dn LG_s0");    // Error: NERROR - 1 + 10
-  m_errorsLabels.push_back("Single Dn LG_s6");    // Error: NERROR - 1 + 11
-  m_errorsLabels.push_back("Up LG_s0_s6 or Gap"); // Error: NERROR - 1 + 12
-  m_errorsLabels.push_back("Dn LG_s0_s6 or Gap"); // Error: NERROR - 1 + 13
-  assert( m_errorsLabels.size() == (NERROR+NCORRUPTED) );
-  
   m_partitionsLabels.push_back("LBA");
   m_partitionsLabels.push_back("LBC");
   m_partitionsLabels.push_back("EBA");
@@ -161,6 +128,47 @@ StatusCode TileDQFragLWMonTool:: initialize() {
     m_tileDCS.disable();
   }
 
+  ATH_CHECK( detStore()->retrieve(m_tileInfo, m_infoName) );
+  m_i_ADCmax = m_tileInfo->ADCmax();
+  m_ADCmaxMinusEps = m_i_ADCmax - 0.01;
+  m_ADCmaskValueMinusEps = m_tileInfo->ADCmaskValue() - 0.01;  // indicates channels which were masked in background dataset
+
+  // starting up the label variable....
+  m_errorsLabels.clear();
+  m_errorsLabels.push_back("OK");                 // Error: 0
+  m_errorsLabels.push_back("HEADER_FORM");        // Error: 1
+  m_errorsLabels.push_back("HEADER_PAR");         // Error: 2
+  m_errorsLabels.push_back("MEMO_PAR");           // Error: 3
+  m_errorsLabels.push_back("FE_CRC");             // Error: 4
+  m_errorsLabels.push_back("ROD_CRC");            // Error: 5
+  m_errorsLabels.push_back("BCID");               // Error: 6
+  m_errorsLabels.push_back("SAMPLE_FORM");        // Error: 7
+  m_errorsLabels.push_back("SAMPLE_PAR");         // Error: 8
+  m_errorsLabels.push_back("DOUBLE_STB");         // Error: 9
+  m_errorsLabels.push_back("SINGLE_STB");         // Error: 10
+  m_errorsLabels.push_back("GLOBAL_CRC");         // Error: 11
+  m_errorsLabels.push_back("DUMMY_FRAG");         // Error: 12
+  m_errorsLabels.push_back("NO_RECO_FFAG");       // Error: 13
+  m_errorsLabels.push_back("MASKED");             // Error: 14
+  m_errorsLabels.push_back("ALL_M_BAD_DCS");      // Error: 15
+  m_errorsLabels.push_back("ANY_CH_BAD_HV");      // Error: 16
+  assert( m_errorsLabels.size() == NERROR );
+  // corrupted data
+  m_errorsLabels.push_back("0 -> " + std::to_string(m_i_ADCmax));          // Error: NERROR - 1 + 1
+  m_errorsLabels.push_back("Zeros");              // Error: NERROR - 1 + 2
+  m_errorsLabels.push_back("Two " + std::to_string(m_i_ADCmax) + " + ped");     // Error: NERROR - 1 + 3
+  m_errorsLabels.push_back("Jump 2 levels");      // Error: NERROR - 1 + 4
+  m_errorsLabels.push_back("Single Up + ped");    // Error: NERROR - 1 + 5
+  m_errorsLabels.push_back("Single Dn + ped");    // Error: NERROR - 1 + 6
+  m_errorsLabels.push_back("Single Up + sig");    // Error: NERROR - 1 + 7
+  m_errorsLabels.push_back("Single Dn + sig");    // Error: NERROR - 1 + 8
+  m_errorsLabels.push_back("Ped>200 LG");         // Error: NERROR - 1 + 9
+  m_errorsLabels.push_back("Single Dn LG_s0");    // Error: NERROR - 1 + 10
+  m_errorsLabels.push_back("Single Dn LG_s6");    // Error: NERROR - 1 + 11
+  m_errorsLabels.push_back("Up LG_s0_s6 or Gap"); // Error: NERROR - 1 + 12
+  m_errorsLabels.push_back("Dn LG_s0_s6 or Gap"); // Error: NERROR - 1 + 13
+  assert( m_errorsLabels.size() == (NERROR+NCORRUPTED) );
+  
   return StatusCode::SUCCESS;
 
 }
@@ -574,7 +582,7 @@ void TileDQFragLWMonTool::fillBadDrawer() {
           int channel = m_tileHWID->channel(adcId);
           int gain = m_tileHWID->adc(adcId);
 
-          error = TileRawChannelBuilder::CorruptedData(ROS, drawer, channel, gain, pDigits->samples(), dmin, dmax);
+          error = TileRawChannelBuilder::CorruptedData(ROS, drawer, channel, gain, pDigits->samples(), dmin, dmax, m_ADCmaxMinusEps, m_ADCmaskValueMinusEps);
 
           if ( (error > 0) &&
               !(isDisconnected(ROS, drawer, channel) || m_tileBadChanTool->getAdcStatus(adcId).isBad()) ) {
diff --git a/TileCalorimeter/TileMonitoring/src/TileDQFragMonTool.cxx b/TileCalorimeter/TileMonitoring/src/TileDQFragMonTool.cxx
index 92213e54e9d..ed40bdaaf23 100644
--- a/TileCalorimeter/TileMonitoring/src/TileDQFragMonTool.cxx
+++ b/TileCalorimeter/TileMonitoring/src/TileDQFragMonTool.cxx
@@ -1,5 +1,5 @@
 /*
-  Copyright (C) 2002-2018 CERN for the benefit of the ATLAS collaboration
+  Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration
 */
 
 // ********************************************************************
@@ -19,6 +19,7 @@
 #include "TileEvent/TileDigitsContainer.h"
 #include "TileEvent/TileRawChannelContainer.h"
 #include "TileRecUtils/TileRawChannelBuilder.h"
+#include "TileConditions/TileInfo.h"
 #include "StoreGate/ReadHandle.h"
 
 #include "TH2I.h"
@@ -56,6 +57,7 @@ TileDQFragMonTool::TileDQFragMonTool(const std::string & type, const std::string
   , m_nLumiblocks(3000)
   , m_qualityCut(254.0)
   , m_nEventsWithAllDigits(0)
+  , m_tileInfo(0)
 /*---------------------------------------------------------*/
 {
   declareInterface<IMonitorToolBase>(this);
@@ -76,45 +78,10 @@ TileDQFragMonTool::TileDQFragMonTool(const std::string & type, const std::string
   declareProperty("TileBadChanTool"        , m_tileBadChanTool);
   declareProperty("NumberOfLumiblocks", m_nLumiblocks = 3000);
   declareProperty("QualityCut", m_qualityCut = 254.0);
+  declareProperty("TileInfoName", m_infoName = "TileInfo");
   declareProperty("TileDQstatus", m_DQstatusKey = "TileDQstatus");
 
   m_path = "/Tile/DMUErrors";
-  // starting up the label variable....
-  m_ErrorsLabels.clear();
-  m_ErrorsLabels.push_back("OK");                 // Error: 0
-  m_ErrorsLabels.push_back("HEADER_FORM");        // Error: 1
-  m_ErrorsLabels.push_back("HEADER_PAR");         // Error: 2
-  m_ErrorsLabels.push_back("MEMO_PAR");           // Error: 3
-  m_ErrorsLabels.push_back("FE_CRC");             // Error: 4
-  m_ErrorsLabels.push_back("ROD_CRC");            // Error: 5
-  m_ErrorsLabels.push_back("BCID");               // Error: 6
-  m_ErrorsLabels.push_back("SAMPLE_FORM");        // Error: 7
-  m_ErrorsLabels.push_back("SAMPLE_PAR");         // Error: 8
-  m_ErrorsLabels.push_back("DOUBLE_STB");         // Error: 9
-  m_ErrorsLabels.push_back("SINGLE_STB");         // Error: 10
-  m_ErrorsLabels.push_back("GLOBAL_CRC");         // Error: 11
-  m_ErrorsLabels.push_back("DUMMY_FRAG");         // Error: 12
-  m_ErrorsLabels.push_back("NO_RECO_FFAG");       // Error: 13
-  m_ErrorsLabels.push_back("MASKED");             // Error: 14
-  m_ErrorsLabels.push_back("ALL_M_BAD_DCS");      // Error: 15
-  m_ErrorsLabels.push_back("ANY_CH_BAD_HV");      // Error: 16
-  assert( m_ErrorsLabels.size() == NERROR );
-  // corrupted data
-  m_ErrorsLabels.push_back("0 -> 1023");          // Error: NERROR - 1 + 1
-  m_ErrorsLabels.push_back("Zeros");              // Error: NERROR - 1 + 2
-  m_ErrorsLabels.push_back("Two 1023 + ped");     // Error: NERROR - 1 + 3
-  m_ErrorsLabels.push_back("Jump 2 levels");      // Error: NERROR - 1 + 4
-  m_ErrorsLabels.push_back("Single Up + ped");    // Error: NERROR - 1 + 5
-  m_ErrorsLabels.push_back("Single Dn + ped");    // Error: NERROR - 1 + 6
-  m_ErrorsLabels.push_back("Single Up + sig");    // Error: NERROR - 1 + 7
-  m_ErrorsLabels.push_back("Single Dn + sig");    // Error: NERROR - 1 + 8
-  m_ErrorsLabels.push_back("Ped>200 LG");         // Error: NERROR - 1 + 9
-  m_ErrorsLabels.push_back("Single Dn LG_s0");    // Error: NERROR - 1 + 10
-  m_ErrorsLabels.push_back("Single Dn LG_s6");    // Error: NERROR - 1 + 11
-  m_ErrorsLabels.push_back("Up LG_s0_s6 or Gap"); // Error: NERROR - 1 + 12
-  m_ErrorsLabels.push_back("Dn LG_s0_s6 or Gap"); // Error: NERROR - 1 + 13
-  assert( m_ErrorsLabels.size() == (NERROR+NCORRUPTED) );
-  
   m_PartitionsLabels.push_back("LBA");
   m_PartitionsLabels.push_back("LBC");
   m_PartitionsLabels.push_back("EBA");
@@ -222,7 +189,48 @@ StatusCode TileDQFragMonTool:: initialize() {
     m_tileDCS.disable();
   }
 
+  // get TileInfo
+  ATH_CHECK( detStore()->retrieve(m_tileInfo, m_infoName) );
+  m_i_ADCmax = m_tileInfo->ADCmax();
+  m_ADCmaxMinusEps = m_i_ADCmax - 0.01;
+  m_ADCmaskValueMinusEps = m_tileInfo->ADCmaskValue() - 0.01;  // indicates channels which were masked in background dataset
 
+  // starting up the label variable....
+  m_ErrorsLabels.clear();
+  m_ErrorsLabels.push_back("OK");                 // Error: 0
+  m_ErrorsLabels.push_back("HEADER_FORM");        // Error: 1
+  m_ErrorsLabels.push_back("HEADER_PAR");         // Error: 2
+  m_ErrorsLabels.push_back("MEMO_PAR");           // Error: 3
+  m_ErrorsLabels.push_back("FE_CRC");             // Error: 4
+  m_ErrorsLabels.push_back("ROD_CRC");            // Error: 5
+  m_ErrorsLabels.push_back("BCID");               // Error: 6
+  m_ErrorsLabels.push_back("SAMPLE_FORM");        // Error: 7
+  m_ErrorsLabels.push_back("SAMPLE_PAR");         // Error: 8
+  m_ErrorsLabels.push_back("DOUBLE_STB");         // Error: 9
+  m_ErrorsLabels.push_back("SINGLE_STB");         // Error: 10
+  m_ErrorsLabels.push_back("GLOBAL_CRC");         // Error: 11
+  m_ErrorsLabels.push_back("DUMMY_FRAG");         // Error: 12
+  m_ErrorsLabels.push_back("NO_RECO_FFAG");       // Error: 13
+  m_ErrorsLabels.push_back("MASKED");             // Error: 14
+  m_ErrorsLabels.push_back("ALL_M_BAD_DCS");      // Error: 15
+  m_ErrorsLabels.push_back("ANY_CH_BAD_HV");      // Error: 16
+  assert( m_ErrorsLabels.size() == NERROR );
+  // corrupted data
+  m_ErrorsLabels.push_back("0 -> " + std::to_string(m_i_ADCmax));          // Error: NERROR - 1 + 1
+  m_ErrorsLabels.push_back("Zeros");              // Error: NERROR - 1 + 2
+  m_ErrorsLabels.push_back("Two " + std::to_string(m_i_ADCmax) + " + ped");     // Error: NERROR - 1 + 3
+  m_ErrorsLabels.push_back("Jump 2 levels");      // Error: NERROR - 1 + 4
+  m_ErrorsLabels.push_back("Single Up + ped");    // Error: NERROR - 1 + 5
+  m_ErrorsLabels.push_back("Single Dn + ped");    // Error: NERROR - 1 + 6
+  m_ErrorsLabels.push_back("Single Up + sig");    // Error: NERROR - 1 + 7
+  m_ErrorsLabels.push_back("Single Dn + sig");    // Error: NERROR - 1 + 8
+  m_ErrorsLabels.push_back("Ped>200 LG");         // Error: NERROR - 1 + 9
+  m_ErrorsLabels.push_back("Single Dn LG_s0");    // Error: NERROR - 1 + 10
+  m_ErrorsLabels.push_back("Single Dn LG_s6");    // Error: NERROR - 1 + 11
+  m_ErrorsLabels.push_back("Up LG_s0_s6 or Gap"); // Error: NERROR - 1 + 12
+  m_ErrorsLabels.push_back("Dn LG_s0_s6 or Gap"); // Error: NERROR - 1 + 13
+  assert( m_ErrorsLabels.size() == (NERROR+NCORRUPTED) );
+  
   ATH_CHECK( m_DQstatusKey.initialize() );
 
   return StatusCode::SUCCESS;
@@ -700,7 +708,7 @@ void TileDQFragMonTool::fillBadDrawer() {
           int channel = m_tileHWID->channel(adcId);
           int gain = m_tileHWID->adc(adcId);
 
-          error = TileRawChannelBuilder::CorruptedData(ROS, drawer, channel, gain, pDigits->samples(), dmin, dmax);
+          error = TileRawChannelBuilder::CorruptedData(ROS, drawer, channel, gain, pDigits->samples(), dmin, dmax, m_ADCmaxMinusEps, m_ADCmaskValueMinusEps);
 
           if ( (error > 0) &&
               !(isDisconnected(ROS, drawer, channel) || m_tileBadChanTool->getAdcStatus(adcId).isBad()) ) {
diff --git a/TileCalorimeter/TileMonitoring/src/TileDQFragMonitorAlgorithm.cxx b/TileCalorimeter/TileMonitoring/src/TileDQFragMonitorAlgorithm.cxx
index 326cbfc83ab..8adc8a3ae49 100644
--- a/TileCalorimeter/TileMonitoring/src/TileDQFragMonitorAlgorithm.cxx
+++ b/TileCalorimeter/TileMonitoring/src/TileDQFragMonitorAlgorithm.cxx
@@ -6,6 +6,7 @@
 #include "TileIdentifier/TileHWID.h"
 #include "TileCalibBlobObjs/TileCalibUtils.h"
 #include "TileRecUtils/TileRawChannelBuilder.h"
+#include "TileConditions/TileInfo.h"
 
 #include "StoreGate/ReadHandle.h"
 #include "StoreGate/ReadCondHandle.h"
@@ -45,6 +46,10 @@ StatusCode TileDQFragMonitorAlgorithm::initialize() {
 
   m_badPulseQualityGroups = Monitored::buildToolMap<int>(m_tools, "TileBadPulseQualityMap", Tile::MAX_ROS - 1);
 
+  ATH_CHECK( detStore()->retrieve(m_tileInfo, m_infoName) );
+  m_ADCmaxMinusEps = m_tileInfo->ADCmax() - 0.01;
+  m_ADCmaskValueMinusEps = m_tileInfo->ADCmaskValue() - 0.01;  // indicates channels which were masked in background dataset
+
   return StatusCode::SUCCESS;
 }
 
@@ -243,7 +248,7 @@ StatusCode TileDQFragMonitorAlgorithm::fillHistograms( const EventContext& ctx )
 
         monitoredChannel = channel;
 
-        error = TileRawChannelBuilder::CorruptedData(ros, drawer, channel, gain, tile_digits->samples(), minSample, maxSample);
+        error = TileRawChannelBuilder::CorruptedData(ros, drawer, channel, gain, tile_digits->samples(), minSample, maxSample, m_ADCmaxMinusEps, m_ADCmaskValueMinusEps);
 
         if ( (error > 0) &&
              !(m_cabling->isDisconnected(ros, drawer, channel) || m_tileBadChanTool->getAdcStatus(adcId, ctx).isBad()) ) {
diff --git a/TileCalorimeter/TileMonitoring/src/TileDQFragMonitorAlgorithm.h b/TileCalorimeter/TileMonitoring/src/TileDQFragMonitorAlgorithm.h
index be4b0f85151..cf4862865b0 100644
--- a/TileCalorimeter/TileMonitoring/src/TileDQFragMonitorAlgorithm.h
+++ b/TileCalorimeter/TileMonitoring/src/TileDQFragMonitorAlgorithm.h
@@ -21,6 +21,7 @@
 
 class TileHWID;
 class TileCablingService;
+class TileInfo;
 
 
 /** @class TileDQFragMonitorAlgorithm
@@ -102,6 +103,17 @@ class TileDQFragMonitorAlgorithm : public AthMonitorAlgorithm {
 
     static const int MAX_DMU{16};
     static const int MAX_CORRUPTED_ERROR{13};
+
+    // TileInfo
+    std::string m_infoName = "TileInfo";
+    const TileInfo* m_tileInfo{nullptr};
+    int m_i_ADCmax;
+    float m_f_ADCmax;
+    int m_i_ADCmaxPlus1;
+    float m_f_ADCmaxPlus1;
+    float m_ADCmaxMinusEps;
+    float m_ADCmaskValueMinusEps; //!< indicates channels which were masked in background dataset
+
 };
 
 
diff --git a/TileCalorimeter/TileMonitoring/src/TileDigitsMonTool.cxx b/TileCalorimeter/TileMonitoring/src/TileDigitsMonTool.cxx
index c03bfc4e4eb..264fd0eb5ca 100644
--- a/TileCalorimeter/TileMonitoring/src/TileDigitsMonTool.cxx
+++ b/TileCalorimeter/TileMonitoring/src/TileDigitsMonTool.cxx
@@ -18,6 +18,7 @@
 #include "TileEvent/TileRawChannelContainer.h"
 #include "TileConditions/TileCondToolNoiseSample.h"
 #include "TileCalibBlobObjs/TileCalibUtils.h"
+#include "TileConditions/TileInfo.h"
 #include "StoreGate/ReadHandle.h"
 
 #include "TH1S.h"
@@ -56,6 +57,9 @@ TileDigitsMonTool::TileDigitsMonTool(const std::string & type, const std::string
   , m_allHistsFilled(false)
   //, hp(-1)
   //, hb(-1)
+  , m_tileInfo(0)
+  , m_is12bit(false)
+  , m_shiftnbins(0)
 /*---------------------------------------------------------*/
 {
   declareInterface<IMonitorToolBase>(this);
@@ -70,6 +74,7 @@ TileDigitsMonTool::TileDigitsMonTool(const std::string & type, const std::string
   declareProperty("TileRawChannelContainerDSP", m_contNameDSP = "TileRawChannelCnt");
   declareProperty("TileDigitsContainer", m_digitsContainerName = "TileDigitsCnt");
   declareProperty("FillPedestalDifference", m_fillPedestalDifference = true);
+  declareProperty("TileInfoName", m_infoName = "TileInfo");
   declareProperty("TileDQstatus", m_DQstatusKey = "TileDQstatus");
 
   m_path = "/Tile/Digits"; //ROOT file directory
@@ -106,6 +111,18 @@ StatusCode TileDigitsMonTool::initialize()
   //hp = 1;
   //hb = -1;
 
+  // TileInfo
+  CHECK( detStore()->retrieve(m_tileInfo, m_infoName) );
+  m_i_ADCmax = m_tileInfo->ADCmax();
+  m_f_ADCmax = m_i_ADCmax;
+  m_ADCmaxMinusEps = m_i_ADCmax - 0.01;
+
+  m_shiftnbins = 796;
+  if (m_i_ADCmax == 4095){
+    m_is12bit = true;
+    m_shiftnbins = m_shiftnbins * 4;
+  }
+
   CHECK( m_DQstatusKey.initialize() );
 
   return TilePaterMonTool::initialize();
@@ -226,7 +243,7 @@ void TileDigitsMonTool::bookHists(int ros, int drawer)
       sStr << moduleName << " CH " << ch << gain[3 + gn] << " all samples";
       histTitle = sStr.str();
 
-      m_data->m_hist1[ros][drawer][ch][adc].push_back(book1S(subDir, histName, histTitle, 1024, -0.5, 1023.5));
+      m_data->m_hist1[ros][drawer][ch][adc].push_back(book1S(subDir, histName, histTitle, m_i_ADCmax + 1, -0.5, m_i_ADCmax + 0.5));
 
       // average profile for a given channel/gain
       sStr.str("");
@@ -237,13 +254,13 @@ void TileDigitsMonTool::bookHists(int ros, int drawer)
       sStr << moduleName << " CH " << ch << gain[3 + gn] << " average profile";
       histTitle = sStr.str();
 
-      m_data->m_histP[ros][drawer][ch][adc].push_back(bookProfile(subDir, histName, histTitle, m_nSamples, 0.0, m_nSamples * 1.0, -0.5, 1023.5));
+      m_data->m_histP[ros][drawer][ch][adc].push_back(bookProfile(subDir, histName, histTitle, m_nSamples, 0.0, m_nSamples * 1.0, -0.5, m_i_ADCmax + 0.5));
 
       // shifted samples histograms
 
       double shiftxmin = 0.;
-      double shiftxmax = 796.;
-      int shiftnbins = 796;
+      double shiftxmax = m_shiftnbins;
+      int shiftnbins = m_shiftnbins;
 
       sStr.str("");
       sStr << moduleName << "_ch_" << sCh << gain[gn] << "_samples_shifted";
@@ -409,7 +426,15 @@ StatusCode TileDigitsMonTool::fillHists()
     double mean_tmp[48][2][16];
     memset(mean_tmp, 0, sizeof(mean_tmp));
     
-    double charge = m_cispar[6] * m_cispar[7] * (2. * 4.096 / 1023.);
+    // Below, the charge conversion for 12 bit is just an approximation;
+    //   4095. can be changed later to gain precision if needed.
+    double charge = 0;
+    if (m_is12bit){ // if 12 bit ADCs
+      charge = m_cispar[6] * m_cispar[7] * (2. * 4.096 / 4095.);
+    }
+    else{
+      charge = m_cispar[6] * m_cispar[7] * (2. * 4.096 / 1023.);
+    }
     
     for (const TileDigits* tileDigits : *digitsCollection) {
 
@@ -442,7 +467,7 @@ StatusCode TileDigitsMonTool::fillHists()
             m_data->m_hist1[ros][drawer][chan][gain][2]->Fill(dig, 1.0);
           }
           
-          if (gain == 1 && dig > 1022.5) // overflow in high gain, find charge is it
+          if (gain == 1 && dig > m_ADCmaxMinusEps) // overflow in high gain, find charge is it
             m_data->m_outInHighGain[0]->Fill(charge);
         }
       }
@@ -685,7 +710,7 @@ StatusCode TileDigitsMonTool::finalHists()
 
             TH1S * hist = m_data->m_hist1[ros][drawer][channel][adc][2];
             double weight = 0.0;
-            for (int i = 2; i < 1025; ++i) { // first bin is excluded
+            for (int i = 2; i < m_i_ADCmax + 2; ++i) { // first bin is excluded
               weight += hist->GetBinContent(i);
             }
             // if we have weight=0 after the loop, then there is no non-zero amplitudes
@@ -848,8 +873,8 @@ StatusCode TileDigitsMonTool::finalHists()
               delete h;
             }
             double shiftxmin = 0.;
-            double shiftxmax = 796.;
-            int shiftnbins = 796;
+            double shiftxmax = m_shiftnbins;
+            int shiftnbins = m_shiftnbins;
 
             std::ostringstream s;
             s << part[ros] << std::setfill('0') << std::setw(2) << drawer + 1 << std::setfill(' ');
@@ -1222,26 +1247,26 @@ int TileDigitsMonTool::stuckBits(TH1S * hist, int adc) {
 
   // Find first/last non-zero bin in the histogram
   int MinBin = 1;
-  for (; MinBin < 1025; ++MinBin) {
+  for (; MinBin < m_i_ADCmax + 2; ++MinBin) {
     if (hist->GetBinContent(MinBin) > 0) {
       break;
     }
   }
-  if (MinBin == 1025) return 0; // empty histogram, nothing to do
+  if (MinBin == m_i_ADCmax + 2) return 0; // empty histogram, nothing to do
 
-  int MaxBin = 1024;
+  int MaxBin = m_i_ADCmax + 1;
   for (; MaxBin > 0; --MaxBin) {
     if (hist->GetBinContent(MaxBin) > 0) {
       break;
     }
   }
 
-  // bins in hist are counted from 1 to 1024, but actual X value for those bins are 0-1023
+  // bins in hist are counted from 1 to m_i_ADCmax + 1, but actual X value for those bins are 0-m_i_ADCmax
 
   // if there is nothing in first half of histogram
   // or there is nothing in second half and there is a sharp edge at 512
   // it can be that upper most bit is stuck in 0 or 1
-  if (MinBin == 513 || (MaxBin == 512 && hist->GetBinContent(MaxBin) > 3)) {
+  if (MinBin == (m_i_ADCmax + 1) / 2 + 1 || (MaxBin == (m_i_ADCmax + 1) / 2 && hist->GetBinContent(MaxBin) > 3)) {
     ++NSB;
     // std::cout << "Bit 9 is stuck" << std::endl;
   }
@@ -1262,7 +1287,7 @@ int TileDigitsMonTool::stuckBits(TH1S * hist, int adc) {
 
         if (EndBin > MinBin) {
           for (int bin = BeginBin; bin < EndBin; ++bin) {
-            //bin is from 0 to 1023 here - must be changed in GetBunConent to (bin+1)
+            //bin is from 0 to m_i_ADCmax here - must be changed in GetBinConent to (bin+1)
             if (MinBin < (bin + 1) && (bin + 1) < MaxBin) {
               sum += hist->GetBinContent(bin + 1);
               ++bin_counter;
@@ -1301,15 +1326,15 @@ int TileDigitsMonTool::stuckBits(TH1S * hist, int adc) {
  if (hb < 9) {
  int hyp_pos = hp;
  int hyp_bit = hb;
- int max_Nsample = 1024/(1<<(hyp_bit+1));
+ int max_Nsample = (m_i_ADCmax + 1)/(1<<(hyp_bit+1));
  for (int bin_sample = 0; bin_sample < max_Nsample; ++bin_sample) {
  //beginning of sample in histogram
  int BeginBin = (1 - hyp_pos)*(1<<hyp_bit)+bin_sample*(1<<(hyp_bit+1));
  //end of sample in histogram
  int EndBin = BeginBin + (1<<hyp_bit);
  for (int bin = BeginBin; bin < EndBin; ++bin) {
- //variable bin from 0 to 1023 - must be changed in GetBunConent to (bin+1)
- if ((bin+1) < 1025) hist->SetBinContent(bin+1,0);
+ //variable bin from 0 to m_i_ADCmax - must be changed in GetBunConent to (bin+1)
+ if ((bin+1) < m_i_ADCmax + 2) hist->SetBinContent(bin+1,0);
  }
  }
  }
@@ -1335,10 +1360,10 @@ int TileDigitsMonTool::stuckBits_Amp(TH1S * hist, int /*adc*/) {
   }
   cp = hist->GetBinContent(1);
   f = !!cp;
-  for (i = 1; i < 1024; i++) {
+  for (i = 1; i < m_i_ADCmax + 1; i++) {
     cm = cc;
     c = cc = cp;
-    cp = (i < 1023) ? hist->GetBinContent(i + 2) : 0;
+    cp = (i < m_i_ADCmax) ? hist->GetBinContent(i + 2) : 0;
     prob = 1.;
     if (c > 0 && c < 0.125 * (cp + cm - std::sqrt((double) cp) - std::sqrt((double) cm))) {
       prob = 1. - (double) c / (0.125 * (cp + cm - std::sqrt((double) cp) - std::sqrt((double) cm)));
@@ -1391,14 +1416,14 @@ int TileDigitsMonTool::stuckBits_Amp2(TH1S * hist, int /*adc*/, TH2C *outhist, i
   cp = hist->GetBinContent(1);
   f = !!cp;
   if (f) first_non0 = 0;
-  for (last_non0 = 1023; last_non0 >= 0; last_non0--)
+  for (last_non0 = m_i_ADCmax; last_non0 >= 0; last_non0--)
     if (hist->GetBinContent(last_non0 + 1) > 0) break;
   if (last_non0 < 0) // empty histogram
     return 0;
   for (i = 1; i <= last_non0; i++) {
     cm = cc;
     c = cc = cp;
-    cp = (i < 1023) ? hist->GetBinContent(i + 2) : 0;
+    cp = (i < m_i_ADCmax) ? hist->GetBinContent(i + 2) : 0;
     if (first_non0 < 0) {
       if (cc > 0)
         first_non0 = i;
@@ -1488,7 +1513,8 @@ int TileDigitsMonTool::stuckBits_Amp2(TH1S * hist, int /*adc*/, TH2C *outhist, i
       }
     }
   }
-  if ((first_non0 >= 512 && first_non0 < 1023) || (last_non0 == 511 && hist->GetBinContent(last_non0) > 3)) {
+  if ((first_non0 >= (m_i_ADCmax + 1) / 2 && first_non0 < m_i_ADCmax)
+      || (last_non0 == (m_i_ADCmax + 1) / 2 - 1 && hist->GetBinContent(last_non0) > 3)) {
     is_stack = 1;
     sb_prob[3] = 100.;
     if (stuck_probs != NULL)
@@ -1499,11 +1525,11 @@ int TileDigitsMonTool::stuckBits_Amp2(TH1S * hist, int /*adc*/, TH2C *outhist, i
     outhist->Fill((double) ch, 1., sb_prob[1]);
     outhist->Fill((double) ch, 2., sb_prob[2]);
     outhist->Fill((double) ch, 3., sb_prob[3]);
-    if (first_non0 == 1023)
+    if (first_non0 == m_i_ADCmax)
       outhist->Fill((double) ch, 5., 100.);
-    else if (last_non0 == 1023) {
+    else if (last_non0 == m_i_ADCmax) {
       double frac;
-      frac = 100. * (double) hist->GetBinContent(1024) / hist->GetEntries();
+      frac = 100. * (double) hist->GetBinContent(m_i_ADCmax + 1) / hist->GetEntries();
       if (frac > 0. && frac < 1.) frac = 1.;
       if (frac > 99. && frac < 100.) frac = 99.;
       outhist->Fill((double) ch, 5., frac);
@@ -1740,11 +1766,12 @@ void TileDigitsMonTool::shiftHisto(TH1S *hist, int ros, int drawer, int ch, int
   s.Search(hist, 2, "goff");
   int shift = int(s.GetPositionX()[0]);
   if (shift > 0) {
-    int xmax = std::max(1025, 846 + shift);
-    int xmin = std::max(1, shift + 50);
+    int factor = m_is12bit ? 4 : 1;
+    int xmax = std::max(1025 * factor, 846 * factor + shift);
+    int xmin = std::max(1, shift + 50 * factor);
     for (int bin = xmin; bin < xmax; ++bin) {
       double c = hist->GetBinContent(bin);
-      if (c > 0) m_data->m_shifted_hist[ros][drawer][ch][gain]->SetBinContent(bin - shift - 50, c);
+      if (c > 0) m_data->m_shifted_hist[ros][drawer][ch][gain]->SetBinContent(bin - shift - 50 * factor, c);
     }
   }
 }
@@ -1756,9 +1783,9 @@ void TileDigitsMonTool::statTestHistos(int ros, int drawer, int gain)
 {
   std::vector<TH1S*> refbld;
   std::vector<TH1S*> newrefbld;
-  TH1F *ref = new TH1F("ref", "ref", 796, 0., 796.);
+  TH1F *ref = new TH1F("ref", "ref", m_shiftnbins, 0., m_shiftnbins);
   ref->SetDirectory(0);
-  TH1F *ref1 = new TH1F("ref1", "ref1", 796, 0., 796.);
+  TH1F *ref1 = new TH1F("ref1", "ref1", m_shiftnbins, 0., m_shiftnbins);
   ref1->SetDirectory(0);
 
   for (int i = 0; i < 48; i++) {
diff --git a/TileCalorimeter/TileMonitoring/src/TileMBTSMonTool.cxx b/TileCalorimeter/TileMonitoring/src/TileMBTSMonTool.cxx
index a5a4917ddc7..04e522655c9 100644
--- a/TileCalorimeter/TileMonitoring/src/TileMBTSMonTool.cxx
+++ b/TileCalorimeter/TileMonitoring/src/TileMBTSMonTool.cxx
@@ -19,6 +19,7 @@
 #include "TileEvent/TileCell.h"
 #include "TileEvent/TileContainer.h"
 #include "TileEvent/TileDigitsContainer.h"
+#include "TileConditions/TileInfo.h"
 
 #include "TrigConfL1Data/TriggerItem.h"
 #include "TrigT1Result/CTP_RDO.h"
@@ -91,6 +92,7 @@ TileMBTSMonTool::TileMBTSMonTool(	const std::string & type, const std::string &
   , m_counterExist(32, false)
   , m_old_lumiblock(-1)
   , m_nLumiblocks(3000)
+  , m_tileInfo(0)
 {
   declareInterface<IMonitorToolBase>(this);
   declareProperty("LVL1ConfigSvc", m_lvl1ConfigSvc, "LVL1 Config Service");
@@ -99,6 +101,7 @@ TileMBTSMonTool::TileMBTSMonTool(	const std::string & type, const std::string &
   declareProperty("UseTrigger", m_useTrigger = true); // Switch for using trigger information
   declareProperty("FillHistogramsPerMBTS", m_fillHistogramsPerMBTS = true); // Switch for using per MBTS histograms
   declareProperty("NumberOfLumiblocks", m_nLumiblocks = 3000);
+  declareProperty("TileInfoName", m_infoName = "TileInfo");
   declareProperty("TileDQstatus", m_DQstatusKey = "TileDQstatus");
 
   m_path = "/Tile/MBTS";
@@ -162,6 +165,8 @@ StatusCode TileMBTSMonTool:: initialize(){
 	
   CHECK( m_TileDigitsContainerID.initialize() );
   CHECK( m_MBTSCellContainerID.initialize() );
+  CHECK( detStore()->retrieve(m_tileInfo, m_infoName) );
+  m_i_ADCmax = m_tileInfo->ADCmax();
   CHECK( m_DQstatusKey.initialize() );
 
   return StatusCode::SUCCESS;
@@ -921,7 +926,7 @@ StatusCode TileMBTSMonTool::fillHistograms() {
                 if (dsize > 0) {
                   double ped;
                   int maxSamp = 0;
-                  int minSamp = 1023;
+                  int minSamp = m_i_ADCmax;
                   ped = vdigits[0];
                   for (unsigned int i = 0; i < dsize; ++i) {
                     double dig = vdigits[i];
diff --git a/TileCalorimeter/TileMonitoring/src/TileRawChannelMonTool.cxx b/TileCalorimeter/TileMonitoring/src/TileRawChannelMonTool.cxx
index f7e20c09025..aa2043a05f7 100644
--- a/TileCalorimeter/TileMonitoring/src/TileRawChannelMonTool.cxx
+++ b/TileCalorimeter/TileMonitoring/src/TileRawChannelMonTool.cxx
@@ -18,6 +18,7 @@
 #include "TileConditions/TileCondToolEmscale.h"
 #include "TileEvent/TileDigitsContainer.h" 
 #include "TileEvent/TileRawChannelContainer.h"
+#include "TileConditions/TileInfo.h"
 #include "StoreGate/ReadHandle.h"
 
 #include "TH1S.h"
@@ -45,6 +46,7 @@ TileRawChannelMonTool::TileRawChannelMonTool(const std::string & type, const std
   , m_nEvents(0)
   , m_calibUnit(TileRawChannelUnit::Invalid)
   , m_drawHists(true)
+  , m_tileInfo(0)
 
 /*---------------------------------------------------------*/
 {
@@ -74,6 +76,7 @@ TileRawChannelMonTool::TileRawChannelMonTool(const std::string & type, const std
   declareProperty("ResetAfterSummaryUpdate", m_resetAfterSummaryUpdate = false);
   declareProperty("DoLaserSummaryVsPMT", m_doLaserSummaryVsPMT = false);
   declareProperty("MinAmpForCorrectedTime", m_minAmpForCorrectedTime = 0.5);
+  declareProperty("TileInfoName", m_infoName = "TileInfo");
   declareProperty("TileDQstatus", m_DQstatusKey = "TileDQstatus");
 }
 
@@ -101,6 +104,9 @@ StatusCode TileRawChannelMonTool::initialize()
 
   CHECK(TilePaterMonTool::initialize());
 
+  CHECK( detStore()->retrieve(m_tileInfo, m_infoName) );
+  if (m_tileInfo->ADCmax() == 4095) m_is12bit = true;
+  
   CHECK( m_DQstatusKey.initialize() );
 
   return StatusCode::SUCCESS;
@@ -207,14 +213,17 @@ void TileRawChannelMonTool::bookHists(int ros, int drawer)
         if (m_book2D) {
           std::string Hist2DName[4] = { "_amp_vs_q_100", "_amp_vs_q_5", "_time_vs_time_100", "_time_vs_time_5" };
           std::string Hist2DTitle[4] = { " amp vs charge 100 pF", " amp vs charge 5 pF", " time vs time 100 pF", " time vs time 5 pF" };
+	  float factor_charge = m_is12bit ? 2. : 1.;
+	  float factor_adc    = m_is12bit ? 4. : 1.;
+	  // Below, static_cast<float> is used to avoid warnings from -Wnarrowing
           float LowX_low2D[4] = { -4., -0.5, -0.25, -0.25 };
           float HighX_low2D[4] = { 804., 50.5, 25.25, 25.25 };
-          float LowX_hi2D[4] = { -0.0625, -0.0625, -0.25, -0.25 };
-          float HighX_hi2D[4] = { 12.5625, 12.5625, 25.25, 25.25 };
+          float LowX_hi2D[4] = { static_cast<float>(-0.0625 * factor_charge), static_cast<float>(-0.0625 * factor_charge), -0.25, -0.25 };
+          float HighX_hi2D[4] = { static_cast<float>(12.5625 * factor_charge), static_cast<float>(12.5625 * factor_charge), 25.25, 25.25 };
           float LowY_low2D[4] = { -25., -5.3125, -64.0, -64.0 };
           float HighY_low2D[4] = { 1025., 60.3125, 32.0, 32.0 };
-          float LowY_hi2D[4] = { -25., -25., -64.0, -64.0 };
-          float HighY_hi2D[4] = { 1025., 1025., 32.0, 32.0 };
+          float LowY_hi2D[4] = { static_cast<float>(-25. * factor_adc), static_cast<float>(-25. * factor_adc), -64.0, -64.0 };
+          float HighY_hi2D[4] = { static_cast<float>(1025. * factor_adc), static_cast<float>(1025. * factor_adc), 32.0, 32.0 };
 
           for (int type = 0; type < 4; type++) {
 
diff --git a/TileCalorimeter/TileRecAlgs/src/TileCellSelector.cxx b/TileCalorimeter/TileRecAlgs/src/TileCellSelector.cxx
index aeb8e378102..4449d00c40e 100644
--- a/TileCalorimeter/TileRecAlgs/src/TileCellSelector.cxx
+++ b/TileCalorimeter/TileRecAlgs/src/TileCellSelector.cxx
@@ -11,6 +11,7 @@
 #include "TileCalibBlobObjs/TileCalibUtils.h"
 #include "TileConditions/TileCablingService.h"
 #include "TileConditions/ITileBadChanTool.h"
+#include "TileConditions/TileInfo.h"
 
 // Calo includes
 #include "CaloIdentifier/TileID.h"
@@ -58,6 +59,7 @@ TileCellSelector::TileCellSelector(const std::string& name, ISvcLocator* pSvcLoc
   , m_evtBCID(0)
   , m_tileFlag(0)
   , m_tileError(0)
+  , m_tileInfo(0)
 {
 
   declareProperty( "MinEnergyCell", m_minEneCell = -5000.);   // cut on cell energy
@@ -125,6 +127,9 @@ TileCellSelector::TileCellSelector(const std::string& name, ISvcLocator* pSvcLoc
   declareProperty( "MaxVerboseCnt",m_maxVerboseCnt=20); // max number of verbose output lines about drawer off
 
   declareProperty("TileBadChanTool", m_tileBadChanTool);
+
+  declareProperty("TileInfoName", m_infoName = "TileInfo");
+
   declareProperty("TileDQstatus", m_dqStatusKey = "TileDQstatus");
 }
 
@@ -143,6 +148,10 @@ StatusCode TileCellSelector::initialize() {
   ATH_CHECK(detStore()->retrieve(m_tileID, "TileID"));
   ATH_CHECK(detStore()->retrieve(m_tileHWID, "TileHWID"));
 
+  ATH_CHECK(detStore()->retrieve(m_tileInfo, m_infoName));
+  m_ADCmaxMinusEps = m_tileInfo->ADCmax() - 0.01;
+  m_ADCmaskValueMinusEps = m_tileInfo->ADCmaskValue() - 0.01;  // indicates channels which were masked in background dataset
+
   m_cabling = TileCablingService::getInstance();
 
   ATH_CHECK(m_tileBadChanTool.retrieve());
@@ -1478,7 +1487,7 @@ StatusCode TileCellSelector::execute() {
                            (m_skipEmpty && chEmpty > 0) );
             bool checkCh = !( (m_skipMasked && m_chanBad[hash]) ) && useCh && m_checkJumps;
 
-            int err = TileRawChannelBuilder::CorruptedData(ros,drawer,channel,adc,samples,dmin,dmax);
+            int err = TileRawChannelBuilder::CorruptedData(ros,drawer,channel,adc,samples,dmin,dmax,m_ADCmaxMinusEps,m_ADCmaskValueMinusEps);
 
             if (badname[0]==0) {
               if (err && err>-3) { // do not consider all zeros in empty samples as error
@@ -1510,7 +1519,7 @@ StatusCode TileCellSelector::execute() {
               }
             }
 
-            if (dmax > 1022.99 && (!err)  // overflow without bad patterns
+            if (dmax > m_ADCmaxMinusEps && (!err)  // overflow without bad patterns
                 && (useCh)                // normal connected channel
                 && (badname[0] == 0 || badname[1] == 'w' // no digital error
                 || (badname[4] == 'Q' && !m_skipMasked))) { // error from TileCell but it is ignored
@@ -1647,7 +1656,7 @@ StatusCode TileCellSelector::execute() {
                   }
                   jumpZer = true;
                 }
-                if (dmax > 1022.9) {
+                if (dmax > m_ADCmaxMinusEps) {
                   if (!accJump) {
                     ++nJump;
                     accJump = true;
@@ -1712,7 +1721,7 @@ StatusCode TileCellSelector::execute() {
             } else if (m_chanSel[hash]) {
               bool accEmin = (m_chanEne[hash] < m_minEneChan[ch_type]);
               bool accEmax = (m_chanEne[hash] > m_maxEneChan[ch_type]);
-              bool jumpOve = (dmax>1022.9);
+              bool jumpOve = (dmax>m_ADCmaxMinusEps);
               ATH_MSG_VERBOSE(evtnum.str()
                               << " chan " << std::left << std::setw(14) << m_tileHWID->to_string(adcId)
                               << enename << m_chanEne[hash] << "  samp = " << samples[0]
@@ -1806,8 +1815,7 @@ StatusCode TileCellSelector::execute() {
                 float dmin, dmax;
 
                 int err = TileRawChannelBuilder::CorruptedData(ros, drawer,
-                    channel, adc, samples, dmin, dmax);
-
+							       channel, adc, samples, dmin, dmax, m_ADCmaxMinusEps,m_ADCmaskValueMinusEps);
                 if (err) {
                   bool isConnected = (chEmpty < 2);
                   if (isConnected || err != -2) {
@@ -1841,7 +1849,7 @@ StatusCode TileCellSelector::execute() {
 
                 bool accEmin = (m_chanEne[hash]<m_minEneChan[ch_type]);
                 bool accEmax = (m_chanEne[hash]>m_maxEneChan[ch_type]);
-                bool jumpOve = (dmax > 1022.9);
+                bool jumpOve = (dmax > m_ADCmaxMinusEps);
 
                 ATH_MSG_VERBOSE(evtnum.str()
                                 << " chan " << std::left << std::setw(14) << m_tileHWID->to_string(adcId)
@@ -2035,14 +2043,14 @@ int TileCellSelector::Are3FF(std::vector<float> & OptFilterDigits, int gain, int
       if (dig > dmax) dmax = dig;
       else if (dig < dmin) dmin = dig;
     }
-    allSaturated = (dmin > 1022.99);
+    allSaturated = (dmin > m_ADCmaxMinusEps);
 
     // FIXME:: set these parameters from JobOptions
     // FIXME:: move this method to base class 
     const float epsilon = 4.1; // allow +/- 2 counts fluctuations around const value
     const float delta[4] = {29.9, 29.9, 49.9, 99.9};  // jump levels between constLG, constHG, non-constLG, non-constHG
     const float level0 = 29.9; // jump from this level to zero is bad
-    const float level1 = 99.9; // jump from this level to 1023 is bad 
+    const float level1 = 99.9; // jump from this level to m_tileInfo->ADCmax() is bad 
     const float level2 = 199.9; // base line at this level is bad
     const float delt = std::min(std::min(std::min(delta[0], delta[1]), std::min(delta[2], delta[3])), level0);
 
@@ -2075,11 +2083,11 @@ int TileCellSelector::Are3FF(std::vector<float> & OptFilterDigits, int gain, int
         gain += 2; // shift index by 2, i.e. use thresholds for non-const levels
       }
 
-      if (dmin < 0.01 && dmax > 1022.99) { // jump from zero to saturation
+      if (dmin < 0.01 && dmax > m_ADCmaxMinusEps) { // jump from zero to saturation
         error = 1;
       } else if (dmin < 0.01 && abovemin > level0 && nmin > 1) { // at least two samples at zero, others - above pedestal
         error = 2;
-      } else if (dmax > 1022.99 && belowmax < level1 && nmax > 1) { // at least two saturated. others - close to pedestal
+      } else if (dmax > m_ADCmaxMinusEps && belowmax < level1 && nmax > 1) { // at least two saturated. others - close to pedestal
         error = 3;
       } else if (dmin>level2 && (gain==0 || ch_type<2) ) { // baseline above threshold is bad
         error = 9;                                         // but should not apply that to MBTS
diff --git a/TileCalorimeter/TileRecAlgs/src/TileCellSelector.h b/TileCalorimeter/TileRecAlgs/src/TileCellSelector.h
index c4356cddcec..a65f16bbfcb 100644
--- a/TileCalorimeter/TileRecAlgs/src/TileCellSelector.h
+++ b/TileCalorimeter/TileRecAlgs/src/TileCellSelector.h
@@ -32,6 +32,7 @@ class TileHWID;
 class TileCell;
 class TileCablingService;
 class ITileBadChanTool;
+class TileInfo;
 
 
 /////////////////////////////////////////////////////////////////////////////
@@ -162,6 +163,11 @@ class TileCellSelector: public AthAlgorithm {
 
     int m_maxVerboseCnt;
     std::vector<int> m_nDrawerOff;
+
+    std::string m_infoName;
+    const TileInfo* m_tileInfo;
+    float m_ADCmaxMinusEps;
+    float m_ADCmaskValueMinusEps;
 };
 
 #endif // TILERECALGS_TILESELECTOR_H
diff --git a/TileCalorimeter/TileRecAlgs/src/TileRawChannelToTTL1.cxx b/TileCalorimeter/TileRecAlgs/src/TileRawChannelToTTL1.cxx
index 61d2d175dc5..7b547a696bf 100644
--- a/TileCalorimeter/TileRecAlgs/src/TileRawChannelToTTL1.cxx
+++ b/TileCalorimeter/TileRecAlgs/src/TileRawChannelToTTL1.cxx
@@ -241,7 +241,7 @@ StatusCode TileRawChannelToTTL1::execute() {
           if (status.contains(TileBchPrbs::VeryLargeHfNoise)) {
             hwid = m_tileHWID->adc_id(m_tileHWID->channel_id(hwid), adc);
             float amp = m_tileToolEmscale->channelCalib(drawerIdx,
-                channel, adc, 1023., TileRawChannelUnit::ADCcounts, rChUnit);
+							channel, adc, double(m_tileInfo->ADCmax()), TileRawChannelUnit::ADCcounts, rChUnit);
             *pRch = TileRawChannel (hwid,
                                     amp,
                                     0.0, // time
diff --git a/TileCalorimeter/TileRecUtils/TileRecUtils/TileCellBuilder.h b/TileCalorimeter/TileRecUtils/TileRecUtils/TileCellBuilder.h
index a01336cb2a1..d4a35d2ffb6 100644
--- a/TileCalorimeter/TileRecUtils/TileRecUtils/TileCellBuilder.h
+++ b/TileCalorimeter/TileRecUtils/TileRecUtils/TileCellBuilder.h
@@ -68,6 +68,7 @@ class TileDetDescrManager;
 class TileCellCollection;
 class CaloCellContainer;
 class TileDQstatus;
+class TileInfo;
 
 
 
@@ -159,7 +160,6 @@ private:
                                                              "Output Tile E4 prime container key"};
 
 
-    std::string m_infoName;
     std::string m_dspRawChannelContainer;
 
     float m_eneForTimeCut;        //!< keep time for channels with energy above cut
@@ -377,6 +377,12 @@ private:
     int m_towerE1 = E1_TOWER;
     bool m_notUpgradeCabling;
     bool m_run2;
+
+    // TileInfo
+    std::string m_infoName;
+    const TileInfo* m_tileInfo;
+    float m_ADCmaskValueMinusEps;
+    float m_ADCmaskValuePlusEps;
     bool m_run2plus;
 };
 
diff --git a/TileCalorimeter/TileRecUtils/TileRecUtils/TileRawChannelBuilder.h b/TileCalorimeter/TileRecUtils/TileRecUtils/TileRawChannelBuilder.h
index 0fe294c8f70..c35b7d9dd69 100644
--- a/TileCalorimeter/TileRecUtils/TileRecUtils/TileRawChannelBuilder.h
+++ b/TileCalorimeter/TileRecUtils/TileRecUtils/TileRawChannelBuilder.h
@@ -123,7 +123,7 @@ class TileRawChannelBuilder: public AthAlgTool {
     static double correctTime( double phase, bool of2 = true); //!< Time correction factor
 
     static int CorruptedData(int ros, int drawer, int channel, int gain,
-        const std::vector<float> & digits, float &dmin, float &dmax);
+			     const std::vector<float> & digits, float &dmin, float &dmax, float ADCmaxMinusEps, float ADCmaskValueMinusEps);
 
     static const char* BadPatternName(float ped);
 
@@ -180,7 +180,6 @@ class TileRawChannelBuilder: public AthAlgTool {
     // Tile objects
     const TileID* m_tileID;
     const TileHWID* m_tileHWID;
-    const TileInfo* m_tileInfo;
 
     ToolHandleArray<ITileRawChannelTool> m_noiseFilterTools{this,
         "NoiseFilterTools", {}, "Tile noise filter tools"};
@@ -229,6 +228,16 @@ class TileRawChannelBuilder: public AthAlgTool {
     
     bool m_notUpgradeCabling;
 
+    // TileInfo
+    std::string m_infoName;
+    const TileInfo* m_tileInfo;
+    int m_i_ADCmax;
+    float m_f_ADCmax;
+    int m_i_ADCmaxPlus1;
+    float m_f_ADCmaxPlus1;
+    float m_ADCmaxMinusEps;
+    float m_ADCmaskValueMinusEps; //!< indicates channels which were masked in background dataset
+
 private:
     // find all bad patterns in a drawer and fill internal static arrays
     void fill_drawer_errors(const EventContext& ctx,
diff --git a/TileCalorimeter/TileRecUtils/TileRecUtils/TileRawChannelBuilderMF.h b/TileCalorimeter/TileRecUtils/TileRecUtils/TileRawChannelBuilderMF.h
index 21957054fad..594a0185f7d 100644
--- a/TileCalorimeter/TileRecUtils/TileRecUtils/TileRawChannelBuilderMF.h
+++ b/TileCalorimeter/TileRecUtils/TileRecUtils/TileRawChannelBuilderMF.h
@@ -27,7 +27,6 @@
 #include "TileConditions/TileCondToolNoiseSample.h"
 
 class TileHWID;
-class TileInfo;
 //class TileFilterManager;
 
 class TileRawChannelBuilderMF: public TileRawChannelBuilder {
diff --git a/TileCalorimeter/TileRecUtils/TileRecUtils/TileRawChannelMaker.h b/TileCalorimeter/TileRecUtils/TileRecUtils/TileRawChannelMaker.h
index 3c1839a7796..04c358ce971 100644
--- a/TileCalorimeter/TileRecUtils/TileRecUtils/TileRawChannelMaker.h
+++ b/TileCalorimeter/TileRecUtils/TileRecUtils/TileRawChannelMaker.h
@@ -37,6 +37,7 @@
 
 
 class TileRawChannelBuilder;
+class TileInfo;
 
 class TileRawChannelMaker: public AthAlgorithm {
 
@@ -77,5 +78,11 @@ class TileRawChannelMaker: public AthAlgorithm {
     float m_overflowReplaceTimeCut;
     float m_overflowReplacePedestalCut;
     float m_overflowReplaceChi2Cut;
+
+    // TileInfo
+    std::string m_infoName;
+    const TileInfo* m_tileInfo;
+    float m_ADCmaxMinusEps;
+
 };
 #endif
diff --git a/TileCalorimeter/TileRecUtils/TileRecUtils/TileRawChannelNoiseFilter.h b/TileCalorimeter/TileRecUtils/TileRecUtils/TileRawChannelNoiseFilter.h
index a15dfc55dbd..b4936c8c394 100644
--- a/TileCalorimeter/TileRecUtils/TileRecUtils/TileRawChannelNoiseFilter.h
+++ b/TileCalorimeter/TileRecUtils/TileRecUtils/TileRawChannelNoiseFilter.h
@@ -29,6 +29,7 @@ class TileHWID;
 class TileRawChannel;
 class TileRawChannelContainer;
 class TileRawChannelCollection;
+class TileInfo;
 
 /**
  @class TileRawChannelNoiseFilter
@@ -77,6 +78,10 @@ class TileRawChannelNoiseFilter: public extends<AthAlgTool, ITileRawChannelTool>
     bool m_useTwoGaussNoise;
     bool m_useGapCells;
     float m_maxNoiseSigma;
+    // TileInfo
+    std::string m_infoName;
+    const TileInfo* m_tileInfo;
+    float m_ADCmaskValueMinusEps; //!< indicates channels which were masked in background dataset
 };
 
 #endif // TILERAWCHANNELNOISEFILTER_H
diff --git a/TileCalorimeter/TileRecUtils/python/TileCellBuilderConfig.py b/TileCalorimeter/TileRecUtils/python/TileCellBuilderConfig.py
index 35f5011db31..9b951e3ea6a 100644
--- a/TileCalorimeter/TileRecUtils/python/TileCellBuilderConfig.py
+++ b/TileCalorimeter/TileRecUtils/python/TileCellBuilderConfig.py
@@ -29,6 +29,9 @@ def TileCellBuilderCfg(flags, **kwargs):
     from TileGeoModel.TileGMConfig import TileGMCfg
     acc.merge(TileGMCfg(flags))
 
+    from TileConditions.TileInfoLoaderConfig import TileInfoLoaderCfg
+    acc.merge( TileInfoLoaderCfg(flags) )
+
     from TileConditions.TileCablingSvcConfig import TileCablingSvcCfg
     acc.merge(TileCablingSvcCfg(flags))
 
diff --git a/TileCalorimeter/TileRecUtils/python/TileRawChannelCorrectionConfig.py b/TileCalorimeter/TileRecUtils/python/TileRawChannelCorrectionConfig.py
index 99ad7632ae0..4a5c5e6509f 100644
--- a/TileCalorimeter/TileRecUtils/python/TileRawChannelCorrectionConfig.py
+++ b/TileCalorimeter/TileRecUtils/python/TileRawChannelCorrectionConfig.py
@@ -63,6 +63,9 @@ def TileRawChannelNoiseFilterCfg(flags, **kwargs):
     from TileRecUtils.TileDQstatusConfig import TileDQstatusAlgCfg
     acc.merge( TileDQstatusAlgCfg(flags) )
 
+    from TileConditions.TileInfoLoaderConfig import TileInfoLoaderCfg
+    acc.merge( TileInfoLoaderCfg(flags) )
+
     if 'TileCondToolEmscale' not in kwargs:
         from TileConditions.TileEMScaleConfig import TileCondToolEmscaleCfg
         emScaleTool = acc.popToolsAndMerge( TileCondToolEmscaleCfg(flags) )
diff --git a/TileCalorimeter/TileRecUtils/python/TileRawChannelMakerConfig.py b/TileCalorimeter/TileRecUtils/python/TileRawChannelMakerConfig.py
index a53dbc2ea45..96d0525d4e2 100644
--- a/TileCalorimeter/TileRecUtils/python/TileRawChannelMakerConfig.py
+++ b/TileCalorimeter/TileRecUtils/python/TileRawChannelMakerConfig.py
@@ -13,6 +13,9 @@ def TileRawChannelMakerCfg(flags, **kwargs):
 
     acc = ComponentAccumulator()
 
+    from TileConditions.TileInfoLoaderConfig import TileInfoLoaderCfg
+    acc.merge( TileInfoLoaderCfg(flags) )
+
     kwargs.setdefault('name', 'TileRChMaker')
     name = kwargs['name']
 
diff --git a/TileCalorimeter/TileRecUtils/share/TileCellBuilderFromHit_test.ref b/TileCalorimeter/TileRecUtils/share/TileCellBuilderFromHit_test.ref
index 310012821da..b81a8035969 100644
--- a/TileCalorimeter/TileRecUtils/share/TileCellBuilderFromHit_test.ref
+++ b/TileCalorimeter/TileRecUtils/share/TileCellBuilderFromHit_test.ref
@@ -1,16 +1,16 @@
-Tue Aug  6 21:36:02 CEST 2019
+Fri Nov 29 11:05:44 CET 2019
 Preloading tcmalloc_minimal.so
 Py:Athena            INFO including file "AthenaCommon/Preparation.py"
-Py:Athena            INFO using release [WorkDir-22.0.3] [x86_64-centos7-gcc8-opt] [atlas-work3/da00b53be39] -- built on [2019-08-06T2037]
+Py:Athena            INFO using release [WorkDir-22.0.9] [x86_64-centos7-gcc8-opt] [tilecal-12bit/82699bf159] -- built on [2019-11-29T1101]
 Py:Athena            INFO including file "AthenaCommon/Atlas.UnixStandardJob.py"
 Py:Athena            INFO executing ROOT6Setup
 Py:Athena            INFO including file "AthenaCommon/Execution.py"
 Py:Athena            INFO including file "TileRecUtils/TileCellBuilderFromHit_test.py"
-SetGeometryVersion.py obtained major release version 22
+Py:Athena            INFO SetGeometryVersion.py obtained major release version 22
 Py:Athena            INFO including file "IdDictDetDescrCnv/IdDictDetDescrCnv_joboptions.py"
-Py:ConfigurableDb    INFO Read module info for 5520 configurables from 75 genConfDb files
+Py:ConfigurableDb    INFO Read module info for 5635 configurables from 11 genConfDb files
 Py:ConfigurableDb    INFO No duplicates have been found: that's good !
-EventInfoMgtInit: Got release version  Athena-22.0.3
+EventInfoMgtInit: Got release version  Athena-22.0.9
 Py:IOVDbSvc.CondDB    INFO Setting up conditions DB access to instance OFLP200
 Py:Athena            INFO including file "TileConditions/TileConditions_jobOptions.py"
 Py:TileInfoConf.     INFO Adding TileCablingSvc to ServiceMgr
@@ -22,20 +22,22 @@ Py:TileInfoConf.     INFO Changing default TileCondToolEmscale configuration to
 Py:TileInfoConf.     INFO Changing default TileCondToolNoiseSample configuration to COOL source
 Py:TileInfoConf.     INFO Changing default TileCondToolTiming configuration to COOL source
 Py:TileConditions_jobOptions.py    INFO Adjusting TileInfo to return cell noise for Opt.Filter without iterations
+Py:TileConditions_jobOptions.py    INFO Setting 10-bit ADC configuration
+Py:TileInfoConf.     INFO Setting 10-bit Tile ADC
 Py:Athena            INFO including file "AthenaCommon/runbatch.py"
 ApplicationMgr       INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0
 ApplicationMgr       INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0
 ApplicationMgr    SUCCESS 
 ====================================================================================================================================
-                                                   Welcome to ApplicationMgr (GaudiCoreSvc v32r0)
-                                          running on lxplus724.cern.ch on Tue Aug  6 21:36:12 2019
+                                                   Welcome to ApplicationMgr (GaudiCoreSvc v32r2)
+                                          running on pcpraha5 on Fri Nov 29 11:05:50 2019
 ====================================================================================================================================
 ApplicationMgr       INFO Application Manager Configured successfully
 ApplicationMgr       INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0
 StatusCodeSvc        INFO initialize
 AthDictLoaderSvc     INFO in initialize...
 AthDictLoaderSvc     INFO acquired Dso-registry
-ClassIDSvc           INFO  getRegistryEntries: read 7068 CLIDRegistry entries for module ALL
+ClassIDSvc           INFO  getRegistryEntries: read 7151 CLIDRegistry entries for module ALL
 CoreDumpSvc          INFO install f-a-t-a-l handler... (flag = -1)
 CoreDumpSvc          INFO Handling signals: 11(Segmentation fault) 7(Bus error) 4(Illegal instruction) 8(Floating point exception) 
 MetaDataSvc          INFO Initializing MetaDataSvc - package version AthenaServices-00-00-00
@@ -44,8 +46,8 @@ PoolSvc              INFO io_register[PoolSvc](xmlcatalog_file:PoolFileCatalog.x
 PoolSvc              INFO Set connectionsvc retry/timeout/IDLE timeout to  'ConnectionRetrialPeriod':300/ 'ConnectionRetrialTimeOut':3600/ 'ConnectionTimeOut':5 seconds with connection cleanup disabled
 PoolSvc              INFO Frontier compression level set to 5
 DBReplicaSvc         INFO Frontier server at (serverurl=http://atlasfrontier-local.cern.ch:8000/atlr)(serverurl=http://atlasfrontier-ai.cern.ch:8000/atlr)(serverurl=http://lcgft-atlas.gridpp.rl.ac.uk:3128/frontierATLAS)(serverurl=http://ccfrontier.in2p3.fr:23128/ccin2p3-AtlasFrontier)(proxyurl=http://ca-proxy.cern.ch:3128)(proxyurl=http://ca-proxy-meyrin.cern.ch:3128)(proxyurl=http://ca-proxy-wigner.cern.ch:3128)(proxyurl=http://atlasbpfrontier.cern.ch:3127)(proxyurl=http://atlasbpfrontier.fnal.gov:3127) will be considered for COOL data
-DBReplicaSvc         INFO Read replica configuration from /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-05T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/dbreplica.config
-DBReplicaSvc         INFO Total of 10 servers found for host lxplus724.cern.ch [ATLF ATLAS_COOLPROD atlas_dd ATLAS_CONFIG INT8R INTR ATONR_COOL ATONR_CONF DEVDB11 ATLF ]
+DBReplicaSvc         INFO Read replica configuration from /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/dbreplica.config
+DBReplicaSvc         INFO Total of 10 servers found for host pcpraha5.dyndns.cern.ch [ATLF ATLAS_COOLPROD atlas_dd ATLAS_CONFIG INT8R INTR ATONR_COOL ATONR_CONF DEVDB11 ATLF ]
 PoolSvc              INFO Successfully setup replica sorting algorithm
 PoolSvc              INFO Setting up APR FileCatalog and Streams
 PoolSvc           WARNING Unable to locate catalog for prfile:poolcond/PoolCat_oflcond.xml check your ATLAS_POOLCOND_PATH and DATAPATH variables
@@ -82,8 +84,8 @@ IOVDbSvc             INFO Added taginfo remove for /TILE/OFL02/STATUS/ADC
 IOVDbSvc             INFO Added taginfo remove for /TILE/OFL02/TIME/CHANNELOFFSET/PHY
 IOVDbSvc             INFO Added taginfo remove for /TILE/ONL01/STATUS/ADC
 IOVDbSvc             INFO Added taginfo remove for /LAR/LArCellPositionShift
-ClassIDSvc           INFO  getRegistryEntries: read 1950 CLIDRegistry entries for module ALL
-ClassIDSvc           INFO  getRegistryEntries: read 17 CLIDRegistry entries for module ALL
+ClassIDSvc           INFO  getRegistryEntries: read 2007 CLIDRegistry entries for module ALL
+ClassIDSvc           INFO  getRegistryEntries: read 24 CLIDRegistry entries for module ALL
 DetDescrCnvSvc       INFO  initializing 
 DetDescrCnvSvc       INFO Found DetectorStore service
 DetDescrCnvSvc       INFO  filling proxies for detector managers 
@@ -118,8 +120,6 @@ DetDescrCnvSvc       INFO  filling address for MDTIDHELPER with CLID 4170 and st
 DetDescrCnvSvc       INFO  filling address for CSCIDHELPER with CLID 4171 and storage type 68 to detector store 
 DetDescrCnvSvc       INFO  filling address for RPCIDHELPER with CLID 4172 and storage type 68 to detector store 
 DetDescrCnvSvc       INFO  filling address for TGCIDHELPER with CLID 4173 and storage type 68 to detector store 
-DetDescrCnvSvc       INFO  filling address for STGCIDHELPER with CLID 4174 and storage type 68 to detector store 
-DetDescrCnvSvc       INFO  filling address for MMIDHELPER with CLID 4175 and storage type 68 to detector store 
 DetDescrCnvSvc       INFO  filling address for CaloLVL1_ID with CLID 108133391 and storage type 68 to detector store 
 DetDescrCnvSvc       INFO  filling address for CaloCell_ID with CLID 123500438 and storage type 68 to detector store 
 DetDescrCnvSvc       INFO  filling address for CaloCell_SuperCell_ID with CLID 128365736 and storage type 68 to detector store 
@@ -170,7 +170,7 @@ BarrelConstruction   INFO   Use sagging in geometry  ? 0
 EMECConstruction     INFO multi-layered version of absorbers activated, parameter value is 1
 EMECConstruction     INFO activating LAr::EMEC::Pos::InnerWheel
 EMECConstruction     INFO activating LAr::EMEC::Pos::OuterWheel
-ClassIDSvc           INFO  getRegistryEntries: read 2984 CLIDRegistry entries for module ALL
+ClassIDSvc           INFO  getRegistryEntries: read 2988 CLIDRegistry entries for module ALL
 CaloIDHelper_ID...   INFO in createObj: creating a TileTBID helper object in the detector store
 TileTBID             INFO initialize_from_dictionary 
 AtlasDetectorID      INFO initialize_from_dictionary - OK
@@ -188,7 +188,7 @@ TileDddbManager      INFO n_tilb = 21
 TileDddbManager      INFO n_tileSwitches = 1
 CaloIDHelper_ID...   INFO in createObj: creating a TileID helper object in the detector store
 AtlasDetectorID      INFO initialize_from_dictionary - OK
-TileNeighbour        INFO Reading file  /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-05T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/TileNeighbour_reduced.txt
+TileNeighbour        INFO Reading file  /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/TileNeighbour_reduced.txt
 TileHWIDDetDesc...   INFO in createObj: creating a TileHWID helper object in the detector store
 TileHWID             INFO initialize_from_dictionary 
 AtlasDetectorID      INFO initialize_from_dictionary - OK
@@ -200,9 +200,9 @@ CaloIDHelper_ID...   INFO in createObj: creating a LArHEC_ID helper object in th
 AtlasDetectorID      INFO initialize_from_dictionary - OK
 CaloIDHelper_ID...   INFO in createObj: creating a LArFCAL_ID helper object in the detector store
 AtlasDetectorID      INFO initialize_from_dictionary - OK
-LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-05T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/FCal2DNeighbors-April2011.txt
-LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-05T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/FCal3DNeighborsNext-April2011.txt
-LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-05T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/FCal3DNeighborsPrev-April2011.txt
+LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/FCal2DNeighbors-April2011.txt
+LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/FCal3DNeighborsNext-April2011.txt
+LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/FCal3DNeighborsPrev-April2011.txt
 CaloIDHelper_ID...   INFO in createObj: creating a LArMiniFCAL_ID helper object in the detector store
 AtlasDetectorID      INFO initialize_from_dictionary - OK
 LArMiniFCAL_ID       INFO  initialize_from_dict - LArCalorimeter dictionary does NOT contain miniFCAL description. Unable to initialize LArMiniFCAL_ID.
@@ -264,7 +264,7 @@ TileSampleNoise...   INFO Creating TileCondProxyCool(TileSampleNoiseCondAlg.Tile
 TileTimingCondA...   INFO Creating TileCondProxyCool(TileTimingCondAlg.TileCondProxyCool_AdcOffset) for folder: "/TILE/OFL02/TIME/CHANNELOFFSET/PHY"
 tilecellbuilder...   INFO ProxyOnlBch and ProxyOflBch will be used for bad channel status
 tilecellbuilder...   INFO ProxyOnlBch and ProxyOflBch will be used for bad channel status
-ClassIDSvc           INFO  getRegistryEntries: read 365 CLIDRegistry entries for module ALL
+ClassIDSvc           INFO  getRegistryEntries: read 380 CLIDRegistry entries for module ALL
 xAODMaker::Even...   INFO Initializing - Package version: xAODEventInfoCnv-00-00-00
 ClassIDSvc           INFO  getRegistryEntries: read 319 CLIDRegistry entries for module ALL
 xAODMaker::Even...   INFO Initializing - Package version: xAODEventInfoCnv-00-00-00
@@ -272,7 +272,7 @@ xAODMaker::Even...WARNING Beam conditions service not available
 xAODMaker::Even...WARNING Will not fill beam spot information into xAOD::EventInfo
 PyComponentMgr       INFO Initializing PyComponentMgr...
 testalg1             INFO Initializing testalg1...
-ClassIDSvc           INFO  getRegistryEntries: read 4693 CLIDRegistry entries for module ALL
+ClassIDSvc           INFO  getRegistryEntries: read 4706 CLIDRegistry entries for module ALL
 ToolSvc.tool1        INFO Storing MBTS cells in MBTSContainer
 ToolSvc.tool1        INFO Noise Sigma 0 MeV is selected!
 AtRndmGenSvc         INFO Initializing AtRndmGenSvc - package version RngComps-00-00-00
@@ -316,7 +316,7 @@ ApplicationMgr       INFO Application Manager Started successfully
 AthenaEventLoopMgr   INFO   ===>>>  start of run 1    <<<===
 EventPersistenc...   INFO Added successfully Conversion service:AthenaPoolCnvSvc
 EventPersistenc...   INFO Added successfully Conversion service:TagInfoMgr
-ClassIDSvc           INFO  getRegistryEntries: read 109 CLIDRegistry entries for module ALL
+ClassIDSvc           INFO  getRegistryEntries: read 114 CLIDRegistry entries for module ALL
 IOVDbSvc             INFO Opening COOL connection for COOLOFL_LAR/OFLP200
 IOVDbFolder          INFO HVS tag OFLCOND-RUN12-SDR-35 resolved to LARAlign-IOVDEP-00 for folder /LAR/Align
 IOVDbFolder          INFO HVS tag OFLCOND-RUN12-SDR-35 resolved to LArCellPositionShift-ideal for folder /LAR/LArCellPositionShift
@@ -326,7 +326,7 @@ Domain[ROOT_All]     INFO                           /cvmfs/atlas-condb.cern.ch/r
 RootDatabase.open    INFO /cvmfs/atlas-condb.cern.ch/repo/conditions/cond09/cond09_mc.000057.gen.COND/cond09_mc.000057.gen.COND._0001.pool.root File version:52200
 CaloMgrDetDescrCnv   INFO in createObj: creating a Calo Detector Manager object in the detector store
 CaloIdMgrDetDes...   INFO in createObj: creating a CaloDescrManager object in the detector store
-ClassIDSvc           INFO  getRegistryEntries: read 195 CLIDRegistry entries for module ALL
+ClassIDSvc           INFO  getRegistryEntries: read 198 CLIDRegistry entries for module ALL
 CaloIDHelper_ID...   INFO in createObj: creating a CaloDM_ID helper object in the detector store
 CaloDM_ID            INFO initialize_from_dictionary
 AtlasDetectorID      INFO initialize_from_dictionary - OK
@@ -340,12 +340,12 @@ CaloIDHelper_ID...   INFO in createObj: creating a LArHEC_SuperCell_ID helper ob
 AtlasDetectorID      INFO initialize_from_dictionary - OK
 CaloIDHelper_ID...   INFO in createObj: creating a LArFCAL_SuperCell_ID helper object in the detector store
 AtlasDetectorID      INFO initialize_from_dictionary - OK
-LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-05T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/FCalSuperCells2DNeighborsNew-April2014.txt
-LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-05T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/FCalSuperCells3DNeighborsNextNew-April2014.txt
-LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-05T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/FCalSuperCells3DNeighborsPrevNew-April2014.txt
+LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/FCalSuperCells2DNeighborsNew-April2014.txt
+LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/FCalSuperCells3DNeighborsNextNew-April2014.txt
+LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/FCalSuperCells3DNeighborsPrevNew-April2014.txt
 CaloIDHelper_ID...   INFO in createObj: creating a Tile_SuperCell_ID helper object in the detector store
 AtlasDetectorID      INFO initialize_from_dictionary - OK
-TileNeighbour        INFO Reading file  /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-05T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/TileSuperCellNeighbour.txt
+TileNeighbour        INFO Reading file  /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/TileSuperCellNeighbour.txt
 AtlasDetectorID      INFO initialize_from_dictionary - OK
 CaloIdMgrDetDes...   INFO  Finished 
 CaloIdMgrDetDes...   INFO Initializing CaloIdMgr from values in CaloIdMgrDetDescrCnv 
@@ -376,8 +376,8 @@ TileBadChannels...   INFO TileBchStatus::isNoGainL1() is defined by: ADC dead; N
 TileBadChannels...   INFO TileBchStatus::isBadTiming() is defined by: Bad timing; Online bad timing; 
 TileBadChannels...   INFO TileBchStatus::isWrongBCID() is defined by: Wrong BCID; Online wrong BCID; 
 TileBadChannels...   INFO No drawer trips probabilities found in DB
-tilecellbuilder...   INFO Creating TileCondProxyFile(tilecellbuilder_bct1Cond.tilecellbuilder_bct1_onl) for ASCII file name: "/cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-05T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/TileNoBad.oflBch"
-tilecellbuilder...   INFO Creating TileCondProxyFile(tilecellbuilder_bct1Cond.tilecellbuilder_bct1_ofl) for ASCII file name: "/cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-05T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/TileNoBad.oflBch"
+tilecellbuilder...   INFO Creating TileCondProxyFile(tilecellbuilder_bct1Cond.tilecellbuilder_bct1_onl) for ASCII file name: "/localscratch4/pleskot/tilecal/r22-tilecal-12bit/build/x86_64-centos7-gcc8-opt/share/TileNoBad.oflBch"
+tilecellbuilder...   INFO Creating TileCondProxyFile(tilecellbuilder_bct1Cond.tilecellbuilder_bct1_ofl) for ASCII file name: "/localscratch4/pleskot/tilecal/r22-tilecal-12bit/build/x86_64-centos7-gcc8-opt/share/TileNoBad.oflBch"
 tilecellbuilder...   INFO No TileBchStatus::isBad() definition found in DB, using defaults
 tilecellbuilder...   INFO No TileBchStatus::isNoisy() definition found in DB, using defaults
 tilecellbuilder...   INFO No TileBchStatus::isNoGainL1() definition found in DB, using defaults
@@ -389,8 +389,8 @@ tilecellbuilder...   INFO TileBchStatus::isNoGainL1() is defined by: ADC dead; N
 tilecellbuilder...   INFO TileBchStatus::isBadTiming() is defined by: Bad timing; Online bad timing; 
 tilecellbuilder...   INFO TileBchStatus::isWrongBCID() is defined by: Wrong BCID; Online wrong BCID; 
 tilecellbuilder...   INFO No drawer trips probabilities found in DB
-tilecellbuilder...   INFO Creating TileCondProxyFile(tilecellbuilder_bct2Cond.tilecellbuilder_bct2_onl) for ASCII file name: "/cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-05T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/TileNoBad.oflBch"
-tilecellbuilder...   INFO Creating TileCondProxyFile(tilecellbuilder_bct2Cond.tilecellbuilder_bct2_ofl) for ASCII file name: "/afs/cern.ch/work/s/ssnyder/builds/atlas-work3/build-x86_64-centos7-gcc8-opt/TileCalorimeter/TileRecUtils/CMakeFiles/unitTestRun/tilecellbuilder_bct2.bch"
+tilecellbuilder...   INFO Creating TileCondProxyFile(tilecellbuilder_bct2Cond.tilecellbuilder_bct2_onl) for ASCII file name: "/localscratch4/pleskot/tilecal/r22-tilecal-12bit/build/x86_64-centos7-gcc8-opt/share/TileNoBad.oflBch"
+tilecellbuilder...   INFO Creating TileCondProxyFile(tilecellbuilder_bct2Cond.tilecellbuilder_bct2_ofl) for ASCII file name: "/localscratch4/pleskot/tilecal/r22-tilecal-12bit/build/TileCalorimeter/TileRecUtils/CMakeFiles/unitTestRun/tilecellbuilder_bct2.bch"
 tilecellbuilder...   INFO No TileBchStatus::isBad() definition found in DB, using defaults
 tilecellbuilder...   INFO No TileBchStatus::isNoisy() definition found in DB, using defaults
 tilecellbuilder...   INFO No TileBchStatus::isNoGainL1() definition found in DB, using defaults
@@ -402,9 +402,9 @@ tilecellbuilder...   INFO TileBchStatus::isNoGainL1() is defined by: ADC dead; N
 tilecellbuilder...   INFO TileBchStatus::isBadTiming() is defined by: Bad timing; Online bad timing; 
 tilecellbuilder...   INFO TileBchStatus::isWrongBCID() is defined by: Wrong BCID; Online wrong BCID; 
 tilecellbuilder...   INFO No drawer trips probabilities found in DB
-ClassIDSvc           INFO  getRegistryEntries: read 875 CLIDRegistry entries for module ALL
-ClassIDSvc           INFO  getRegistryEntries: read 198 CLIDRegistry entries for module ALL
-ClassIDSvc           INFO  getRegistryEntries: read 8 CLIDRegistry entries for module ALL
+ClassIDSvc           INFO  getRegistryEntries: read 674 CLIDRegistry entries for module ALL
+ClassIDSvc           INFO  getRegistryEntries: read 204 CLIDRegistry entries for module ALL
+ClassIDSvc           INFO  getRegistryEntries: read 9 CLIDRegistry entries for module ALL
 AtRndmGenSvc         INFO  Stream =  Tile_DigitsMaker, Seed1 =  288581169, Seed2 = 758068585
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #1, run #1 1 events processed so far  <<<===
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #2, run #1 1 events processed so far  <<<===
@@ -426,23 +426,23 @@ IncidentProcAlg2     INFO Finalize
 AtRndmGenSvc         INFO  FINALISING 
 PyComponentMgr       INFO Finalizing PyComponentMgr...
 IdDictDetDescrCnv    INFO in finalize
-IOVDbFolder          INFO Folder /LAR/Align (PoolRef) db-read 1/1 objs/chan/bytes 1/1/170 ((     0.14 ))s
-IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/CES (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/103344 ((     0.13 ))s
-IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/CIS/FIT/LIN (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/80 ((     0.02 ))s
-IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/CIS/FIT/NLN (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/80 ((     0.02 ))s
-IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/EMS (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/92 ((     0.02 ))s
-IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/LAS/FIBER (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/940 ((     0.02 ))s
-IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/LAS/LIN (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/72 ((     0.02 ))s
-IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/LAS/NLN (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/76 ((     0.03 ))s
-IOVDbFolder          INFO Folder /TILE/OFL02/NOISE/SAMPLE (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/641476 ((     0.06 ))s
-IOVDbFolder          INFO Folder /TILE/OFL02/STATUS/ADC (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/97884 ((     0.05 ))s
+IOVDbFolder          INFO Folder /LAR/Align (PoolRef) db-read 1/1 objs/chan/bytes 1/1/170 ((     0.04 ))s
+IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/CES (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/103344 ((     0.05 ))s
+IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/CIS/FIT/LIN (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/80 ((     0.03 ))s
+IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/CIS/FIT/NLN (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/80 ((     0.03 ))s
+IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/EMS (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/92 ((     0.03 ))s
+IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/LAS/FIBER (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/940 ((     0.03 ))s
+IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/LAS/LIN (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/72 ((     0.03 ))s
+IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/LAS/NLN (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/76 ((     0.04 ))s
+IOVDbFolder          INFO Folder /TILE/OFL02/NOISE/SAMPLE (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/641476 ((     0.04 ))s
+IOVDbFolder          INFO Folder /TILE/OFL02/STATUS/ADC (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/97884 ((     0.03 ))s
 IOVDbFolder          INFO Folder /TILE/OFL02/TIME/CHANNELOFFSET/PHY (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/96 ((     0.04 ))s
 IOVDbFolder          INFO Folder /TILE/ONL01/STATUS/ADC (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/76 ((     0.01 ))s
 IOVDbFolder          INFO Folder /LAR/LArCellPositionShift (PoolRef) db-read 1/1 objs/chan/bytes 1/1/195 ((     0.02 ))s
-IOVDbSvc             INFO  bytes in ((      0.58 ))s
+IOVDbSvc             INFO  bytes in ((      0.41 ))s
 IOVDbSvc             INFO Connection sqlite://;schema=mycool.db;dbname=OFLP200 : nConnect: 0 nFolders: 0 ReadTime: ((     0.00 ))s
-IOVDbSvc             INFO Connection COOLOFL_LAR/OFLP200 : nConnect: 2 nFolders: 2 ReadTime: ((     0.16 ))s
-IOVDbSvc             INFO Connection COOLOFL_TILE/OFLP200 : nConnect: 2 nFolders: 11 ReadTime: ((     0.42 ))s
+IOVDbSvc             INFO Connection COOLOFL_LAR/OFLP200 : nConnect: 2 nFolders: 2 ReadTime: ((     0.06 ))s
+IOVDbSvc             INFO Connection COOLOFL_TILE/OFLP200 : nConnect: 2 nFolders: 11 ReadTime: ((     0.36 ))s
 AthDictLoaderSvc     INFO in finalize...
 ToolSvc              INFO Removing all tools created by ToolSvc
 ToolSvc.tool3        INFO Finalizing
@@ -451,9 +451,9 @@ ToolSvc.tool1        INFO Finalizing
 *****Chrono*****     INFO ****************************************************************************************************
 *****Chrono*****     INFO  The Final CPU consumption ( Chrono ) Table (ordered)
 *****Chrono*****     INFO ****************************************************************************************************
-cObjR_ALL            INFO Time User   : Tot=  340 [ms] Ave/Min/Max=  170(+-  160)/   10/  330 [ms] #=  2
-cObj_ALL             INFO Time User   : Tot=  380 [ms] Ave/Min/Max= 29.2(+- 92.9)/    0/  350 [ms] #= 13
-ChronoStatSvc        INFO Time User   : Tot= 35.9  [s]                                             #=  1
+cObjR_ALL            INFO Time User   : Tot=  280 [ms] Ave/Min/Max=  140(+-  140)/    0/  280 [ms] #=  2
+cObj_ALL             INFO Time User   : Tot=  320 [ms] Ave/Min/Max= 24.6(+- 79.7)/    0/  300 [ms] #= 13
+ChronoStatSvc        INFO Time User   : Tot=   26  [s]                                             #=  1
 *****Chrono*****     INFO ****************************************************************************************************
 ChronoStatSvc.f...   INFO  Service finalized successfully 
 ApplicationMgr       INFO Application Manager Finalized successfully
diff --git a/TileCalorimeter/TileRecUtils/share/TileCellBuilder_test.ref b/TileCalorimeter/TileRecUtils/share/TileCellBuilder_test.ref
index 68a9700f723..014dd1b635e 100644
--- a/TileCalorimeter/TileRecUtils/share/TileCellBuilder_test.ref
+++ b/TileCalorimeter/TileRecUtils/share/TileCellBuilder_test.ref
@@ -1,16 +1,16 @@
-Tue Aug  6 21:39:18 CEST 2019
+Fri Nov 29 11:05:09 CET 2019
 Preloading tcmalloc_minimal.so
 Py:Athena            INFO including file "AthenaCommon/Preparation.py"
-Py:Athena            INFO using release [WorkDir-22.0.3] [x86_64-centos7-gcc8-opt] [atlas-work3/da00b53be39] -- built on [2019-08-06T2037]
+Py:Athena            INFO using release [WorkDir-22.0.9] [x86_64-centos7-gcc8-opt] [tilecal-12bit/82699bf159] -- built on [2019-11-29T1101]
 Py:Athena            INFO including file "AthenaCommon/Atlas.UnixStandardJob.py"
 Py:Athena            INFO executing ROOT6Setup
 Py:Athena            INFO including file "AthenaCommon/Execution.py"
 Py:Athena            INFO including file "TileRecUtils/TileCellBuilder_test.py"
-SetGeometryVersion.py obtained major release version 22
+Py:Athena            INFO SetGeometryVersion.py obtained major release version 22
 Py:Athena            INFO including file "IdDictDetDescrCnv/IdDictDetDescrCnv_joboptions.py"
-Py:ConfigurableDb    INFO Read module info for 5520 configurables from 75 genConfDb files
+Py:ConfigurableDb    INFO Read module info for 5635 configurables from 11 genConfDb files
 Py:ConfigurableDb    INFO No duplicates have been found: that's good !
-EventInfoMgtInit: Got release version  Athena-22.0.3
+EventInfoMgtInit: Got release version  Athena-22.0.9
 Py:IOVDbSvc.CondDB    INFO Setting up conditions DB access to instance OFLP200
 Py:Athena            INFO including file "TileConditions/TileConditions_jobOptions.py"
 Py:TileInfoConf.     INFO Adding TileCablingSvc to ServiceMgr
@@ -22,20 +22,22 @@ Py:TileInfoConf.     INFO Changing default TileCondToolEmscale configuration to
 Py:TileInfoConf.     INFO Changing default TileCondToolNoiseSample configuration to COOL source
 Py:TileInfoConf.     INFO Changing default TileCondToolTiming configuration to COOL source
 Py:TileConditions_jobOptions.py    INFO Adjusting TileInfo to return cell noise for Opt.Filter without iterations
+Py:TileConditions_jobOptions.py    INFO Setting 10-bit ADC configuration
+Py:TileInfoConf.     INFO Setting 10-bit Tile ADC
 Py:Athena            INFO including file "AthenaCommon/runbatch.py"
 ApplicationMgr       INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0
 ApplicationMgr       INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0
 ApplicationMgr    SUCCESS 
 ====================================================================================================================================
-                                                   Welcome to ApplicationMgr (GaudiCoreSvc v32r0)
-                                          running on lxplus724.cern.ch on Tue Aug  6 21:39:28 2019
+                                                   Welcome to ApplicationMgr (GaudiCoreSvc v32r2)
+                                          running on pcpraha5 on Fri Nov 29 11:05:15 2019
 ====================================================================================================================================
 ApplicationMgr       INFO Application Manager Configured successfully
 ApplicationMgr       INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0
 StatusCodeSvc        INFO initialize
 AthDictLoaderSvc     INFO in initialize...
 AthDictLoaderSvc     INFO acquired Dso-registry
-ClassIDSvc           INFO  getRegistryEntries: read 7068 CLIDRegistry entries for module ALL
+ClassIDSvc           INFO  getRegistryEntries: read 7151 CLIDRegistry entries for module ALL
 CoreDumpSvc          INFO install f-a-t-a-l handler... (flag = -1)
 CoreDumpSvc          INFO Handling signals: 11(Segmentation fault) 7(Bus error) 4(Illegal instruction) 8(Floating point exception) 
 MetaDataSvc          INFO Initializing MetaDataSvc - package version AthenaServices-00-00-00
@@ -44,8 +46,8 @@ PoolSvc              INFO io_register[PoolSvc](xmlcatalog_file:PoolFileCatalog.x
 PoolSvc              INFO Set connectionsvc retry/timeout/IDLE timeout to  'ConnectionRetrialPeriod':300/ 'ConnectionRetrialTimeOut':3600/ 'ConnectionTimeOut':5 seconds with connection cleanup disabled
 PoolSvc              INFO Frontier compression level set to 5
 DBReplicaSvc         INFO Frontier server at (serverurl=http://atlasfrontier-local.cern.ch:8000/atlr)(serverurl=http://atlasfrontier-ai.cern.ch:8000/atlr)(serverurl=http://lcgft-atlas.gridpp.rl.ac.uk:3128/frontierATLAS)(serverurl=http://ccfrontier.in2p3.fr:23128/ccin2p3-AtlasFrontier)(proxyurl=http://ca-proxy.cern.ch:3128)(proxyurl=http://ca-proxy-meyrin.cern.ch:3128)(proxyurl=http://ca-proxy-wigner.cern.ch:3128)(proxyurl=http://atlasbpfrontier.cern.ch:3127)(proxyurl=http://atlasbpfrontier.fnal.gov:3127) will be considered for COOL data
-DBReplicaSvc         INFO Read replica configuration from /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-05T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/dbreplica.config
-DBReplicaSvc         INFO Total of 10 servers found for host lxplus724.cern.ch [ATLF ATLAS_COOLPROD atlas_dd ATLAS_CONFIG INT8R INTR ATONR_COOL ATONR_CONF DEVDB11 ATLF ]
+DBReplicaSvc         INFO Read replica configuration from /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/dbreplica.config
+DBReplicaSvc         INFO Total of 10 servers found for host pcpraha5.dyndns.cern.ch [ATLF ATLAS_COOLPROD atlas_dd ATLAS_CONFIG INT8R INTR ATONR_COOL ATONR_CONF DEVDB11 ATLF ]
 PoolSvc              INFO Successfully setup replica sorting algorithm
 PoolSvc              INFO Setting up APR FileCatalog and Streams
 PoolSvc           WARNING Unable to locate catalog for prfile:poolcond/PoolCat_oflcond.xml check your ATLAS_POOLCOND_PATH and DATAPATH variables
@@ -82,8 +84,8 @@ IOVDbSvc             INFO Added taginfo remove for /TILE/OFL02/STATUS/ADC
 IOVDbSvc             INFO Added taginfo remove for /TILE/OFL02/TIME/CHANNELOFFSET/PHY
 IOVDbSvc             INFO Added taginfo remove for /TILE/ONL01/STATUS/ADC
 IOVDbSvc             INFO Added taginfo remove for /LAR/LArCellPositionShift
-ClassIDSvc           INFO  getRegistryEntries: read 1950 CLIDRegistry entries for module ALL
-ClassIDSvc           INFO  getRegistryEntries: read 17 CLIDRegistry entries for module ALL
+ClassIDSvc           INFO  getRegistryEntries: read 2007 CLIDRegistry entries for module ALL
+ClassIDSvc           INFO  getRegistryEntries: read 24 CLIDRegistry entries for module ALL
 DetDescrCnvSvc       INFO  initializing 
 DetDescrCnvSvc       INFO Found DetectorStore service
 DetDescrCnvSvc       INFO  filling proxies for detector managers 
@@ -118,8 +120,6 @@ DetDescrCnvSvc       INFO  filling address for MDTIDHELPER with CLID 4170 and st
 DetDescrCnvSvc       INFO  filling address for CSCIDHELPER with CLID 4171 and storage type 68 to detector store 
 DetDescrCnvSvc       INFO  filling address for RPCIDHELPER with CLID 4172 and storage type 68 to detector store 
 DetDescrCnvSvc       INFO  filling address for TGCIDHELPER with CLID 4173 and storage type 68 to detector store 
-DetDescrCnvSvc       INFO  filling address for STGCIDHELPER with CLID 4174 and storage type 68 to detector store 
-DetDescrCnvSvc       INFO  filling address for MMIDHELPER with CLID 4175 and storage type 68 to detector store 
 DetDescrCnvSvc       INFO  filling address for CaloLVL1_ID with CLID 108133391 and storage type 68 to detector store 
 DetDescrCnvSvc       INFO  filling address for CaloCell_ID with CLID 123500438 and storage type 68 to detector store 
 DetDescrCnvSvc       INFO  filling address for CaloCell_SuperCell_ID with CLID 128365736 and storage type 68 to detector store 
@@ -170,7 +170,7 @@ BarrelConstruction   INFO   Use sagging in geometry  ? 0
 EMECConstruction     INFO multi-layered version of absorbers activated, parameter value is 1
 EMECConstruction     INFO activating LAr::EMEC::Pos::InnerWheel
 EMECConstruction     INFO activating LAr::EMEC::Pos::OuterWheel
-ClassIDSvc           INFO  getRegistryEntries: read 2984 CLIDRegistry entries for module ALL
+ClassIDSvc           INFO  getRegistryEntries: read 2988 CLIDRegistry entries for module ALL
 CaloIDHelper_ID...   INFO in createObj: creating a TileTBID helper object in the detector store
 TileTBID             INFO initialize_from_dictionary 
 AtlasDetectorID      INFO initialize_from_dictionary - OK
@@ -188,7 +188,7 @@ TileDddbManager      INFO n_tilb = 21
 TileDddbManager      INFO n_tileSwitches = 1
 CaloIDHelper_ID...   INFO in createObj: creating a TileID helper object in the detector store
 AtlasDetectorID      INFO initialize_from_dictionary - OK
-TileNeighbour        INFO Reading file  /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-05T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/TileNeighbour_reduced.txt
+TileNeighbour        INFO Reading file  /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/TileNeighbour_reduced.txt
 TileHWIDDetDesc...   INFO in createObj: creating a TileHWID helper object in the detector store
 TileHWID             INFO initialize_from_dictionary 
 AtlasDetectorID      INFO initialize_from_dictionary - OK
@@ -200,9 +200,9 @@ CaloIDHelper_ID...   INFO in createObj: creating a LArHEC_ID helper object in th
 AtlasDetectorID      INFO initialize_from_dictionary - OK
 CaloIDHelper_ID...   INFO in createObj: creating a LArFCAL_ID helper object in the detector store
 AtlasDetectorID      INFO initialize_from_dictionary - OK
-LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-05T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/FCal2DNeighbors-April2011.txt
-LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-05T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/FCal3DNeighborsNext-April2011.txt
-LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-05T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/FCal3DNeighborsPrev-April2011.txt
+LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/FCal2DNeighbors-April2011.txt
+LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/FCal3DNeighborsNext-April2011.txt
+LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/FCal3DNeighborsPrev-April2011.txt
 CaloIDHelper_ID...   INFO in createObj: creating a LArMiniFCAL_ID helper object in the detector store
 AtlasDetectorID      INFO initialize_from_dictionary - OK
 LArMiniFCAL_ID       INFO  initialize_from_dict - LArCalorimeter dictionary does NOT contain miniFCAL description. Unable to initialize LArMiniFCAL_ID.
@@ -264,8 +264,8 @@ TileSampleNoise...   INFO Creating TileCondProxyCool(TileSampleNoiseCondAlg.Tile
 TileTimingCondA...   INFO Creating TileCondProxyCool(TileTimingCondAlg.TileCondProxyCool_AdcOffset) for folder: "/TILE/OFL02/TIME/CHANNELOFFSET/PHY"
 tilecellbuilder...   INFO ProxyOnlBch and ProxyOflBch will be used for bad channel status
 tilecellbuilder...   INFO ProxyOnlBch and ProxyOflBch will be used for bad channel status
-ClassIDSvc           INFO  getRegistryEntries: read 365 CLIDRegistry entries for module ALL
-ClassIDSvc           INFO  getRegistryEntries: read 4893 CLIDRegistry entries for module ALL
+ClassIDSvc           INFO  getRegistryEntries: read 380 CLIDRegistry entries for module ALL
+ClassIDSvc           INFO  getRegistryEntries: read 4905 CLIDRegistry entries for module ALL
 xAODMaker::Even...   INFO Initializing - Package version: xAODEventInfoCnv-00-00-00
 xAODMaker::Even...   INFO Initializing - Package version: xAODEventInfoCnv-00-00-00
 xAODMaker::Even...WARNING Beam conditions service not available
@@ -274,7 +274,7 @@ PyComponentMgr       INFO Initializing PyComponentMgr...
 prepalg1             INFO Initializing prepalg1...
 ClassIDSvc           INFO  getRegistryEntries: read 106 CLIDRegistry entries for module ALL
 testalg1             INFO Initializing testalg1...
-ClassIDSvc           INFO  getRegistryEntries: read 13 CLIDRegistry entries for module ALL
+ClassIDSvc           INFO  getRegistryEntries: read 14 CLIDRegistry entries for module ALL
 ToolSvc.tool1        INFO Storing MBTS cells in MBTSContainer
 ToolSvc.tool1        INFO none of thresholds set, all RawChannels will be converted to Cells
 ToolSvc.tool1        INFO taking RawChannels from 'TileRawChannelCnt'
@@ -344,7 +344,7 @@ ApplicationMgr       INFO Application Manager Started successfully
 AthenaEventLoopMgr   INFO   ===>>>  start of run 1    <<<===
 EventPersistenc...   INFO Added successfully Conversion service:AthenaPoolCnvSvc
 EventPersistenc...   INFO Added successfully Conversion service:TagInfoMgr
-ClassIDSvc           INFO  getRegistryEntries: read 109 CLIDRegistry entries for module ALL
+ClassIDSvc           INFO  getRegistryEntries: read 114 CLIDRegistry entries for module ALL
 IOVDbSvc             INFO Opening COOL connection for COOLOFL_LAR/OFLP200
 IOVDbFolder          INFO HVS tag OFLCOND-RUN12-SDR-35 resolved to LARAlign-IOVDEP-00 for folder /LAR/Align
 IOVDbFolder          INFO HVS tag OFLCOND-RUN12-SDR-35 resolved to LArCellPositionShift-ideal for folder /LAR/LArCellPositionShift
@@ -354,7 +354,7 @@ Domain[ROOT_All]     INFO                           /cvmfs/atlas-condb.cern.ch/r
 RootDatabase.open    INFO /cvmfs/atlas-condb.cern.ch/repo/conditions/cond09/cond09_mc.000057.gen.COND/cond09_mc.000057.gen.COND._0001.pool.root File version:52200
 CaloMgrDetDescrCnv   INFO in createObj: creating a Calo Detector Manager object in the detector store
 CaloIdMgrDetDes...   INFO in createObj: creating a CaloDescrManager object in the detector store
-ClassIDSvc           INFO  getRegistryEntries: read 195 CLIDRegistry entries for module ALL
+ClassIDSvc           INFO  getRegistryEntries: read 198 CLIDRegistry entries for module ALL
 CaloIDHelper_ID...   INFO in createObj: creating a CaloDM_ID helper object in the detector store
 CaloDM_ID            INFO initialize_from_dictionary
 AtlasDetectorID      INFO initialize_from_dictionary - OK
@@ -368,12 +368,12 @@ CaloIDHelper_ID...   INFO in createObj: creating a LArHEC_SuperCell_ID helper ob
 AtlasDetectorID      INFO initialize_from_dictionary - OK
 CaloIDHelper_ID...   INFO in createObj: creating a LArFCAL_SuperCell_ID helper object in the detector store
 AtlasDetectorID      INFO initialize_from_dictionary - OK
-LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-05T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/FCalSuperCells2DNeighborsNew-April2014.txt
-LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-05T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/FCalSuperCells3DNeighborsNextNew-April2014.txt
-LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-05T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/FCalSuperCells3DNeighborsPrevNew-April2014.txt
+LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/FCalSuperCells2DNeighborsNew-April2014.txt
+LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/FCalSuperCells3DNeighborsNextNew-April2014.txt
+LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/FCalSuperCells3DNeighborsPrevNew-April2014.txt
 CaloIDHelper_ID...   INFO in createObj: creating a Tile_SuperCell_ID helper object in the detector store
 AtlasDetectorID      INFO initialize_from_dictionary - OK
-TileNeighbour        INFO Reading file  /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-05T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/TileSuperCellNeighbour.txt
+TileNeighbour        INFO Reading file  /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/TileSuperCellNeighbour.txt
 AtlasDetectorID      INFO initialize_from_dictionary - OK
 CaloIdMgrDetDes...   INFO  Finished 
 CaloIdMgrDetDes...   INFO Initializing CaloIdMgr from values in CaloIdMgrDetDescrCnv 
@@ -404,8 +404,8 @@ TileBadChannels...   INFO TileBchStatus::isNoGainL1() is defined by: ADC dead; N
 TileBadChannels...   INFO TileBchStatus::isBadTiming() is defined by: Bad timing; Online bad timing; 
 TileBadChannels...   INFO TileBchStatus::isWrongBCID() is defined by: Wrong BCID; Online wrong BCID; 
 TileBadChannels...   INFO No drawer trips probabilities found in DB
-tilecellbuilder...   INFO Creating TileCondProxyFile(tilecellbuilder_bct1Cond.tilecellbuilder_bct1_onl) for ASCII file name: "/cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-05T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/TileNoBad.oflBch"
-tilecellbuilder...   INFO Creating TileCondProxyFile(tilecellbuilder_bct1Cond.tilecellbuilder_bct1_ofl) for ASCII file name: "/cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-05T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/TileNoBad.oflBch"
+tilecellbuilder...   INFO Creating TileCondProxyFile(tilecellbuilder_bct1Cond.tilecellbuilder_bct1_onl) for ASCII file name: "/localscratch4/pleskot/tilecal/r22-tilecal-12bit/build/x86_64-centos7-gcc8-opt/share/TileNoBad.oflBch"
+tilecellbuilder...   INFO Creating TileCondProxyFile(tilecellbuilder_bct1Cond.tilecellbuilder_bct1_ofl) for ASCII file name: "/localscratch4/pleskot/tilecal/r22-tilecal-12bit/build/x86_64-centos7-gcc8-opt/share/TileNoBad.oflBch"
 tilecellbuilder...   INFO No TileBchStatus::isBad() definition found in DB, using defaults
 tilecellbuilder...   INFO No TileBchStatus::isNoisy() definition found in DB, using defaults
 tilecellbuilder...   INFO No TileBchStatus::isNoGainL1() definition found in DB, using defaults
@@ -417,8 +417,8 @@ tilecellbuilder...   INFO TileBchStatus::isNoGainL1() is defined by: ADC dead; N
 tilecellbuilder...   INFO TileBchStatus::isBadTiming() is defined by: Bad timing; Online bad timing; 
 tilecellbuilder...   INFO TileBchStatus::isWrongBCID() is defined by: Wrong BCID; Online wrong BCID; 
 tilecellbuilder...   INFO No drawer trips probabilities found in DB
-tilecellbuilder...   INFO Creating TileCondProxyFile(tilecellbuilder_bct2Cond.tilecellbuilder_bct2_onl) for ASCII file name: "/cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-05T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/TileNoBad.oflBch"
-tilecellbuilder...   INFO Creating TileCondProxyFile(tilecellbuilder_bct2Cond.tilecellbuilder_bct2_ofl) for ASCII file name: "/afs/cern.ch/work/s/ssnyder/builds/atlas-work3/build-x86_64-centos7-gcc8-opt/TileCalorimeter/TileRecUtils/CMakeFiles/unitTestRun/tilecellbuilder_bct2.bch"
+tilecellbuilder...   INFO Creating TileCondProxyFile(tilecellbuilder_bct2Cond.tilecellbuilder_bct2_onl) for ASCII file name: "/localscratch4/pleskot/tilecal/r22-tilecal-12bit/build/x86_64-centos7-gcc8-opt/share/TileNoBad.oflBch"
+tilecellbuilder...   INFO Creating TileCondProxyFile(tilecellbuilder_bct2Cond.tilecellbuilder_bct2_ofl) for ASCII file name: "/localscratch4/pleskot/tilecal/r22-tilecal-12bit/build/TileCalorimeter/TileRecUtils/CMakeFiles/unitTestRun/tilecellbuilder_bct2.bch"
 tilecellbuilder...   INFO No TileBchStatus::isBad() definition found in DB, using defaults
 tilecellbuilder...   INFO No TileBchStatus::isNoisy() definition found in DB, using defaults
 tilecellbuilder...   INFO No TileBchStatus::isNoGainL1() definition found in DB, using defaults
@@ -430,13 +430,13 @@ tilecellbuilder...   INFO TileBchStatus::isNoGainL1() is defined by: ADC dead; N
 tilecellbuilder...   INFO TileBchStatus::isBadTiming() is defined by: Bad timing; Online bad timing; 
 tilecellbuilder...   INFO TileBchStatus::isWrongBCID() is defined by: Wrong BCID; Online wrong BCID; 
 tilecellbuilder...   INFO No drawer trips probabilities found in DB
-ClassIDSvc           INFO  getRegistryEntries: read 875 CLIDRegistry entries for module ALL
-ClassIDSvc           INFO  getRegistryEntries: read 191 CLIDRegistry entries for module ALL
-ClassIDSvc           INFO  getRegistryEntries: read 8 CLIDRegistry entries for module ALL
-ClassIDSvc           INFO  getRegistryEntries: read 63 CLIDRegistry entries for module ALL
+ClassIDSvc           INFO  getRegistryEntries: read 674 CLIDRegistry entries for module ALL
+ClassIDSvc           INFO  getRegistryEntries: read 196 CLIDRegistry entries for module ALL
+ClassIDSvc           INFO  getRegistryEntries: read 9 CLIDRegistry entries for module ALL
+ClassIDSvc           INFO  getRegistryEntries: read 68 CLIDRegistry entries for module ALL
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #1, run #1 1 events processed so far  <<<===
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #2, run #1 1 events processed so far  <<<===
-ClassIDSvc           INFO  getRegistryEntries: read 15 CLIDRegistry entries for module ALL
+ClassIDSvc           INFO  getRegistryEntries: read 17 CLIDRegistry entries for module ALL
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #2, run #1 2 events processed so far  <<<===
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #3, run #1 2 events processed so far  <<<===
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #3, run #1 3 events processed so far  <<<===
@@ -471,23 +471,23 @@ testalg1             INFO Finalizing testalg1...
 IncidentProcAlg2     INFO Finalize
 PyComponentMgr       INFO Finalizing PyComponentMgr...
 IdDictDetDescrCnv    INFO in finalize
-IOVDbFolder          INFO Folder /LAR/Align (PoolRef) db-read 1/1 objs/chan/bytes 1/1/170 ((     0.04 ))s
-IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/CES (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/103344 ((     0.04 ))s
-IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/CIS/FIT/LIN (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/80 ((     0.02 ))s
-IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/CIS/FIT/NLN (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/80 ((     0.03 ))s
-IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/EMS (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/92 ((     0.02 ))s
-IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/LAS/FIBER (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/940 ((     0.02 ))s
-IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/LAS/LIN (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/72 ((     0.02 ))s
-IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/LAS/NLN (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/76 ((     0.02 ))s
-IOVDbFolder          INFO Folder /TILE/OFL02/NOISE/SAMPLE (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/641476 ((     0.04 ))s
-IOVDbFolder          INFO Folder /TILE/OFL02/STATUS/ADC (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/97884 ((     0.02 ))s
-IOVDbFolder          INFO Folder /TILE/OFL02/TIME/CHANNELOFFSET/PHY (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/96 ((     0.02 ))s
-IOVDbFolder          INFO Folder /TILE/ONL01/STATUS/ADC (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/76 ((     0.00 ))s
-IOVDbFolder          INFO Folder /LAR/LArCellPositionShift (PoolRef) db-read 1/1 objs/chan/bytes 1/1/195 ((     0.02 ))s
-IOVDbSvc             INFO  bytes in ((      0.31 ))s
+IOVDbFolder          INFO Folder /LAR/Align (PoolRef) db-read 1/1 objs/chan/bytes 1/1/170 ((     0.05 ))s
+IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/CES (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/103344 ((     0.05 ))s
+IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/CIS/FIT/LIN (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/80 ((     0.05 ))s
+IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/CIS/FIT/NLN (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/80 ((     0.04 ))s
+IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/EMS (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/92 ((     0.03 ))s
+IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/LAS/FIBER (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/940 ((     0.04 ))s
+IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/LAS/LIN (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/72 ((     0.04 ))s
+IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/LAS/NLN (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/76 ((     0.04 ))s
+IOVDbFolder          INFO Folder /TILE/OFL02/NOISE/SAMPLE (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/641476 ((     0.06 ))s
+IOVDbFolder          INFO Folder /TILE/OFL02/STATUS/ADC (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/97884 ((     0.04 ))s
+IOVDbFolder          INFO Folder /TILE/OFL02/TIME/CHANNELOFFSET/PHY (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/96 ((     0.04 ))s
+IOVDbFolder          INFO Folder /TILE/ONL01/STATUS/ADC (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/76 ((     0.01 ))s
+IOVDbFolder          INFO Folder /LAR/LArCellPositionShift (PoolRef) db-read 1/1 objs/chan/bytes 1/1/195 ((     0.04 ))s
+IOVDbSvc             INFO  bytes in ((      0.53 ))s
 IOVDbSvc             INFO Connection sqlite://;schema=mycool.db;dbname=OFLP200 : nConnect: 0 nFolders: 0 ReadTime: ((     0.00 ))s
-IOVDbSvc             INFO Connection COOLOFL_LAR/OFLP200 : nConnect: 2 nFolders: 2 ReadTime: ((     0.05 ))s
-IOVDbSvc             INFO Connection COOLOFL_TILE/OFLP200 : nConnect: 2 nFolders: 11 ReadTime: ((     0.26 ))s
+IOVDbSvc             INFO Connection COOLOFL_LAR/OFLP200 : nConnect: 2 nFolders: 2 ReadTime: ((     0.09 ))s
+IOVDbSvc             INFO Connection COOLOFL_TILE/OFLP200 : nConnect: 2 nFolders: 11 ReadTime: ((     0.44 ))s
 AthDictLoaderSvc     INFO in finalize...
 ToolSvc              INFO Removing all tools created by ToolSvc
 ToolSvc.tool11       INFO Finalizing
@@ -502,9 +502,9 @@ ToolSvc.tool1        INFO Finalizing
 *****Chrono*****     INFO ****************************************************************************************************
 *****Chrono*****     INFO  The Final CPU consumption ( Chrono ) Table (ordered)
 *****Chrono*****     INFO ****************************************************************************************************
-cObjR_ALL            INFO Time User   : Tot=  340 [ms] Ave/Min/Max=  170(+-  160)/   10/  330 [ms] #=  2
-cObj_ALL             INFO Time User   : Tot=  380 [ms] Ave/Min/Max= 29.2(+- 92.9)/    0/  350 [ms] #= 13
-ChronoStatSvc        INFO Time User   : Tot= 35.7  [s]                                             #=  1
+cObjR_ALL            INFO Time User   : Tot=  290 [ms] Ave/Min/Max=  145(+-  145)/    0/  290 [ms] #=  2
+cObj_ALL             INFO Time User   : Tot=  320 [ms] Ave/Min/Max= 24.6(+- 79.7)/    0/  300 [ms] #= 13
+ChronoStatSvc        INFO Time User   : Tot= 26.1  [s]                                             #=  1
 *****Chrono*****     INFO ****************************************************************************************************
 ChronoStatSvc.f...   INFO  Service finalized successfully 
 ApplicationMgr       INFO Application Manager Finalized successfully
diff --git a/TileCalorimeter/TileRecUtils/share/TileDQstatusAlg_test.ref b/TileCalorimeter/TileRecUtils/share/TileDQstatusAlg_test.ref
index a381bd48333..c396b721f54 100644
--- a/TileCalorimeter/TileRecUtils/share/TileDQstatusAlg_test.ref
+++ b/TileCalorimeter/TileRecUtils/share/TileDQstatusAlg_test.ref
@@ -1,16 +1,16 @@
-Tue Aug  6 21:42:36 CEST 2019
+Fri Nov 29 11:06:55 CET 2019
 Preloading tcmalloc_minimal.so
 Py:Athena            INFO including file "AthenaCommon/Preparation.py"
-Py:Athena            INFO using release [WorkDir-22.0.3] [x86_64-centos7-gcc8-opt] [atlas-work3/da00b53be39] -- built on [2019-08-06T2037]
+Py:Athena            INFO using release [WorkDir-22.0.9] [x86_64-centos7-gcc8-opt] [tilecal-12bit/82699bf159] -- built on [2019-11-29T1101]
 Py:Athena            INFO including file "AthenaCommon/Atlas.UnixStandardJob.py"
 Py:Athena            INFO executing ROOT6Setup
 Py:Athena            INFO including file "AthenaCommon/Execution.py"
 Py:Athena            INFO including file "TileRecUtils/TileDQstatusAlg_test.py"
-SetGeometryVersion.py obtained major release version 22
+Py:Athena            INFO SetGeometryVersion.py obtained major release version 22
 Py:Athena            INFO including file "IdDictDetDescrCnv/IdDictDetDescrCnv_joboptions.py"
-Py:ConfigurableDb    INFO Read module info for 5520 configurables from 75 genConfDb files
+Py:ConfigurableDb    INFO Read module info for 5635 configurables from 11 genConfDb files
 Py:ConfigurableDb    INFO No duplicates have been found: that's good !
-EventInfoMgtInit: Got release version  Athena-22.0.3
+EventInfoMgtInit: Got release version  Athena-22.0.9
 Py:IOVDbSvc.CondDB    INFO Setting up conditions DB access to instance OFLP200
 Py:Athena            INFO including file "TileConditions/TileConditions_jobOptions.py"
 Py:TileInfoConf.     INFO Adding TileCablingSvc to ServiceMgr
@@ -22,20 +22,22 @@ Py:TileInfoConf.     INFO Changing default TileCondToolEmscale configuration to
 Py:TileInfoConf.     INFO Changing default TileCondToolNoiseSample configuration to COOL source
 Py:TileInfoConf.     INFO Changing default TileCondToolTiming configuration to COOL source
 Py:TileConditions_jobOptions.py    INFO Adjusting TileInfo to return cell noise for Opt.Filter without iterations
+Py:TileConditions_jobOptions.py    INFO Setting 10-bit ADC configuration
+Py:TileInfoConf.     INFO Setting 10-bit Tile ADC
 Py:Athena            INFO including file "AthenaCommon/runbatch.py"
 ApplicationMgr       INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0
 ApplicationMgr       INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0
 ApplicationMgr    SUCCESS 
 ====================================================================================================================================
-                                                   Welcome to ApplicationMgr (GaudiCoreSvc v32r0)
-                                          running on lxplus724.cern.ch on Tue Aug  6 21:42:47 2019
+                                                   Welcome to ApplicationMgr (GaudiCoreSvc v32r2)
+                                          running on pcpraha5 on Fri Nov 29 11:07:01 2019
 ====================================================================================================================================
 ApplicationMgr       INFO Application Manager Configured successfully
 ApplicationMgr       INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0
 StatusCodeSvc        INFO initialize
 AthDictLoaderSvc     INFO in initialize...
 AthDictLoaderSvc     INFO acquired Dso-registry
-ClassIDSvc           INFO  getRegistryEntries: read 7068 CLIDRegistry entries for module ALL
+ClassIDSvc           INFO  getRegistryEntries: read 7151 CLIDRegistry entries for module ALL
 CoreDumpSvc          INFO install f-a-t-a-l handler... (flag = -1)
 CoreDumpSvc          INFO Handling signals: 11(Segmentation fault) 7(Bus error) 4(Illegal instruction) 8(Floating point exception) 
 MetaDataSvc          INFO Initializing MetaDataSvc - package version AthenaServices-00-00-00
@@ -44,8 +46,8 @@ PoolSvc              INFO io_register[PoolSvc](xmlcatalog_file:PoolFileCatalog.x
 PoolSvc              INFO Set connectionsvc retry/timeout/IDLE timeout to  'ConnectionRetrialPeriod':300/ 'ConnectionRetrialTimeOut':3600/ 'ConnectionTimeOut':5 seconds with connection cleanup disabled
 PoolSvc              INFO Frontier compression level set to 5
 DBReplicaSvc         INFO Frontier server at (serverurl=http://atlasfrontier-local.cern.ch:8000/atlr)(serverurl=http://atlasfrontier-ai.cern.ch:8000/atlr)(serverurl=http://lcgft-atlas.gridpp.rl.ac.uk:3128/frontierATLAS)(serverurl=http://ccfrontier.in2p3.fr:23128/ccin2p3-AtlasFrontier)(proxyurl=http://ca-proxy.cern.ch:3128)(proxyurl=http://ca-proxy-meyrin.cern.ch:3128)(proxyurl=http://ca-proxy-wigner.cern.ch:3128)(proxyurl=http://atlasbpfrontier.cern.ch:3127)(proxyurl=http://atlasbpfrontier.fnal.gov:3127) will be considered for COOL data
-DBReplicaSvc         INFO Read replica configuration from /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-05T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/dbreplica.config
-DBReplicaSvc         INFO Total of 10 servers found for host lxplus724.cern.ch [ATLF ATLAS_COOLPROD atlas_dd ATLAS_CONFIG INT8R INTR ATONR_COOL ATONR_CONF DEVDB11 ATLF ]
+DBReplicaSvc         INFO Read replica configuration from /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/dbreplica.config
+DBReplicaSvc         INFO Total of 10 servers found for host pcpraha5.dyndns.cern.ch [ATLF ATLAS_COOLPROD atlas_dd ATLAS_CONFIG INT8R INTR ATONR_COOL ATONR_CONF DEVDB11 ATLF ]
 PoolSvc              INFO Successfully setup replica sorting algorithm
 PoolSvc              INFO Setting up APR FileCatalog and Streams
 PoolSvc           WARNING Unable to locate catalog for prfile:poolcond/PoolCat_oflcond.xml check your ATLAS_POOLCOND_PATH and DATAPATH variables
@@ -82,8 +84,8 @@ IOVDbSvc             INFO Added taginfo remove for /TILE/OFL02/STATUS/ADC
 IOVDbSvc             INFO Added taginfo remove for /TILE/OFL02/TIME/CHANNELOFFSET/PHY
 IOVDbSvc             INFO Added taginfo remove for /TILE/ONL01/STATUS/ADC
 IOVDbSvc             INFO Added taginfo remove for /LAR/LArCellPositionShift
-ClassIDSvc           INFO  getRegistryEntries: read 1950 CLIDRegistry entries for module ALL
-ClassIDSvc           INFO  getRegistryEntries: read 17 CLIDRegistry entries for module ALL
+ClassIDSvc           INFO  getRegistryEntries: read 2007 CLIDRegistry entries for module ALL
+ClassIDSvc           INFO  getRegistryEntries: read 24 CLIDRegistry entries for module ALL
 DetDescrCnvSvc       INFO  initializing 
 DetDescrCnvSvc       INFO Found DetectorStore service
 DetDescrCnvSvc       INFO  filling proxies for detector managers 
@@ -118,8 +120,6 @@ DetDescrCnvSvc       INFO  filling address for MDTIDHELPER with CLID 4170 and st
 DetDescrCnvSvc       INFO  filling address for CSCIDHELPER with CLID 4171 and storage type 68 to detector store 
 DetDescrCnvSvc       INFO  filling address for RPCIDHELPER with CLID 4172 and storage type 68 to detector store 
 DetDescrCnvSvc       INFO  filling address for TGCIDHELPER with CLID 4173 and storage type 68 to detector store 
-DetDescrCnvSvc       INFO  filling address for STGCIDHELPER with CLID 4174 and storage type 68 to detector store 
-DetDescrCnvSvc       INFO  filling address for MMIDHELPER with CLID 4175 and storage type 68 to detector store 
 DetDescrCnvSvc       INFO  filling address for CaloLVL1_ID with CLID 108133391 and storage type 68 to detector store 
 DetDescrCnvSvc       INFO  filling address for CaloCell_ID with CLID 123500438 and storage type 68 to detector store 
 DetDescrCnvSvc       INFO  filling address for CaloCell_SuperCell_ID with CLID 128365736 and storage type 68 to detector store 
@@ -176,7 +176,7 @@ BarrelConstruction   INFO   Use sagging in geometry  ? 0
 EMECConstruction     INFO multi-layered version of absorbers activated, parameter value is 1
 EMECConstruction     INFO activating LAr::EMEC::Pos::InnerWheel
 EMECConstruction     INFO activating LAr::EMEC::Pos::OuterWheel
-ClassIDSvc           INFO  getRegistryEntries: read 2984 CLIDRegistry entries for module ALL
+ClassIDSvc           INFO  getRegistryEntries: read 2988 CLIDRegistry entries for module ALL
 CaloIDHelper_ID...   INFO in createObj: creating a TileTBID helper object in the detector store
 TileTBID             INFO initialize_from_dictionary 
 AtlasDetectorID      INFO initialize_from_dictionary - OK
@@ -185,7 +185,7 @@ EMECConstruction     INFO multi-layered version of absorbers activated, paramete
 EMECConstruction     INFO activating LAr::EMEC::Neg::InnerWheel
 EMECConstruction     INFO activating LAr::EMEC::Neg::OuterWheel
 EndcapDMConstru...   INFO Start building EC electronics geometry
-GeoModelSvc          INFO GeoModelSvc.LArDetectorToolNV	 SZ= 24344Kb 	 Time = 0.54S
+GeoModelSvc          INFO GeoModelSvc.LArDetectorToolNV	 SZ= 24344Kb 	 Time = 0.43S
 GeoModelSvc.Til...   INFO  Entering TileDetectorTool::create()
 TileDddbManager      INFO m_tag = ATLAS-R2-2016-01-00-01
 TileDddbManager      INFO n_tiglob = 5
@@ -196,7 +196,7 @@ TileDddbManager      INFO n_tilb = 21
 TileDddbManager      INFO n_tileSwitches = 1
 CaloIDHelper_ID...   INFO in createObj: creating a TileID helper object in the detector store
 AtlasDetectorID      INFO initialize_from_dictionary - OK
-TileNeighbour        INFO Reading file  /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-05T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/TileNeighbour_reduced.txt
+TileNeighbour        INFO Reading file  /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/TileNeighbour_reduced.txt
 TileHWIDDetDesc...   INFO in createObj: creating a TileHWID helper object in the detector store
 TileHWID             INFO initialize_from_dictionary 
 AtlasDetectorID      INFO initialize_from_dictionary - OK
@@ -208,9 +208,9 @@ CaloIDHelper_ID...   INFO in createObj: creating a LArHEC_ID helper object in th
 AtlasDetectorID      INFO initialize_from_dictionary - OK
 CaloIDHelper_ID...   INFO in createObj: creating a LArFCAL_ID helper object in the detector store
 AtlasDetectorID      INFO initialize_from_dictionary - OK
-LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-05T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/FCal2DNeighbors-April2011.txt
-LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-05T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/FCal3DNeighborsNext-April2011.txt
-LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-05T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/FCal3DNeighborsPrev-April2011.txt
+LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/FCal2DNeighbors-April2011.txt
+LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/FCal3DNeighborsNext-April2011.txt
+LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/FCal3DNeighborsPrev-April2011.txt
 CaloIDHelper_ID...   INFO in createObj: creating a LArMiniFCAL_ID helper object in the detector store
 AtlasDetectorID      INFO initialize_from_dictionary - OK
 LArMiniFCAL_ID       INFO  initialize_from_dict - LArCalorimeter dictionary does NOT contain miniFCAL description. Unable to initialize LArMiniFCAL_ID.
@@ -245,7 +245,7 @@ GeoModelSvc.Til...   INFO  Global positioning of barrel with rotation (0,0,0)) a
 GeoModelSvc.Til...   INFO  Global positioning of positive ext.barrel with rotation (0,0,0)) and translation (0,0,0) Gaudi::Units::cm
 GeoModelSvc.Til...   INFO  Global positioning of negative ext.barrel with rotation (0,0,0)) and translation (0,0,1) Gaudi::Units::cm
 TileDetDescrMan...   INFO Entering create_elements()
-GeoModelSvc          INFO GeoModelSvc.TileDetectorTool	 SZ= 3576Kb 	 Time = 0.16S
+GeoModelSvc          INFO GeoModelSvc.TileDetectorTool	 SZ= 3576Kb 	 Time = 0.12S
 ClassIDSvc           INFO  getRegistryEntries: read 66 CLIDRegistry entries for module ALL
 TileInfoLoader       INFO Changing TTL1 calib from 4.1 to 6.9
 TileInfoLoader       INFO Changing TTL1 noise sigma from 2.5 to 2.8
@@ -300,7 +300,7 @@ TileEMScaleCond...   INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCond
 TileEMScaleCond...   INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OnlEms) for folder: "/TILE/OFL02/CALIB/EMS"
 TileSampleNoise...   INFO Creating TileCondProxyCool(TileSampleNoiseCondAlg.TileCondProxyCool_NoiseSample) for folder: "/TILE/OFL02/NOISE/SAMPLE"
 TileTimingCondA...   INFO Creating TileCondProxyCool(TileTimingCondAlg.TileCondProxyCool_AdcOffset) for folder: "/TILE/OFL02/TIME/CHANNELOFFSET/PHY"
-ClassIDSvc           INFO  getRegistryEntries: read 4893 CLIDRegistry entries for module ALL
+ClassIDSvc           INFO  getRegistryEntries: read 4905 CLIDRegistry entries for module ALL
 PyComponentMgr       INFO Initializing PyComponentMgr...
 record1              INFO Initializing record1...
 ClassIDSvc           INFO  getRegistryEntries: read 106 CLIDRegistry entries for module ALL
@@ -322,7 +322,7 @@ ApplicationMgr       INFO Application Manager Started successfully
 AthenaEventLoopMgr   INFO   ===>>>  start of run 1    <<<===
 EventPersistenc...   INFO Added successfully Conversion service:AthenaPoolCnvSvc
 EventPersistenc...   INFO Added successfully Conversion service:TagInfoMgr
-ClassIDSvc           INFO  getRegistryEntries: read 109 CLIDRegistry entries for module ALL
+ClassIDSvc           INFO  getRegistryEntries: read 114 CLIDRegistry entries for module ALL
 IOVDbSvc             INFO Opening COOL connection for COOLOFL_LAR/OFLP200
 IOVDbFolder          INFO HVS tag OFLCOND-RUN12-SDR-35 resolved to LARAlign-IOVDEP-00 for folder /LAR/Align
 IOVDbFolder          INFO HVS tag OFLCOND-RUN12-SDR-35 resolved to LArCellPositionShift-ideal for folder /LAR/LArCellPositionShift
@@ -332,7 +332,7 @@ Domain[ROOT_All]     INFO                           /cvmfs/atlas-condb.cern.ch/r
 RootDatabase.open    INFO /cvmfs/atlas-condb.cern.ch/repo/conditions/cond09/cond09_mc.000057.gen.COND/cond09_mc.000057.gen.COND._0001.pool.root File version:52200
 CaloMgrDetDescrCnv   INFO in createObj: creating a Calo Detector Manager object in the detector store
 CaloIdMgrDetDes...   INFO in createObj: creating a CaloDescrManager object in the detector store
-ClassIDSvc           INFO  getRegistryEntries: read 195 CLIDRegistry entries for module ALL
+ClassIDSvc           INFO  getRegistryEntries: read 198 CLIDRegistry entries for module ALL
 CaloIDHelper_ID...   INFO in createObj: creating a CaloDM_ID helper object in the detector store
 CaloDM_ID            INFO initialize_from_dictionary
 AtlasDetectorID      INFO initialize_from_dictionary - OK
@@ -346,12 +346,12 @@ CaloIDHelper_ID...   INFO in createObj: creating a LArHEC_SuperCell_ID helper ob
 AtlasDetectorID      INFO initialize_from_dictionary - OK
 CaloIDHelper_ID...   INFO in createObj: creating a LArFCAL_SuperCell_ID helper object in the detector store
 AtlasDetectorID      INFO initialize_from_dictionary - OK
-LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-05T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/FCalSuperCells2DNeighborsNew-April2014.txt
-LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-05T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/FCalSuperCells3DNeighborsNextNew-April2014.txt
-LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-05T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/FCalSuperCells3DNeighborsPrevNew-April2014.txt
+LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/FCalSuperCells2DNeighborsNew-April2014.txt
+LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/FCalSuperCells3DNeighborsNextNew-April2014.txt
+LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/FCalSuperCells3DNeighborsPrevNew-April2014.txt
 CaloIDHelper_ID...   INFO in createObj: creating a Tile_SuperCell_ID helper object in the detector store
 AtlasDetectorID      INFO initialize_from_dictionary - OK
-TileNeighbour        INFO Reading file  /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-05T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/TileSuperCellNeighbour.txt
+TileNeighbour        INFO Reading file  /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/TileSuperCellNeighbour.txt
 AtlasDetectorID      INFO initialize_from_dictionary - OK
 CaloIdMgrDetDes...   INFO  Finished 
 CaloIdMgrDetDes...   INFO Initializing CaloIdMgr from values in CaloIdMgrDetDescrCnv 
@@ -382,8 +382,8 @@ TileBadChannels...   INFO TileBchStatus::isNoGainL1() is defined by: ADC dead; N
 TileBadChannels...   INFO TileBchStatus::isBadTiming() is defined by: Bad timing; Online bad timing; 
 TileBadChannels...   INFO TileBchStatus::isWrongBCID() is defined by: Wrong BCID; Online wrong BCID; 
 TileBadChannels...   INFO No drawer trips probabilities found in DB
-ClassIDSvc           INFO  getRegistryEntries: read 875 CLIDRegistry entries for module ALL
-ClassIDSvc           INFO  getRegistryEntries: read 200 CLIDRegistry entries for module ALL
+ClassIDSvc           INFO  getRegistryEntries: read 674 CLIDRegistry entries for module ALL
+ClassIDSvc           INFO  getRegistryEntries: read 206 CLIDRegistry entries for module ALL
 ClassIDSvc           INFO  getRegistryEntries: read 12 CLIDRegistry entries for module ALL
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #1, run #1 1 events processed so far  <<<===
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #2, run #1 1 events processed so far  <<<===
@@ -401,31 +401,31 @@ check1               INFO Finalizing check1...
 IncidentProcAlg2     INFO Finalize
 PyComponentMgr       INFO Finalizing PyComponentMgr...
 IdDictDetDescrCnv    INFO in finalize
-IOVDbFolder          INFO Folder /LAR/Align (PoolRef) db-read 1/1 objs/chan/bytes 1/1/170 ((     0.03 ))s
-IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/CES (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/103344 ((     0.04 ))s
+IOVDbFolder          INFO Folder /LAR/Align (PoolRef) db-read 1/1 objs/chan/bytes 1/1/170 ((     0.04 ))s
+IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/CES (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/103344 ((     0.03 ))s
 IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/CIS/FIT/LIN (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/80 ((     0.03 ))s
 IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/CIS/FIT/NLN (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/80 ((     0.03 ))s
 IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/EMS (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/92 ((     0.02 ))s
-IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/LAS/FIBER (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/940 ((     0.02 ))s
-IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/LAS/LIN (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/72 ((     0.03 ))s
-IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/LAS/NLN (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/76 ((     0.02 ))s
+IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/LAS/FIBER (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/940 ((     0.03 ))s
+IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/LAS/LIN (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/72 ((     0.02 ))s
+IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/LAS/NLN (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/76 ((     0.03 ))s
 IOVDbFolder          INFO Folder /TILE/OFL02/NOISE/SAMPLE (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/641476 ((     0.04 ))s
-IOVDbFolder          INFO Folder /TILE/OFL02/STATUS/ADC (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/97884 ((     0.03 ))s
-IOVDbFolder          INFO Folder /TILE/OFL02/TIME/CHANNELOFFSET/PHY (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/96 ((     0.03 ))s
-IOVDbFolder          INFO Folder /TILE/ONL01/STATUS/ADC (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/76 ((     0.00 ))s
+IOVDbFolder          INFO Folder /TILE/OFL02/STATUS/ADC (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/97884 ((     0.04 ))s
+IOVDbFolder          INFO Folder /TILE/OFL02/TIME/CHANNELOFFSET/PHY (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/96 ((     0.04 ))s
+IOVDbFolder          INFO Folder /TILE/ONL01/STATUS/ADC (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/76 ((     0.01 ))s
 IOVDbFolder          INFO Folder /LAR/LArCellPositionShift (PoolRef) db-read 1/1 objs/chan/bytes 1/1/195 ((     0.02 ))s
-IOVDbSvc             INFO  bytes in ((      0.35 ))s
+IOVDbSvc             INFO  bytes in ((      0.37 ))s
 IOVDbSvc             INFO Connection sqlite://;schema=mycool.db;dbname=OFLP200 : nConnect: 0 nFolders: 0 ReadTime: ((     0.00 ))s
-IOVDbSvc             INFO Connection COOLOFL_LAR/OFLP200 : nConnect: 2 nFolders: 2 ReadTime: ((     0.05 ))s
-IOVDbSvc             INFO Connection COOLOFL_TILE/OFLP200 : nConnect: 2 nFolders: 11 ReadTime: ((     0.30 ))s
+IOVDbSvc             INFO Connection COOLOFL_LAR/OFLP200 : nConnect: 2 nFolders: 2 ReadTime: ((     0.06 ))s
+IOVDbSvc             INFO Connection COOLOFL_TILE/OFLP200 : nConnect: 2 nFolders: 11 ReadTime: ((     0.31 ))s
 AthDictLoaderSvc     INFO in finalize...
 ToolSvc              INFO Removing all tools created by ToolSvc
 *****Chrono*****     INFO ****************************************************************************************************
 *****Chrono*****     INFO  The Final CPU consumption ( Chrono ) Table (ordered)
 *****Chrono*****     INFO ****************************************************************************************************
-cObjR_ALL            INFO Time User   : Tot=  350 [ms] Ave/Min/Max=  175(+-  165)/   10/  340 [ms] #=  2
-cObj_ALL             INFO Time User   : Tot=  380 [ms] Ave/Min/Max= 29.2(+- 92.9)/    0/  350 [ms] #= 13
-ChronoStatSvc        INFO Time User   : Tot= 36.4  [s]                                             #=  1
+cObjR_ALL            INFO Time User   : Tot=  280 [ms] Ave/Min/Max=  140(+-  140)/    0/  280 [ms] #=  2
+cObj_ALL             INFO Time User   : Tot=  310 [ms] Ave/Min/Max= 23.8(+-   77)/    0/  290 [ms] #= 13
+ChronoStatSvc        INFO Time User   : Tot= 25.7  [s]                                             #=  1
 *****Chrono*****     INFO ****************************************************************************************************
 ChronoStatSvc.f...   INFO  Service finalized successfully 
 ApplicationMgr       INFO Application Manager Finalized successfully
diff --git a/TileCalorimeter/TileRecUtils/share/TileDQstatusTool_test.ref b/TileCalorimeter/TileRecUtils/share/TileDQstatusTool_test.ref
index c9974b5a994..d9ad04bb640 100644
--- a/TileCalorimeter/TileRecUtils/share/TileDQstatusTool_test.ref
+++ b/TileCalorimeter/TileRecUtils/share/TileDQstatusTool_test.ref
@@ -1,16 +1,16 @@
-Tue Aug  6 21:36:55 CEST 2019
+Fri Nov 29 11:07:30 CET 2019
 Preloading tcmalloc_minimal.so
 Py:Athena            INFO including file "AthenaCommon/Preparation.py"
-Py:Athena            INFO using release [WorkDir-22.0.3] [x86_64-centos7-gcc8-opt] [atlas-work3/da00b53be39] -- built on [2019-08-06T2037]
+Py:Athena            INFO using release [WorkDir-22.0.9] [x86_64-centos7-gcc8-opt] [tilecal-12bit/82699bf159] -- built on [2019-11-29T1101]
 Py:Athena            INFO including file "AthenaCommon/Atlas.UnixStandardJob.py"
 Py:Athena            INFO executing ROOT6Setup
 Py:Athena            INFO including file "AthenaCommon/Execution.py"
 Py:Athena            INFO including file "TileRecUtils/TileDQstatusTool_test.py"
-SetGeometryVersion.py obtained major release version 22
+Py:Athena            INFO SetGeometryVersion.py obtained major release version 22
 Py:Athena            INFO including file "IdDictDetDescrCnv/IdDictDetDescrCnv_joboptions.py"
-Py:ConfigurableDb    INFO Read module info for 5520 configurables from 75 genConfDb files
+Py:ConfigurableDb    INFO Read module info for 5635 configurables from 11 genConfDb files
 Py:ConfigurableDb    INFO No duplicates have been found: that's good !
-EventInfoMgtInit: Got release version  Athena-22.0.3
+EventInfoMgtInit: Got release version  Athena-22.0.9
 Py:IOVDbSvc.CondDB    INFO Setting up conditions DB access to instance OFLP200
 Py:Athena            INFO including file "TileConditions/TileConditions_jobOptions.py"
 Py:TileInfoConf.     INFO Adding TileCablingSvc to ServiceMgr
@@ -22,20 +22,22 @@ Py:TileInfoConf.     INFO Changing default TileCondToolEmscale configuration to
 Py:TileInfoConf.     INFO Changing default TileCondToolNoiseSample configuration to COOL source
 Py:TileInfoConf.     INFO Changing default TileCondToolTiming configuration to COOL source
 Py:TileConditions_jobOptions.py    INFO Adjusting TileInfo to return cell noise for Opt.Filter without iterations
+Py:TileConditions_jobOptions.py    INFO Setting 10-bit ADC configuration
+Py:TileInfoConf.     INFO Setting 10-bit Tile ADC
 Py:Athena            INFO including file "AthenaCommon/runbatch.py"
 ApplicationMgr       INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0
 ApplicationMgr       INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0
 ApplicationMgr    SUCCESS 
 ====================================================================================================================================
-                                                   Welcome to ApplicationMgr (GaudiCoreSvc v32r0)
-                                          running on lxplus724.cern.ch on Tue Aug  6 21:37:06 2019
+                                                   Welcome to ApplicationMgr (GaudiCoreSvc v32r2)
+                                          running on pcpraha5 on Fri Nov 29 11:07:36 2019
 ====================================================================================================================================
 ApplicationMgr       INFO Application Manager Configured successfully
 ApplicationMgr       INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0
 StatusCodeSvc        INFO initialize
 AthDictLoaderSvc     INFO in initialize...
 AthDictLoaderSvc     INFO acquired Dso-registry
-ClassIDSvc           INFO  getRegistryEntries: read 7068 CLIDRegistry entries for module ALL
+ClassIDSvc           INFO  getRegistryEntries: read 7151 CLIDRegistry entries for module ALL
 CoreDumpSvc          INFO install f-a-t-a-l handler... (flag = -1)
 CoreDumpSvc          INFO Handling signals: 11(Segmentation fault) 7(Bus error) 4(Illegal instruction) 8(Floating point exception) 
 MetaDataSvc          INFO Initializing MetaDataSvc - package version AthenaServices-00-00-00
@@ -44,8 +46,8 @@ PoolSvc              INFO io_register[PoolSvc](xmlcatalog_file:PoolFileCatalog.x
 PoolSvc              INFO Set connectionsvc retry/timeout/IDLE timeout to  'ConnectionRetrialPeriod':300/ 'ConnectionRetrialTimeOut':3600/ 'ConnectionTimeOut':5 seconds with connection cleanup disabled
 PoolSvc              INFO Frontier compression level set to 5
 DBReplicaSvc         INFO Frontier server at (serverurl=http://atlasfrontier-local.cern.ch:8000/atlr)(serverurl=http://atlasfrontier-ai.cern.ch:8000/atlr)(serverurl=http://lcgft-atlas.gridpp.rl.ac.uk:3128/frontierATLAS)(serverurl=http://ccfrontier.in2p3.fr:23128/ccin2p3-AtlasFrontier)(proxyurl=http://ca-proxy.cern.ch:3128)(proxyurl=http://ca-proxy-meyrin.cern.ch:3128)(proxyurl=http://ca-proxy-wigner.cern.ch:3128)(proxyurl=http://atlasbpfrontier.cern.ch:3127)(proxyurl=http://atlasbpfrontier.fnal.gov:3127) will be considered for COOL data
-DBReplicaSvc         INFO Read replica configuration from /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-05T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/dbreplica.config
-DBReplicaSvc         INFO Total of 10 servers found for host lxplus724.cern.ch [ATLF ATLAS_COOLPROD atlas_dd ATLAS_CONFIG INT8R INTR ATONR_COOL ATONR_CONF DEVDB11 ATLF ]
+DBReplicaSvc         INFO Read replica configuration from /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/dbreplica.config
+DBReplicaSvc         INFO Total of 10 servers found for host pcpraha5.dyndns.cern.ch [ATLF ATLAS_COOLPROD atlas_dd ATLAS_CONFIG INT8R INTR ATONR_COOL ATONR_CONF DEVDB11 ATLF ]
 PoolSvc              INFO Successfully setup replica sorting algorithm
 PoolSvc              INFO Setting up APR FileCatalog and Streams
 PoolSvc           WARNING Unable to locate catalog for prfile:poolcond/PoolCat_oflcond.xml check your ATLAS_POOLCOND_PATH and DATAPATH variables
@@ -82,8 +84,8 @@ IOVDbSvc             INFO Added taginfo remove for /TILE/OFL02/STATUS/ADC
 IOVDbSvc             INFO Added taginfo remove for /TILE/OFL02/TIME/CHANNELOFFSET/PHY
 IOVDbSvc             INFO Added taginfo remove for /TILE/ONL01/STATUS/ADC
 IOVDbSvc             INFO Added taginfo remove for /LAR/LArCellPositionShift
-ClassIDSvc           INFO  getRegistryEntries: read 1950 CLIDRegistry entries for module ALL
-ClassIDSvc           INFO  getRegistryEntries: read 17 CLIDRegistry entries for module ALL
+ClassIDSvc           INFO  getRegistryEntries: read 2007 CLIDRegistry entries for module ALL
+ClassIDSvc           INFO  getRegistryEntries: read 24 CLIDRegistry entries for module ALL
 DetDescrCnvSvc       INFO  initializing 
 DetDescrCnvSvc       INFO Found DetectorStore service
 DetDescrCnvSvc       INFO  filling proxies for detector managers 
@@ -118,8 +120,6 @@ DetDescrCnvSvc       INFO  filling address for MDTIDHELPER with CLID 4170 and st
 DetDescrCnvSvc       INFO  filling address for CSCIDHELPER with CLID 4171 and storage type 68 to detector store 
 DetDescrCnvSvc       INFO  filling address for RPCIDHELPER with CLID 4172 and storage type 68 to detector store 
 DetDescrCnvSvc       INFO  filling address for TGCIDHELPER with CLID 4173 and storage type 68 to detector store 
-DetDescrCnvSvc       INFO  filling address for STGCIDHELPER with CLID 4174 and storage type 68 to detector store 
-DetDescrCnvSvc       INFO  filling address for MMIDHELPER with CLID 4175 and storage type 68 to detector store 
 DetDescrCnvSvc       INFO  filling address for CaloLVL1_ID with CLID 108133391 and storage type 68 to detector store 
 DetDescrCnvSvc       INFO  filling address for CaloCell_ID with CLID 123500438 and storage type 68 to detector store 
 DetDescrCnvSvc       INFO  filling address for CaloCell_SuperCell_ID with CLID 128365736 and storage type 68 to detector store 
@@ -176,7 +176,7 @@ BarrelConstruction   INFO   Use sagging in geometry  ? 0
 EMECConstruction     INFO multi-layered version of absorbers activated, parameter value is 1
 EMECConstruction     INFO activating LAr::EMEC::Pos::InnerWheel
 EMECConstruction     INFO activating LAr::EMEC::Pos::OuterWheel
-ClassIDSvc           INFO  getRegistryEntries: read 2984 CLIDRegistry entries for module ALL
+ClassIDSvc           INFO  getRegistryEntries: read 2988 CLIDRegistry entries for module ALL
 CaloIDHelper_ID...   INFO in createObj: creating a TileTBID helper object in the detector store
 TileTBID             INFO initialize_from_dictionary 
 AtlasDetectorID      INFO initialize_from_dictionary - OK
@@ -185,7 +185,7 @@ EMECConstruction     INFO multi-layered version of absorbers activated, paramete
 EMECConstruction     INFO activating LAr::EMEC::Neg::InnerWheel
 EMECConstruction     INFO activating LAr::EMEC::Neg::OuterWheel
 EndcapDMConstru...   INFO Start building EC electronics geometry
-GeoModelSvc          INFO GeoModelSvc.LArDetectorToolNV	 SZ= 24344Kb 	 Time = 0.51S
+GeoModelSvc          INFO GeoModelSvc.LArDetectorToolNV	 SZ= 24344Kb 	 Time = 0.43S
 GeoModelSvc.Til...   INFO  Entering TileDetectorTool::create()
 TileDddbManager      INFO m_tag = ATLAS-R2-2016-01-00-01
 TileDddbManager      INFO n_tiglob = 5
@@ -196,7 +196,7 @@ TileDddbManager      INFO n_tilb = 21
 TileDddbManager      INFO n_tileSwitches = 1
 CaloIDHelper_ID...   INFO in createObj: creating a TileID helper object in the detector store
 AtlasDetectorID      INFO initialize_from_dictionary - OK
-TileNeighbour        INFO Reading file  /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-05T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/TileNeighbour_reduced.txt
+TileNeighbour        INFO Reading file  /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/TileNeighbour_reduced.txt
 TileHWIDDetDesc...   INFO in createObj: creating a TileHWID helper object in the detector store
 TileHWID             INFO initialize_from_dictionary 
 AtlasDetectorID      INFO initialize_from_dictionary - OK
@@ -208,9 +208,9 @@ CaloIDHelper_ID...   INFO in createObj: creating a LArHEC_ID helper object in th
 AtlasDetectorID      INFO initialize_from_dictionary - OK
 CaloIDHelper_ID...   INFO in createObj: creating a LArFCAL_ID helper object in the detector store
 AtlasDetectorID      INFO initialize_from_dictionary - OK
-LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-05T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/FCal2DNeighbors-April2011.txt
-LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-05T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/FCal3DNeighborsNext-April2011.txt
-LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-05T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/FCal3DNeighborsPrev-April2011.txt
+LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/FCal2DNeighbors-April2011.txt
+LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/FCal3DNeighborsNext-April2011.txt
+LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/FCal3DNeighborsPrev-April2011.txt
 CaloIDHelper_ID...   INFO in createObj: creating a LArMiniFCAL_ID helper object in the detector store
 AtlasDetectorID      INFO initialize_from_dictionary - OK
 LArMiniFCAL_ID       INFO  initialize_from_dict - LArCalorimeter dictionary does NOT contain miniFCAL description. Unable to initialize LArMiniFCAL_ID.
@@ -245,7 +245,7 @@ GeoModelSvc.Til...   INFO  Global positioning of barrel with rotation (0,0,0)) a
 GeoModelSvc.Til...   INFO  Global positioning of positive ext.barrel with rotation (0,0,0)) and translation (0,0,0) Gaudi::Units::cm
 GeoModelSvc.Til...   INFO  Global positioning of negative ext.barrel with rotation (0,0,0)) and translation (0,0,1) Gaudi::Units::cm
 TileDetDescrMan...   INFO Entering create_elements()
-GeoModelSvc          INFO GeoModelSvc.TileDetectorTool	 SZ= 3576Kb 	 Time = 0.16S
+GeoModelSvc          INFO GeoModelSvc.TileDetectorTool	 SZ= 3576Kb 	 Time = 0.13S
 ClassIDSvc           INFO  getRegistryEntries: read 66 CLIDRegistry entries for module ALL
 TileInfoLoader       INFO Changing TTL1 calib from 4.1 to 6.9
 TileInfoLoader       INFO Changing TTL1 noise sigma from 2.5 to 2.8
@@ -302,7 +302,7 @@ TileSampleNoise...   INFO Creating TileCondProxyCool(TileSampleNoiseCondAlg.Tile
 TileTimingCondA...   INFO Creating TileCondProxyCool(TileTimingCondAlg.TileCondProxyCool_AdcOffset) for folder: "/TILE/OFL02/TIME/CHANNELOFFSET/PHY"
 PyComponentMgr       INFO Initializing PyComponentMgr...
 test1                INFO Initializing test1...
-ClassIDSvc           INFO  getRegistryEntries: read 5101 CLIDRegistry entries for module ALL
+ClassIDSvc           INFO  getRegistryEntries: read 5116 CLIDRegistry entries for module ALL
 HistogramPersis...WARNING Histograms saving not required.
 ApplicationMgr       INFO Application Manager Initialized successfully
 ClassIDSvc           INFO  getRegistryEntries: read 265 CLIDRegistry entries for module ALL
@@ -321,7 +321,7 @@ ApplicationMgr       INFO Application Manager Started successfully
 AthenaEventLoopMgr   INFO   ===>>>  start of run 1    <<<===
 EventPersistenc...   INFO Added successfully Conversion service:AthenaPoolCnvSvc
 EventPersistenc...   INFO Added successfully Conversion service:TagInfoMgr
-ClassIDSvc           INFO  getRegistryEntries: read 109 CLIDRegistry entries for module ALL
+ClassIDSvc           INFO  getRegistryEntries: read 114 CLIDRegistry entries for module ALL
 IOVDbSvc             INFO Opening COOL connection for COOLOFL_LAR/OFLP200
 IOVDbFolder          INFO HVS tag OFLCOND-RUN12-SDR-35 resolved to LARAlign-IOVDEP-00 for folder /LAR/Align
 IOVDbFolder          INFO HVS tag OFLCOND-RUN12-SDR-35 resolved to LArCellPositionShift-ideal for folder /LAR/LArCellPositionShift
@@ -331,7 +331,7 @@ Domain[ROOT_All]     INFO                           /cvmfs/atlas-condb.cern.ch/r
 RootDatabase.open    INFO /cvmfs/atlas-condb.cern.ch/repo/conditions/cond09/cond09_mc.000057.gen.COND/cond09_mc.000057.gen.COND._0001.pool.root File version:52200
 CaloMgrDetDescrCnv   INFO in createObj: creating a Calo Detector Manager object in the detector store
 CaloIdMgrDetDes...   INFO in createObj: creating a CaloDescrManager object in the detector store
-ClassIDSvc           INFO  getRegistryEntries: read 195 CLIDRegistry entries for module ALL
+ClassIDSvc           INFO  getRegistryEntries: read 198 CLIDRegistry entries for module ALL
 CaloIDHelper_ID...   INFO in createObj: creating a CaloDM_ID helper object in the detector store
 CaloDM_ID            INFO initialize_from_dictionary
 AtlasDetectorID      INFO initialize_from_dictionary - OK
@@ -345,12 +345,12 @@ CaloIDHelper_ID...   INFO in createObj: creating a LArHEC_SuperCell_ID helper ob
 AtlasDetectorID      INFO initialize_from_dictionary - OK
 CaloIDHelper_ID...   INFO in createObj: creating a LArFCAL_SuperCell_ID helper object in the detector store
 AtlasDetectorID      INFO initialize_from_dictionary - OK
-LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-05T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/FCalSuperCells2DNeighborsNew-April2014.txt
-LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-05T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/FCalSuperCells3DNeighborsNextNew-April2014.txt
-LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-05T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/FCalSuperCells3DNeighborsPrevNew-April2014.txt
+LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/FCalSuperCells2DNeighborsNew-April2014.txt
+LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/FCalSuperCells3DNeighborsNextNew-April2014.txt
+LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/FCalSuperCells3DNeighborsPrevNew-April2014.txt
 CaloIDHelper_ID...   INFO in createObj: creating a Tile_SuperCell_ID helper object in the detector store
 AtlasDetectorID      INFO initialize_from_dictionary - OK
-TileNeighbour        INFO Reading file  /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-05T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/TileSuperCellNeighbour.txt
+TileNeighbour        INFO Reading file  /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/TileSuperCellNeighbour.txt
 AtlasDetectorID      INFO initialize_from_dictionary - OK
 CaloIdMgrDetDes...   INFO  Finished 
 CaloIdMgrDetDes...   INFO Initializing CaloIdMgr from values in CaloIdMgrDetDescrCnv 
@@ -382,8 +382,8 @@ TileBadChannels...   INFO TileBchStatus::isBadTiming() is defined by: Bad timing
 TileBadChannels...   INFO TileBchStatus::isWrongBCID() is defined by: Wrong BCID; Online wrong BCID; 
 TileBadChannels...   INFO No drawer trips probabilities found in DB
 *** Starting test1
-ClassIDSvc           INFO  getRegistryEntries: read 875 CLIDRegistry entries for module ALL
-ClassIDSvc           INFO  getRegistryEntries: read 181 CLIDRegistry entries for module ALL
+ClassIDSvc           INFO  getRegistryEntries: read 674 CLIDRegistry entries for module ALL
+ClassIDSvc           INFO  getRegistryEntries: read 185 CLIDRegistry entries for module ALL
 *** Starting test2
 *** Starting test3
 *** Starting test4
@@ -405,31 +405,31 @@ test1                INFO Finalizing test1...
 IncidentProcAlg2     INFO Finalize
 PyComponentMgr       INFO Finalizing PyComponentMgr...
 IdDictDetDescrCnv    INFO in finalize
-IOVDbFolder          INFO Folder /LAR/Align (PoolRef) db-read 1/1 objs/chan/bytes 1/1/170 ((     0.16 ))s
-IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/CES (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/103344 ((     0.18 ))s
+IOVDbFolder          INFO Folder /LAR/Align (PoolRef) db-read 1/1 objs/chan/bytes 1/1/170 ((     0.04 ))s
+IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/CES (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/103344 ((     0.04 ))s
 IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/CIS/FIT/LIN (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/80 ((     0.02 ))s
-IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/CIS/FIT/NLN (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/80 ((     0.02 ))s
+IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/CIS/FIT/NLN (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/80 ((     0.03 ))s
 IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/EMS (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/92 ((     0.02 ))s
-IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/LAS/FIBER (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/940 ((     0.02 ))s
+IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/LAS/FIBER (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/940 ((     0.03 ))s
 IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/LAS/LIN (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/72 ((     0.02 ))s
-IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/LAS/NLN (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/76 ((     0.02 ))s
-IOVDbFolder          INFO Folder /TILE/OFL02/NOISE/SAMPLE (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/641476 ((     0.03 ))s
-IOVDbFolder          INFO Folder /TILE/OFL02/STATUS/ADC (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/97884 ((     0.03 ))s
-IOVDbFolder          INFO Folder /TILE/OFL02/TIME/CHANNELOFFSET/PHY (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/96 ((     0.03 ))s
-IOVDbFolder          INFO Folder /TILE/ONL01/STATUS/ADC (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/76 ((     0.00 ))s
-IOVDbFolder          INFO Folder /LAR/LArCellPositionShift (PoolRef) db-read 1/1 objs/chan/bytes 1/1/195 ((     0.02 ))s
-IOVDbSvc             INFO  bytes in ((      0.57 ))s
+IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/LAS/NLN (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/76 ((     0.03 ))s
+IOVDbFolder          INFO Folder /TILE/OFL02/NOISE/SAMPLE (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/641476 ((     0.04 ))s
+IOVDbFolder          INFO Folder /TILE/OFL02/STATUS/ADC (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/97884 ((     0.04 ))s
+IOVDbFolder          INFO Folder /TILE/OFL02/TIME/CHANNELOFFSET/PHY (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/96 ((     0.04 ))s
+IOVDbFolder          INFO Folder /TILE/ONL01/STATUS/ADC (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/76 ((     0.01 ))s
+IOVDbFolder          INFO Folder /LAR/LArCellPositionShift (PoolRef) db-read 1/1 objs/chan/bytes 1/1/195 ((     0.03 ))s
+IOVDbSvc             INFO  bytes in ((      0.38 ))s
 IOVDbSvc             INFO Connection sqlite://;schema=mycool.db;dbname=OFLP200 : nConnect: 0 nFolders: 0 ReadTime: ((     0.00 ))s
-IOVDbSvc             INFO Connection COOLOFL_LAR/OFLP200 : nConnect: 2 nFolders: 2 ReadTime: ((     0.18 ))s
-IOVDbSvc             INFO Connection COOLOFL_TILE/OFLP200 : nConnect: 2 nFolders: 11 ReadTime: ((     0.40 ))s
+IOVDbSvc             INFO Connection COOLOFL_LAR/OFLP200 : nConnect: 2 nFolders: 2 ReadTime: ((     0.07 ))s
+IOVDbSvc             INFO Connection COOLOFL_TILE/OFLP200 : nConnect: 2 nFolders: 11 ReadTime: ((     0.31 ))s
 AthDictLoaderSvc     INFO in finalize...
 ToolSvc              INFO Removing all tools created by ToolSvc
 *****Chrono*****     INFO ****************************************************************************************************
 *****Chrono*****     INFO  The Final CPU consumption ( Chrono ) Table (ordered)
 *****Chrono*****     INFO ****************************************************************************************************
-cObjR_ALL            INFO Time User   : Tot=  370 [ms] Ave/Min/Max=  185(+-  175)/   10/  360 [ms] #=  2
-cObj_ALL             INFO Time User   : Tot=  400 [ms] Ave/Min/Max= 30.8(+- 98.3)/    0/  370 [ms] #= 13
-ChronoStatSvc        INFO Time User   : Tot= 38.3  [s]                                             #=  1
+cObjR_ALL            INFO Time User   : Tot=  280 [ms] Ave/Min/Max=  140(+-  140)/    0/  280 [ms] #=  2
+cObj_ALL             INFO Time User   : Tot=  310 [ms] Ave/Min/Max= 23.8(+-   77)/    0/  290 [ms] #= 13
+ChronoStatSvc        INFO Time User   : Tot= 28.5  [s]                                             #=  1
 *****Chrono*****     INFO ****************************************************************************************************
 ChronoStatSvc.f...   INFO  Service finalized successfully 
 ApplicationMgr       INFO Application Manager Finalized successfully
diff --git a/TileCalorimeter/TileRecUtils/share/TileRawChannelBuilder_test.ref b/TileCalorimeter/TileRecUtils/share/TileRawChannelBuilder_test.ref
index e853b2c1d91..b0822cfd21c 100644
--- a/TileCalorimeter/TileRecUtils/share/TileRawChannelBuilder_test.ref
+++ b/TileCalorimeter/TileRecUtils/share/TileRawChannelBuilder_test.ref
@@ -1,16 +1,16 @@
-Tue Aug  6 21:39:18 CEST 2019
+Fri Nov 29 11:06:19 CET 2019
 Preloading tcmalloc_minimal.so
 Py:Athena            INFO including file "AthenaCommon/Preparation.py"
-Py:Athena            INFO using release [WorkDir-22.0.3] [x86_64-centos7-gcc8-opt] [atlas-work3/da00b53be39] -- built on [2019-08-06T2037]
+Py:Athena            INFO using release [WorkDir-22.0.9] [x86_64-centos7-gcc8-opt] [tilecal-12bit/82699bf159] -- built on [2019-11-29T1101]
 Py:Athena            INFO including file "AthenaCommon/Atlas.UnixStandardJob.py"
 Py:Athena            INFO executing ROOT6Setup
 Py:Athena            INFO including file "AthenaCommon/Execution.py"
 Py:Athena            INFO including file "TileRecUtils/TileRawChannelBuilder_test.py"
-SetGeometryVersion.py obtained major release version 22
+Py:Athena            INFO SetGeometryVersion.py obtained major release version 22
 Py:Athena            INFO including file "IdDictDetDescrCnv/IdDictDetDescrCnv_joboptions.py"
-Py:ConfigurableDb    INFO Read module info for 5520 configurables from 75 genConfDb files
+Py:ConfigurableDb    INFO Read module info for 5635 configurables from 11 genConfDb files
 Py:ConfigurableDb    INFO No duplicates have been found: that's good !
-EventInfoMgtInit: Got release version  Athena-22.0.3
+EventInfoMgtInit: Got release version  Athena-22.0.9
 Py:IOVDbSvc.CondDB    INFO Setting up conditions DB access to instance OFLP200
 Py:Athena            INFO including file "TileConditions/TileConditions_jobOptions.py"
 Py:TileInfoConf.     INFO Adding TileCablingSvc to ServiceMgr
@@ -22,20 +22,22 @@ Py:TileInfoConf.     INFO Changing default TileCondToolEmscale configuration to
 Py:TileInfoConf.     INFO Changing default TileCondToolNoiseSample configuration to COOL source
 Py:TileInfoConf.     INFO Changing default TileCondToolTiming configuration to COOL source
 Py:TileConditions_jobOptions.py    INFO Adjusting TileInfo to return cell noise for Opt.Filter without iterations
+Py:TileConditions_jobOptions.py    INFO Setting 10-bit ADC configuration
+Py:TileInfoConf.     INFO Setting 10-bit Tile ADC
 Py:Athena            INFO including file "AthenaCommon/runbatch.py"
 ApplicationMgr       INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0
 ApplicationMgr       INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0
 ApplicationMgr    SUCCESS 
 ====================================================================================================================================
-                                                   Welcome to ApplicationMgr (GaudiCoreSvc v32r0)
-                                          running on lxplus724.cern.ch on Tue Aug  6 21:39:28 2019
+                                                   Welcome to ApplicationMgr (GaudiCoreSvc v32r2)
+                                          running on pcpraha5 on Fri Nov 29 11:06:26 2019
 ====================================================================================================================================
 ApplicationMgr       INFO Application Manager Configured successfully
 ApplicationMgr       INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0
 StatusCodeSvc        INFO initialize
 AthDictLoaderSvc     INFO in initialize...
 AthDictLoaderSvc     INFO acquired Dso-registry
-ClassIDSvc           INFO  getRegistryEntries: read 7068 CLIDRegistry entries for module ALL
+ClassIDSvc           INFO  getRegistryEntries: read 7151 CLIDRegistry entries for module ALL
 CoreDumpSvc          INFO install f-a-t-a-l handler... (flag = -1)
 CoreDumpSvc          INFO Handling signals: 11(Segmentation fault) 7(Bus error) 4(Illegal instruction) 8(Floating point exception) 
 MetaDataSvc          INFO Initializing MetaDataSvc - package version AthenaServices-00-00-00
@@ -44,8 +46,8 @@ PoolSvc              INFO io_register[PoolSvc](xmlcatalog_file:PoolFileCatalog.x
 PoolSvc              INFO Set connectionsvc retry/timeout/IDLE timeout to  'ConnectionRetrialPeriod':300/ 'ConnectionRetrialTimeOut':3600/ 'ConnectionTimeOut':5 seconds with connection cleanup disabled
 PoolSvc              INFO Frontier compression level set to 5
 DBReplicaSvc         INFO Frontier server at (serverurl=http://atlasfrontier-local.cern.ch:8000/atlr)(serverurl=http://atlasfrontier-ai.cern.ch:8000/atlr)(serverurl=http://lcgft-atlas.gridpp.rl.ac.uk:3128/frontierATLAS)(serverurl=http://ccfrontier.in2p3.fr:23128/ccin2p3-AtlasFrontier)(proxyurl=http://ca-proxy.cern.ch:3128)(proxyurl=http://ca-proxy-meyrin.cern.ch:3128)(proxyurl=http://ca-proxy-wigner.cern.ch:3128)(proxyurl=http://atlasbpfrontier.cern.ch:3127)(proxyurl=http://atlasbpfrontier.fnal.gov:3127) will be considered for COOL data
-DBReplicaSvc         INFO Read replica configuration from /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-05T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/dbreplica.config
-DBReplicaSvc         INFO Total of 10 servers found for host lxplus724.cern.ch [ATLF ATLAS_COOLPROD atlas_dd ATLAS_CONFIG INT8R INTR ATONR_COOL ATONR_CONF DEVDB11 ATLF ]
+DBReplicaSvc         INFO Read replica configuration from /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/dbreplica.config
+DBReplicaSvc         INFO Total of 10 servers found for host pcpraha5.dyndns.cern.ch [ATLF ATLAS_COOLPROD atlas_dd ATLAS_CONFIG INT8R INTR ATONR_COOL ATONR_CONF DEVDB11 ATLF ]
 PoolSvc              INFO Successfully setup replica sorting algorithm
 PoolSvc              INFO Setting up APR FileCatalog and Streams
 PoolSvc           WARNING Unable to locate catalog for prfile:poolcond/PoolCat_oflcond.xml check your ATLAS_POOLCOND_PATH and DATAPATH variables
@@ -82,8 +84,8 @@ IOVDbSvc             INFO Added taginfo remove for /TILE/OFL02/STATUS/ADC
 IOVDbSvc             INFO Added taginfo remove for /TILE/OFL02/TIME/CHANNELOFFSET/PHY
 IOVDbSvc             INFO Added taginfo remove for /TILE/ONL01/STATUS/ADC
 IOVDbSvc             INFO Added taginfo remove for /LAR/LArCellPositionShift
-ClassIDSvc           INFO  getRegistryEntries: read 1950 CLIDRegistry entries for module ALL
-ClassIDSvc           INFO  getRegistryEntries: read 17 CLIDRegistry entries for module ALL
+ClassIDSvc           INFO  getRegistryEntries: read 2007 CLIDRegistry entries for module ALL
+ClassIDSvc           INFO  getRegistryEntries: read 24 CLIDRegistry entries for module ALL
 DetDescrCnvSvc       INFO  initializing 
 DetDescrCnvSvc       INFO Found DetectorStore service
 DetDescrCnvSvc       INFO  filling proxies for detector managers 
@@ -118,8 +120,6 @@ DetDescrCnvSvc       INFO  filling address for MDTIDHELPER with CLID 4170 and st
 DetDescrCnvSvc       INFO  filling address for CSCIDHELPER with CLID 4171 and storage type 68 to detector store 
 DetDescrCnvSvc       INFO  filling address for RPCIDHELPER with CLID 4172 and storage type 68 to detector store 
 DetDescrCnvSvc       INFO  filling address for TGCIDHELPER with CLID 4173 and storage type 68 to detector store 
-DetDescrCnvSvc       INFO  filling address for STGCIDHELPER with CLID 4174 and storage type 68 to detector store 
-DetDescrCnvSvc       INFO  filling address for MMIDHELPER with CLID 4175 and storage type 68 to detector store 
 DetDescrCnvSvc       INFO  filling address for CaloLVL1_ID with CLID 108133391 and storage type 68 to detector store 
 DetDescrCnvSvc       INFO  filling address for CaloCell_ID with CLID 123500438 and storage type 68 to detector store 
 DetDescrCnvSvc       INFO  filling address for CaloCell_SuperCell_ID with CLID 128365736 and storage type 68 to detector store 
@@ -176,7 +176,7 @@ BarrelConstruction   INFO   Use sagging in geometry  ? 0
 EMECConstruction     INFO multi-layered version of absorbers activated, parameter value is 1
 EMECConstruction     INFO activating LAr::EMEC::Pos::InnerWheel
 EMECConstruction     INFO activating LAr::EMEC::Pos::OuterWheel
-ClassIDSvc           INFO  getRegistryEntries: read 2984 CLIDRegistry entries for module ALL
+ClassIDSvc           INFO  getRegistryEntries: read 2988 CLIDRegistry entries for module ALL
 CaloIDHelper_ID...   INFO in createObj: creating a TileTBID helper object in the detector store
 TileTBID             INFO initialize_from_dictionary 
 AtlasDetectorID      INFO initialize_from_dictionary - OK
@@ -185,7 +185,7 @@ EMECConstruction     INFO multi-layered version of absorbers activated, paramete
 EMECConstruction     INFO activating LAr::EMEC::Neg::InnerWheel
 EMECConstruction     INFO activating LAr::EMEC::Neg::OuterWheel
 EndcapDMConstru...   INFO Start building EC electronics geometry
-GeoModelSvc          INFO GeoModelSvc.LArDetectorToolNV	 SZ= 25368Kb 	 Time = 0.54S
+GeoModelSvc          INFO GeoModelSvc.LArDetectorToolNV	 SZ= 25368Kb 	 Time = 0.44S
 GeoModelSvc.Til...   INFO  Entering TileDetectorTool::create()
 TileDddbManager      INFO m_tag = ATLAS-R2-2016-01-00-01
 TileDddbManager      INFO n_tiglob = 5
@@ -196,7 +196,7 @@ TileDddbManager      INFO n_tilb = 21
 TileDddbManager      INFO n_tileSwitches = 1
 CaloIDHelper_ID...   INFO in createObj: creating a TileID helper object in the detector store
 AtlasDetectorID      INFO initialize_from_dictionary - OK
-TileNeighbour        INFO Reading file  /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-05T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/TileNeighbour_reduced.txt
+TileNeighbour        INFO Reading file  /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/TileNeighbour_reduced.txt
 TileHWIDDetDesc...   INFO in createObj: creating a TileHWID helper object in the detector store
 TileHWID             INFO initialize_from_dictionary 
 AtlasDetectorID      INFO initialize_from_dictionary - OK
@@ -208,9 +208,9 @@ CaloIDHelper_ID...   INFO in createObj: creating a LArHEC_ID helper object in th
 AtlasDetectorID      INFO initialize_from_dictionary - OK
 CaloIDHelper_ID...   INFO in createObj: creating a LArFCAL_ID helper object in the detector store
 AtlasDetectorID      INFO initialize_from_dictionary - OK
-LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-05T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/FCal2DNeighbors-April2011.txt
-LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-05T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/FCal3DNeighborsNext-April2011.txt
-LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-05T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/FCal3DNeighborsPrev-April2011.txt
+LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/FCal2DNeighbors-April2011.txt
+LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/FCal3DNeighborsNext-April2011.txt
+LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/FCal3DNeighborsPrev-April2011.txt
 CaloIDHelper_ID...   INFO in createObj: creating a LArMiniFCAL_ID helper object in the detector store
 AtlasDetectorID      INFO initialize_from_dictionary - OK
 LArMiniFCAL_ID       INFO  initialize_from_dict - LArCalorimeter dictionary does NOT contain miniFCAL description. Unable to initialize LArMiniFCAL_ID.
@@ -245,7 +245,7 @@ GeoModelSvc.Til...   INFO  Global positioning of barrel with rotation (0,0,0)) a
 GeoModelSvc.Til...   INFO  Global positioning of positive ext.barrel with rotation (0,0,0)) and translation (0,0,0) Gaudi::Units::cm
 GeoModelSvc.Til...   INFO  Global positioning of negative ext.barrel with rotation (0,0,0)) and translation (0,0,1) Gaudi::Units::cm
 TileDetDescrMan...   INFO Entering create_elements()
-GeoModelSvc          INFO GeoModelSvc.TileDetectorTool	 SZ= 2552Kb 	 Time = 0.16S
+GeoModelSvc          INFO GeoModelSvc.TileDetectorTool	 SZ= 3576Kb 	 Time = 0.12S
 ClassIDSvc           INFO  getRegistryEntries: read 66 CLIDRegistry entries for module ALL
 TileInfoLoader       INFO Changing TTL1 calib from 4.1 to 6.9
 TileInfoLoader       INFO Changing TTL1 noise sigma from 2.5 to 2.8
@@ -300,8 +300,8 @@ TileEMScaleCond...   INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCond
 TileEMScaleCond...   INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OnlEms) for folder: "/TILE/OFL02/CALIB/EMS"
 TileSampleNoise...   INFO Creating TileCondProxyCool(TileSampleNoiseCondAlg.TileCondProxyCool_NoiseSample) for folder: "/TILE/OFL02/NOISE/SAMPLE"
 TileTimingCondA...   INFO Creating TileCondProxyCool(TileTimingCondAlg.TileCondProxyCool_AdcOffset) for folder: "/TILE/OFL02/TIME/CHANNELOFFSET/PHY"
-ClassIDSvc           INFO  getRegistryEntries: read 365 CLIDRegistry entries for module ALL
-ClassIDSvc           INFO  getRegistryEntries: read 4893 CLIDRegistry entries for module ALL
+ClassIDSvc           INFO  getRegistryEntries: read 380 CLIDRegistry entries for module ALL
+ClassIDSvc           INFO  getRegistryEntries: read 4905 CLIDRegistry entries for module ALL
 xAODMaker::Even...   INFO Initializing - Package version: xAODEventInfoCnv-00-00-00
 xAODMaker::Even...   INFO Initializing - Package version: xAODEventInfoCnv-00-00-00
 xAODMaker::Even...WARNING Beam conditions service not available
@@ -310,7 +310,7 @@ PyComponentMgr       INFO Initializing PyComponentMgr...
 prepalg1             INFO Initializing prepalg1...
 ClassIDSvc           INFO  getRegistryEntries: read 106 CLIDRegistry entries for module ALL
 testalg1             INFO Initializing testalg1...
-ClassIDSvc           INFO  getRegistryEntries: read 102 CLIDRegistry entries for module ALL
+ClassIDSvc           INFO  getRegistryEntries: read 105 CLIDRegistry entries for module ALL
 ToolSvc.tool1        INFO TileRawChannelBuilder::initialize()
 ToolSvc.tool2        INFO TileRawChannelBuilder::initialize()
 ToolSvc.tool2.n...   INFO Initializing...
@@ -331,7 +331,7 @@ ApplicationMgr       INFO Application Manager Started successfully
 AthenaEventLoopMgr   INFO   ===>>>  start of run 1    <<<===
 EventPersistenc...   INFO Added successfully Conversion service:AthenaPoolCnvSvc
 EventPersistenc...   INFO Added successfully Conversion service:TagInfoMgr
-ClassIDSvc           INFO  getRegistryEntries: read 109 CLIDRegistry entries for module ALL
+ClassIDSvc           INFO  getRegistryEntries: read 114 CLIDRegistry entries for module ALL
 IOVDbSvc             INFO Opening COOL connection for COOLOFL_LAR/OFLP200
 IOVDbFolder          INFO HVS tag OFLCOND-RUN12-SDR-35 resolved to LARAlign-IOVDEP-00 for folder /LAR/Align
 IOVDbFolder          INFO HVS tag OFLCOND-RUN12-SDR-35 resolved to LArCellPositionShift-ideal for folder /LAR/LArCellPositionShift
@@ -341,7 +341,7 @@ Domain[ROOT_All]     INFO                           /cvmfs/atlas-condb.cern.ch/r
 RootDatabase.open    INFO /cvmfs/atlas-condb.cern.ch/repo/conditions/cond09/cond09_mc.000057.gen.COND/cond09_mc.000057.gen.COND._0001.pool.root File version:52200
 CaloMgrDetDescrCnv   INFO in createObj: creating a Calo Detector Manager object in the detector store
 CaloIdMgrDetDes...   INFO in createObj: creating a CaloDescrManager object in the detector store
-ClassIDSvc           INFO  getRegistryEntries: read 195 CLIDRegistry entries for module ALL
+ClassIDSvc           INFO  getRegistryEntries: read 198 CLIDRegistry entries for module ALL
 CaloIDHelper_ID...   INFO in createObj: creating a CaloDM_ID helper object in the detector store
 CaloDM_ID            INFO initialize_from_dictionary
 AtlasDetectorID      INFO initialize_from_dictionary - OK
@@ -355,12 +355,12 @@ CaloIDHelper_ID...   INFO in createObj: creating a LArHEC_SuperCell_ID helper ob
 AtlasDetectorID      INFO initialize_from_dictionary - OK
 CaloIDHelper_ID...   INFO in createObj: creating a LArFCAL_SuperCell_ID helper object in the detector store
 AtlasDetectorID      INFO initialize_from_dictionary - OK
-LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-05T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/FCalSuperCells2DNeighborsNew-April2014.txt
-LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-05T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/FCalSuperCells3DNeighborsNextNew-April2014.txt
-LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-05T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/FCalSuperCells3DNeighborsPrevNew-April2014.txt
+LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/FCalSuperCells2DNeighborsNew-April2014.txt
+LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/FCalSuperCells3DNeighborsNextNew-April2014.txt
+LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/FCalSuperCells3DNeighborsPrevNew-April2014.txt
 CaloIDHelper_ID...   INFO in createObj: creating a Tile_SuperCell_ID helper object in the detector store
 AtlasDetectorID      INFO initialize_from_dictionary - OK
-TileNeighbour        INFO Reading file  /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-05T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/TileSuperCellNeighbour.txt
+TileNeighbour        INFO Reading file  /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/TileSuperCellNeighbour.txt
 AtlasDetectorID      INFO initialize_from_dictionary - OK
 CaloIdMgrDetDes...   INFO  Finished 
 CaloIdMgrDetDes...   INFO Initializing CaloIdMgr from values in CaloIdMgrDetDescrCnv 
@@ -391,8 +391,8 @@ TileBadChannels...   INFO TileBchStatus::isNoGainL1() is defined by: ADC dead; N
 TileBadChannels...   INFO TileBchStatus::isBadTiming() is defined by: Bad timing; Online bad timing; 
 TileBadChannels...   INFO TileBchStatus::isWrongBCID() is defined by: Wrong BCID; Online wrong BCID; 
 TileBadChannels...   INFO No drawer trips probabilities found in DB
-ClassIDSvc           INFO  getRegistryEntries: read 875 CLIDRegistry entries for module ALL
-ClassIDSvc           INFO  getRegistryEntries: read 181 CLIDRegistry entries for module ALL
+ClassIDSvc           INFO  getRegistryEntries: read 674 CLIDRegistry entries for module ALL
+ClassIDSvc           INFO  getRegistryEntries: read 185 CLIDRegistry entries for module ALL
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #1, run #1 1 events processed so far  <<<===
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #2, run #1 1 events processed so far  <<<===
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #2, run #1 2 events processed so far  <<<===
@@ -413,23 +413,23 @@ testalg1             INFO Finalizing testalg1...
 IncidentProcAlg2     INFO Finalize
 PyComponentMgr       INFO Finalizing PyComponentMgr...
 IdDictDetDescrCnv    INFO in finalize
-IOVDbFolder          INFO Folder /LAR/Align (PoolRef) db-read 1/1 objs/chan/bytes 1/1/170 ((     0.04 ))s
-IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/CES (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/103344 ((     0.03 ))s
-IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/CIS/FIT/LIN (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/80 ((     0.02 ))s
-IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/CIS/FIT/NLN (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/80 ((     0.02 ))s
+IOVDbFolder          INFO Folder /LAR/Align (PoolRef) db-read 1/1 objs/chan/bytes 1/1/170 ((     0.05 ))s
+IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/CES (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/103344 ((     0.04 ))s
+IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/CIS/FIT/LIN (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/80 ((     0.03 ))s
+IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/CIS/FIT/NLN (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/80 ((     0.03 ))s
 IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/EMS (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/92 ((     0.02 ))s
-IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/LAS/FIBER (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/940 ((     0.02 ))s
-IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/LAS/LIN (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/72 ((     0.02 ))s
-IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/LAS/NLN (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/76 ((     0.02 ))s
-IOVDbFolder          INFO Folder /TILE/OFL02/NOISE/SAMPLE (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/641476 ((     0.03 ))s
-IOVDbFolder          INFO Folder /TILE/OFL02/STATUS/ADC (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/97884 ((     0.02 ))s
-IOVDbFolder          INFO Folder /TILE/OFL02/TIME/CHANNELOFFSET/PHY (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/96 ((     0.02 ))s
-IOVDbFolder          INFO Folder /TILE/ONL01/STATUS/ADC (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/76 ((     0.00 ))s
-IOVDbFolder          INFO Folder /LAR/LArCellPositionShift (PoolRef) db-read 1/1 objs/chan/bytes 1/1/195 ((     0.02 ))s
-IOVDbSvc             INFO  bytes in ((      0.30 ))s
+IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/LAS/FIBER (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/940 ((     0.03 ))s
+IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/LAS/LIN (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/72 ((     0.03 ))s
+IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/LAS/NLN (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/76 ((     0.04 ))s
+IOVDbFolder          INFO Folder /TILE/OFL02/NOISE/SAMPLE (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/641476 ((     0.04 ))s
+IOVDbFolder          INFO Folder /TILE/OFL02/STATUS/ADC (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/97884 ((     0.04 ))s
+IOVDbFolder          INFO Folder /TILE/OFL02/TIME/CHANNELOFFSET/PHY (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/96 ((     0.04 ))s
+IOVDbFolder          INFO Folder /TILE/ONL01/STATUS/ADC (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/76 ((     0.01 ))s
+IOVDbFolder          INFO Folder /LAR/LArCellPositionShift (PoolRef) db-read 1/1 objs/chan/bytes 1/1/195 ((     0.03 ))s
+IOVDbSvc             INFO  bytes in ((      0.42 ))s
 IOVDbSvc             INFO Connection sqlite://;schema=mycool.db;dbname=OFLP200 : nConnect: 0 nFolders: 0 ReadTime: ((     0.00 ))s
-IOVDbSvc             INFO Connection COOLOFL_LAR/OFLP200 : nConnect: 2 nFolders: 2 ReadTime: ((     0.06 ))s
-IOVDbSvc             INFO Connection COOLOFL_TILE/OFLP200 : nConnect: 2 nFolders: 11 ReadTime: ((     0.24 ))s
+IOVDbSvc             INFO Connection COOLOFL_LAR/OFLP200 : nConnect: 2 nFolders: 2 ReadTime: ((     0.08 ))s
+IOVDbSvc             INFO Connection COOLOFL_TILE/OFLP200 : nConnect: 2 nFolders: 11 ReadTime: ((     0.35 ))s
 AthDictLoaderSvc     INFO in finalize...
 ToolSvc              INFO Removing all tools created by ToolSvc
 ToolSvc.tool2        INFO Finalizing
@@ -437,9 +437,9 @@ ToolSvc.tool1        INFO Finalizing
 *****Chrono*****     INFO ****************************************************************************************************
 *****Chrono*****     INFO  The Final CPU consumption ( Chrono ) Table (ordered)
 *****Chrono*****     INFO ****************************************************************************************************
-cObjR_ALL            INFO Time User   : Tot=  370 [ms] Ave/Min/Max=  185(+-  175)/   10/  360 [ms] #=  2
-cObj_ALL             INFO Time User   : Tot=  400 [ms] Ave/Min/Max= 30.8(+- 98.3)/    0/  370 [ms] #= 13
-ChronoStatSvc        INFO Time User   : Tot= 36.5  [s]                                             #=  1
+cObjR_ALL            INFO Time User   : Tot=  310 [ms] Ave/Min/Max=  155(+-  145)/   10/  300 [ms] #=  2
+cObj_ALL             INFO Time User   : Tot=  340 [ms] Ave/Min/Max= 26.2(+-   85)/    0/  320 [ms] #= 13
+ChronoStatSvc        INFO Time User   : Tot= 26.3  [s]                                             #=  1
 *****Chrono*****     INFO ****************************************************************************************************
 ChronoStatSvc.f...   INFO  Service finalized successfully 
 ApplicationMgr       INFO Application Manager Finalized successfully
diff --git a/TileCalorimeter/TileRecUtils/src/TileCellBuilder.cxx b/TileCalorimeter/TileRecUtils/src/TileCellBuilder.cxx
index 1666c4af839..4fdedbfd143 100644
--- a/TileCalorimeter/TileRecUtils/src/TileCellBuilder.cxx
+++ b/TileCalorimeter/TileRecUtils/src/TileCellBuilder.cxx
@@ -16,6 +16,7 @@
 #include "CaloDetDescr/MbtsDetDescrManager.h"
 #include "TileDetDescr/TileDetDescrManager.h"
 #include "TileCalibBlobObjs/TileCalibUtils.h"
+#include "TileConditions/TileInfo.h"
  
 // Calo includes
 #include "CaloIdentifier/CaloCell_ID.h"
@@ -68,6 +69,7 @@ TileCellBuilder::TileCellBuilder(const std::string& type, const std::string& nam
   , m_mbtsMgr(nullptr)
   , m_notUpgradeCabling(true)
   , m_run2(false)
+  , m_tileInfo(0)
   , m_run2plus(false)
 {
   declareInterface<TileCellBuilder>( this );
@@ -141,6 +143,8 @@ TileCellBuilder::TileCellBuilder(const std::string& type, const std::string& nam
 
   declareProperty("UseDemoCabling", m_useDemoCabling = 0); // if set to 2015 - assume TB 2015 cabling
 
+  declareProperty("TileInfoName", m_infoName = "TileInfo");
+
   declareProperty("CheckDCS", m_checkDCS = false);
 }
 
@@ -223,6 +227,11 @@ StatusCode TileCellBuilder::initialize() {
 
   ATH_MSG_INFO( "TileCellBuilder initialization completed" );
 
+  //=== get TileInfo
+  ATH_CHECK( detStore()->retrieve(m_tileInfo, m_infoName) );
+  m_ADCmaskValueMinusEps = m_tileInfo->ADCmaskValue() - 0.01;  // indicates channels which were masked in background dataset
+  m_ADCmaskValuePlusEps  = m_tileInfo->ADCmaskValue() + 0.01;  // indicates channels which were masked in background dataset
+
   return StatusCode::SUCCESS;
 }
 
@@ -518,7 +527,7 @@ StatusCode TileCellBuilder::process (CaloCellContainer* theCellContainer,
   // every 4 bits - status of partitions LBA,LBC,EBA,EBC
   // bits 0-3   - there is a signal above threshold in partitions
   // bits 4-7   - there are channels with underflow (sample=0) in partition (since rel 17.2.6.4)
-  // bits 8-11  - there are channels with overflow (sample=1023) in partition (since rel 17.2.6.4)
+  // bits 8-11  - there are channels with overflow (sample=m_tileInfo->ADCmax()) in partition (since rel 17.2.6.4)
   // bits 12-15 - there are at least 16 drawers with bad quality in partition
   // bits 16-19 - maximal length of consecutive bad area (since rel 17.2.6.5)
   // bits 20-23 - there are at least 16 drawers which are completely masked in partition
@@ -1104,15 +1113,16 @@ void TileCellBuilder::build (const EventContext& ctx,
     bool underflow = false;
     bool overfit = false;
     float ped = pChannel->pedestal();
-    if (ped > 55000.) { // one of bad patterns
+    if (ped > 59500.) { // one of bad patterns
       qual = 9999; // mask all bad patterns
     } else if (ped > 39500.) { // 40000 for constant value or 50000 for all zeros in disconnexted channel
       // nothing to do
-    } else if (ped > 5000.) { // 10000 for underflow or 20000 for overflow or 10000+20000
-      underflow = ((ped < 15000.) || (ped > 29500.));
-      overflow = (ped > 15000.);
+    } else if (ped > m_ADCmaskValuePlusEps) { // 10000 for underflow or 20000 for overflow or 10000+20000
+      // NOTE: opt filter can yield values between (-500, 4600) and overlay magic number is 4800 in case of 12-bit ADCs
+      underflow = ((ped < 10000. + m_ADCmaskValuePlusEps) || (ped > 29500.));
+      overflow  =  (ped > 10000. + m_ADCmaskValuePlusEps);
       // special flag indicating that fit method was applied for overflow channels
-      overfit = ( (ped >= 22500 && ped < 29500) || (ped >= 32500 && ped < 39500) );
+      overfit = ( (ped > 20000. + m_ADCmaskValueMinusEps && ped < 29500) || (ped > 30000. + m_ADCmaskValueMinusEps && ped < 39500) );
 
       if (overflow
           && gain == TileID::LOWGAIN
@@ -1194,7 +1204,7 @@ void TileCellBuilder::build (const EventContext& ctx,
                             << " iqual= " << (int) iqual
                             << " qbit = 0x" << MSG::hex << (int) qbit << MSG::dec;
 
-          if (ped > 5000)
+          if (ped > m_ADCmaskValuePlusEps)
             msg(MSG::VERBOSE) << " err = " << TileRawChannelBuilder::BadPatternName(ped) << endmsg;
           else
             msg(MSG::VERBOSE) << endmsg;
@@ -1250,7 +1260,7 @@ void TileCellBuilder::build (const EventContext& ctx,
                             << " iqual= " << (int) iqual
                             << " qbit = 0x" << MSG::hex << (int) qbit << MSG::dec;
 
-          if (ped > 5000)
+          if (ped > m_ADCmaskValuePlusEps)
             msg(MSG::VERBOSE) << " err = " << TileRawChannelBuilder::BadPatternName(ped) << endmsg;
           else
             msg(MSG::VERBOSE) << endmsg;
@@ -1331,7 +1341,7 @@ void TileCellBuilder::build (const EventContext& ctx,
                           << " iqual= " << (int) iqual
                           << " qbit = 0x" << MSG::hex << (int) qbit << MSG::dec;
 
-        if (ped > 5000)
+        if (ped > m_ADCmaskValuePlusEps)
           msg(MSG::VERBOSE) << " err = " << TileRawChannelBuilder::BadPatternName(ped) << endmsg;
         else
           msg(MSG::VERBOSE) << endmsg;
@@ -1354,7 +1364,7 @@ void TileCellBuilder::build (const EventContext& ctx,
                           << " iqual= " << (int) iqual
                           << " qbit = 0x" << MSG::hex << (int) qbit << MSG::dec;
 
-        if (ped > 5000)
+        if (ped > m_ADCmaskValuePlusEps)
           msg(MSG::VERBOSE) << " err = " << TileRawChannelBuilder::BadPatternName(ped) << endmsg;
         else
           msg(MSG::VERBOSE) << endmsg;
diff --git a/TileCalorimeter/TileRecUtils/src/TileCellBuilderFromHit.cxx b/TileCalorimeter/TileRecUtils/src/TileCellBuilderFromHit.cxx
index 45b00401965..cdfe5bc1218 100644
--- a/TileCalorimeter/TileRecUtils/src/TileCellBuilderFromHit.cxx
+++ b/TileCalorimeter/TileRecUtils/src/TileCellBuilderFromHit.cxx
@@ -279,7 +279,7 @@ StatusCode TileCellBuilderFromHit::process (CaloCellContainer * theCellContainer
   // every 4 bits - status of partitions LBA,LBC,EBA,EBC
   // bits 0-3   - there is a signal above threshold in partitions
   // bits 4-7   - there are channels with underflow (sample=0) in partition (since rel 17.2.6.4)
-  // bits 8-11  - there are channels with overflow (sample=1023) in partition (since rel 17.2.6.4)
+  // bits 8-11  - there are channels with overflow (sample=m_tileInfo->ADCmax()) in partition (since rel 17.2.6.4)
   // bits 12-15 - there are at least 16 drawers with bad quality in partition
   // bits 16-19 - maximal length of consecutive bad area (since rel 17.2.6.5)
   // bits 20-23 - there are at least 16 drawers which are completely masked in partition
diff --git a/TileCalorimeter/TileRecUtils/src/TileRawChannelBuilder.cxx b/TileCalorimeter/TileRecUtils/src/TileRawChannelBuilder.cxx
index a9fa1f90bd2..f66764a8c6f 100644
--- a/TileCalorimeter/TileRecUtils/src/TileRawChannelBuilder.cxx
+++ b/TileCalorimeter/TileRecUtils/src/TileRawChannelBuilder.cxx
@@ -59,7 +59,6 @@ TileRawChannelBuilder::TileRawChannelBuilder(const std::string& type
   , m_bsflags(0)
   , m_tileID(nullptr)
   , m_tileHWID(nullptr)
-  , m_tileInfo(nullptr)
   , m_trigType(0)
   , m_idophys(false)
   , m_idolas(false)
@@ -74,6 +73,7 @@ TileRawChannelBuilder::TileRawChannelBuilder(const std::string& type
   , m_RChSumL(0.0)
   , m_RChSumH(0.0)
   , m_notUpgradeCabling(true)
+  , m_tileInfo(nullptr)
 {
   resetDrawer();
   memset(s_error, 0, sizeof(s_error));
@@ -87,6 +87,7 @@ TileRawChannelBuilder::TileRawChannelBuilder(const std::string& type
   declareProperty("RunType", m_runType = 0);
   declareProperty("DataPoolSize", m_dataPoollSize = -1);
   declareProperty("UseDSPCorrection", m_useDSP = true);
+  declareProperty("TileInfoName", m_infoName = "TileInfo");
   declareProperty("FirstSample",m_firstSample = 0); 
 
 }
@@ -121,7 +122,13 @@ StatusCode TileRawChannelBuilder::initialize() {
   ATH_CHECK( detStore()->retrieve(m_tileID, "TileID") );
   ATH_CHECK( detStore()->retrieve(m_tileHWID, "TileHWID") );
 
-  ATH_CHECK( detStore()->retrieve(m_tileInfo, "TileInfo") );
+  ATH_CHECK( detStore()->retrieve(m_tileInfo, m_infoName) );
+  m_i_ADCmax = m_tileInfo->ADCmax();
+  m_f_ADCmax = m_i_ADCmax;
+  m_i_ADCmaxPlus1 = m_i_ADCmax + 1;
+  m_f_ADCmaxPlus1 = m_i_ADCmaxPlus1;
+  m_ADCmaxMinusEps = m_f_ADCmax - 0.01;
+  m_ADCmaskValueMinusEps = m_tileInfo->ADCmaskValue() - 0.01;  // indicates channels which were masked in background dataset
 
   // access tools and store them
   ATH_CHECK( m_noiseFilterTools.retrieve() );
@@ -331,7 +338,7 @@ void TileRawChannelBuilder::fill_drawer_errors(const EventContext& ctx,
 
     } else {
 
-      int err = CorruptedData(ros, drawer, channel, gain, pDigits->samples(), mindig, maxdig);
+      int err = CorruptedData(ros, drawer, channel, gain, pDigits->samples(), mindig, maxdig, m_ADCmaxMinusEps, m_ADCmaskValueMinusEps);
 
       if (err) {
 
@@ -351,8 +358,8 @@ void TileRawChannelBuilder::fill_drawer_errors(const EventContext& ctx,
             if (err < -5) msg(MSG::VERBOSE) << " Warning " << err;
             else msg(MSG::VERBOSE) << " Error " << err;
           }
-          if (mindig > 2046.99) msg(MSG::VERBOSE) << " BADDQ";
-          if (maxdig > 1022.9) msg(MSG::VERBOSE) << " Overflow";
+          if (mindig > m_ADCmaskValueMinusEps) msg(MSG::VERBOSE) << " BADDQ";
+          if (maxdig > m_ADCmaxMinusEps) msg(MSG::VERBOSE) << " Overflow";
           if (mindig < 0.1) msg(MSG::VERBOSE) << " Underflow";
           if (err < 0) msg(MSG::VERBOSE) << " Const";
 
@@ -366,7 +373,7 @@ void TileRawChannelBuilder::fill_drawer_errors(const EventContext& ctx,
 
       } else {
         if (mindig < 0.01) err += 1;
-        if (maxdig > 1022.99) err += 2;
+        if (maxdig > m_ADCmaxMinusEps) err += 2;
         if (err) s_error[channel] = err - 10;
       }
     }
@@ -682,7 +689,7 @@ double TileRawChannelBuilder::correctTime(double phase, bool of2) {
 
 
 int TileRawChannelBuilder::CorruptedData(int ros, int drawer, int channel, int gain,
-    const std::vector<float> & digits, float &dmin, float &dmax) {
+					 const std::vector<float> & digits, float &dmin, float &dmax, float ADCmaxMinusEps, float ADCmaskValueMinusEps) {
   bool eb = (ros > 2);
   bool ebsp = ((ros == 3 && drawer == 14) || (ros == 4 && drawer == 17));
   bool empty = ((eb && ((channel > 23 && channel < 30) || channel > 41)) || (ebsp && channel < 3));
@@ -691,7 +698,7 @@ int TileRawChannelBuilder::CorruptedData(int ros, int drawer, int channel, int g
 
   const float epsilon = 4.1; // allow +/- 2 counts fluctuations around const value
   const float delta[4] = { 29.9, 29.9, 49.9, 99.9 }; // jump levels between constLG, constHG, non-constLG, non-constHG
-  const float level1 = 99.9; // jump from this level to 1023 is bad 
+  const float level1 = 99.9; // jump from this level to m_i_ADCmax is bad 
   const float level2 = 149.9; // base line at this level in low gain is bad
   const float narrowLevel[2] = { 29.9, 49.9 }; // minimal amplitude for narrow pulses
   const float delt = std::min(std::min(std::min(delta[0], delta[1]), std::min(delta[2], delta[3])),
@@ -706,7 +713,7 @@ int TileRawChannelBuilder::CorruptedData(int ros, int drawer, int channel, int g
     unsigned int pmin = 0;
     unsigned int pmax = 0;
     unsigned int nzero = (dmin < 0.01) ? 1 : 0;
-    unsigned int nover = (dmax > 1022.99) ? 1 : 0;
+    unsigned int nover = (dmax > ADCmaxMinusEps) ? 1 : 0;
 
     for (unsigned int i = 1; i < nSamp; ++i) {
       float dig = digits[i];
@@ -718,14 +725,14 @@ int TileRawChannelBuilder::CorruptedData(int ros, int drawer, int channel, int g
         pmin = i;
       }
       if (dig < 0.01) ++nzero;
-      else if (dig > 1022.99) ++nover;
+      else if (dig > ADCmaxMinusEps) ++nover;
     }
 
     float dmaxmin = dmax - dmin;
     //std::cout << " ros " << ros << " drawer " << drawer << " channel " << channel << " not_gap " << not_gap << " nzero " << nzero << " nover " << nover << std::endl;
 
-    if (dmin > 1022.99) { // overflow in all samples
-      error = (dmin > 2046.99) ? -3 : -1; // dmin=2047 - masking in overlay job (set in TileDigitsMaker)
+    if (dmin > ADCmaxMinusEps) { // overflow in all samples
+      error = (dmin > ADCmaskValueMinusEps) ? -3 : -1; // dmin=m_tileInfo->ADCmaskValue() - masking in overlay job (set in TileDigitsMaker)
 
     } else if (dmax < 0.01) { // underflow in all samples
       error = (empty) ? -5 : -2; // set different type of errors for exsiting and non-existing channels
diff --git a/TileCalorimeter/TileRecUtils/src/TileRawChannelBuilderFitFilter.cxx b/TileCalorimeter/TileRecUtils/src/TileRawChannelBuilderFitFilter.cxx
index a4b5837a4a4..7a87b1650ba 100644
--- a/TileCalorimeter/TileRecUtils/src/TileRawChannelBuilderFitFilter.cxx
+++ b/TileCalorimeter/TileRecUtils/src/TileRawChannelBuilderFitFilter.cxx
@@ -63,7 +63,7 @@ TileRawChannelBuilderFitFilter::TileRawChannelBuilderFitFilter(const std::string
   declareProperty("RMSChannelNoise",m_channelNoiseRMS = 3);
   declareProperty("ExtraSamplesLeft",m_extraSamplesLeft=0);   // increase window on left side
   declareProperty("ExtraSamplesRight",m_extraSamplesRight=0); // increase window on right side
-  declareProperty("SaturatedSample",m_saturatedSample = 1023.0);
+  declareProperty("SaturatedSample",m_saturatedSample = -1.0);
   declareProperty("SaturatedSampleError",m_saturatedSampleError = 6.0);
   declareProperty("ZeroSampleError",m_zeroSampleError = 100.0);
   declareProperty("NoiseThresholdRMS",m_noiseThresholdRMS = 3.0);
@@ -169,6 +169,9 @@ StatusCode TileRawChannelBuilderFitFilter::initialize() {
     }
   }
 
+  // TileInfo
+  if (m_saturatedSample < 0) m_saturatedSample = m_f_ADCmax;
+
   return StatusCode::SUCCESS;
 }
 
diff --git a/TileCalorimeter/TileRecUtils/src/TileRawChannelBuilderMF.cxx b/TileCalorimeter/TileRecUtils/src/TileRawChannelBuilderMF.cxx
index 9388bc918d0..f5a53f0eea6 100644
--- a/TileCalorimeter/TileRecUtils/src/TileRawChannelBuilderMF.cxx
+++ b/TileCalorimeter/TileRecUtils/src/TileRawChannelBuilderMF.cxx
@@ -508,14 +508,14 @@ bool TileRawChannelBuilderMF::are3FF(float &dmin, float &dmax) {
         dmax = dig;
       else if (dig < dmin) dmin = dig;
     }
-    allSaturated = (dmin > 1022.99);
+    allSaturated = (dmin > m_ADCmaxMinusEps);
 
     // FIXME:: set these 2 parameters from JobOptions
     // FIXME:: move this method to base class 
     const float epsilon = 2.1; // allow 1 count fluctuations around const value
     const float delta = 99.9;  // consider jumps by 100 counts only
     const float level0 = 39.9; // jump from this level to zero is bad
-    const float level1 = 99.9; // jump from this level to 1023 is bad 
+    const float level1 = 99.9; // jump from this level to m_i_ADCmax is bad 
 
     if (!allSaturated && (dmax - dmin) > delta) {
       float abovemin = dmax;
@@ -542,11 +542,11 @@ bool TileRawChannelBuilderMF::are3FF(float &dmin, float &dmax) {
         }
       }
 
-      if (dmin < 0.01 && dmax > 1022.99) { // jump from zero to saturation
+      if (dmin < 0.01 && dmax > m_ADCmaxMinusEps) { // jump from zero to saturation
         jump = true;
       } else if (dmin < 0.01 && abovemin > level0 && nmin > 1) { // at least two samples at zero, others - above pedestal
         jump = true;
-      } else if (dmax > 1022.99 && belowmax < level1 && nmax > 1) { // at least two saturated. others - close to pedestal
+      } else if (dmax > m_ADCmaxMinusEps && belowmax < level1 && nmax > 1) { // at least two saturated. others - close to pedestal
         jump = true;
       } else if (nmax + nmin == nSamp) {
         if (nmax > 1 && nmin > 1) { // at least 2 samples at two distinct levels
diff --git a/TileCalorimeter/TileRecUtils/src/TileRawChannelBuilderOpt2Filter.cxx b/TileCalorimeter/TileRecUtils/src/TileRawChannelBuilderOpt2Filter.cxx
index 980e28dd00b..2e0082e0d21 100644
--- a/TileCalorimeter/TileRecUtils/src/TileRawChannelBuilderOpt2Filter.cxx
+++ b/TileCalorimeter/TileRecUtils/src/TileRawChannelBuilderOpt2Filter.cxx
@@ -276,7 +276,7 @@ int TileRawChannelBuilderOpt2Filter::findMaxDigitPosition() {
   bool saturated = false;
   
   for (unsigned int i = 0; i < m_digits.size(); i++) {
-    if (m_digits[i] > 1022.99) saturated = true;
+    if (m_digits[i] > m_ADCmaxMinusEps) saturated = true;
     if (maxDigit < m_digits[i]) {
       maxDigit = m_digits[i];
       iMaxDigit = i;
@@ -650,7 +650,7 @@ double TileRawChannelBuilderOpt2Filter::compute(int ros, int drawer, int channel
 
     //  printf(" 1 OptFilterEneDSP %d calib_offset  %d calib %d \n",OptFilterEneDSP,calib_offset,calib);
 
-    dspEnergy = (dspEnergy + 1024) >> 11;
+    dspEnergy = (dspEnergy + m_i_ADCmaxPlus1) >> 11;
     //  printf(" 2 OptFilterEneDSP %d  \n",OptFilterEneDSP);
     dspEnergy = (dspEnergy * calib_offset + (1 << (calib - 15 - 1))) >> (calib - 15);
     //  printf(" 3 OptFilterEneDSP %d  \n",OptFilterEneDSP);
@@ -682,7 +682,7 @@ double TileRawChannelBuilderOpt2Filter::compute(int ros, int drawer, int channel
    if(OptFilterDigits[i]>0)
    OptFilterChi2 += 50*fabs(OptFilterDigits[i]-(OptFilterEne*g[i]+OptFilterPed))/OptFilterDigits[i];
    else
-   OptFilterChi2 += 50*fabs(OptFilterDigits[i]-(OptFilterEne*g[i]+OptFilterPed))/1024.;
+   OptFilterChi2 += 50*fabs(OptFilterDigits[i]-(OptFilterEne*g[i]+OptFilterPed))/m_f_ADCmaxPlus1;
    }
    } else {
    */
diff --git a/TileCalorimeter/TileRecUtils/src/TileRawChannelMaker.cxx b/TileCalorimeter/TileRecUtils/src/TileRawChannelMaker.cxx
index 405b01c3775..0e33eeb9791 100644
--- a/TileCalorimeter/TileRecUtils/src/TileRawChannelMaker.cxx
+++ b/TileCalorimeter/TileRecUtils/src/TileRawChannelMaker.cxx
@@ -4,7 +4,8 @@
 
 // Tile includes
 #include "TileRecUtils/TileRawChannelMaker.h"
- 
+#include "TileConditions/TileInfo.h"
+
 // Atlas includes
 #include "AthenaKernel/errorcheck.h"
 // access all RawChannels inside container
@@ -25,8 +26,10 @@ TileRawChannelMaker::TileRawChannelMaker(const std::string& name,
     ISvcLocator* pSvcLocator)
     : AthAlgorithm(name, pSvcLocator)
     , m_fitOverflow(false)      
+    , m_tileInfo(0)
 {
   declareProperty("FitOverflow", m_fitOverflow, "Fit or not overflows");
+  declareProperty("TileInfoName", m_infoName = "TileInfo");
 
   m_overflowReplaceTimeCut = 50.0;
   m_overflowReplacePedestalCut  = 170.0;
@@ -64,6 +67,10 @@ StatusCode TileRawChannelMaker::initialize() {
 
   ATH_MSG_INFO( "Initialization completed successfully");
 
+  // TileInfo
+  ATH_CHECK( detStore()->retrieve(m_tileInfo, m_infoName) );
+  m_ADCmaxMinusEps = m_tileInfo->ADCmax() - 0.01;  // indicates channels which were masked in background dataset
+
   return StatusCode::SUCCESS;
 }
 
@@ -155,9 +162,16 @@ void TileRawChannelMaker::fitOverflowedChannels() {
       int nSatSamples = 0;
       std::vector<double> digits = pDigits->get_digits();
       for (size_t ii = 0; ii<digits.size(); ii++) {
-        if (digits[ii] > 1022.9) nSatSamples++;
+        if (digits[ii] > m_ADCmaxMinusEps) nSatSamples++;
       }
                 
+      // NOTE: Optimal filtering is always run first and the fit method is used just in cases when there is an overflow.
+      // NOTE: Mathematically, a maximum pedestal range is [-460.607488, 4556.603392] and it happens for the phase 0.1 ns.
+      //       Therefore, we use the following intervals:
+      //         - if optimal filtering is used: (-500, 4600)
+      //         - if fit method is used:        (5000, 9095)
+      // NOTE: Overlay magic number is 4800.
+
       if ( !fitOK || nSatSamples > 2)  {
           // If the fit is bad, reset the energy. 
           //The same if the number of saturated samples is 3 (or bigger)
@@ -169,10 +183,10 @@ void TileRawChannelMaker::fitOverflowedChannels() {
           if (fittedRwCh->quality() > 99999.9) quality += 100000.;
           rwCh->insert(0.0, 0.0, quality);
 
-          // 20000 - Indicates overflow, 6000 - indicates bad fit or >2 saturations.
-          // 30000 - Indicates overflow + underflow, 6000 - indicates bad fit or >2 saturations.
-          float pedestal = (rwCh->pedestal() < 29500.) ? (26000.)
-                                                       : (36000.);
+          // 20000 - Indicates overflow, 9400 - indicates bad fit or >2 saturations.
+          // 30000 - Indicates overflow + underflow, 9400 - indicates bad fit or >2 saturations.
+          float pedestal = (rwCh->pedestal() < 29500.) ? (29400.)
+                                                       : (39400.);
           rwCh->setPedestal(pedestal); 
       } else {
           //If the fit is OK replace
@@ -182,10 +196,10 @@ void TileRawChannelMaker::fitOverflowedChannels() {
           rwCh->insert(fittedRwCh->amplitude(), 
                        fittedRwCh->time(), 
                        fittedRwCh->quality()*(1./400.));
-          // 20000 - Indicates overflow, 3000 - indicates fitted
-          // 30000 - Indicates overflow + underflow, 3000 - indicates fitted.
-          float pedestal = (rwCh->pedestal() < 29500.) ? (fittedRwCh->pedestal() + 23000.)
-                                                       : (fittedRwCh->pedestal() + 33000.);
+          // 20000 - Indicates overflow, 5000 - indicates fitted
+          // 30000 - Indicates overflow + underflow, 5000 - indicates fitted.
+          float pedestal = (rwCh->pedestal() < 29500.) ? fittedRwCh->pedestal() + 25000.
+	                                               : fittedRwCh->pedestal() + 35000.;
           rwCh->setPedestal(pedestal); 
       }
 		
diff --git a/TileCalorimeter/TileRecUtils/src/TileRawChannelNoiseFilter.cxx b/TileCalorimeter/TileRecUtils/src/TileRawChannelNoiseFilter.cxx
index 218f4a22673..60c7226507e 100644
--- a/TileCalorimeter/TileRecUtils/src/TileRawChannelNoiseFilter.cxx
+++ b/TileCalorimeter/TileRecUtils/src/TileRawChannelNoiseFilter.cxx
@@ -9,6 +9,7 @@
 #include "TileEvent/TileRawChannelContainer.h"
 #include "TileEvent/TileMutableRawChannelContainer.h"
 #include "TileCalibBlobObjs/TileCalibUtils.h"
+#include "TileConditions/TileInfo.h"
 
 // Atlas includes
 #include "AthenaKernel/errorcheck.h"
@@ -26,6 +27,7 @@ TileRawChannelNoiseFilter::TileRawChannelNoiseFilter(const std::string& type,
     , m_minimumNumberOfTruncatedChannels(0.6) // at least 60% of channels should be below threshold
     , m_useTwoGaussNoise(false) // do not use 2G - has no sense for ADC HF noise for the moment
     , m_useGapCells(false) // use gap cells for noise filter as all normal cells
+    , m_tileInfo(0)
 {
 
   declareProperty("TruncationThresholdOnAbsEinSigma", m_truncationThresholdOnAbsEinSigma);
@@ -33,6 +35,7 @@ TileRawChannelNoiseFilter::TileRawChannelNoiseFilter(const std::string& type,
   declareProperty("UseTwoGaussNoise", m_useTwoGaussNoise);
   declareProperty("UseGapCells", m_useGapCells);
   declareProperty("MaxNoiseSigma", m_maxNoiseSigma = 5.0, "Channels with noise more than that value are igonred in calculation of correction");
+  declareProperty("TileInfoName", m_infoName = "TileInfo");
 }
 
 //========================================================
@@ -62,6 +65,10 @@ StatusCode TileRawChannelNoiseFilter::initialize() {
   //=== get TileBadChanTool
   ATH_CHECK( m_tileBadChanTool.retrieve() );
 
+  //=== get TileInfo
+  CHECK( detStore()->retrieve(m_tileInfo, m_infoName) );
+  m_ADCmaskValueMinusEps = m_tileInfo->ADCmaskValue() - 0.01;  // indicates channels which were masked in background dataset
+
   ATH_CHECK( m_DQstatusKey.initialize() );
 
   return StatusCode::SUCCESS;
@@ -138,7 +145,7 @@ TileRawChannelNoiseFilter::process (TileMutableRawChannelContainer& rchCont) con
 
       // use only good channel
       float ped=rch->pedestal();
-      if (empty || ped > 55000. || (ped>2000. && ped < 39500.) // all bad patterns, ped=2047, underflow, overflow
+      if (empty || ped > 59500. || (ped > m_ADCmaskValueMinusEps && ped < 39500.) // all bad patterns, ped=m_tileInfo->ADCmaskValue(), underflow, overflow (see TileRawChannelMaker.cxx for the logic)
           || m_tileBadChanTool->getAdcStatus(drawerIdx, chan, gain).isBad()
           || (!DQstatus->isAdcDQgood(ros, drawer, chan, gain))) continue;
 
diff --git a/TileCalorimeter/TileSimAlgs/TileSimAlgs/TileDigitsFromPulse.h b/TileCalorimeter/TileSimAlgs/TileSimAlgs/TileDigitsFromPulse.h
index d2371cf227c..8252ca5e44e 100644
--- a/TileCalorimeter/TileSimAlgs/TileSimAlgs/TileDigitsFromPulse.h
+++ b/TileCalorimeter/TileSimAlgs/TileSimAlgs/TileDigitsFromPulse.h
@@ -100,7 +100,11 @@ private:
     std::string m_outputContainer; //!< Name of the output TileDigitsContainer
     
     const TileHWID* m_tileHWID;
-    const TileInfo* m_tileInfo;      
+    
+    // TileInfo
+    std::string m_infoName;
+    const TileInfo* m_tileInfo;
+    int m_i_ADCmax;
     
     TileRawChannelUnit::UNIT m_rChUnit; //!< Units used for the TileRawChannels (ADC, pCb, etc.)(see TileInfo.h)
     TileFragHash::TYPE m_rChType; //!< Type of TileRawChannels (Digitizar, OF1, OF2, Fit, etc.)(see TileFragHash.h)
diff --git a/TileCalorimeter/TileSimAlgs/TileSimAlgs/TileDigitsMaker.h b/TileCalorimeter/TileSimAlgs/TileSimAlgs/TileDigitsMaker.h
index 5170faeba44..a349cad473b 100644
--- a/TileCalorimeter/TileSimAlgs/TileSimAlgs/TileDigitsMaker.h
+++ b/TileCalorimeter/TileSimAlgs/TileSimAlgs/TileDigitsMaker.h
@@ -141,8 +141,12 @@ class TileDigitsMaker: public AthAlgorithm {
 
     int m_nSamples;           //!< Number of time slices for each channel
     int m_iTrig;           //!< Index of the triggering time slice
-    float m_adcMax;        //!< ADC saturation value 
-    float m_adcMaxHG;      //!< ADC saturation value - 0.5 
+    int m_i_ADCmax;        //!< ADC saturation value
+    float m_f_ADCmax;      //!< ADC saturation value
+    float m_f_ADCmaxHG;    //!< ADC saturation value - 0.5 
+    float m_ADCmaxMinusEps;//!< ADC saturation value - 0.01 or something small
+    float m_ADCmaxPlusEps; //!< ADC saturation value + 0.01 or something small
+    float m_f_ADCmaskValue;      //!< indicates channels which were masked in background dataset
     bool m_tileNoise;      //!< If true => generate noise in TileDigits
     bool m_tileCoherNoise; //!< If true => generate coherent noise in TileDigits
     bool m_tileThresh;     //!< If true => apply threshold to Digits
diff --git a/TileCalorimeter/TileSimAlgs/src/TileDigitsFromPulse.cxx b/TileCalorimeter/TileSimAlgs/src/TileDigitsFromPulse.cxx
index 378bdee6eb5..b11e9f83eb8 100644
--- a/TileCalorimeter/TileSimAlgs/src/TileDigitsFromPulse.cxx
+++ b/TileCalorimeter/TileSimAlgs/src/TileDigitsFromPulse.cxx
@@ -95,6 +95,8 @@ TileDigitsFromPulse::TileDigitsFromPulse(std::string name, ISvcLocator* pSvcLoca
 	declareProperty("BunchSpacing", m_BunchSpacing = 25.); // 25, 50 or 75
 	declareProperty("SimulateQIE", m_simQIE = kFALSE);
 
+	declareProperty("TileInfoName", m_infoName = "TileInfo");
+
 //   declareProperty("nSamples", nSamp = 7); //TBD
 //   declareProperty("nPulses", nPul = 21);  //TBD
 
@@ -140,7 +142,8 @@ StatusCode TileDigitsFromPulse::initialize() {
 	ATH_MSG_DEBUG("in initialize()");
 
 	ATH_CHECK(detStore()->retrieve(m_tileHWID, "TileHWID"));
-	ATH_CHECK(detStore()->retrieve(m_tileInfo, "TileInfo"));
+	ATH_CHECK(detStore()->retrieve(m_tileInfo, m_infoName));
+ 	m_i_ADCmax = m_tileInfo->ADCmax();
 
         ATH_CHECK(m_tileToolNoiseSample.retrieve());
 
@@ -333,7 +336,7 @@ StatusCode TileDigitsFromPulse::execute() {
 						}
 
 						for (unsigned int i = 0; i < samples.size(); ++i) {
-							if (samples[i] >= 1023)
+							if (samples[i] >= m_i_ADCmax)
 								isHGSaturated = true;
 						}
 						if (!isHGSaturated)
diff --git a/TileCalorimeter/TileSimAlgs/src/TileDigitsMaker.cxx b/TileCalorimeter/TileSimAlgs/src/TileDigitsMaker.cxx
index 1535d684908..ba1d0867ee5 100644
--- a/TileCalorimeter/TileSimAlgs/src/TileDigitsMaker.cxx
+++ b/TileCalorimeter/TileSimAlgs/src/TileDigitsMaker.cxx
@@ -75,8 +75,6 @@ TileDigitsMaker::TileDigitsMaker(std::string name, ISvcLocator* pSvcLocator)
     m_DQstatus(nullptr),
     m_nSamples(0),
     m_iTrig(0),
-    m_adcMax(0.0),
-    m_adcMaxHG(0.0),
     m_tileNoise(false),
     m_tileCoherNoise(false),
     m_tileThresh(false),
@@ -163,8 +161,12 @@ StatusCode TileDigitsMaker::initialize() {
   /* Get needed parameters from tileInfo. */
   m_nSamples = m_tileInfo->NdigitSamples(); // number of time slices for each chan
   m_iTrig = m_tileInfo->ItrigSample();   // index of the triggering time slice
-  m_adcMax = (float)m_tileInfo->ADCmax();// adc saturation value used in assignment
-  m_adcMaxHG = m_adcMax-0.5;               // value of switch from high to low gain
+  m_i_ADCmax = m_tileInfo->ADCmax();     // adc saturation value used in assignment
+  m_f_ADCmax = m_i_ADCmax;               // adc saturation value used in assignment
+  m_f_ADCmaxHG = m_f_ADCmax - 0.5;       // value of switch from high to low gain
+  m_ADCmaxMinusEps = m_f_ADCmax - 0.01;
+  m_ADCmaxPlusEps = m_f_ADCmax + 0.01;
+  m_f_ADCmaskValue = m_tileInfo->ADCmaskValue();               // indicates channels which were masked in background dataset
   m_tileNoise = m_tileInfo->TileNoise(); // (true => generate noise in TileDigits)
   m_tileCoherNoise = m_tileInfo->TileCoherNoise(); // (true => generate coherent noise in TileDigits)
   m_tileThresh = m_tileInfo->TileZeroSuppress(); // (true => apply threshold to Digits)
@@ -897,7 +899,7 @@ StatusCode TileDigitsMaker::execute() {
           }
 
 
-        } else if ((digitsBuffer[js] >= m_adcMaxHG && good_ch) || igain[ich] == TileID::LOWGAIN) { // saturation of high gain in non-calib run
+        } else if ((digitsBuffer[js] >= m_f_ADCmaxHG && good_ch) || igain[ich] == TileID::LOWGAIN) { // saturation of high gain in non-calib run
                                                                                                  // or low gain in digi overlay
           --nChHiSum;
           ++nChLoSum;
@@ -931,10 +933,10 @@ StatusCode TileDigitsMaker::execute() {
               if(m_doDigiTruth) digitsBuffer_DigiHSTruth[js] -= noiseLo;
             }
 
-            if (digitsBuffer[js] > m_adcMax && good_ch) {
-              digitsBuffer[js] = m_adcMax;
-              if(m_doDigiTruth) digitsBuffer_DigiHSTruth[js] = m_adcMax;
-            }
+	    if (digitsBuffer[js] > m_f_ADCmax && good_ch) {
+	      digitsBuffer[js] = m_f_ADCmax;
+	      if(m_doDigiTruth) digitsBuffer_DigiHSTruth[js] = m_f_ADCmax;
+	    }
             if (m_integerDigits) {
               digitsBuffer[js] = round(digitsBuffer[js]);
               if(m_doDigiTruth) digitsBuffer_DigiHSTruth[js] = round(digitsBuffer_DigiHSTruth[js]);
@@ -987,9 +989,8 @@ StatusCode TileDigitsMaker::execute() {
 
         if (chanHiIsBad) {
           for (int js = 0; js < m_nSamples; ++js) {
-            digitsBuffer[js] = 2047;
-            if(m_doDigiTruth) digitsBuffer_DigiHSTruth[js] = 2047;
-
+            digitsBuffer[js] = m_f_ADCmaskValue;
+            if(m_doDigiTruth) digitsBuffer_DigiHSTruth[js] = m_f_ADCmaskValue;
           }
           ATH_MSG_DEBUG( "Masking Channel " << ros << '/' << drawer << '/' << ich << "/1 HG" );
         }
@@ -1004,8 +1005,8 @@ StatusCode TileDigitsMaker::execute() {
 
         if (chanLoIsBad) {
           for (int js = 0; js < m_nSamples; ++js) {
-            digitsBufferLo[js] = 2047;
-            if(m_doDigiTruth) digitsBufferLo_DigiHSTruth[js] = 2047;
+            digitsBufferLo[js] = m_f_ADCmaskValue;
+            if(m_doDigiTruth) digitsBufferLo_DigiHSTruth[js] = m_f_ADCmaskValue;
           }
           ATH_MSG_DEBUG( "Masking Channel " << ros << '/' << drawer << '/' << ich << "/0 LG");
         }
@@ -1056,8 +1057,8 @@ StatusCode TileDigitsMaker::execute() {
             if (chanHiIsBad) {
               if (pmt_id.is_valid()) {
                 for (int js = 0; js < m_nSamples; ++js) {
-                  digitsBuffer[js] = 2047;
-                  if(m_doDigiTruth) digitsBuffer_DigiHSTruth[js] = 2047;
+                  digitsBuffer[js] = m_f_ADCmaskValue;
+                  if(m_doDigiTruth) digitsBuffer_DigiHSTruth[js] = m_f_ADCmaskValue;
                 }
               } else if (good_ch) {
                 ATH_MSG_DEBUG( "Disconnected Channel " << ros << '/' << drawer << '/' << ich);
@@ -1077,8 +1078,8 @@ StatusCode TileDigitsMaker::execute() {
             if (chanLoIsBad) {
               if (pmt_id.is_valid()) {
                 for (int js = 0; js < m_nSamples; ++js) {
-                  digitsBuffer[js] = 2047;
-                  if(m_doDigiTruth) digitsBuffer_DigiHSTruth[js] = 2047;
+                  digitsBuffer[js] = m_f_ADCmaskValue;
+                  if(m_doDigiTruth) digitsBuffer_DigiHSTruth[js] = m_f_ADCmaskValue;
                 }
               } else if (good_ch) {
                 ATH_MSG_DEBUG( "Disconnected Channel " << ros << '/' << drawer << '/' << ich);
@@ -1396,7 +1397,7 @@ StatusCode TileDigitsMaker::overlayBackgroundDigits( const TileDigitsCollection
     // get number of time samples & compare with nSamp
     int nSamp2 = digits.size();
     int goodDigits = nSamp2;
-    float dig(2047.),digmin(65536.),digmax(-65536.);
+    float dig(m_f_ADCmaskValue),digmin(65536.),digmax(-65536.);
     if (good_dq) {
       for (int js = 0; js < nSamp2; ++js) {
         dig=digits[js];
@@ -1404,9 +1405,9 @@ StatusCode TileDigitsMaker::overlayBackgroundDigits( const TileDigitsCollection
         if (dig>digmax) digmax=dig;
         if (dig<0.01) { // skip zeros
           --goodDigits;
-        } else if (dig>1022.99) { // skip overflows
-          if (dig>1023.01) { // ignore everything in case of invalid digits
-            dig=2047.0;
+	} else if (dig > m_ADCmaxMinusEps) { // skip overflows
+	  if (dig > m_ADCmaxPlusEps) { // ignore everything in case of invalid digits
+	    dig = m_f_ADCmaskValue;
             goodDigits = 0;
             break;
           }
@@ -1476,7 +1477,7 @@ StatusCode TileDigitsMaker::overlayBackgroundDigits( const TileDigitsCollection
         buffer = m_drawerBufferLo[channel];
       }
 
-      if (digmin != digmax || (dig!=0. && dig!=1023.)) dig=2047.; // keep only 0 or 1023 as it is
+      if (digmin != digmax || (dig!=0. && dig!=m_f_ADCmax)) dig = m_f_ADCmaskValue; // keep only 0 or m_f_ADCmax as it is
       for (int js = 0; js < m_nSamples; ++js)
         buffer[js] = dig;
 
diff --git a/TileCalorimeter/TileSimAlgs/src/TileHitToRawChannel.cxx b/TileCalorimeter/TileSimAlgs/src/TileHitToRawChannel.cxx
index 21e6987e669..7dc6b6e9fa1 100644
--- a/TileCalorimeter/TileSimAlgs/src/TileHitToRawChannel.cxx
+++ b/TileCalorimeter/TileSimAlgs/src/TileHitToRawChannel.cxx
@@ -330,7 +330,7 @@ StatusCode TileHitToRawChannel::execute() {
         double amp = adc_ampl[ch];
 
         bool lrcGood = true;
-        double thresh = -1024.;
+        double thresh = -99999;
 
         if (TileID::HIGHGAIN != gain) {
           // change ADC ID (channel switched to low gain)
diff --git a/TileCalorimeter/TileSvc/TileByteStream/TileByteStream/TileROD_Decoder.h b/TileCalorimeter/TileSvc/TileByteStream/TileByteStream/TileROD_Decoder.h
index e7353766e23..f24d1f2b831 100644
--- a/TileCalorimeter/TileSvc/TileByteStream/TileByteStream/TileROD_Decoder.h
+++ b/TileCalorimeter/TileSvc/TileByteStream/TileByteStream/TileROD_Decoder.h
@@ -549,7 +549,7 @@ class TileROD_Decoder: public AthAlgTool {
     // thresholds for parabolic amplitude correction
     float m_ampMinThresh_pC; //!< correct amplitude if it's above amplitude threshold (in pC)
     float m_ampMinThresh_MeV; //!< correct amplitude if it's above amplitude threshold (in MeV)
-    void updateAmpThreshold();
+    void updateAmpThreshold(int run = -1);
 
     // OFWeights for different units and different drawers:
     // every element contains OFC for single drawer and one of 4 different units
diff --git a/TileCalorimeter/TileSvc/TileByteStream/share/TileBeamElemContByteStreamCnv_test.ref b/TileCalorimeter/TileSvc/TileByteStream/share/TileBeamElemContByteStreamCnv_test.ref
index 765452f3c95..52f6193d7b3 100644
--- a/TileCalorimeter/TileSvc/TileByteStream/share/TileBeamElemContByteStreamCnv_test.ref
+++ b/TileCalorimeter/TileSvc/TileByteStream/share/TileBeamElemContByteStreamCnv_test.ref
@@ -1,16 +1,16 @@
-Wed Aug  7 22:10:19 CEST 2019
+Fri Nov 29 11:10:31 CET 2019
 Preloading tcmalloc_minimal.so
 Py:Athena            INFO including file "AthenaCommon/Preparation.py"
-Py:Athena            INFO using release [WorkDir-22.0.3] [x86_64-centos7-gcc8-opt] [test.TileRecUtils-20190807/f9360ea601f] -- built on [2019-08-07T2151]
+Py:Athena            INFO using release [WorkDir-22.0.9] [x86_64-centos7-gcc8-opt] [tilecal-12bit/82699bf159] -- built on [2019-11-29T1101]
 Py:Athena            INFO including file "AthenaCommon/Atlas.UnixStandardJob.py"
 Py:Athena            INFO executing ROOT6Setup
 Py:Athena            INFO including file "AthenaCommon/Execution.py"
 Py:Athena            INFO including file "TileByteStream/TileBeamElemContByteStreamCnv_test.py"
-SetGeometryVersion.py obtained major release version 22
+Py:Athena            INFO SetGeometryVersion.py obtained major release version 22
 Py:Athena            INFO including file "IdDictDetDescrCnv/IdDictDetDescrCnv_joboptions.py"
-Py:ConfigurableDb    INFO Read module info for 5518 configurables from 5 genConfDb files
+Py:ConfigurableDb    INFO Read module info for 5635 configurables from 11 genConfDb files
 Py:ConfigurableDb    INFO No duplicates have been found: that's good !
-EventInfoMgtInit: Got release version  Athena-22.0.3
+EventInfoMgtInit: Got release version  Athena-22.0.9
 Py:IOVDbSvc.CondDB    INFO Setting up conditions DB access to instance OFLP200
 Py:Athena            INFO including file "TileConditions/TileConditions_jobOptions.py"
 Py:TileInfoConf.     INFO Adding TileCablingSvc to ServiceMgr
@@ -22,20 +22,22 @@ Py:TileInfoConf.     INFO Changing default TileCondToolEmscale configuration to
 Py:TileInfoConf.     INFO Changing default TileCondToolNoiseSample configuration to COOL source
 Py:TileInfoConf.     INFO Changing default TileCondToolTiming configuration to COOL source
 Py:TileConditions_jobOptions.py    INFO Adjusting TileInfo to return cell noise for Opt.Filter without iterations
+Py:TileConditions_jobOptions.py    INFO Setting 10-bit ADC configuration
+Py:TileInfoConf.     INFO Setting 10-bit Tile ADC
 Py:Athena            INFO including file "AthenaCommon/runbatch.py"
 ApplicationMgr       INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0
 ApplicationMgr       INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0
 ApplicationMgr    SUCCESS 
 ====================================================================================================================================
-                                                   Welcome to ApplicationMgr (GaudiCoreSvc v32r0)
-                                          running on lxplus725.cern.ch on Wed Aug  7 22:10:33 2019
+                                                   Welcome to ApplicationMgr (GaudiCoreSvc v32r2)
+                                          running on pcpraha5 on Fri Nov 29 11:10:38 2019
 ====================================================================================================================================
 ApplicationMgr       INFO Application Manager Configured successfully
 ApplicationMgr       INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0
 StatusCodeSvc        INFO initialize
 AthDictLoaderSvc     INFO in initialize...
 AthDictLoaderSvc     INFO acquired Dso-registry
-ClassIDSvc           INFO  getRegistryEntries: read 7079 CLIDRegistry entries for module ALL
+ClassIDSvc           INFO  getRegistryEntries: read 7151 CLIDRegistry entries for module ALL
 CoreDumpSvc          INFO install f-a-t-a-l handler... (flag = -1)
 CoreDumpSvc          INFO Handling signals: 11(Segmentation fault) 7(Bus error) 4(Illegal instruction) 8(Floating point exception) 
 MetaDataSvc          INFO Initializing MetaDataSvc - package version AthenaServices-00-00-00
@@ -44,8 +46,8 @@ PoolSvc              INFO io_register[PoolSvc](xmlcatalog_file:PoolFileCatalog.x
 PoolSvc              INFO Set connectionsvc retry/timeout/IDLE timeout to  'ConnectionRetrialPeriod':300/ 'ConnectionRetrialTimeOut':3600/ 'ConnectionTimeOut':5 seconds with connection cleanup disabled
 PoolSvc              INFO Frontier compression level set to 5
 DBReplicaSvc         INFO Frontier server at (serverurl=http://atlasfrontier-local.cern.ch:8000/atlr)(serverurl=http://atlasfrontier-ai.cern.ch:8000/atlr)(serverurl=http://lcgft-atlas.gridpp.rl.ac.uk:3128/frontierATLAS)(serverurl=http://ccfrontier.in2p3.fr:23128/ccin2p3-AtlasFrontier)(proxyurl=http://ca-proxy.cern.ch:3128)(proxyurl=http://ca-proxy-meyrin.cern.ch:3128)(proxyurl=http://ca-proxy-wigner.cern.ch:3128)(proxyurl=http://atlasbpfrontier.cern.ch:3127)(proxyurl=http://atlasbpfrontier.fnal.gov:3127) will be considered for COOL data
-DBReplicaSvc         INFO Read replica configuration from /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-06T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/dbreplica.config
-DBReplicaSvc         INFO Total of 10 servers found for host lxplus725.cern.ch [ATLF ATLAS_COOLPROD atlas_dd ATLAS_CONFIG INT8R INTR ATONR_COOL ATONR_CONF DEVDB11 ATLF ]
+DBReplicaSvc         INFO Read replica configuration from /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/dbreplica.config
+DBReplicaSvc         INFO Total of 10 servers found for host pcpraha5.dyndns.cern.ch [ATLF ATLAS_COOLPROD atlas_dd ATLAS_CONFIG INT8R INTR ATONR_COOL ATONR_CONF DEVDB11 ATLF ]
 PoolSvc              INFO Successfully setup replica sorting algorithm
 PoolSvc              INFO Setting up APR FileCatalog and Streams
 PoolSvc           WARNING Unable to locate catalog for prfile:poolcond/PoolCat_oflcond.xml check your ATLAS_POOLCOND_PATH and DATAPATH variables
@@ -68,7 +70,7 @@ ByteStreamAddre...   INFO initialized
 ByteStreamAddre...   INFO -- Will fill Store with id =  0
 IOVDbSvc             INFO preLoadAddresses: Removing folder /TagInfo. It should only be in the file meta data and was not found.
 IOVDbSvc             INFO Opening COOL connection for COOLOFL_LAR/OFLP200
-ClassIDSvc           INFO  getRegistryEntries: read 3223 CLIDRegistry entries for module ALL
+ClassIDSvc           INFO  getRegistryEntries: read 3291 CLIDRegistry entries for module ALL
 IOVSvc               INFO No IOVSvcTool associated with store "StoreGateSvc"
 IOVSvc.IOVSvcTool    INFO IOVRanges will be checked at every Event
 IOVDbSvc             INFO Opening COOL connection for COOLOFL_TILE/OFLP200
@@ -87,8 +89,8 @@ IOVDbSvc             INFO Added taginfo remove for /TILE/OFL02/STATUS/ADC
 IOVDbSvc             INFO Added taginfo remove for /TILE/OFL02/TIME/CHANNELOFFSET/PHY
 IOVDbSvc             INFO Added taginfo remove for /TILE/ONL01/STATUS/ADC
 IOVDbSvc             INFO Added taginfo remove for /LAR/LArCellPositionShift
-ClassIDSvc           INFO  getRegistryEntries: read 831 CLIDRegistry entries for module ALL
-ClassIDSvc           INFO  getRegistryEntries: read 17 CLIDRegistry entries for module ALL
+ClassIDSvc           INFO  getRegistryEntries: read 863 CLIDRegistry entries for module ALL
+ClassIDSvc           INFO  getRegistryEntries: read 18 CLIDRegistry entries for module ALL
 DetDescrCnvSvc       INFO  initializing 
 DetDescrCnvSvc       INFO Found DetectorStore service
 DetDescrCnvSvc       INFO  filling proxies for detector managers 
@@ -123,8 +125,6 @@ DetDescrCnvSvc       INFO  filling address for MDTIDHELPER with CLID 4170 and st
 DetDescrCnvSvc       INFO  filling address for CSCIDHELPER with CLID 4171 and storage type 68 to detector store 
 DetDescrCnvSvc       INFO  filling address for RPCIDHELPER with CLID 4172 and storage type 68 to detector store 
 DetDescrCnvSvc       INFO  filling address for TGCIDHELPER with CLID 4173 and storage type 68 to detector store 
-DetDescrCnvSvc       INFO  filling address for STGCIDHELPER with CLID 4174 and storage type 68 to detector store 
-DetDescrCnvSvc       INFO  filling address for MMIDHELPER with CLID 4175 and storage type 68 to detector store 
 DetDescrCnvSvc       INFO  filling address for CaloLVL1_ID with CLID 108133391 and storage type 68 to detector store 
 DetDescrCnvSvc       INFO  filling address for CaloCell_ID with CLID 123500438 and storage type 68 to detector store 
 DetDescrCnvSvc       INFO  filling address for CaloCell_SuperCell_ID with CLID 128365736 and storage type 68 to detector store 
@@ -190,7 +190,7 @@ EMECConstruction     INFO multi-layered version of absorbers activated, paramete
 EMECConstruction     INFO activating LAr::EMEC::Neg::InnerWheel
 EMECConstruction     INFO activating LAr::EMEC::Neg::OuterWheel
 EndcapDMConstru...   INFO Start building EC electronics geometry
-GeoModelSvc          INFO GeoModelSvc.LArDetectorToolNV	 SZ= 25368Kb 	 Time = 0.57S
+GeoModelSvc          INFO GeoModelSvc.LArDetectorToolNV	 SZ= 25368Kb 	 Time = 0.46S
 GeoModelSvc.Til...   INFO  Entering TileDetectorTool::create()
 TileDddbManager      INFO m_tag = ATLAS-R2-2016-01-00-01
 TileDddbManager      INFO n_tiglob = 5
@@ -201,7 +201,7 @@ TileDddbManager      INFO n_tilb = 21
 TileDddbManager      INFO n_tileSwitches = 1
 CaloIDHelper_ID...   INFO in createObj: creating a TileID helper object in the detector store
 AtlasDetectorID      INFO initialize_from_dictionary - OK
-TileNeighbour        INFO Reading file  /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-06T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/TileNeighbour_reduced.txt
+TileNeighbour        INFO Reading file  /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/TileNeighbour_reduced.txt
 TileHWIDDetDesc...   INFO in createObj: creating a TileHWID helper object in the detector store
 TileHWID             INFO initialize_from_dictionary 
 AtlasDetectorID      INFO initialize_from_dictionary - OK
@@ -213,9 +213,9 @@ CaloIDHelper_ID...   INFO in createObj: creating a LArHEC_ID helper object in th
 AtlasDetectorID      INFO initialize_from_dictionary - OK
 CaloIDHelper_ID...   INFO in createObj: creating a LArFCAL_ID helper object in the detector store
 AtlasDetectorID      INFO initialize_from_dictionary - OK
-LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-06T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/FCal2DNeighbors-April2011.txt
-LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-06T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/FCal3DNeighborsNext-April2011.txt
-LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-06T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/FCal3DNeighborsPrev-April2011.txt
+LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/FCal2DNeighbors-April2011.txt
+LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/FCal3DNeighborsNext-April2011.txt
+LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/FCal3DNeighborsPrev-April2011.txt
 CaloIDHelper_ID...   INFO in createObj: creating a LArMiniFCAL_ID helper object in the detector store
 AtlasDetectorID      INFO initialize_from_dictionary - OK
 LArMiniFCAL_ID       INFO  initialize_from_dict - LArCalorimeter dictionary does NOT contain miniFCAL description. Unable to initialize LArMiniFCAL_ID.
@@ -250,7 +250,7 @@ GeoModelSvc.Til...   INFO  Global positioning of barrel with rotation (0,0,0)) a
 GeoModelSvc.Til...   INFO  Global positioning of positive ext.barrel with rotation (0,0,0)) and translation (0,0,0) Gaudi::Units::cm
 GeoModelSvc.Til...   INFO  Global positioning of negative ext.barrel with rotation (0,0,0)) and translation (0,0,1) Gaudi::Units::cm
 TileDetDescrMan...   INFO Entering create_elements()
-GeoModelSvc          INFO GeoModelSvc.TileDetectorTool	 SZ= 3576Kb 	 Time = 0.17S
+GeoModelSvc          INFO GeoModelSvc.TileDetectorTool	 SZ= 3576Kb 	 Time = 0.12S
 ClassIDSvc           INFO  getRegistryEntries: read 66 CLIDRegistry entries for module ALL
 TileInfoLoader       INFO Changing TTL1 calib from 4.1 to 6.9
 TileInfoLoader       INFO Changing TTL1 noise sigma from 2.5 to 2.8
@@ -305,7 +305,7 @@ TileEMScaleCond...   INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCond
 TileEMScaleCond...   INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OnlEms) for folder: "/TILE/OFL02/CALIB/EMS"
 TileSampleNoise...   INFO Creating TileCondProxyCool(TileSampleNoiseCondAlg.TileCondProxyCool_NoiseSample) for folder: "/TILE/OFL02/NOISE/SAMPLE"
 TileTimingCondA...   INFO Creating TileCondProxyCool(TileTimingCondAlg.TileCondProxyCool_AdcOffset) for folder: "/TILE/OFL02/TIME/CHANNELOFFSET/PHY"
-ClassIDSvc           INFO  getRegistryEntries: read 3927 CLIDRegistry entries for module ALL
+ClassIDSvc           INFO  getRegistryEntries: read 3915 CLIDRegistry entries for module ALL
 PyComponentMgr       INFO Initializing PyComponentMgr...
 Finalizer            INFO Initializing Finalizer...
 HistogramPersis...WARNING Histograms saving not required.
@@ -318,8 +318,8 @@ ROBDataProviderSvc   INFO  ---> Filter out Sub Detector ROBs by Status Code: # S
 EventSelector        INFO reinitialization...
 AthenaEventLoopMgr   INFO Setup EventSelector service EventSelector
 ApplicationMgr       INFO Application Manager Initialized successfully
-ByteStreamInputSvc   INFO Picked valid file: /cvmfs/atlas-nightlies.cern.ch/repo/data/data-art/Tier0ChainTests/data12_8TeV.00204073.physics_JetTauEtmiss.merge.RAW._lb0144._SFO-5._0001.1
 ClassIDSvc           INFO  getRegistryEntries: read 425 CLIDRegistry entries for module ALL
+ByteStreamInputSvc   INFO Picked valid file: /cvmfs/atlas-nightlies.cern.ch/repo/data/data-art/Tier0ChainTests/data12_8TeV.00204073.physics_JetTauEtmiss.merge.RAW._lb0144._SFO-5._0001.1
 CondInputLoader      INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/CALIB/CES'
 CondInputLoader      INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/CALIB/CIS/FIT/LIN'
 CondInputLoader      INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/CALIB/CIS/FIT/NLN'
@@ -348,7 +348,7 @@ Domain[ROOT_All]     INFO                           /cvmfs/atlas-condb.cern.ch/r
 RootDatabase.open    INFO /cvmfs/atlas-condb.cern.ch/repo/conditions/cond09/cond09_mc.000029.gen.COND/cond09_mc.000029.gen.COND._0002.pool.root File version:52200
 CaloMgrDetDescrCnv   INFO in createObj: creating a Calo Detector Manager object in the detector store
 CaloIdMgrDetDes...   INFO in createObj: creating a CaloDescrManager object in the detector store
-ClassIDSvc           INFO  getRegistryEntries: read 195 CLIDRegistry entries for module ALL
+ClassIDSvc           INFO  getRegistryEntries: read 198 CLIDRegistry entries for module ALL
 CaloIDHelper_ID...   INFO in createObj: creating a CaloDM_ID helper object in the detector store
 CaloDM_ID            INFO initialize_from_dictionary
 AtlasDetectorID      INFO initialize_from_dictionary - OK
@@ -362,12 +362,12 @@ CaloIDHelper_ID...   INFO in createObj: creating a LArHEC_SuperCell_ID helper ob
 AtlasDetectorID      INFO initialize_from_dictionary - OK
 CaloIDHelper_ID...   INFO in createObj: creating a LArFCAL_SuperCell_ID helper object in the detector store
 AtlasDetectorID      INFO initialize_from_dictionary - OK
-LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-06T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/FCalSuperCells2DNeighborsNew-April2014.txt
-LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-06T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/FCalSuperCells3DNeighborsNextNew-April2014.txt
-LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-06T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/FCalSuperCells3DNeighborsPrevNew-April2014.txt
+LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/FCalSuperCells2DNeighborsNew-April2014.txt
+LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/FCalSuperCells3DNeighborsNextNew-April2014.txt
+LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/FCalSuperCells3DNeighborsPrevNew-April2014.txt
 CaloIDHelper_ID...   INFO in createObj: creating a Tile_SuperCell_ID helper object in the detector store
 AtlasDetectorID      INFO initialize_from_dictionary - OK
-TileNeighbour        INFO Reading file  /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-06T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/TileSuperCellNeighbour.txt
+TileNeighbour        INFO Reading file  /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/TileSuperCellNeighbour.txt
 AtlasDetectorID      INFO initialize_from_dictionary - OK
 CaloIdMgrDetDes...   INFO  Finished 
 CaloIdMgrDetDes...   INFO Initializing CaloIdMgr from values in CaloIdMgrDetDescrCnv 
@@ -398,8 +398,8 @@ TileBadChannels...   INFO TileBchStatus::isNoGainL1() is defined by: ADC dead; N
 TileBadChannels...   INFO TileBchStatus::isBadTiming() is defined by: Bad timing; Online bad timing; 
 TileBadChannels...   INFO TileBchStatus::isWrongBCID() is defined by: Wrong BCID; Online wrong BCID; 
 TileBadChannels...   INFO No drawer trips probabilities found in DB
-ClassIDSvc           INFO  getRegistryEntries: read 2448 CLIDRegistry entries for module ALL
-ClassIDSvc           INFO  getRegistryEntries: read 90 CLIDRegistry entries for module ALL
+ClassIDSvc           INFO  getRegistryEntries: read 2265 CLIDRegistry entries for module ALL
+ClassIDSvc           INFO  getRegistryEntries: read 91 CLIDRegistry entries for module ALL
 ToolSvc.TileROD...   INFO TileL2Builder initialization completed
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #1129572, run #204073 1 events processed so far  <<<===
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #1129665, run #204073 1 events processed so far  <<<===
@@ -613,53 +613,53 @@ Finalize: compared 10 dumps
 IncidentProcAlg2     INFO Finalize
 PyComponentMgr       INFO Finalizing PyComponentMgr...
 IdDictDetDescrCnv    INFO in finalize
-IOVDbFolder          INFO Folder /LAR/Align (PoolRef) db-read 1/1 objs/chan/bytes 1/1/170 ((     0.99 ))s
-IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/CES (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/103344 ((     2.28 ))s
-IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/CIS/FIT/LIN (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/80 ((     0.67 ))s
-IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/CIS/FIT/NLN (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/80 ((     0.72 ))s
-IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/EMS (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/92 ((     0.59 ))s
-IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/LAS/FIBER (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/940 ((     0.64 ))s
-IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/LAS/LIN (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/72 ((     0.59 ))s
-IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/LAS/NLN (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/76 ((     0.66 ))s
-IOVDbFolder          INFO Folder /TILE/OFL02/NOISE/SAMPLE (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/641504 ((     0.80 ))s
+IOVDbFolder          INFO Folder /LAR/Align (PoolRef) db-read 1/1 objs/chan/bytes 1/1/170 ((     0.03 ))s
+IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/CES (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/103344 ((     0.04 ))s
+IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/CIS/FIT/LIN (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/80 ((     0.05 ))s
+IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/CIS/FIT/NLN (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/80 ((     0.05 ))s
+IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/EMS (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/92 ((     0.03 ))s
+IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/LAS/FIBER (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/940 ((     0.04 ))s
+IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/LAS/LIN (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/72 ((     0.03 ))s
+IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/LAS/NLN (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/76 ((     0.04 ))s
+IOVDbFolder          INFO Folder /TILE/OFL02/NOISE/SAMPLE (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/641504 ((     0.04 ))s
 IOVDbFolder          INFO Folder /TILE/OFL02/STATUS/ADC (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/93060 ((     0.03 ))s
-IOVDbFolder          INFO Folder /TILE/OFL02/TIME/CHANNELOFFSET/PHY (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/96 ((     0.02 ))s
-IOVDbFolder          INFO Folder /TILE/ONL01/STATUS/ADC (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/76 ((     0.00 ))s
-IOVDbFolder          INFO Folder /LAR/LArCellPositionShift (PoolRef) db-read 1/1 objs/chan/bytes 1/1/195 ((     0.55 ))s
-IOVDbSvc             INFO  bytes in ((      8.55 ))s
+IOVDbFolder          INFO Folder /TILE/OFL02/TIME/CHANNELOFFSET/PHY (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/96 ((     0.03 ))s
+IOVDbFolder          INFO Folder /TILE/ONL01/STATUS/ADC (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/76 ((     0.01 ))s
+IOVDbFolder          INFO Folder /LAR/LArCellPositionShift (PoolRef) db-read 1/1 objs/chan/bytes 1/1/195 ((     0.02 ))s
+IOVDbSvc             INFO  bytes in ((      0.45 ))s
 IOVDbSvc             INFO Connection sqlite://;schema=mycool.db;dbname=OFLP200 : nConnect: 0 nFolders: 0 ReadTime: ((     0.00 ))s
-IOVDbSvc             INFO Connection COOLOFL_LAR/OFLP200 : nConnect: 2 nFolders: 2 ReadTime: ((     1.54 ))s
-IOVDbSvc             INFO Connection COOLOFL_TILE/OFLP200 : nConnect: 2 nFolders: 11 ReadTime: ((     7.01 ))s
+IOVDbSvc             INFO Connection COOLOFL_LAR/OFLP200 : nConnect: 2 nFolders: 2 ReadTime: ((     0.06 ))s
+IOVDbSvc             INFO Connection COOLOFL_TILE/OFLP200 : nConnect: 2 nFolders: 11 ReadTime: ((     0.40 ))s
 AthDictLoaderSvc     INFO in finalize...
 ToolSvc              INFO Removing all tools created by ToolSvc
-ToolSvc.ByteStr...   INFO in finalize()
 ToolSvc.TileROD...   INFO Finalizing
+ToolSvc.ByteStr...   INFO in finalize()
 *****Chrono*****     INFO ****************************************************************************************************
 *****Chrono*****     INFO  The Final CPU consumption ( Chrono ) Table (ordered)
 *****Chrono*****     INFO ****************************************************************************************************
-cObjR_ALL            INFO Time User   : Tot=  340 [ms] Ave/Min/Max=  170(+-  160)/   10/  330 [ms] #=  2
-cObj_ALL             INFO Time User   : Tot=  380 [ms] Ave/Min/Max= 29.2(+- 92.9)/    0/  350 [ms] #= 13
-ChronoStatSvc        INFO Time User   : Tot= 8.94  [s]                                             #=  1
+cObjR_ALL            INFO Time User   : Tot=  280 [ms] Ave/Min/Max=  140(+-  140)/    0/  280 [ms] #=  2
+cObj_ALL             INFO Time User   : Tot=  310 [ms] Ave/Min/Max= 23.8(+-   77)/    0/  290 [ms] #= 13
+ChronoStatSvc        INFO Time User   : Tot= 5.79  [s]                                             #=  1
 *****Chrono*****     INFO ****************************************************************************************************
 ChronoStatSvc.f...   INFO  Service finalized successfully 
 ApplicationMgr       INFO Application Manager Finalized successfully
 ApplicationMgr       INFO Application Manager Terminated successfully
 Py:Athena            INFO leaving with code 0: "successful run"
-Wed Aug  7 22:11:04 CEST 2019
+Fri Nov 29 11:10:46 CET 2019
 Preloading tcmalloc_minimal.so
 Py:Athena            INFO including file "AthenaCommon/Preparation.py"
-Py:Athena            INFO using release [WorkDir-22.0.3] [x86_64-centos7-gcc8-opt] [test.TileRecUtils-20190807/f9360ea601f] -- built on [2019-08-07T2151]
+Py:Athena            INFO using release [WorkDir-22.0.9] [x86_64-centos7-gcc8-opt] [tilecal-12bit/82699bf159] -- built on [2019-11-29T1101]
 Py:Athena            INFO including file "AthenaCommon/Atlas.UnixStandardJob.py"
 Py:Athena            INFO executing ROOT6Setup
 Py:Athena            INFO configuring AthenaHive with [4] concurrent threads and [4] concurrent events
 Py:AlgScheduler      INFO setting up AvalancheSchedulerSvc/AvalancheSchedulerSvc with 4 threads
 Py:Athena            INFO including file "AthenaCommon/Execution.py"
 Py:Athena            INFO including file "TileByteStream/TileBeamElemContByteStreamCnv_test.py"
-SetGeometryVersion.py obtained major release version 22
+Py:Athena            INFO SetGeometryVersion.py obtained major release version 22
 Py:Athena            INFO including file "IdDictDetDescrCnv/IdDictDetDescrCnv_joboptions.py"
-Py:ConfigurableDb    INFO Read module info for 5518 configurables from 5 genConfDb files
+Py:ConfigurableDb    INFO Read module info for 5635 configurables from 11 genConfDb files
 Py:ConfigurableDb    INFO No duplicates have been found: that's good !
-EventInfoMgtInit: Got release version  Athena-22.0.3
+EventInfoMgtInit: Got release version  Athena-22.0.9
 Py:IOVDbSvc.CondDB    INFO Setting up conditions DB access to instance OFLP200
 Py:Athena            INFO including file "TileConditions/TileConditions_jobOptions.py"
 Py:TileInfoConf.     INFO Adding TileCablingSvc to ServiceMgr
@@ -671,251 +671,251 @@ Py:TileInfoConf.     INFO Changing default TileCondToolEmscale configuration to
 Py:TileInfoConf.     INFO Changing default TileCondToolNoiseSample configuration to COOL source
 Py:TileInfoConf.     INFO Changing default TileCondToolTiming configuration to COOL source
 Py:TileConditions_jobOptions.py    INFO Adjusting TileInfo to return cell noise for Opt.Filter without iterations
+Py:TileConditions_jobOptions.py    INFO Setting 10-bit ADC configuration
+Py:TileInfoConf.     INFO Setting 10-bit Tile ADC
 Py:Athena            INFO including file "AthenaCommon/runbatch.py"
 ApplicationMgr       INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0
 ApplicationMgr       INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0
 MessageSvc           INFO Activating in a separate thread
 ApplicationMgr    SUCCESS 
 ====================================================================================================================================
-                                                   Welcome to ApplicationMgr (GaudiCoreSvc v32r0)
-                                          running on lxplus725.cern.ch on Wed Aug  7 22:11:16 2019
+                                                   Welcome to ApplicationMgr (GaudiCoreSvc v32r2)
+                                          running on pcpraha5 on Fri Nov 29 11:10:52 2019
 ====================================================================================================================================
 ApplicationMgr       INFO Application Manager Configured successfully
-ApplicationMgr                                     INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0
-AthDictLoaderSvc                                   INFO in initialize...
-AthDictLoaderSvc                                   INFO acquired Dso-registry
-ClassIDSvc                                         INFO  getRegistryEntries: read 7717 CLIDRegistry entries for module ALL
-CoreDumpSvc                                        INFO install f-a-t-a-l handler... (flag = -1)
-CoreDumpSvc                                        INFO Handling signals: 11(Segmentation fault) 7(Bus error) 4(Illegal instruction) 8(Floating point exception) 
-MetaDataSvc                                        INFO Initializing MetaDataSvc - package version AthenaServices-00-00-00
-AthenaPoolCnvSvc                                   INFO Initializing AthenaPoolCnvSvc - package version AthenaPoolCnvSvc-00-00-00
-PoolSvc                                            INFO io_register[PoolSvc](xmlcatalog_file:PoolFileCatalog.xml) [ok]
-PoolSvc                                            INFO Set connectionsvc retry/timeout/IDLE timeout to  'ConnectionRetrialPeriod':300/ 'ConnectionRetrialTimeOut':3600/ 'ConnectionTimeOut':5 seconds with connection cleanup disabled
-PoolSvc                                            INFO Frontier compression level set to 5
-DBReplicaSvc                                       INFO Frontier server at (serverurl=http://atlasfrontier-local.cern.ch:8000/atlr)(serverurl=http://atlasfrontier-ai.cern.ch:8000/atlr)(serverurl=http://lcgft-atlas.gridpp.rl.ac.uk:3128/frontierATLAS)(serverurl=http://ccfrontier.in2p3.fr:23128/ccin2p3-AtlasFrontier)(proxyurl=http://ca-proxy.cern.ch:3128)(proxyurl=http://ca-proxy-meyrin.cern.ch:3128)(proxyurl=http://ca-proxy-wigner.cern.ch:3128)(proxyurl=http://atlasbpfrontier.cern.ch:3127)(proxyurl=http://atlasbpfrontier.fnal.gov:3127) will be considered for COOL data
-DBReplicaSvc                                       INFO Read replica configuration from /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-06T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/dbreplica.config
-DBReplicaSvc                                       INFO Total of 10 servers found for host lxplus725.cern.ch [ATLF ATLAS_COOLPROD atlas_dd ATLAS_CONFIG INT8R INTR ATONR_COOL ATONR_CONF DEVDB11 ATLF ]
-PoolSvc                                            INFO Successfully setup replica sorting algorithm
-PoolSvc                                            INFO Setting up APR FileCatalog and Streams
-PoolSvc                                         WARNING Unable to locate catalog for prfile:poolcond/PoolCat_oflcond.xml check your ATLAS_POOLCOND_PATH and DATAPATH variables
-PoolSvc                                         WARNING Unable to locate catalog for apcfile:poolcond/PoolCat_oflcond.xml check your ATLAS_POOLCOND_PATH and DATAPATH variables
-PoolSvc                                            INFO Resolved path (via ATLAS_POOLCOND_PATH) is /cvmfs/atlas-condb.cern.ch/repo/conditions/poolcond/PoolFileCatalog.xml
-PoolSvc                                            INFO POOL WriteCatalog is xmlcatalog_file:PoolFileCatalog.xml
-DbSession                                          INFO     Open     DbSession    
-Domain[ROOT_All]                                   INFO >   Access   DbDomain     READ      [ROOT_All] 
-ToolSvc.ByteStreamMetadataTool                     INFO Initializing ToolSvc.ByteStreamMetadataTool - package version ByteStreamCnvSvc-00-00-00
-MetaDataSvc                                        INFO Found MetaDataTools = PublicToolHandleArray(['IOVDbMetaDataTool','ByteStreamMetadataTool'])
-IOVDbSvc                                           INFO Opened read transaction for POOL PersistencySvc
-IOVDbSvc                                           INFO Only 5 POOL conditions files will be open at once
-IOVDbSvc                                           INFO Cache alignment will be done in 3 slices
-IOVDbSvc                                           INFO Global tag: OFLCOND-RUN12-SDR-35 set from joboptions
-IOVDbFolder                                        INFO Read from meta data only for folder /TagInfo
-IOVDbSvc                                           INFO Initialised with 3 connections and 14 folders
-IOVDbSvc                                           INFO Service IOVDbSvc initialised successfully
-ByteStreamAddressProviderSvc                       INFO Initializing ByteStreamAddressProviderSvc - package version ByteStreamCnvSvcBase-00-00-00
-ByteStreamAddressProviderSvc                       INFO initialized 
-ByteStreamAddressProviderSvc                       INFO -- Will fill Store with id =  0
-IOVDbSvc                                           INFO preLoadAddresses: Removing folder /TagInfo. It should only be in the file meta data and was not found.
-IOVDbSvc                                           INFO Opening COOL connection for COOLOFL_LAR/OFLP200
-ClassIDSvc                                         INFO  getRegistryEntries: read 3223 CLIDRegistry entries for module ALL
-IOVSvc                                             INFO No IOVSvcTool associated with store "StoreGateSvc"
-IOVSvc.IOVSvcTool                                  INFO IOVRanges will be checked at every Event
-IOVDbSvc                                           INFO Opening COOL connection for COOLOFL_TILE/OFLP200
-IOVDbSvc                                           INFO Disconnecting from COOLOFL_LAR/OFLP200
-IOVDbSvc                                           INFO Disconnecting from COOLOFL_TILE/OFLP200
-IOVDbSvc                                           INFO Added taginfo remove for /LAR/Align
-IOVDbSvc                                           INFO Added taginfo remove for /TILE/OFL02/CALIB/CES
-IOVDbSvc                                           INFO Added taginfo remove for /TILE/OFL02/CALIB/CIS/FIT/LIN
-IOVDbSvc                                           INFO Added taginfo remove for /TILE/OFL02/CALIB/CIS/FIT/NLN
-IOVDbSvc                                           INFO Added taginfo remove for /TILE/OFL02/CALIB/EMS
-IOVDbSvc                                           INFO Added taginfo remove for /TILE/OFL02/CALIB/LAS/FIBER
-IOVDbSvc                                           INFO Added taginfo remove for /TILE/OFL02/CALIB/LAS/LIN
-IOVDbSvc                                           INFO Added taginfo remove for /TILE/OFL02/CALIB/LAS/NLN
-IOVDbSvc                                           INFO Added taginfo remove for /TILE/OFL02/NOISE/SAMPLE
-IOVDbSvc                                           INFO Added taginfo remove for /TILE/OFL02/STATUS/ADC
-IOVDbSvc                                           INFO Added taginfo remove for /TILE/OFL02/TIME/CHANNELOFFSET/PHY
-IOVDbSvc                                           INFO Added taginfo remove for /TILE/ONL01/STATUS/ADC
-IOVDbSvc                                           INFO Added taginfo remove for /LAR/LArCellPositionShift
-ClassIDSvc                                         INFO  getRegistryEntries: read 769 CLIDRegistry entries for module ALL
-ClassIDSvc                                         INFO  getRegistryEntries: read 17 CLIDRegistry entries for module ALL
-DetDescrCnvSvc                                     INFO  initializing 
-DetDescrCnvSvc                                     INFO Found DetectorStore service
-DetDescrCnvSvc                                     INFO  filling proxies for detector managers 
-DetDescrCnvSvc                                     INFO  filling address for CaloTTMgr with CLID 117659265 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for CaloMgr with CLID 4548337 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for CaloSuperCellMgr with CLID 241807251 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for CaloIdManager with CLID 125856940 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for LArIdManager with CLID 79554919 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for IdDict with CLID 2411 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for AtlasID with CLID 164875623 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for PixelID with CLID 2516 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for SCT_ID with CLID 2517 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for TRT_ID with CLID 2518 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for SiliconID with CLID 129452393 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for LArEM_ID with CLID 163583365 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for LArEM_SuperCell_ID with CLID 99488227 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for LArHEC_ID with CLID 3870484 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for LArHEC_SuperCell_ID with CLID 254277678 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for LArFCAL_ID with CLID 45738051 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for LArFCAL_SuperCell_ID with CLID 12829437 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for LArMiniFCAL_ID with CLID 79264204 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for LArOnlineID with CLID 158698068 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for TTOnlineID with CLID 38321944 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for LArOnline_SuperCellID with CLID 115600394 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for LArHVLineID with CLID 27863673 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for LArElectrodeID with CLID 80757351 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for TileID with CLID 2901 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for Tile_SuperCell_ID with CLID 49557789 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for TileHWID with CLID 2902 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for TileTBID with CLID 2903 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for MDTIDHELPER with CLID 4170 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for CSCIDHELPER with CLID 4171 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for RPCIDHELPER with CLID 4172 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for TGCIDHELPER with CLID 4173 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for STGCIDHELPER with CLID 4174 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for MMIDHELPER with CLID 4175 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for CaloLVL1_ID with CLID 108133391 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for CaloCell_ID with CLID 123500438 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for CaloCell_SuperCell_ID with CLID 128365736 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for CaloDM_ID with CLID 167756483 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for ZdcID with CLID 190591643 and storage type 68 to detector store 
-GeoModelSvc::RDBMaterialManager                 WARNING  Getting PixTBMatComponents with default tag
-GeoModelSvc::RDBMaterialManager                 WARNING  Getting PixTBMaterials with default tag
-GeoModelSvc::RDBMaterialManager                 WARNING  Getting InDetMatComponents with default tag
-GeoModelSvc::RDBMaterialManager                 WARNING  Getting InDetMaterials with default tag
-EventPersistencySvc                                INFO Added successfully Conversion service:DetDescrCnvSvc
-LArElectrodeIDDetDescrCnv                          INFO in createObj: creating a LArElectrodeID helper object in the detector store
-IdDictDetDescrCnv                                  INFO in initialize
-IdDictDetDescrCnv                                  INFO in createObj: creating a IdDictManager object in the detector store
-IdDictDetDescrCnv                                  INFO IdDictName:  IdDictParser/ATLAS_IDS.xml
-IdDictDetDescrCnv                                  INFO Reading InnerDetector    IdDict file InDetIdDictFiles/IdDictInnerDetector_IBL3D25-03.xml
-IdDictDetDescrCnv                                  INFO Reading LArCalorimeter   IdDict file IdDictParser/IdDictLArCalorimeter_DC3-05-Comm-01.xml
-IdDictDetDescrCnv                                  INFO Reading TileCalorimeter  IdDict file IdDictParser/IdDictTileCalorimeter.xml
-IdDictDetDescrCnv                                  INFO Reading Calorimeter      IdDict file IdDictParser/IdDictCalorimeter_L1Onl.xml
-IdDictDetDescrCnv                                  INFO Reading MuonSpectrometer IdDict file IdDictParser/IdDictMuonSpectrometer_R.03.xml
-IdDictDetDescrCnv                                  INFO Reading ForwardDetectors IdDict file IdDictParser/IdDictForwardDetectors_2010.xml
-IdDictDetDescrCnv                                  INFO Found id dicts:
-IdDictDetDescrCnv                                  INFO Using dictionary tag: null
-IdDictDetDescrCnv                                  INFO Dictionary ATLAS                version default              DetDescr tag (using default) file 
-IdDictDetDescrCnv                                  INFO Dictionary Calorimeter          version default              DetDescr tag CaloIdentifier-LVL1-02 file IdDictParser/IdDictCalorimeter_L1Onl.xml
-IdDictDetDescrCnv                                  INFO Dictionary ForwardDetectors     version default              DetDescr tag ForDetIdentifier-01       file IdDictParser/IdDictForwardDetectors_2010.xml
-IdDictDetDescrCnv                                  INFO Dictionary InnerDetector        version IBL-DBM              DetDescr tag InDetIdentifier-IBL3D25-02 file InDetIdDictFiles/IdDictInnerDetector_IBL3D25-03.xml
-IdDictDetDescrCnv                                  INFO Dictionary LArCalorimeter       version fullAtlas            DetDescr tag LArIdentifier-DC3-05-Comm file IdDictParser/IdDictLArCalorimeter_DC3-05-Comm-01.xml
-IdDictDetDescrCnv                                  INFO Dictionary LArElectrode         version fullAtlas            DetDescr tag (using default) file 
-IdDictDetDescrCnv                                  INFO Dictionary LArHighVoltage       version fullAtlas            DetDescr tag (using default) file 
-IdDictDetDescrCnv                                  INFO Dictionary MuonSpectrometer     version R.03                 DetDescr tag MuonIdentifier-08         file IdDictParser/IdDictMuonSpectrometer_R.03.xml
-IdDictDetDescrCnv                                  INFO Dictionary TileCalorimeter      version fullAtlasAndTestBeam DetDescr tag TileIdentifier-00         file IdDictParser/IdDictTileCalorimeter.xml
-LArElectrodeID                                     INFO  => initialize_from_dictionary()
-AtlasDetectorID                                    INFO initialize_from_dictionary - OK
-AtlasDetectorID                                    INFO initialize_from_dictionary - OK
-LArHVLineIDDetDescrCnv                             INFO in createObj: creating a LArHVLineID helper object in the detector store
-LArHVLineID                                        INFO  => initialize_from_dictionary()
-AtlasDetectorID                                    INFO initialize_from_dictionary - OK
-AtlasDetectorID                                    INFO initialize_from_dictionary - OK
-LArHVLineID                                        INFO  => initialize_from_dictionary(dict_mgr) =0
-LArHVLineID                                        INFO Register_dict_tag of LArHighVoltage is OK
-LArHVLineID                                        INFO setDictVersion of LArHighVoltage is OK
-LArHVLineID                                        INFO [initLevelsFromDict] m_dict OK ... 
-LArHVLineID                                        INFO [initialize_from_dictionary] >  HV line range -> 11/1/48:79/0:15 | 11/1/148:179/0:15 | 11/1/80:93/0:7 | 11/1/180:193/0:7 | 11/1/200:231/0:15 | 11/1/232:263/0:15 | 11/1/296,297,306,307/0:15 | 11/1/299,304,305,308,309/0:15 | 11/1/264:279/0:15 | 11/1/280:295/0:15 | 11/1/0:47/0:15 | 11/1/320:322/0:15 | 11/1/100:147/0:15 | 11/1/324,325/0:15 | 11/1/312:315/0:15 | 11/1/316:319/0:15 | 11/1/300:303/0:15 | 11/1/310,311/0:15 | 11/1/323/0:15 | 11/1/326,327/0:15 | 11/1/94:99/0:15 | 11/1/194:199/0:15
-LArHVLineID                                        INFO [init_hashes()] > Hvline_size= 5008
-GeoModelSvc.LArDetectorToolNV                      INFO Keys for LAr are ATLAS-R2-2016-01-00-01  ATLAS
-GeoModelSvc.LArDetectorToolNV                      INFO Building LAr version LAr-Revised-17-01 while ATLAS version is ATLAS-R2-2016-01-00-01
-GeoModelSvc.LArDetectorToolNV                      INFO LAr Geometry Options:
-GeoModelSvc.LArDetectorToolNV                      INFO   Sagging           = false
-GeoModelSvc.LArDetectorToolNV                      INFO   Barrel            = ON
-GeoModelSvc.LArDetectorToolNV                      INFO   Endcap            = ON
-BarrelConstruction                                 INFO Getting primary numbers for ATLAS, ATLAS-R2-2016-01-00-01
-BarrelConstruction                                 INFO   Makes detailed absorber sandwich  ? 1 1
-BarrelConstruction                                 INFO   Use sagging in geometry  ? 0
-EMECConstruction                                   INFO multi-layered version of absorbers activated, parameter value is 1
-EMECConstruction                                   INFO activating LAr::EMEC::Pos::InnerWheel
-EMECConstruction                                   INFO activating LAr::EMEC::Pos::OuterWheel
-ClassIDSvc                                         INFO  getRegistryEntries: read 2901 CLIDRegistry entries for module ALL
-CaloIDHelper_IDDetDescrCnv                         INFO in createObj: creating a TileTBID helper object in the detector store
-TileTBID                                           INFO initialize_from_dictionary 
-AtlasDetectorID                                    INFO initialize_from_dictionary - OK
-EndcapDMConstruction                               INFO Start building EC electronics geometry
-EMECConstruction                                   INFO multi-layered version of absorbers activated, parameter value is 1
-EMECConstruction                                   INFO activating LAr::EMEC::Neg::InnerWheel
-EMECConstruction                                   INFO activating LAr::EMEC::Neg::OuterWheel
-EndcapDMConstruction                               INFO Start building EC electronics geometry
-GeoModelSvc                                        INFO GeoModelSvc.LArDetectorToolNV	 SZ= 25368Kb 	 Time = 0.53S
-GeoModelSvc.TileDetectorTool                       INFO  Entering TileDetectorTool::create()
-TileDddbManager                                    INFO m_tag = ATLAS-R2-2016-01-00-01
-TileDddbManager                                    INFO n_tiglob = 5
-TileDddbManager                                    INFO n_timod = 320
-TileDddbManager                                    INFO n_cuts = 9
-TileDddbManager                                    INFO n_saddle = 1
-TileDddbManager                                    INFO n_tilb = 21
-TileDddbManager                                    INFO n_tileSwitches = 1
-CaloIDHelper_IDDetDescrCnv                         INFO in createObj: creating a TileID helper object in the detector store
-AtlasDetectorID                                    INFO initialize_from_dictionary - OK
-TileNeighbour                                      INFO Reading file  /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-06T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/TileNeighbour_reduced.txt
-TileHWIDDetDescrCnv                                INFO in createObj: creating a TileHWID helper object in the detector store
-TileHWID                                           INFO initialize_from_dictionary 
-AtlasDetectorID                                    INFO initialize_from_dictionary - OK
-ClassIDSvc                                         INFO  getRegistryEntries: read 55 CLIDRegistry entries for module ALL
-CaloIDHelper_IDDetDescrCnv                         INFO in createObj: creating a CaloCell_ID helper object in the detector store
-CaloIDHelper_IDDetDescrCnv                         INFO in createObj: creating a LArEM_ID helper object in the detector store
-AtlasDetectorID                                    INFO initialize_from_dictionary - OK
-CaloIDHelper_IDDetDescrCnv                         INFO in createObj: creating a LArHEC_ID helper object in the detector store
-AtlasDetectorID                                    INFO initialize_from_dictionary - OK
-CaloIDHelper_IDDetDescrCnv                         INFO in createObj: creating a LArFCAL_ID helper object in the detector store
-AtlasDetectorID                                    INFO initialize_from_dictionary - OK
-LArFCAL_Base_ID                                    INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-06T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/FCal2DNeighbors-April2011.txt
-LArFCAL_Base_ID                                    INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-06T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/FCal3DNeighborsNext-April2011.txt
-LArFCAL_Base_ID                                    INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-06T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/FCal3DNeighborsPrev-April2011.txt
-CaloIDHelper_IDDetDescrCnv                         INFO in createObj: creating a LArMiniFCAL_ID helper object in the detector store
-AtlasDetectorID                                    INFO initialize_from_dictionary - OK
-LArMiniFCAL_ID                                     INFO  initialize_from_dict - LArCalorimeter dictionary does NOT contain miniFCAL description. Unable to initialize LArMiniFCAL_ID.
-AtlasDetectorID                                    INFO initialize_from_dictionary - OK
-GeoModelSvc.TileDetectorTool                       INFO  U-shape parameter from database is: 1
-GeoModelSvc.TileDetectorTool                       INFO  Glue parameter from database is: 1
-GeoModelSvc.TileDetectorTool                       INFO  Cs Tube parameter from database is: 0
-GeoModelSvc.TileDetectorTool                       INFO  Entering TileAtlasFactory::create()
-GeoModelSvc.TileDetectorTool                       INFO  Tile Geometry with Saddle supports, starting from TileCal-CSC-02 xxx
-GeoModelSvc.TileDetectorTool                       INFO  => New BFingerLengthPos 430.5
-GeoModelSvc.TileDetectorTool                       INFO  => New BFingerLengthNeg 420.5
-GeoModelSvc.TileDetectorTool                       INFO  Positioning barrel with translation 0
-GeoModelSvc.TileDetectorTool                       INFO  Positioning positive barrel finger with translation 3035.25
-GeoModelSvc.TileDetectorTool                       INFO  Positioning negative barrel finger with translation -3030.25
-GeoModelSvc.TileDetectorTool                       INFO  Positioning positive ext.barrel with translation 4854.75
-GeoModelSvc.TileDetectorTool                       INFO  Positioning positive ext.barrel finger with translation ztrans= 6338.5
-GeoModelSvc.TileDetectorTool                       INFO  Positioning positive ext.barrel saddle with translation ztrans= 6192.5
-GeoModelSvc.TileDetectorTool                       INFO  Positive ITC envelope parameters: PLUG1  Rmin= 3438.85 Rmax= 4250 dzITC1= 154.5
-GeoModelSvc.TileDetectorTool                       INFO                                    PLUG2  Rmin= 2981 Rmax= 3440 dzITC2= 47.425
-GeoModelSvc.TileDetectorTool                       INFO  Positioning positive ITC with translation 3405
-GeoModelSvc.TileDetectorTool                       INFO  Positioning positive Gap with translation 3552
-GeoModelSvc.TileDetectorTool                       INFO  Positioning positive Crack with translation 3536
-GeoModelSvc.TileDetectorTool                       INFO  Positioning negative ext.barrel with translation ztrans -4854.75
-GeoModelSvc.TileDetectorTool                       INFO  Positioning negative ext.barrel finger with translation ztrans= -6338.5
-GeoModelSvc.TileDetectorTool                       INFO  Positioning negative ext.barrel saddle with translation ztrans= -6192.5
-GeoModelSvc.TileDetectorTool                       INFO  Negative ITC envelope parameters: PLUG1  Rmin= 3438.85 Rmax= 4250 dzITC1= 154.5
-GeoModelSvc.TileDetectorTool                       INFO                                    PLUG2  Rmin= 2981 Rmax= 3440 dzITC2= 47.425
-GeoModelSvc.TileDetectorTool                       INFO  Positioning negative ITC with translation -3405
-GeoModelSvc.TileDetectorTool                       INFO  Positioning negative Gap with translation -3552
-GeoModelSvc.TileDetectorTool                       INFO  Positioning negative Crack with translation -3536
-GeoModelSvc.TileDetectorTool                       INFO  Global positioning of barrel with rotation (0,0,0)) and translation (0,0,0) Gaudi::Units::cm
-GeoModelSvc.TileDetectorTool                       INFO  Global positioning of positive ext.barrel with rotation (0,0,0)) and translation (0,0,0) Gaudi::Units::cm
-GeoModelSvc.TileDetectorTool                       INFO  Global positioning of negative ext.barrel with rotation (0,0,0)) and translation (0,0,1) Gaudi::Units::cm
-TileDetDescrManager                                INFO Entering create_elements()
-GeoModelSvc                                        INFO GeoModelSvc.TileDetectorTool	 SZ= 2552Kb 	 Time = 0.18S
-ClassIDSvc                                         INFO  getRegistryEntries: read 66 CLIDRegistry entries for module ALL
-TileInfoLoader                                     INFO Changing TTL1 calib from 4.1 to 6.9
-TileInfoLoader                                     INFO Changing TTL1 noise sigma from 2.5 to 2.8
-CaloIDHelper_IDDetDescrCnv                         INFO in createObj: creating a CaloLVL1_ID helper object in the detector store
-CaloLVL1_ID                                        INFO initialize_from_dictionary
-AtlasDetectorID                                    INFO initialize_from_dictionary - OK
-TileCablingSvc                                     INFO RUN2 ATLAS geometry flag detected for geometry: ATLAS-R2-2016-01-00-01
-TileCablingSvc                                     INFO Cabling for RUN2 (2014-2017) ATLAS geometry is set via jobOptions 
-TileCablingSvc                                     INFO Setting Cabling type to 4
-AthenaHiveEventLoopMgr                             INFO Initializing AthenaHiveEventLoopMgr - package version AthenaServices-00-00-00
-ClassIDSvc                                  0      INFO  getRegistryEntries: read 4192 CLIDRegistry entries for module ALL
-PyComponentMgr                              0      INFO Initializing PyComponentMgr...
-Finalizer                                   0      INFO Initializing Finalizer...
-ClassIDSvc                                  0      INFO  getRegistryEntries: read 53 CLIDRegistry entries for module ALL
-CondInputLoader                             0      INFO Initializing CondInputLoader...
-CondInputLoader                             0      INFO Adding base classes:
+ApplicationMgr                                      INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0
+AthDictLoaderSvc                                    INFO in initialize...
+AthDictLoaderSvc                                    INFO acquired Dso-registry
+ClassIDSvc                                          INFO  getRegistryEntries: read 7790 CLIDRegistry entries for module ALL
+CoreDumpSvc                                         INFO install f-a-t-a-l handler... (flag = -1)
+CoreDumpSvc                                         INFO Handling signals: 11(Segmentation fault) 7(Bus error) 4(Illegal instruction) 8(Floating point exception) 
+MetaDataSvc                                         INFO Initializing MetaDataSvc - package version AthenaServices-00-00-00
+AthenaPoolCnvSvc                                    INFO Initializing AthenaPoolCnvSvc - package version AthenaPoolCnvSvc-00-00-00
+PoolSvc                                             INFO io_register[PoolSvc](xmlcatalog_file:PoolFileCatalog.xml) [ok]
+PoolSvc                                             INFO Set connectionsvc retry/timeout/IDLE timeout to  'ConnectionRetrialPeriod':300/ 'ConnectionRetrialTimeOut':3600/ 'ConnectionTimeOut':5 seconds with connection cleanup disabled
+PoolSvc                                             INFO Frontier compression level set to 5
+DBReplicaSvc                                        INFO Frontier server at (serverurl=http://atlasfrontier-local.cern.ch:8000/atlr)(serverurl=http://atlasfrontier-ai.cern.ch:8000/atlr)(serverurl=http://lcgft-atlas.gridpp.rl.ac.uk:3128/frontierATLAS)(serverurl=http://ccfrontier.in2p3.fr:23128/ccin2p3-AtlasFrontier)(proxyurl=http://ca-proxy.cern.ch:3128)(proxyurl=http://ca-proxy-meyrin.cern.ch:3128)(proxyurl=http://ca-proxy-wigner.cern.ch:3128)(proxyurl=http://atlasbpfrontier.cern.ch:3127)(proxyurl=http://atlasbpfrontier.fnal.gov:3127) will be considered for COOL data
+DBReplicaSvc                                        INFO Read replica configuration from /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/dbreplica.config
+DBReplicaSvc                                        INFO Total of 10 servers found for host pcpraha5.dyndns.cern.ch [ATLF ATLAS_COOLPROD atlas_dd ATLAS_CONFIG INT8R INTR ATONR_COOL ATONR_CONF DEVDB11 ATLF ]
+PoolSvc                                             INFO Successfully setup replica sorting algorithm
+PoolSvc                                             INFO Setting up APR FileCatalog and Streams
+PoolSvc                                          WARNING Unable to locate catalog for prfile:poolcond/PoolCat_oflcond.xml check your ATLAS_POOLCOND_PATH and DATAPATH variables
+PoolSvc                                          WARNING Unable to locate catalog for apcfile:poolcond/PoolCat_oflcond.xml check your ATLAS_POOLCOND_PATH and DATAPATH variables
+PoolSvc                                             INFO Resolved path (via ATLAS_POOLCOND_PATH) is /cvmfs/atlas-condb.cern.ch/repo/conditions/poolcond/PoolFileCatalog.xml
+PoolSvc                                             INFO POOL WriteCatalog is xmlcatalog_file:PoolFileCatalog.xml
+DbSession                                           INFO     Open     DbSession    
+Domain[ROOT_All]                                    INFO >   Access   DbDomain     READ      [ROOT_All] 
+ToolSvc.ByteStreamMetadataTool                      INFO Initializing ToolSvc.ByteStreamMetadataTool - package version ByteStreamCnvSvc-00-00-00
+MetaDataSvc                                         INFO Found MetaDataTools = PublicToolHandleArray(['IOVDbMetaDataTool','ByteStreamMetadataTool'])
+IOVDbSvc                                            INFO Opened read transaction for POOL PersistencySvc
+IOVDbSvc                                            INFO Only 5 POOL conditions files will be open at once
+IOVDbSvc                                            INFO Cache alignment will be done in 3 slices
+IOVDbSvc                                            INFO Global tag: OFLCOND-RUN12-SDR-35 set from joboptions
+IOVDbFolder                                         INFO Read from meta data only for folder /TagInfo
+IOVDbSvc                                            INFO Initialised with 3 connections and 14 folders
+IOVDbSvc                                            INFO Service IOVDbSvc initialised successfully
+ByteStreamAddressProviderSvc                        INFO Initializing ByteStreamAddressProviderSvc - package version ByteStreamCnvSvcBase-00-00-00
+ByteStreamAddressProviderSvc                        INFO initialized 
+ByteStreamAddressProviderSvc                        INFO -- Will fill Store with id =  0
+IOVDbSvc                                            INFO preLoadAddresses: Removing folder /TagInfo. It should only be in the file meta data and was not found.
+IOVDbSvc                                            INFO Opening COOL connection for COOLOFL_LAR/OFLP200
+ClassIDSvc                                          INFO  getRegistryEntries: read 3291 CLIDRegistry entries for module ALL
+IOVSvc                                              INFO No IOVSvcTool associated with store "StoreGateSvc"
+IOVSvc.IOVSvcTool                                   INFO IOVRanges will be checked at every Event
+IOVDbSvc                                            INFO Opening COOL connection for COOLOFL_TILE/OFLP200
+IOVDbSvc                                            INFO Disconnecting from COOLOFL_LAR/OFLP200
+IOVDbSvc                                            INFO Disconnecting from COOLOFL_TILE/OFLP200
+IOVDbSvc                                            INFO Added taginfo remove for /LAR/Align
+IOVDbSvc                                            INFO Added taginfo remove for /TILE/OFL02/CALIB/CES
+IOVDbSvc                                            INFO Added taginfo remove for /TILE/OFL02/CALIB/CIS/FIT/LIN
+IOVDbSvc                                            INFO Added taginfo remove for /TILE/OFL02/CALIB/CIS/FIT/NLN
+IOVDbSvc                                            INFO Added taginfo remove for /TILE/OFL02/CALIB/EMS
+IOVDbSvc                                            INFO Added taginfo remove for /TILE/OFL02/CALIB/LAS/FIBER
+IOVDbSvc                                            INFO Added taginfo remove for /TILE/OFL02/CALIB/LAS/LIN
+IOVDbSvc                                            INFO Added taginfo remove for /TILE/OFL02/CALIB/LAS/NLN
+IOVDbSvc                                            INFO Added taginfo remove for /TILE/OFL02/NOISE/SAMPLE
+IOVDbSvc                                            INFO Added taginfo remove for /TILE/OFL02/STATUS/ADC
+IOVDbSvc                                            INFO Added taginfo remove for /TILE/OFL02/TIME/CHANNELOFFSET/PHY
+IOVDbSvc                                            INFO Added taginfo remove for /TILE/ONL01/STATUS/ADC
+IOVDbSvc                                            INFO Added taginfo remove for /LAR/LArCellPositionShift
+ClassIDSvc                                          INFO  getRegistryEntries: read 800 CLIDRegistry entries for module ALL
+ClassIDSvc                                          INFO  getRegistryEntries: read 18 CLIDRegistry entries for module ALL
+DetDescrCnvSvc                                      INFO  initializing 
+DetDescrCnvSvc                                      INFO Found DetectorStore service
+DetDescrCnvSvc                                      INFO  filling proxies for detector managers 
+DetDescrCnvSvc                                      INFO  filling address for CaloTTMgr with CLID 117659265 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for CaloMgr with CLID 4548337 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for CaloSuperCellMgr with CLID 241807251 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for CaloIdManager with CLID 125856940 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for LArIdManager with CLID 79554919 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for IdDict with CLID 2411 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for AtlasID with CLID 164875623 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for PixelID with CLID 2516 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for SCT_ID with CLID 2517 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for TRT_ID with CLID 2518 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for SiliconID with CLID 129452393 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for LArEM_ID with CLID 163583365 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for LArEM_SuperCell_ID with CLID 99488227 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for LArHEC_ID with CLID 3870484 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for LArHEC_SuperCell_ID with CLID 254277678 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for LArFCAL_ID with CLID 45738051 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for LArFCAL_SuperCell_ID with CLID 12829437 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for LArMiniFCAL_ID with CLID 79264204 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for LArOnlineID with CLID 158698068 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for TTOnlineID with CLID 38321944 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for LArOnline_SuperCellID with CLID 115600394 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for LArHVLineID with CLID 27863673 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for LArElectrodeID with CLID 80757351 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for TileID with CLID 2901 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for Tile_SuperCell_ID with CLID 49557789 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for TileHWID with CLID 2902 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for TileTBID with CLID 2903 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for MDTIDHELPER with CLID 4170 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for CSCIDHELPER with CLID 4171 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for RPCIDHELPER with CLID 4172 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for TGCIDHELPER with CLID 4173 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for CaloLVL1_ID with CLID 108133391 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for CaloCell_ID with CLID 123500438 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for CaloCell_SuperCell_ID with CLID 128365736 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for CaloDM_ID with CLID 167756483 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for ZdcID with CLID 190591643 and storage type 68 to detector store 
+GeoModelSvc::RDBMaterialManager                  WARNING  Getting PixTBMatComponents with default tag
+GeoModelSvc::RDBMaterialManager                  WARNING  Getting PixTBMaterials with default tag
+GeoModelSvc::RDBMaterialManager                  WARNING  Getting InDetMatComponents with default tag
+GeoModelSvc::RDBMaterialManager                  WARNING  Getting InDetMaterials with default tag
+EventPersistencySvc                                 INFO Added successfully Conversion service:DetDescrCnvSvc
+LArElectrodeIDDetDescrCnv                           INFO in createObj: creating a LArElectrodeID helper object in the detector store
+IdDictDetDescrCnv                                   INFO in initialize
+IdDictDetDescrCnv                                   INFO in createObj: creating a IdDictManager object in the detector store
+IdDictDetDescrCnv                                   INFO IdDictName:  IdDictParser/ATLAS_IDS.xml
+IdDictDetDescrCnv                                   INFO Reading InnerDetector    IdDict file InDetIdDictFiles/IdDictInnerDetector_IBL3D25-03.xml
+IdDictDetDescrCnv                                   INFO Reading LArCalorimeter   IdDict file IdDictParser/IdDictLArCalorimeter_DC3-05-Comm-01.xml
+IdDictDetDescrCnv                                   INFO Reading TileCalorimeter  IdDict file IdDictParser/IdDictTileCalorimeter.xml
+IdDictDetDescrCnv                                   INFO Reading Calorimeter      IdDict file IdDictParser/IdDictCalorimeter_L1Onl.xml
+IdDictDetDescrCnv                                   INFO Reading MuonSpectrometer IdDict file IdDictParser/IdDictMuonSpectrometer_R.03.xml
+IdDictDetDescrCnv                                   INFO Reading ForwardDetectors IdDict file IdDictParser/IdDictForwardDetectors_2010.xml
+IdDictDetDescrCnv                                   INFO Found id dicts:
+IdDictDetDescrCnv                                   INFO Using dictionary tag: null
+IdDictDetDescrCnv                                   INFO Dictionary ATLAS                version default              DetDescr tag (using default) file 
+IdDictDetDescrCnv                                   INFO Dictionary Calorimeter          version default              DetDescr tag CaloIdentifier-LVL1-02 file IdDictParser/IdDictCalorimeter_L1Onl.xml
+IdDictDetDescrCnv                                   INFO Dictionary ForwardDetectors     version default              DetDescr tag ForDetIdentifier-01       file IdDictParser/IdDictForwardDetectors_2010.xml
+IdDictDetDescrCnv                                   INFO Dictionary InnerDetector        version IBL-DBM              DetDescr tag InDetIdentifier-IBL3D25-02 file InDetIdDictFiles/IdDictInnerDetector_IBL3D25-03.xml
+IdDictDetDescrCnv                                   INFO Dictionary LArCalorimeter       version fullAtlas            DetDescr tag LArIdentifier-DC3-05-Comm file IdDictParser/IdDictLArCalorimeter_DC3-05-Comm-01.xml
+IdDictDetDescrCnv                                   INFO Dictionary LArElectrode         version fullAtlas            DetDescr tag (using default) file 
+IdDictDetDescrCnv                                   INFO Dictionary LArHighVoltage       version fullAtlas            DetDescr tag (using default) file 
+IdDictDetDescrCnv                                   INFO Dictionary MuonSpectrometer     version R.03                 DetDescr tag MuonIdentifier-08         file IdDictParser/IdDictMuonSpectrometer_R.03.xml
+IdDictDetDescrCnv                                   INFO Dictionary TileCalorimeter      version fullAtlasAndTestBeam DetDescr tag TileIdentifier-00         file IdDictParser/IdDictTileCalorimeter.xml
+LArElectrodeID                                      INFO  => initialize_from_dictionary()
+AtlasDetectorID                                     INFO initialize_from_dictionary - OK
+AtlasDetectorID                                     INFO initialize_from_dictionary - OK
+LArHVLineIDDetDescrCnv                              INFO in createObj: creating a LArHVLineID helper object in the detector store
+LArHVLineID                                         INFO  => initialize_from_dictionary()
+AtlasDetectorID                                     INFO initialize_from_dictionary - OK
+AtlasDetectorID                                     INFO initialize_from_dictionary - OK
+LArHVLineID                                         INFO  => initialize_from_dictionary(dict_mgr) =0
+LArHVLineID                                         INFO Register_dict_tag of LArHighVoltage is OK
+LArHVLineID                                         INFO setDictVersion of LArHighVoltage is OK
+LArHVLineID                                         INFO [initLevelsFromDict] m_dict OK ... 
+LArHVLineID                                         INFO [initialize_from_dictionary] >  HV line range -> 11/1/48:79/0:15 | 11/1/148:179/0:15 | 11/1/80:93/0:7 | 11/1/180:193/0:7 | 11/1/200:231/0:15 | 11/1/232:263/0:15 | 11/1/296,297,306,307/0:15 | 11/1/299,304,305,308,309/0:15 | 11/1/264:279/0:15 | 11/1/280:295/0:15 | 11/1/0:47/0:15 | 11/1/320:322/0:15 | 11/1/100:147/0:15 | 11/1/324,325/0:15 | 11/1/312:315/0:15 | 11/1/316:319/0:15 | 11/1/300:303/0:15 | 11/1/310,311/0:15 | 11/1/323/0:15 | 11/1/326,327/0:15 | 11/1/94:99/0:15 | 11/1/194:199/0:15
+LArHVLineID                                         INFO [init_hashes()] > Hvline_size= 5008
+GeoModelSvc.LArDetectorToolNV                       INFO Keys for LAr are ATLAS-R2-2016-01-00-01  ATLAS
+GeoModelSvc.LArDetectorToolNV                       INFO Building LAr version LAr-Revised-17-01 while ATLAS version is ATLAS-R2-2016-01-00-01
+GeoModelSvc.LArDetectorToolNV                       INFO LAr Geometry Options:
+GeoModelSvc.LArDetectorToolNV                       INFO   Sagging           = false
+GeoModelSvc.LArDetectorToolNV                       INFO   Barrel            = ON
+GeoModelSvc.LArDetectorToolNV                       INFO   Endcap            = ON
+BarrelConstruction                                  INFO Getting primary numbers for ATLAS, ATLAS-R2-2016-01-00-01
+BarrelConstruction                                  INFO   Makes detailed absorber sandwich  ? 1 1
+BarrelConstruction                                  INFO   Use sagging in geometry  ? 0
+EMECConstruction                                    INFO multi-layered version of absorbers activated, parameter value is 1
+EMECConstruction                                    INFO activating LAr::EMEC::Pos::InnerWheel
+EMECConstruction                                    INFO activating LAr::EMEC::Pos::OuterWheel
+ClassIDSvc                                          INFO  getRegistryEntries: read 2901 CLIDRegistry entries for module ALL
+CaloIDHelper_IDDetDescrCnv                          INFO in createObj: creating a TileTBID helper object in the detector store
+TileTBID                                            INFO initialize_from_dictionary 
+AtlasDetectorID                                     INFO initialize_from_dictionary - OK
+EndcapDMConstruction                                INFO Start building EC electronics geometry
+EMECConstruction                                    INFO multi-layered version of absorbers activated, parameter value is 1
+EMECConstruction                                    INFO activating LAr::EMEC::Neg::InnerWheel
+EMECConstruction                                    INFO activating LAr::EMEC::Neg::OuterWheel
+EndcapDMConstruction                                INFO Start building EC electronics geometry
+GeoModelSvc                                         INFO GeoModelSvc.LArDetectorToolNV	 SZ= 25368Kb 	 Time = 0.47S
+GeoModelSvc.TileDetectorTool                        INFO  Entering TileDetectorTool::create()
+TileDddbManager                                     INFO m_tag = ATLAS-R2-2016-01-00-01
+TileDddbManager                                     INFO n_tiglob = 5
+TileDddbManager                                     INFO n_timod = 320
+TileDddbManager                                     INFO n_cuts = 9
+TileDddbManager                                     INFO n_saddle = 1
+TileDddbManager                                     INFO n_tilb = 21
+TileDddbManager                                     INFO n_tileSwitches = 1
+CaloIDHelper_IDDetDescrCnv                          INFO in createObj: creating a TileID helper object in the detector store
+AtlasDetectorID                                     INFO initialize_from_dictionary - OK
+TileNeighbour                                       INFO Reading file  /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/TileNeighbour_reduced.txt
+TileHWIDDetDescrCnv                                 INFO in createObj: creating a TileHWID helper object in the detector store
+TileHWID                                            INFO initialize_from_dictionary 
+AtlasDetectorID                                     INFO initialize_from_dictionary - OK
+ClassIDSvc                                          INFO  getRegistryEntries: read 55 CLIDRegistry entries for module ALL
+CaloIDHelper_IDDetDescrCnv                          INFO in createObj: creating a CaloCell_ID helper object in the detector store
+CaloIDHelper_IDDetDescrCnv                          INFO in createObj: creating a LArEM_ID helper object in the detector store
+AtlasDetectorID                                     INFO initialize_from_dictionary - OK
+CaloIDHelper_IDDetDescrCnv                          INFO in createObj: creating a LArHEC_ID helper object in the detector store
+AtlasDetectorID                                     INFO initialize_from_dictionary - OK
+CaloIDHelper_IDDetDescrCnv                          INFO in createObj: creating a LArFCAL_ID helper object in the detector store
+AtlasDetectorID                                     INFO initialize_from_dictionary - OK
+LArFCAL_Base_ID                                     INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/FCal2DNeighbors-April2011.txt
+LArFCAL_Base_ID                                     INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/FCal3DNeighborsNext-April2011.txt
+LArFCAL_Base_ID                                     INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/FCal3DNeighborsPrev-April2011.txt
+CaloIDHelper_IDDetDescrCnv                          INFO in createObj: creating a LArMiniFCAL_ID helper object in the detector store
+AtlasDetectorID                                     INFO initialize_from_dictionary - OK
+LArMiniFCAL_ID                                      INFO  initialize_from_dict - LArCalorimeter dictionary does NOT contain miniFCAL description. Unable to initialize LArMiniFCAL_ID.
+AtlasDetectorID                                     INFO initialize_from_dictionary - OK
+GeoModelSvc.TileDetectorTool                        INFO  U-shape parameter from database is: 1
+GeoModelSvc.TileDetectorTool                        INFO  Glue parameter from database is: 1
+GeoModelSvc.TileDetectorTool                        INFO  Cs Tube parameter from database is: 0
+GeoModelSvc.TileDetectorTool                        INFO  Entering TileAtlasFactory::create()
+GeoModelSvc.TileDetectorTool                        INFO  Tile Geometry with Saddle supports, starting from TileCal-CSC-02 xxx
+GeoModelSvc.TileDetectorTool                        INFO  => New BFingerLengthPos 430.5
+GeoModelSvc.TileDetectorTool                        INFO  => New BFingerLengthNeg 420.5
+GeoModelSvc.TileDetectorTool                        INFO  Positioning barrel with translation 0
+GeoModelSvc.TileDetectorTool                        INFO  Positioning positive barrel finger with translation 3035.25
+GeoModelSvc.TileDetectorTool                        INFO  Positioning negative barrel finger with translation -3030.25
+GeoModelSvc.TileDetectorTool                        INFO  Positioning positive ext.barrel with translation 4854.75
+GeoModelSvc.TileDetectorTool                        INFO  Positioning positive ext.barrel finger with translation ztrans= 6338.5
+GeoModelSvc.TileDetectorTool                        INFO  Positioning positive ext.barrel saddle with translation ztrans= 6192.5
+GeoModelSvc.TileDetectorTool                        INFO  Positive ITC envelope parameters: PLUG1  Rmin= 3438.85 Rmax= 4250 dzITC1= 154.5
+GeoModelSvc.TileDetectorTool                        INFO                                    PLUG2  Rmin= 2981 Rmax= 3440 dzITC2= 47.425
+GeoModelSvc.TileDetectorTool                        INFO  Positioning positive ITC with translation 3405
+GeoModelSvc.TileDetectorTool                        INFO  Positioning positive Gap with translation 3552
+GeoModelSvc.TileDetectorTool                        INFO  Positioning positive Crack with translation 3536
+GeoModelSvc.TileDetectorTool                        INFO  Positioning negative ext.barrel with translation ztrans -4854.75
+GeoModelSvc.TileDetectorTool                        INFO  Positioning negative ext.barrel finger with translation ztrans= -6338.5
+GeoModelSvc.TileDetectorTool                        INFO  Positioning negative ext.barrel saddle with translation ztrans= -6192.5
+GeoModelSvc.TileDetectorTool                        INFO  Negative ITC envelope parameters: PLUG1  Rmin= 3438.85 Rmax= 4250 dzITC1= 154.5
+GeoModelSvc.TileDetectorTool                        INFO                                    PLUG2  Rmin= 2981 Rmax= 3440 dzITC2= 47.425
+GeoModelSvc.TileDetectorTool                        INFO  Positioning negative ITC with translation -3405
+GeoModelSvc.TileDetectorTool                        INFO  Positioning negative Gap with translation -3552
+GeoModelSvc.TileDetectorTool                        INFO  Positioning negative Crack with translation -3536
+GeoModelSvc.TileDetectorTool                        INFO  Global positioning of barrel with rotation (0,0,0)) and translation (0,0,0) Gaudi::Units::cm
+GeoModelSvc.TileDetectorTool                        INFO  Global positioning of positive ext.barrel with rotation (0,0,0)) and translation (0,0,0) Gaudi::Units::cm
+GeoModelSvc.TileDetectorTool                        INFO  Global positioning of negative ext.barrel with rotation (0,0,0)) and translation (0,0,1) Gaudi::Units::cm
+TileDetDescrManager                                 INFO Entering create_elements()
+GeoModelSvc                                         INFO GeoModelSvc.TileDetectorTool	 SZ= 3576Kb 	 Time = 0.12S
+ClassIDSvc                                          INFO  getRegistryEntries: read 66 CLIDRegistry entries for module ALL
+TileInfoLoader                                      INFO Changing TTL1 calib from 4.1 to 6.9
+TileInfoLoader                                      INFO Changing TTL1 noise sigma from 2.5 to 2.8
+CaloIDHelper_IDDetDescrCnv                          INFO in createObj: creating a CaloLVL1_ID helper object in the detector store
+CaloLVL1_ID                                         INFO initialize_from_dictionary
+AtlasDetectorID                                     INFO initialize_from_dictionary - OK
+TileCablingSvc                                      INFO RUN2 ATLAS geometry flag detected for geometry: ATLAS-R2-2016-01-00-01
+TileCablingSvc                                      INFO Cabling for RUN2 (2014-2017) ATLAS geometry is set via jobOptions 
+TileCablingSvc                                      INFO Setting Cabling type to 4
+AthenaHiveEventLoopMgr                              INFO Initializing AthenaHiveEventLoopMgr - package version AthenaServices-00-00-00
+ClassIDSvc                                     0    INFO  getRegistryEntries: read 4180 CLIDRegistry entries for module ALL
+PyComponentMgr                                 0    INFO Initializing PyComponentMgr...
+Finalizer                                      0    INFO Initializing Finalizer...
+ClassIDSvc                                     0    INFO  getRegistryEntries: read 53 CLIDRegistry entries for module ALL
+CondInputLoader                                0    INFO Initializing CondInputLoader...
+CondInputLoader                                0    INFO Adding base classes:
   +  ( 'CondAttrListCollection' , 'ConditionStore+/TILE/OFL02/CALIB/CES' )   ->
   +  ( 'CondAttrListCollection' , 'ConditionStore+/TILE/OFL02/CALIB/CIS/FIT/LIN' )   ->
   +  ( 'CondAttrListCollection' , 'ConditionStore+/TILE/OFL02/CALIB/CIS/FIT/NLN' )   ->
@@ -927,7 +927,7 @@ CondInputLoader                             0      INFO Adding base classes:
   +  ( 'CondAttrListCollection' , 'ConditionStore+/TILE/OFL02/STATUS/ADC' )   ->
   +  ( 'CondAttrListCollection' , 'ConditionStore+/TILE/OFL02/TIME/CHANNELOFFSET/PHY' )   ->
   +  ( 'CondAttrListCollection' , 'ConditionStore+/TILE/ONL01/STATUS/ADC' )   ->
-CondInputLoader                             0      INFO Will create WriteCondHandle dependencies for the following DataObjects:
+CondInputLoader                                0    INFO Will create WriteCondHandle dependencies for the following DataObjects:
     +  ( 'CondAttrListCollection' , 'ConditionStore+/TILE/OFL02/CALIB/CES' ) 
     +  ( 'CondAttrListCollection' , 'ConditionStore+/TILE/OFL02/CALIB/CIS/FIT/LIN' ) 
     +  ( 'CondAttrListCollection' , 'ConditionStore+/TILE/OFL02/CALIB/CIS/FIT/NLN' ) 
@@ -939,354 +939,354 @@ CondInputLoader                             0      INFO Will create WriteCondHan
     +  ( 'CondAttrListCollection' , 'ConditionStore+/TILE/OFL02/STATUS/ADC' ) 
     +  ( 'CondAttrListCollection' , 'ConditionStore+/TILE/OFL02/TIME/CHANNELOFFSET/PHY' ) 
     +  ( 'CondAttrListCollection' , 'ConditionStore+/TILE/ONL01/STATUS/ADC' ) 
-TileBadChannelsCondAlg.TileCondProxyC...    0      INFO Creating TileCondProxyCool(TileBadChannelsCondAlg.TileCondProxyCool_OnlBch) for folder: "/TILE/ONL01/STATUS/ADC"
-TileBadChannelsCondAlg.TileCondProxyC...    0      INFO Creating TileCondProxyCool(TileBadChannelsCondAlg.TileCondProxyCool_OflBch) for folder: "/TILE/OFL02/STATUS/ADC"
-TileBadChannelsCondAlg                      0      INFO ProxyOnlBch and ProxyOflBch will be used for bad channel status
-TileEMScaleCondAlg.TileCondProxyCool_...    0      INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OflCisLin) for folder: "/TILE/OFL02/CALIB/CIS/FIT/LIN"
-TileEMScaleCondAlg.TileCondProxyCool_...    0      INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OflCisNln) for folder: "/TILE/OFL02/CALIB/CIS/FIT/NLN"
-TileEMScaleCondAlg.TileCondProxyCool_...    0      INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OflLasLin) for folder: "/TILE/OFL02/CALIB/LAS/LIN"
-TileEMScaleCondAlg.TileCondProxyCool_...    0      INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OflLasNln) for folder: "/TILE/OFL02/CALIB/LAS/NLN"
-TileEMScaleCondAlg.TileCondProxyCool_...    0      INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OflLasFib) for folder: "/TILE/OFL02/CALIB/LAS/FIBER"
-TileEMScaleCondAlg                          0      INFO ProxyOflLasFib is set up and can be used
-TileEMScaleCondAlg.TileCondProxyCool_...    0      INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OflCes) for folder: "/TILE/OFL02/CALIB/CES"
-TileEMScaleCondAlg.TileCondProxyCool_...    0      INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OflEms) for folder: "/TILE/OFL02/CALIB/EMS"
-TileEMScaleCondAlg                          0      INFO Undoing online calibration is not requested, since OnlCacheUnit= 'OnlCacheUnit':Invalid
-TileEMScaleCondAlg.TileCondProxyCool_...    0      INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OnlCis) for folder: "/TILE/OFL02/CALIB/CIS/FIT/LIN"
-TileEMScaleCondAlg.TileCondProxyCool_...    0      INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OnlLas) for folder: "/TILE/OFL02/CALIB/LAS/LIN"
-TileEMScaleCondAlg.TileCondProxyCool_...    0      INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OnlCes) for folder: "/TILE/OFL02/CALIB/CES"
-TileEMScaleCondAlg.TileCondProxyCool_...    0      INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OnlEms) for folder: "/TILE/OFL02/CALIB/EMS"
-TileSampleNoiseCondAlg.TileCondProxyC...    0      INFO Creating TileCondProxyCool(TileSampleNoiseCondAlg.TileCondProxyCool_NoiseSample) for folder: "/TILE/OFL02/NOISE/SAMPLE"
-TileTimingCondAlg.TileCondProxyCool_A...    0      INFO Creating TileCondProxyCool(TileTimingCondAlg.TileCondProxyCool_AdcOffset) for folder: "/TILE/OFL02/TIME/CHANNELOFFSET/PHY"
-ThreadPoolSvc                               0      INFO no thread init tools attached
-AvalancheSchedulerSvc                       0      INFO Activating scheduler in a separate thread
-AvalancheSchedulerSvc                       0      INFO Found 12 algorithms
-AvalancheSchedulerSvc                       0      INFO Will attribute the following unmet INPUT dependencies to "SGInputLoader/SGInputLoader" Algorithm
+TileBadChannelsCondAlg.TileCondProxyC...       0    INFO Creating TileCondProxyCool(TileBadChannelsCondAlg.TileCondProxyCool_OnlBch) for folder: "/TILE/ONL01/STATUS/ADC"
+TileBadChannelsCondAlg.TileCondProxyC...       0    INFO Creating TileCondProxyCool(TileBadChannelsCondAlg.TileCondProxyCool_OflBch) for folder: "/TILE/OFL02/STATUS/ADC"
+TileBadChannelsCondAlg                         0    INFO ProxyOnlBch and ProxyOflBch will be used for bad channel status
+TileEMScaleCondAlg.TileCondProxyCool_...       0    INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OflCisLin) for folder: "/TILE/OFL02/CALIB/CIS/FIT/LIN"
+TileEMScaleCondAlg.TileCondProxyCool_...       0    INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OflCisNln) for folder: "/TILE/OFL02/CALIB/CIS/FIT/NLN"
+TileEMScaleCondAlg.TileCondProxyCool_...       0    INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OflLasLin) for folder: "/TILE/OFL02/CALIB/LAS/LIN"
+TileEMScaleCondAlg.TileCondProxyCool_...       0    INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OflLasNln) for folder: "/TILE/OFL02/CALIB/LAS/NLN"
+TileEMScaleCondAlg.TileCondProxyCool_...       0    INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OflLasFib) for folder: "/TILE/OFL02/CALIB/LAS/FIBER"
+TileEMScaleCondAlg                             0    INFO ProxyOflLasFib is set up and can be used
+TileEMScaleCondAlg.TileCondProxyCool_...       0    INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OflCes) for folder: "/TILE/OFL02/CALIB/CES"
+TileEMScaleCondAlg.TileCondProxyCool_...       0    INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OflEms) for folder: "/TILE/OFL02/CALIB/EMS"
+TileEMScaleCondAlg                             0    INFO Undoing online calibration is not requested, since OnlCacheUnit= 'OnlCacheUnit':Invalid
+TileEMScaleCondAlg.TileCondProxyCool_...       0    INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OnlCis) for folder: "/TILE/OFL02/CALIB/CIS/FIT/LIN"
+TileEMScaleCondAlg.TileCondProxyCool_...       0    INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OnlLas) for folder: "/TILE/OFL02/CALIB/LAS/LIN"
+TileEMScaleCondAlg.TileCondProxyCool_...       0    INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OnlCes) for folder: "/TILE/OFL02/CALIB/CES"
+TileEMScaleCondAlg.TileCondProxyCool_...       0    INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OnlEms) for folder: "/TILE/OFL02/CALIB/EMS"
+TileSampleNoiseCondAlg.TileCondProxyC...       0    INFO Creating TileCondProxyCool(TileSampleNoiseCondAlg.TileCondProxyCool_NoiseSample) for folder: "/TILE/OFL02/NOISE/SAMPLE"
+TileTimingCondAlg.TileCondProxyCool_A...       0    INFO Creating TileCondProxyCool(TileTimingCondAlg.TileCondProxyCool_AdcOffset) for folder: "/TILE/OFL02/TIME/CHANNELOFFSET/PHY"
+ThreadPoolSvc                                  0    INFO no thread init tools attached
+AvalancheSchedulerSvc                          0    INFO Activating scheduler in a separate thread
+AvalancheSchedulerSvc                          0    INFO Found 12 algorithms
+AvalancheSchedulerSvc                          0    INFO Will attribute the following unmet INPUT dependencies to "SGInputLoader/SGInputLoader" Algorithm
    o  ( 'TileBeamElemContainer' , 'StoreGateSvc+TileBeamElemCnt' )     required by Algorithm: 
        * TileBeamElemCntDumper
-PrecedenceSvc                               0      INFO Assembling CF and DF task precedence rules
-PrecedenceRulesGraph                        0      INFO CondSvc found. DF precedence rules will be augmented with 'Conditions'
-PrecedenceSvc                               0      INFO PrecedenceSvc initialized successfully
-AvalancheSchedulerSvc                       0      INFO Concurrency level information:
-AvalancheSchedulerSvc                       0      INFO  o Number of events in flight: 4
-AvalancheSchedulerSvc                       0      INFO  o TBB thread pool size:  'ThreadPoolSize':4
-HistogramPersistencySvc                     0   WARNING Histograms saving not required.
-EventSelector                               0      INFO Initializing EventSelector - package version ByteStreamCnvSvc-00-00-00
-ByteStreamInputSvc                          0      INFO Initializing ByteStreamInputSvc - package version ByteStreamCnvSvc-00-00-00
-ROBDataProviderSvc                          0      INFO Initializing ROBDataProviderSvc - package version ByteStreamCnvSvcBase-00-00-00
-ROBDataProviderSvc                          0      INFO  ---> Filter out empty ROB fragments                               =  'filterEmptyROB':False
-ROBDataProviderSvc                          0      INFO  ---> Filter out specific ROBs by Status Code: # ROBs = 0
-ROBDataProviderSvc                          0      INFO  ---> Filter out Sub Detector ROBs by Status Code: # Sub Detectors = 0
-EventSelector                               0      INFO reinitialization...
-AthenaHiveEventLoopMgr                      0      INFO Setup EventSelector service EventSelector
-ApplicationMgr                              0      INFO Application Manager Initialized successfully
-PoolSvc                                     0      INFO Enabled implicit multithreading in ROOT via PersistencySvc to: 4
-CondInputLoader                             0      INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/CALIB/CES'
-CondInputLoader                             0      INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/CALIB/CIS/FIT/LIN'
-CondInputLoader                             0      INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/CALIB/CIS/FIT/NLN'
-CondInputLoader                             0      INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/CALIB/EMS'
-CondInputLoader                             0      INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/CALIB/LAS/FIBER'
-CondInputLoader                             0      INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/CALIB/LAS/LIN'
-CondInputLoader                             0      INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/CALIB/LAS/NLN'
-CondInputLoader                             0      INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/NOISE/SAMPLE'
-CondInputLoader                             0      INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/STATUS/ADC'
-CondInputLoader                             0      INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/TIME/CHANNELOFFSET/PHY'
-CondInputLoader                             0      INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/ONL01/STATUS/ADC'
-ByteStreamInputSvc                          0      INFO Picked valid file: /cvmfs/atlas-nightlies.cern.ch/repo/data/data-art/Tier0ChainTests/data12_8TeV.00204073.physics_JetTauEtmiss.merge.RAW._lb0144._SFO-5._0001.1
-ApplicationMgr                              0      INFO Application Manager Started successfully
-AthenaHiveEventLoopMgr                      0      INFO Starting loop on events
-EventPersistencySvc                     0   0      INFO Added successfully Conversion service:AthenaPoolCnvSvc
-EventPersistencySvc                     0   0      INFO Added successfully Conversion service:TagInfoMgr
-EventPersistencySvc                     0   0      INFO Added successfully Conversion service:ByteStreamCnvSvc
-EventInfoByteStreamAuxCnv               0   0      INFO IsSimulation : 0
-EventInfoByteStreamAuxCnv               0   0      INFO IsTestbeam : 0
-EventInfoByteStreamAuxCnv               0   0      INFO IsCalibration : 0
-AthenaHiveEventLoopMgr                  0   0      INFO   ===>>>  start of run 204073    <<<===
-IOVDbSvc                                0   0      INFO Opening COOL connection for COOLOFL_LAR/OFLP200
-IOVDbFolder                             0   0      INFO HVS tag OFLCOND-RUN12-SDR-35 resolved to LARAlign-IOVDEP-00 for folder /LAR/Align
-IOVDbFolder                             0   0      INFO HVS tag OFLCOND-RUN12-SDR-35 resolved to LArCellPositionShift-ideal for folder /LAR/LArCellPositionShift
-IOVDbSvc                                0   0      INFO Disconnecting from COOLOFL_LAR/OFLP200
-Domain[ROOT_All]                        0   0      INFO ->  Access   DbDatabase   READ      [ROOT_All] 06C9EAE8-6F5B-E011-BAAA-003048F0E7AC
-Domain[ROOT_All]                        0   0      INFO                           /cvmfs/atlas-condb.cern.ch/repo/conditions/cond09/cond09_mc.000029.gen.COND/cond09_mc.000029.gen.COND._0002.pool.root
-RootDatabase.open                       0   0      INFO /cvmfs/atlas-condb.cern.ch/repo/conditions/cond09/cond09_mc.000029.gen.COND/cond09_mc.000029.gen.COND._0002.pool.root File version:52200
-CaloMgrDetDescrCnv                      0   0      INFO in createObj: creating a Calo Detector Manager object in the detector store
-CaloIdMgrDetDescrCnv                    0   0      INFO in createObj: creating a CaloDescrManager object in the detector store
-ClassIDSvc                              0   0      INFO  getRegistryEntries: read 195 CLIDRegistry entries for module ALL
-CaloIDHelper_IDDetDescrCnv              0   0      INFO in createObj: creating a CaloDM_ID helper object in the detector store
-CaloDM_ID                               0   0      INFO initialize_from_dictionary
-AtlasDetectorID                         0   0      INFO initialize_from_dictionary - OK
-CaloIDHelper_IDDetDescrCnv              0   0      INFO in createObj: creating a TTOnlineID helper object in the detector store
-TTOnlineID                              0   0      INFO initialize_from_dictionary
-AtlasDetectorID                         0   0      INFO initialize_from_dictionary - OK
-CaloIDHelper_IDDetDescrCnv              0   0      INFO in createObj: creating a CaloCell_SuperCell_ID helper object in the detector store
-CaloIDHelper_IDDetDescrCnv              0   0      INFO in createObj: creating a LArEM_SuperCell_ID helper object in the detector store
-AtlasDetectorID                         0   0      INFO initialize_from_dictionary - OK
-CaloIDHelper_IDDetDescrCnv              0   0      INFO in createObj: creating a LArHEC_SuperCell_ID helper object in the detector store
-AtlasDetectorID                         0   0      INFO initialize_from_dictionary - OK
-CaloIDHelper_IDDetDescrCnv              0   0      INFO in createObj: creating a LArFCAL_SuperCell_ID helper object in the detector store
-AtlasDetectorID                         0   0      INFO initialize_from_dictionary - OK
-LArFCAL_Base_ID                         0   0      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-06T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/FCalSuperCells2DNeighborsNew-April2014.txt
-LArFCAL_Base_ID                         0   0      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-06T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/FCalSuperCells3DNeighborsNextNew-April2014.txt
-LArFCAL_Base_ID                         0   0      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-06T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/FCalSuperCells3DNeighborsPrevNew-April2014.txt
-CaloIDHelper_IDDetDescrCnv              0   0      INFO in createObj: creating a Tile_SuperCell_ID helper object in the detector store
-AtlasDetectorID                         0   0      INFO initialize_from_dictionary - OK
-TileNeighbour                           0   0      INFO Reading file  /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-06T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/TileSuperCellNeighbour.txt
-AtlasDetectorID                         0   0      INFO initialize_from_dictionary - OK
-CaloIdMgrDetDescrCnv                    0   0      INFO  Finished 
-CaloIdMgrDetDescrCnv                    0   0      INFO Initializing CaloIdMgr from values in CaloIdMgrDetDescrCnv 
-Domain[ROOT_All]                        0   0      INFO ->  Access   DbDatabase   READ      [ROOT_All] 8667C6F2-1559-DE11-A611-000423D9A21A
-Domain[ROOT_All]                        0   0      INFO                           /cvmfs/atlas-condb.cern.ch/repo/conditions/cond08/cond08_mc.000003.gen.COND/cond08_mc.000003.gen.COND._0064.pool.root
-RootDatabase.open                       0   0      INFO /cvmfs/atlas-condb.cern.ch/repo/conditions/cond08/cond08_mc.000003.gen.COND/cond08_mc.000003.gen.COND._0064.pool.root File version:52200
-AthenaHiveEventLoopMgr                  0   0      INFO   ===>>>  start processing event #1129572, run #204073 on slot 0,  0 events processed so far  <<<===
-ClassIDSvc                              0   0      INFO  getRegistryEntries: read 672 CLIDRegistry entries for module ALL
-ClassIDSvc                              0   0      INFO  getRegistryEntries: read 1776 CLIDRegistry entries for module ALL
-ClassIDSvc                              0   0      INFO  getRegistryEntries: read 90 CLIDRegistry entries for module ALL
-ToolSvc.TileROD_Decoder.TileL2Builder   0   0      INFO TileL2Builder initialization completed
-AthenaHiveEventLoopMgr                  1   1      INFO   ===>>>  start processing event #1129665, run #204073 on slot 1,  0 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  2   2      INFO   ===>>>  start processing event #1131212, run #204073 on slot 2,  0 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  3   3      INFO   ===>>>  start processing event #1131086, run #204073 on slot 3,  0 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1129572, run #204073 on slot 0,  1 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1129665, run #204073 on slot 1,  2 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1131212, run #204073 on slot 2,  3 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  4   0      INFO   ===>>>  start processing event #1130272, run #204073 on slot 0,  3 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  5   1      INFO   ===>>>  start processing event #1131269, run #204073 on slot 1,  3 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  6   2      INFO   ===>>>  start processing event #1130716, run #204073 on slot 2,  3 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1131086, run #204073 on slot 3,  4 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1130272, run #204073 on slot 0,  5 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1131269, run #204073 on slot 1,  6 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  7   0      INFO   ===>>>  start processing event #1132019, run #204073 on slot 0,  6 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  8   1      INFO   ===>>>  start processing event #1132092, run #204073 on slot 1,  6 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  9   3      INFO   ===>>>  start processing event #1130238, run #204073 on slot 3,  6 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1130716, run #204073 on slot 2,  7 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1132019, run #204073 on slot 0,  8 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1132092, run #204073 on slot 1,  9 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  10  0      INFO   ===>>>  start processing event #1134553, run #204073 on slot 0,  9 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  11  1      INFO   ===>>>  start processing event #1130999, run #204073 on slot 1,  9 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  12  2      INFO   ===>>>  start processing event #1133461, run #204073 on slot 2,  9 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1130238, run #204073 on slot 3,  10 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1134553, run #204073 on slot 0,  11 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1130999, run #204073 on slot 1,  12 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  13  0      INFO   ===>>>  start processing event #1131152, run #204073 on slot 0,  12 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  14  1      INFO   ===>>>  start processing event #1130142, run #204073 on slot 1,  12 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  15  3      INFO   ===>>>  start processing event #1132770, run #204073 on slot 3,  12 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1133461, run #204073 on slot 2,  13 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1131152, run #204073 on slot 0,  14 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1130142, run #204073 on slot 1,  15 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  16  0      INFO   ===>>>  start processing event #1132365, run #204073 on slot 0,  15 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  17  1      INFO   ===>>>  start processing event #1136791, run #204073 on slot 1,  15 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  18  2      INFO   ===>>>  start processing event #1133781, run #204073 on slot 2,  15 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1132770, run #204073 on slot 3,  16 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1132365, run #204073 on slot 0,  17 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1136791, run #204073 on slot 1,  18 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  19  0      INFO   ===>>>  start processing event #1132067, run #204073 on slot 0,  18 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  20  1      INFO   ===>>>  start processing event #1138637, run #204073 on slot 1,  18 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  21  3      INFO   ===>>>  start processing event #1139495, run #204073 on slot 3,  18 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1133781, run #204073 on slot 2,  19 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1132067, run #204073 on slot 0,  20 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1138637, run #204073 on slot 1,  21 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  22  0      INFO   ===>>>  start processing event #1140193, run #204073 on slot 0,  21 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  23  1      INFO   ===>>>  start processing event #1142953, run #204073 on slot 1,  21 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  24  2      INFO   ===>>>  start processing event #1139127, run #204073 on slot 2,  21 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1139495, run #204073 on slot 3,  22 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1140193, run #204073 on slot 0,  23 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1142953, run #204073 on slot 1,  24 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  25  0      INFO   ===>>>  start processing event #1141272, run #204073 on slot 0,  24 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  26  1      INFO   ===>>>  start processing event #1137117, run #204073 on slot 1,  24 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  27  3      INFO   ===>>>  start processing event #1139599, run #204073 on slot 3,  24 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1139127, run #204073 on slot 2,  25 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1141272, run #204073 on slot 0,  26 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1137117, run #204073 on slot 1,  27 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  28  0      INFO   ===>>>  start processing event #1140314, run #204073 on slot 0,  27 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  29  1      INFO   ===>>>  start processing event #1133685, run #204073 on slot 1,  27 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  30  2      INFO   ===>>>  start processing event #1143279, run #204073 on slot 2,  27 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1139599, run #204073 on slot 3,  28 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1140314, run #204073 on slot 0,  29 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1133685, run #204073 on slot 1,  30 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  31  0      INFO   ===>>>  start processing event #1137563, run #204073 on slot 0,  30 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  32  1      INFO   ===>>>  start processing event #1139927, run #204073 on slot 1,  30 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  33  3      INFO   ===>>>  start processing event #1141197, run #204073 on slot 3,  30 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1143279, run #204073 on slot 2,  31 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1137563, run #204073 on slot 0,  32 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1139927, run #204073 on slot 1,  33 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  34  0      INFO   ===>>>  start processing event #1140039, run #204073 on slot 0,  33 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  35  1      INFO   ===>>>  start processing event #1142531, run #204073 on slot 1,  33 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  36  2      INFO   ===>>>  start processing event #1139475, run #204073 on slot 2,  33 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1141197, run #204073 on slot 3,  34 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1140039, run #204073 on slot 0,  35 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1142531, run #204073 on slot 1,  36 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  37  0      INFO   ===>>>  start processing event #1139958, run #204073 on slot 0,  36 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  38  1      INFO   ===>>>  start processing event #1143765, run #204073 on slot 1,  36 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  39  3      INFO   ===>>>  start processing event #1143097, run #204073 on slot 3,  36 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1139475, run #204073 on slot 2,  37 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1139958, run #204073 on slot 0,  38 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1143765, run #204073 on slot 1,  39 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  40  0      INFO   ===>>>  start processing event #1134147, run #204073 on slot 0,  39 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  41  1      INFO   ===>>>  start processing event #1137156, run #204073 on slot 1,  39 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  42  2      INFO   ===>>>  start processing event #1136377, run #204073 on slot 2,  39 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1143097, run #204073 on slot 3,  40 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1134147, run #204073 on slot 0,  41 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1137156, run #204073 on slot 1,  42 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  43  0      INFO   ===>>>  start processing event #1137842, run #204073 on slot 0,  42 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  44  1      INFO   ===>>>  start processing event #1141705, run #204073 on slot 1,  42 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  45  3      INFO   ===>>>  start processing event #1143410, run #204073 on slot 3,  42 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1136377, run #204073 on slot 2,  43 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1137842, run #204073 on slot 0,  44 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1141705, run #204073 on slot 1,  45 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  46  0      INFO   ===>>>  start processing event #1144170, run #204073 on slot 0,  45 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  47  1      INFO   ===>>>  start processing event #1145987, run #204073 on slot 1,  45 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  48  2      INFO   ===>>>  start processing event #1145633, run #204073 on slot 2,  45 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1143410, run #204073 on slot 3,  46 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1144170, run #204073 on slot 0,  47 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1145987, run #204073 on slot 1,  48 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  49  0      INFO   ===>>>  start processing event #1135005, run #204073 on slot 0,  48 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  50  1      INFO   ===>>>  start processing event #1142167, run #204073 on slot 1,  48 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  51  3      INFO   ===>>>  start processing event #1144646, run #204073 on slot 3,  48 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1145633, run #204073 on slot 2,  49 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1135005, run #204073 on slot 0,  50 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1142167, run #204073 on slot 1,  51 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  52  0      INFO   ===>>>  start processing event #1145027, run #204073 on slot 0,  51 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  53  1      INFO   ===>>>  start processing event #1144112, run #204073 on slot 1,  51 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  54  2      INFO   ===>>>  start processing event #1138485, run #204073 on slot 2,  51 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1144646, run #204073 on slot 3,  52 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1145027, run #204073 on slot 0,  53 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1144112, run #204073 on slot 1,  54 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  55  0      INFO   ===>>>  start processing event #1144565, run #204073 on slot 0,  54 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  56  1      INFO   ===>>>  start processing event #1139498, run #204073 on slot 1,  54 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  57  3      INFO   ===>>>  start processing event #1136546, run #204073 on slot 3,  54 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1138485, run #204073 on slot 2,  55 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1144565, run #204073 on slot 0,  56 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1139498, run #204073 on slot 1,  57 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  58  0      INFO   ===>>>  start processing event #1143799, run #204073 on slot 0,  57 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  59  1      INFO   ===>>>  start processing event #1142877, run #204073 on slot 1,  57 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  60  2      INFO   ===>>>  start processing event #1149894, run #204073 on slot 2,  57 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1136546, run #204073 on slot 3,  58 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1143799, run #204073 on slot 0,  59 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1142877, run #204073 on slot 1,  60 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  61  0      INFO   ===>>>  start processing event #1145364, run #204073 on slot 0,  60 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  62  1      INFO   ===>>>  start processing event #1143770, run #204073 on slot 1,  60 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  63  3      INFO   ===>>>  start processing event #1148361, run #204073 on slot 3,  60 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1149894, run #204073 on slot 2,  61 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1145364, run #204073 on slot 0,  62 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1143770, run #204073 on slot 1,  63 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  64  0      INFO   ===>>>  start processing event #1148167, run #204073 on slot 0,  63 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  65  1      INFO   ===>>>  start processing event #1138948, run #204073 on slot 1,  63 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  66  2      INFO   ===>>>  start processing event #1144808, run #204073 on slot 2,  63 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1148361, run #204073 on slot 3,  64 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1148167, run #204073 on slot 0,  65 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1138948, run #204073 on slot 1,  66 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  67  0      INFO   ===>>>  start processing event #1145832, run #204073 on slot 0,  66 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  68  1      INFO   ===>>>  start processing event #1153100, run #204073 on slot 1,  66 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  69  3      INFO   ===>>>  start processing event #1142524, run #204073 on slot 3,  66 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1144808, run #204073 on slot 2,  67 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1145832, run #204073 on slot 0,  68 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1153100, run #204073 on slot 1,  69 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  70  0      INFO   ===>>>  start processing event #1138294, run #204073 on slot 0,  69 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  71  1      INFO   ===>>>  start processing event #1138350, run #204073 on slot 1,  69 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  72  2      INFO   ===>>>  start processing event #1149424, run #204073 on slot 2,  69 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1142524, run #204073 on slot 3,  70 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  73  3      INFO   ===>>>  start processing event #1151102, run #204073 on slot 3,  70 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1138294, run #204073 on slot 0,  71 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1138350, run #204073 on slot 1,  72 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1149424, run #204073 on slot 2,  73 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  74  0      INFO   ===>>>  start processing event #1152242, run #204073 on slot 0,  73 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  75  1      INFO   ===>>>  start processing event #1148416, run #204073 on slot 1,  73 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  76  2      INFO   ===>>>  start processing event #1142753, run #204073 on slot 2,  73 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1151102, run #204073 on slot 3,  74 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1152242, run #204073 on slot 0,  75 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1148416, run #204073 on slot 1,  76 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  77  0      INFO   ===>>>  start processing event #1149997, run #204073 on slot 0,  76 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  78  1      INFO   ===>>>  start processing event #1151617, run #204073 on slot 1,  76 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  79  3      INFO   ===>>>  start processing event #1149794, run #204073 on slot 3,  76 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1142753, run #204073 on slot 2,  77 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1149997, run #204073 on slot 0,  78 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1151617, run #204073 on slot 1,  79 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  80  0      INFO   ===>>>  start processing event #1152504, run #204073 on slot 0,  79 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  81  1      INFO   ===>>>  start processing event #1142485, run #204073 on slot 1,  79 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  82  2      INFO   ===>>>  start processing event #1151364, run #204073 on slot 2,  79 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1149794, run #204073 on slot 3,  80 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1152504, run #204073 on slot 0,  81 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1142485, run #204073 on slot 1,  82 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  83  0      INFO   ===>>>  start processing event #1143901, run #204073 on slot 0,  82 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  84  1      INFO   ===>>>  start processing event #1153979, run #204073 on slot 1,  82 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  85  3      INFO   ===>>>  start processing event #1150212, run #204073 on slot 3,  82 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1151364, run #204073 on slot 2,  83 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1143901, run #204073 on slot 0,  84 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1153979, run #204073 on slot 1,  85 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  86  0      INFO   ===>>>  start processing event #1152633, run #204073 on slot 0,  85 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  87  1      INFO   ===>>>  start processing event #1155482, run #204073 on slot 1,  85 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  88  2      INFO   ===>>>  start processing event #1150472, run #204073 on slot 2,  85 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1150212, run #204073 on slot 3,  86 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1152633, run #204073 on slot 0,  87 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1155482, run #204073 on slot 1,  88 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  89  0      INFO   ===>>>  start processing event #1140275, run #204073 on slot 0,  88 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  90  1      INFO   ===>>>  start processing event #1145882, run #204073 on slot 1,  88 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  91  3      INFO   ===>>>  start processing event #1151732, run #204073 on slot 3,  88 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1150472, run #204073 on slot 2,  89 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1140275, run #204073 on slot 0,  90 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1145882, run #204073 on slot 1,  91 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  92  0      INFO   ===>>>  start processing event #1137896, run #204073 on slot 0,  91 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  93  1      INFO   ===>>>  start processing event #1156381, run #204073 on slot 1,  91 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  94  2      INFO   ===>>>  start processing event #1149161, run #204073 on slot 2,  91 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1151732, run #204073 on slot 3,  92 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1137896, run #204073 on slot 0,  93 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1156381, run #204073 on slot 1,  94 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  95  0      INFO   ===>>>  start processing event #1153794, run #204073 on slot 0,  94 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  96  1      INFO   ===>>>  start processing event #1151312, run #204073 on slot 1,  94 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  97  3      INFO   ===>>>  start processing event #1148893, run #204073 on slot 3,  94 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1149161, run #204073 on slot 2,  95 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1153794, run #204073 on slot 0,  96 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1151312, run #204073 on slot 1,  97 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  98  0      INFO   ===>>>  start processing event #1156938, run #204073 on slot 0,  97 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  99  1      INFO   ===>>>  start processing event #1156351, run #204073 on slot 1,  97 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1148893, run #204073 on slot 3,  98 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1156938, run #204073 on slot 0,  99 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1156351, run #204073 on slot 1,  100 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO ---> Loop Finished (seconds): 8.20218
-/cvmfs/atlas-condb.cern.ch/repo/condi...           INFO Database being retired...
-Domain[ROOT_All]                                   INFO ->  Deaccess DbDatabase   READ      [ROOT_All] 06C9EAE8-6F5B-E011-BAAA-003048F0E7AC
-/cvmfs/atlas-condb.cern.ch/repo/condi...           INFO Database being retired...
-Domain[ROOT_All]                                   INFO ->  Deaccess DbDatabase   READ      [ROOT_All] 8667C6F2-1559-DE11-A611-000423D9A21A
-Domain[ROOT_All]                                   INFO >   Deaccess DbDomain     READ      [ROOT_All] 
-ApplicationMgr                                     INFO Application Manager Stopped successfully
-IncidentProcAlg1                                   INFO Finalize
-SGInputLoader                                      INFO Finalizing SGInputLoader...
-Finalizer                                          INFO Finalizing Finalizer...
+PrecedenceSvc                                  0    INFO Assembling CF and DF task precedence rules
+PrecedenceRulesGraph                           0    INFO CondSvc found. DF precedence rules will be augmented with 'Conditions'
+PrecedenceSvc                                  0    INFO PrecedenceSvc initialized successfully
+AvalancheSchedulerSvc                          0    INFO Concurrency level information:
+AvalancheSchedulerSvc                          0    INFO  o Number of events in flight: 4
+AvalancheSchedulerSvc                          0    INFO  o TBB thread pool size:  'ThreadPoolSize':4
+HistogramPersistencySvc                        0 WARNING Histograms saving not required.
+EventSelector                                  0    INFO Initializing EventSelector - package version ByteStreamCnvSvc-00-00-00
+ByteStreamInputSvc                             0    INFO Initializing ByteStreamInputSvc - package version ByteStreamCnvSvc-00-00-00
+ROBDataProviderSvc                             0    INFO Initializing ROBDataProviderSvc - package version ByteStreamCnvSvcBase-00-00-00
+ROBDataProviderSvc                             0    INFO  ---> Filter out empty ROB fragments                               =  'filterEmptyROB':False
+ROBDataProviderSvc                             0    INFO  ---> Filter out specific ROBs by Status Code: # ROBs = 0
+ROBDataProviderSvc                             0    INFO  ---> Filter out Sub Detector ROBs by Status Code: # Sub Detectors = 0
+EventSelector                                  0    INFO reinitialization...
+AthenaHiveEventLoopMgr                         0    INFO Setup EventSelector service EventSelector
+ApplicationMgr                                 0    INFO Application Manager Initialized successfully
+PoolSvc                                        0    INFO Enabled implicit multithreading in ROOT via PersistencySvc to: 4
+CondInputLoader                                0    INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/CALIB/CES'
+CondInputLoader                                0    INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/CALIB/CIS/FIT/LIN'
+CondInputLoader                                0    INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/CALIB/CIS/FIT/NLN'
+CondInputLoader                                0    INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/CALIB/EMS'
+CondInputLoader                                0    INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/CALIB/LAS/FIBER'
+CondInputLoader                                0    INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/CALIB/LAS/LIN'
+CondInputLoader                                0    INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/CALIB/LAS/NLN'
+CondInputLoader                                0    INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/NOISE/SAMPLE'
+CondInputLoader                                0    INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/STATUS/ADC'
+CondInputLoader                                0    INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/TIME/CHANNELOFFSET/PHY'
+CondInputLoader                                0    INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/ONL01/STATUS/ADC'
+ByteStreamInputSvc                             0    INFO Picked valid file: /cvmfs/atlas-nightlies.cern.ch/repo/data/data-art/Tier0ChainTests/data12_8TeV.00204073.physics_JetTauEtmiss.merge.RAW._lb0144._SFO-5._0001.1
+ApplicationMgr                                 0    INFO Application Manager Started successfully
+AthenaHiveEventLoopMgr                         0    INFO Starting loop on events
+EventPersistencySvc                        0   0    INFO Added successfully Conversion service:AthenaPoolCnvSvc
+EventPersistencySvc                        0   0    INFO Added successfully Conversion service:TagInfoMgr
+EventPersistencySvc                        0   0    INFO Added successfully Conversion service:ByteStreamCnvSvc
+EventInfoByteStreamAuxCnv                  0   0    INFO IsSimulation : 0
+EventInfoByteStreamAuxCnv                  0   0    INFO IsTestbeam : 0
+EventInfoByteStreamAuxCnv                  0   0    INFO IsCalibration : 0
+AthenaHiveEventLoopMgr                     0   0    INFO   ===>>>  start of run 204073    <<<===
+IOVDbSvc                                   0   0    INFO Opening COOL connection for COOLOFL_LAR/OFLP200
+IOVDbFolder                                0   0    INFO HVS tag OFLCOND-RUN12-SDR-35 resolved to LARAlign-IOVDEP-00 for folder /LAR/Align
+IOVDbFolder                                0   0    INFO HVS tag OFLCOND-RUN12-SDR-35 resolved to LArCellPositionShift-ideal for folder /LAR/LArCellPositionShift
+IOVDbSvc                                   0   0    INFO Disconnecting from COOLOFL_LAR/OFLP200
+Domain[ROOT_All]                           0   0    INFO ->  Access   DbDatabase   READ      [ROOT_All] 06C9EAE8-6F5B-E011-BAAA-003048F0E7AC
+Domain[ROOT_All]                           0   0    INFO                           /cvmfs/atlas-condb.cern.ch/repo/conditions/cond09/cond09_mc.000029.gen.COND/cond09_mc.000029.gen.COND._0002.pool.root
+RootDatabase.open                          0   0    INFO /cvmfs/atlas-condb.cern.ch/repo/conditions/cond09/cond09_mc.000029.gen.COND/cond09_mc.000029.gen.COND._0002.pool.root File version:52200
+CaloMgrDetDescrCnv                         0   0    INFO in createObj: creating a Calo Detector Manager object in the detector store
+CaloIdMgrDetDescrCnv                       0   0    INFO in createObj: creating a CaloDescrManager object in the detector store
+ClassIDSvc                                 0   0    INFO  getRegistryEntries: read 198 CLIDRegistry entries for module ALL
+CaloIDHelper_IDDetDescrCnv                 0   0    INFO in createObj: creating a CaloDM_ID helper object in the detector store
+CaloDM_ID                                  0   0    INFO initialize_from_dictionary
+AtlasDetectorID                            0   0    INFO initialize_from_dictionary - OK
+CaloIDHelper_IDDetDescrCnv                 0   0    INFO in createObj: creating a TTOnlineID helper object in the detector store
+TTOnlineID                                 0   0    INFO initialize_from_dictionary
+AtlasDetectorID                            0   0    INFO initialize_from_dictionary - OK
+CaloIDHelper_IDDetDescrCnv                 0   0    INFO in createObj: creating a CaloCell_SuperCell_ID helper object in the detector store
+CaloIDHelper_IDDetDescrCnv                 0   0    INFO in createObj: creating a LArEM_SuperCell_ID helper object in the detector store
+AtlasDetectorID                            0   0    INFO initialize_from_dictionary - OK
+CaloIDHelper_IDDetDescrCnv                 0   0    INFO in createObj: creating a LArHEC_SuperCell_ID helper object in the detector store
+AtlasDetectorID                            0   0    INFO initialize_from_dictionary - OK
+CaloIDHelper_IDDetDescrCnv                 0   0    INFO in createObj: creating a LArFCAL_SuperCell_ID helper object in the detector store
+AtlasDetectorID                            0   0    INFO initialize_from_dictionary - OK
+LArFCAL_Base_ID                            0   0    INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/FCalSuperCells2DNeighborsNew-April2014.txt
+LArFCAL_Base_ID                            0   0    INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/FCalSuperCells3DNeighborsNextNew-April2014.txt
+LArFCAL_Base_ID                            0   0    INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/FCalSuperCells3DNeighborsPrevNew-April2014.txt
+CaloIDHelper_IDDetDescrCnv                 0   0    INFO in createObj: creating a Tile_SuperCell_ID helper object in the detector store
+AtlasDetectorID                            0   0    INFO initialize_from_dictionary - OK
+TileNeighbour                              0   0    INFO Reading file  /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/TileSuperCellNeighbour.txt
+AtlasDetectorID                            0   0    INFO initialize_from_dictionary - OK
+CaloIdMgrDetDescrCnv                       0   0    INFO  Finished 
+CaloIdMgrDetDescrCnv                       0   0    INFO Initializing CaloIdMgr from values in CaloIdMgrDetDescrCnv 
+Domain[ROOT_All]                           0   0    INFO ->  Access   DbDatabase   READ      [ROOT_All] 8667C6F2-1559-DE11-A611-000423D9A21A
+Domain[ROOT_All]                           0   0    INFO                           /cvmfs/atlas-condb.cern.ch/repo/conditions/cond08/cond08_mc.000003.gen.COND/cond08_mc.000003.gen.COND._0064.pool.root
+RootDatabase.open                          0   0    INFO /cvmfs/atlas-condb.cern.ch/repo/conditions/cond08/cond08_mc.000003.gen.COND/cond08_mc.000003.gen.COND._0064.pool.root File version:52200
+AthenaHiveEventLoopMgr                     0   0    INFO   ===>>>  start processing event #1129572, run #204073 on slot 0,  0 events processed so far  <<<===
+ClassIDSvc                                 0   0    INFO  getRegistryEntries: read 470 CLIDRegistry entries for module ALL
+ClassIDSvc                                 0   0    INFO  getRegistryEntries: read 1795 CLIDRegistry entries for module ALL
+ClassIDSvc                                 0   0    INFO  getRegistryEntries: read 91 CLIDRegistry entries for module ALL
+ToolSvc.TileROD_Decoder.TileL2Builder      0   0    INFO TileL2Builder initialization completed
+AthenaHiveEventLoopMgr                     1   1    INFO   ===>>>  start processing event #1129665, run #204073 on slot 1,  0 events processed so far  <<<===
+AthenaHiveEventLoopMgr                     2   2    INFO   ===>>>  start processing event #1131212, run #204073 on slot 2,  0 events processed so far  <<<===
+AthenaHiveEventLoopMgr                     3   3    INFO   ===>>>  start processing event #1131086, run #204073 on slot 3,  0 events processed so far  <<<===
+AthenaHiveEventLoopMgr                     0   0    INFO   ===>>>  done processing event #1129572, run #204073 on slot 0,  1 events processed so far  <<<===
+AthenaHiveEventLoopMgr                     1   1    INFO   ===>>>  done processing event #1129665, run #204073 on slot 1,  2 events processed so far  <<<===
+AthenaHiveEventLoopMgr                     2   2    INFO   ===>>>  done processing event #1131212, run #204073 on slot 2,  3 events processed so far  <<<===
+AthenaHiveEventLoopMgr                     4   0    INFO   ===>>>  start processing event #1130272, run #204073 on slot 0,  3 events processed so far  <<<===
+AthenaHiveEventLoopMgr                     5   1    INFO   ===>>>  start processing event #1131269, run #204073 on slot 1,  3 events processed so far  <<<===
+AthenaHiveEventLoopMgr                     6   2    INFO   ===>>>  start processing event #1130716, run #204073 on slot 2,  3 events processed so far  <<<===
+AthenaHiveEventLoopMgr                     3   3    INFO   ===>>>  done processing event #1131086, run #204073 on slot 3,  4 events processed so far  <<<===
+AthenaHiveEventLoopMgr                     4   0    INFO   ===>>>  done processing event #1130272, run #204073 on slot 0,  5 events processed so far  <<<===
+AthenaHiveEventLoopMgr                     5   1    INFO   ===>>>  done processing event #1131269, run #204073 on slot 1,  6 events processed so far  <<<===
+AthenaHiveEventLoopMgr                     7   0    INFO   ===>>>  start processing event #1132019, run #204073 on slot 0,  6 events processed so far  <<<===
+AthenaHiveEventLoopMgr                     8   1    INFO   ===>>>  start processing event #1132092, run #204073 on slot 1,  6 events processed so far  <<<===
+AthenaHiveEventLoopMgr                     9   3    INFO   ===>>>  start processing event #1130238, run #204073 on slot 3,  6 events processed so far  <<<===
+AthenaHiveEventLoopMgr                     6   2    INFO   ===>>>  done processing event #1130716, run #204073 on slot 2,  7 events processed so far  <<<===
+AthenaHiveEventLoopMgr                     7   0    INFO   ===>>>  done processing event #1132019, run #204073 on slot 0,  8 events processed so far  <<<===
+AthenaHiveEventLoopMgr                     8   1    INFO   ===>>>  done processing event #1132092, run #204073 on slot 1,  9 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    10   0    INFO   ===>>>  start processing event #1134553, run #204073 on slot 0,  9 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    11   1    INFO   ===>>>  start processing event #1130999, run #204073 on slot 1,  9 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    12   2    INFO   ===>>>  start processing event #1133461, run #204073 on slot 2,  9 events processed so far  <<<===
+AthenaHiveEventLoopMgr                     9   3    INFO   ===>>>  done processing event #1130238, run #204073 on slot 3,  10 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    10   0    INFO   ===>>>  done processing event #1134553, run #204073 on slot 0,  11 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    11   1    INFO   ===>>>  done processing event #1130999, run #204073 on slot 1,  12 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    13   0    INFO   ===>>>  start processing event #1131152, run #204073 on slot 0,  12 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    14   1    INFO   ===>>>  start processing event #1130142, run #204073 on slot 1,  12 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    15   3    INFO   ===>>>  start processing event #1132770, run #204073 on slot 3,  12 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    12   2    INFO   ===>>>  done processing event #1133461, run #204073 on slot 2,  13 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    13   0    INFO   ===>>>  done processing event #1131152, run #204073 on slot 0,  14 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    14   1    INFO   ===>>>  done processing event #1130142, run #204073 on slot 1,  15 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    16   0    INFO   ===>>>  start processing event #1132365, run #204073 on slot 0,  15 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    17   1    INFO   ===>>>  start processing event #1136791, run #204073 on slot 1,  15 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    18   2    INFO   ===>>>  start processing event #1133781, run #204073 on slot 2,  15 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    15   3    INFO   ===>>>  done processing event #1132770, run #204073 on slot 3,  16 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    16   0    INFO   ===>>>  done processing event #1132365, run #204073 on slot 0,  17 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    17   1    INFO   ===>>>  done processing event #1136791, run #204073 on slot 1,  18 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    19   0    INFO   ===>>>  start processing event #1132067, run #204073 on slot 0,  18 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    20   1    INFO   ===>>>  start processing event #1138637, run #204073 on slot 1,  18 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    21   3    INFO   ===>>>  start processing event #1139495, run #204073 on slot 3,  18 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    18   2    INFO   ===>>>  done processing event #1133781, run #204073 on slot 2,  19 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    19   0    INFO   ===>>>  done processing event #1132067, run #204073 on slot 0,  20 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    20   1    INFO   ===>>>  done processing event #1138637, run #204073 on slot 1,  21 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    22   0    INFO   ===>>>  start processing event #1140193, run #204073 on slot 0,  21 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    23   1    INFO   ===>>>  start processing event #1142953, run #204073 on slot 1,  21 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    24   2    INFO   ===>>>  start processing event #1139127, run #204073 on slot 2,  21 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    21   3    INFO   ===>>>  done processing event #1139495, run #204073 on slot 3,  22 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    22   0    INFO   ===>>>  done processing event #1140193, run #204073 on slot 0,  23 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    23   1    INFO   ===>>>  done processing event #1142953, run #204073 on slot 1,  24 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    25   0    INFO   ===>>>  start processing event #1141272, run #204073 on slot 0,  24 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    26   1    INFO   ===>>>  start processing event #1137117, run #204073 on slot 1,  24 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    27   3    INFO   ===>>>  start processing event #1139599, run #204073 on slot 3,  24 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    24   2    INFO   ===>>>  done processing event #1139127, run #204073 on slot 2,  25 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    25   0    INFO   ===>>>  done processing event #1141272, run #204073 on slot 0,  26 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    26   1    INFO   ===>>>  done processing event #1137117, run #204073 on slot 1,  27 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    28   0    INFO   ===>>>  start processing event #1140314, run #204073 on slot 0,  27 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    29   1    INFO   ===>>>  start processing event #1133685, run #204073 on slot 1,  27 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    30   2    INFO   ===>>>  start processing event #1143279, run #204073 on slot 2,  27 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    27   3    INFO   ===>>>  done processing event #1139599, run #204073 on slot 3,  28 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    28   0    INFO   ===>>>  done processing event #1140314, run #204073 on slot 0,  29 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    29   1    INFO   ===>>>  done processing event #1133685, run #204073 on slot 1,  30 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    31   0    INFO   ===>>>  start processing event #1137563, run #204073 on slot 0,  30 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    32   1    INFO   ===>>>  start processing event #1139927, run #204073 on slot 1,  30 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    33   3    INFO   ===>>>  start processing event #1141197, run #204073 on slot 3,  30 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    30   2    INFO   ===>>>  done processing event #1143279, run #204073 on slot 2,  31 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    31   0    INFO   ===>>>  done processing event #1137563, run #204073 on slot 0,  32 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    32   1    INFO   ===>>>  done processing event #1139927, run #204073 on slot 1,  33 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    34   0    INFO   ===>>>  start processing event #1140039, run #204073 on slot 0,  33 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    35   1    INFO   ===>>>  start processing event #1142531, run #204073 on slot 1,  33 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    36   2    INFO   ===>>>  start processing event #1139475, run #204073 on slot 2,  33 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    33   3    INFO   ===>>>  done processing event #1141197, run #204073 on slot 3,  34 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    34   0    INFO   ===>>>  done processing event #1140039, run #204073 on slot 0,  35 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    35   1    INFO   ===>>>  done processing event #1142531, run #204073 on slot 1,  36 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    37   0    INFO   ===>>>  start processing event #1139958, run #204073 on slot 0,  36 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    38   1    INFO   ===>>>  start processing event #1143765, run #204073 on slot 1,  36 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    39   3    INFO   ===>>>  start processing event #1143097, run #204073 on slot 3,  36 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    36   2    INFO   ===>>>  done processing event #1139475, run #204073 on slot 2,  37 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    37   0    INFO   ===>>>  done processing event #1139958, run #204073 on slot 0,  38 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    38   1    INFO   ===>>>  done processing event #1143765, run #204073 on slot 1,  39 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    40   0    INFO   ===>>>  start processing event #1134147, run #204073 on slot 0,  39 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    41   1    INFO   ===>>>  start processing event #1137156, run #204073 on slot 1,  39 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    42   2    INFO   ===>>>  start processing event #1136377, run #204073 on slot 2,  39 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    39   3    INFO   ===>>>  done processing event #1143097, run #204073 on slot 3,  40 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    40   0    INFO   ===>>>  done processing event #1134147, run #204073 on slot 0,  41 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    41   1    INFO   ===>>>  done processing event #1137156, run #204073 on slot 1,  42 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    43   0    INFO   ===>>>  start processing event #1137842, run #204073 on slot 0,  42 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    44   1    INFO   ===>>>  start processing event #1141705, run #204073 on slot 1,  42 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    45   3    INFO   ===>>>  start processing event #1143410, run #204073 on slot 3,  42 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    42   2    INFO   ===>>>  done processing event #1136377, run #204073 on slot 2,  43 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    43   0    INFO   ===>>>  done processing event #1137842, run #204073 on slot 0,  44 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    44   1    INFO   ===>>>  done processing event #1141705, run #204073 on slot 1,  45 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    46   0    INFO   ===>>>  start processing event #1144170, run #204073 on slot 0,  45 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    47   1    INFO   ===>>>  start processing event #1145987, run #204073 on slot 1,  45 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    48   2    INFO   ===>>>  start processing event #1145633, run #204073 on slot 2,  45 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    45   3    INFO   ===>>>  done processing event #1143410, run #204073 on slot 3,  46 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    46   0    INFO   ===>>>  done processing event #1144170, run #204073 on slot 0,  47 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    47   1    INFO   ===>>>  done processing event #1145987, run #204073 on slot 1,  48 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    49   0    INFO   ===>>>  start processing event #1135005, run #204073 on slot 0,  48 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    50   1    INFO   ===>>>  start processing event #1142167, run #204073 on slot 1,  48 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    51   3    INFO   ===>>>  start processing event #1144646, run #204073 on slot 3,  48 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    48   2    INFO   ===>>>  done processing event #1145633, run #204073 on slot 2,  49 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    49   0    INFO   ===>>>  done processing event #1135005, run #204073 on slot 0,  50 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    50   1    INFO   ===>>>  done processing event #1142167, run #204073 on slot 1,  51 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    52   0    INFO   ===>>>  start processing event #1145027, run #204073 on slot 0,  51 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    53   1    INFO   ===>>>  start processing event #1144112, run #204073 on slot 1,  51 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    54   2    INFO   ===>>>  start processing event #1138485, run #204073 on slot 2,  51 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    51   3    INFO   ===>>>  done processing event #1144646, run #204073 on slot 3,  52 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    52   0    INFO   ===>>>  done processing event #1145027, run #204073 on slot 0,  53 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    53   1    INFO   ===>>>  done processing event #1144112, run #204073 on slot 1,  54 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    55   0    INFO   ===>>>  start processing event #1144565, run #204073 on slot 0,  54 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    56   1    INFO   ===>>>  start processing event #1139498, run #204073 on slot 1,  54 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    57   3    INFO   ===>>>  start processing event #1136546, run #204073 on slot 3,  54 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    54   2    INFO   ===>>>  done processing event #1138485, run #204073 on slot 2,  55 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    55   0    INFO   ===>>>  done processing event #1144565, run #204073 on slot 0,  56 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    56   1    INFO   ===>>>  done processing event #1139498, run #204073 on slot 1,  57 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    58   0    INFO   ===>>>  start processing event #1143799, run #204073 on slot 0,  57 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    59   1    INFO   ===>>>  start processing event #1142877, run #204073 on slot 1,  57 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    60   2    INFO   ===>>>  start processing event #1149894, run #204073 on slot 2,  57 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    57   3    INFO   ===>>>  done processing event #1136546, run #204073 on slot 3,  58 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    58   0    INFO   ===>>>  done processing event #1143799, run #204073 on slot 0,  59 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    59   1    INFO   ===>>>  done processing event #1142877, run #204073 on slot 1,  60 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    61   0    INFO   ===>>>  start processing event #1145364, run #204073 on slot 0,  60 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    62   1    INFO   ===>>>  start processing event #1143770, run #204073 on slot 1,  60 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    63   3    INFO   ===>>>  start processing event #1148361, run #204073 on slot 3,  60 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    60   2    INFO   ===>>>  done processing event #1149894, run #204073 on slot 2,  61 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    61   0    INFO   ===>>>  done processing event #1145364, run #204073 on slot 0,  62 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    62   1    INFO   ===>>>  done processing event #1143770, run #204073 on slot 1,  63 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    64   0    INFO   ===>>>  start processing event #1148167, run #204073 on slot 0,  63 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    65   1    INFO   ===>>>  start processing event #1138948, run #204073 on slot 1,  63 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    66   2    INFO   ===>>>  start processing event #1144808, run #204073 on slot 2,  63 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    63   3    INFO   ===>>>  done processing event #1148361, run #204073 on slot 3,  64 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    64   0    INFO   ===>>>  done processing event #1148167, run #204073 on slot 0,  65 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    65   1    INFO   ===>>>  done processing event #1138948, run #204073 on slot 1,  66 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    67   0    INFO   ===>>>  start processing event #1145832, run #204073 on slot 0,  66 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    68   1    INFO   ===>>>  start processing event #1153100, run #204073 on slot 1,  66 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    69   3    INFO   ===>>>  start processing event #1142524, run #204073 on slot 3,  66 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    66   2    INFO   ===>>>  done processing event #1144808, run #204073 on slot 2,  67 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    67   0    INFO   ===>>>  done processing event #1145832, run #204073 on slot 0,  68 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    68   1    INFO   ===>>>  done processing event #1153100, run #204073 on slot 1,  69 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    70   0    INFO   ===>>>  start processing event #1138294, run #204073 on slot 0,  69 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    71   1    INFO   ===>>>  start processing event #1138350, run #204073 on slot 1,  69 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    72   2    INFO   ===>>>  start processing event #1149424, run #204073 on slot 2,  69 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    69   3    INFO   ===>>>  done processing event #1142524, run #204073 on slot 3,  70 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    70   0    INFO   ===>>>  done processing event #1138294, run #204073 on slot 0,  71 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    71   1    INFO   ===>>>  done processing event #1138350, run #204073 on slot 1,  72 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    73   0    INFO   ===>>>  start processing event #1151102, run #204073 on slot 0,  72 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    74   1    INFO   ===>>>  start processing event #1152242, run #204073 on slot 1,  72 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    75   3    INFO   ===>>>  start processing event #1148416, run #204073 on slot 3,  72 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    72   2    INFO   ===>>>  done processing event #1149424, run #204073 on slot 2,  73 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    73   0    INFO   ===>>>  done processing event #1151102, run #204073 on slot 0,  74 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    74   1    INFO   ===>>>  done processing event #1152242, run #204073 on slot 1,  75 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    76   0    INFO   ===>>>  start processing event #1142753, run #204073 on slot 0,  75 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    77   1    INFO   ===>>>  start processing event #1149997, run #204073 on slot 1,  75 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    78   2    INFO   ===>>>  start processing event #1151617, run #204073 on slot 2,  75 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    75   3    INFO   ===>>>  done processing event #1148416, run #204073 on slot 3,  76 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    76   0    INFO   ===>>>  done processing event #1142753, run #204073 on slot 0,  77 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    77   1    INFO   ===>>>  done processing event #1149997, run #204073 on slot 1,  78 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    79   0    INFO   ===>>>  start processing event #1149794, run #204073 on slot 0,  78 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    80   1    INFO   ===>>>  start processing event #1152504, run #204073 on slot 1,  78 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    81   3    INFO   ===>>>  start processing event #1142485, run #204073 on slot 3,  78 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    78   2    INFO   ===>>>  done processing event #1151617, run #204073 on slot 2,  79 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    79   0    INFO   ===>>>  done processing event #1149794, run #204073 on slot 0,  80 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    80   1    INFO   ===>>>  done processing event #1152504, run #204073 on slot 1,  81 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    82   0    INFO   ===>>>  start processing event #1151364, run #204073 on slot 0,  81 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    83   1    INFO   ===>>>  start processing event #1143901, run #204073 on slot 1,  81 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    84   2    INFO   ===>>>  start processing event #1153979, run #204073 on slot 2,  81 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    81   3    INFO   ===>>>  done processing event #1142485, run #204073 on slot 3,  82 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    82   0    INFO   ===>>>  done processing event #1151364, run #204073 on slot 0,  83 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    83   1    INFO   ===>>>  done processing event #1143901, run #204073 on slot 1,  84 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    85   0    INFO   ===>>>  start processing event #1150212, run #204073 on slot 0,  84 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    86   1    INFO   ===>>>  start processing event #1152633, run #204073 on slot 1,  84 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    87   3    INFO   ===>>>  start processing event #1155482, run #204073 on slot 3,  84 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    84   2    INFO   ===>>>  done processing event #1153979, run #204073 on slot 2,  85 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    85   0    INFO   ===>>>  done processing event #1150212, run #204073 on slot 0,  86 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    86   1    INFO   ===>>>  done processing event #1152633, run #204073 on slot 1,  87 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    88   0    INFO   ===>>>  start processing event #1150472, run #204073 on slot 0,  87 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    89   1    INFO   ===>>>  start processing event #1140275, run #204073 on slot 1,  87 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    90   2    INFO   ===>>>  start processing event #1145882, run #204073 on slot 2,  87 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    87   3    INFO   ===>>>  done processing event #1155482, run #204073 on slot 3,  88 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    88   0    INFO   ===>>>  done processing event #1150472, run #204073 on slot 0,  89 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    89   1    INFO   ===>>>  done processing event #1140275, run #204073 on slot 1,  90 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    91   0    INFO   ===>>>  start processing event #1151732, run #204073 on slot 0,  90 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    92   1    INFO   ===>>>  start processing event #1137896, run #204073 on slot 1,  90 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    93   3    INFO   ===>>>  start processing event #1156381, run #204073 on slot 3,  90 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    90   2    INFO   ===>>>  done processing event #1145882, run #204073 on slot 2,  91 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    91   0    INFO   ===>>>  done processing event #1151732, run #204073 on slot 0,  92 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    92   1    INFO   ===>>>  done processing event #1137896, run #204073 on slot 1,  93 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    94   0    INFO   ===>>>  start processing event #1149161, run #204073 on slot 0,  93 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    95   1    INFO   ===>>>  start processing event #1153794, run #204073 on slot 1,  93 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    96   2    INFO   ===>>>  start processing event #1151312, run #204073 on slot 2,  93 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    93   3    INFO   ===>>>  done processing event #1156381, run #204073 on slot 3,  94 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    94   0    INFO   ===>>>  done processing event #1149161, run #204073 on slot 0,  95 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    95   1    INFO   ===>>>  done processing event #1153794, run #204073 on slot 1,  96 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    97   0    INFO   ===>>>  start processing event #1148893, run #204073 on slot 0,  96 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    98   1    INFO   ===>>>  start processing event #1156938, run #204073 on slot 1,  96 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    99   3    INFO   ===>>>  start processing event #1156351, run #204073 on slot 3,  96 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    96   2    INFO   ===>>>  done processing event #1151312, run #204073 on slot 2,  97 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    97   0    INFO   ===>>>  done processing event #1148893, run #204073 on slot 0,  98 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    98   1    INFO   ===>>>  done processing event #1156938, run #204073 on slot 1,  99 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    99   3    INFO   ===>>>  done processing event #1156351, run #204073 on slot 3,  100 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    99   3    INFO ---> Loop Finished (seconds): 4.75145
+/cvmfs/atlas-condb.cern.ch/repo/condi...            INFO Database being retired...
+Domain[ROOT_All]                                    INFO ->  Deaccess DbDatabase   READ      [ROOT_All] 06C9EAE8-6F5B-E011-BAAA-003048F0E7AC
+/cvmfs/atlas-condb.cern.ch/repo/condi...            INFO Database being retired...
+Domain[ROOT_All]                                    INFO ->  Deaccess DbDatabase   READ      [ROOT_All] 8667C6F2-1559-DE11-A611-000423D9A21A
+Domain[ROOT_All]                                    INFO >   Deaccess DbDomain     READ      [ROOT_All] 
+ApplicationMgr                                      INFO Application Manager Stopped successfully
+IncidentProcAlg1                                    INFO Finalize
+SGInputLoader                                       INFO Finalizing SGInputLoader...
+Finalizer                                           INFO Finalizing Finalizer...
 Finalize: compared 10 dumps
-CondInputLoader                                    INFO Finalizing CondInputLoader...
-IncidentProcAlg2                                   INFO Finalize
-AvalancheSchedulerSvc                              INFO Joining Scheduler thread
-PyComponentMgr                                     INFO Finalizing PyComponentMgr...
-EventDataSvc                                       INFO Finalizing EventDataSvc - package version StoreGate-00-00-00
-IdDictDetDescrCnv                                  INFO in finalize
-IOVDbFolder                                        INFO Folder /LAR/Align (PoolRef) db-read 1/1 objs/chan/bytes 1/1/170 ((     0.78 ))s
-IOVDbFolder                                        INFO Folder /TILE/OFL02/CALIB/CES (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
-IOVDbFolder                                        INFO Folder /TILE/OFL02/CALIB/CIS/FIT/LIN (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
-IOVDbFolder                                        INFO Folder /TILE/OFL02/CALIB/CIS/FIT/NLN (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
-IOVDbFolder                                        INFO Folder /TILE/OFL02/CALIB/EMS (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
-IOVDbFolder                                        INFO Folder /TILE/OFL02/CALIB/LAS/FIBER (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
-IOVDbFolder                                        INFO Folder /TILE/OFL02/CALIB/LAS/LIN (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
-IOVDbFolder                                        INFO Folder /TILE/OFL02/CALIB/LAS/NLN (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
-IOVDbFolder                                        INFO Folder /TILE/OFL02/NOISE/SAMPLE (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
-IOVDbFolder                                        INFO Folder /TILE/OFL02/STATUS/ADC (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
-IOVDbFolder                                        INFO Folder /TILE/OFL02/TIME/CHANNELOFFSET/PHY (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
-IOVDbFolder                                        INFO Folder /TILE/ONL01/STATUS/ADC (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
-IOVDbFolder                                        INFO Folder /LAR/LArCellPositionShift (PoolRef) db-read 1/1 objs/chan/bytes 1/1/195 ((     0.44 ))s
-IOVDbSvc                                           INFO  bytes in ((      1.21 ))s
-IOVDbSvc                                           INFO Connection sqlite://;schema=mycool.db;dbname=OFLP200 : nConnect: 0 nFolders: 0 ReadTime: ((     0.00 ))s
-IOVDbSvc                                           INFO Connection COOLOFL_LAR/OFLP200 : nConnect: 2 nFolders: 2 ReadTime: ((     1.21 ))s
-IOVDbSvc                                           INFO Connection COOLOFL_TILE/OFLP200 : nConnect: 1 nFolders: 11 ReadTime: ((     0.00 ))s
-AthDictLoaderSvc                                   INFO in finalize...
-ToolSvc                                            INFO Removing all tools created by ToolSvc
-ToolSvc.ByteStreamMetadataTool                     INFO in finalize()
-ToolSvc.TileROD_Decoder.TileL2Builder              INFO Finalizing
-*****Chrono*****                                   INFO ****************************************************************************************************
-*****Chrono*****                                   INFO WARNING: MT job; statistics are unreliable
-*****Chrono*****                                   INFO  The Final CPU consumption ( Chrono ) Table (ordered)
-*****Chrono*****                                   INFO ****************************************************************************************************
-cObjR_ALL                                          INFO Time User   : Tot=  370 [ms] Ave/Min/Max=  185(+-  175)/   10/  360 [ms] #=  2
-cObj_ALL                                           INFO Time User   : Tot=  400 [ms] Ave/Min/Max=  200(+-  170)/   30/  370 [ms] #=  2
-ChronoStatSvc                                      INFO Time User   : Tot= 7.44  [s]                                             #=  1
-*****Chrono*****                                   INFO ****************************************************************************************************
-ChronoStatSvc.finalize()                           INFO  Service finalized successfully 
-ApplicationMgr                                     INFO Application Manager Finalized successfully
-ApplicationMgr                                     INFO Application Manager Terminated successfully
+CondInputLoader                                     INFO Finalizing CondInputLoader...
+IncidentProcAlg2                                    INFO Finalize
+AvalancheSchedulerSvc                               INFO Joining Scheduler thread
+PyComponentMgr                                      INFO Finalizing PyComponentMgr...
+EventDataSvc                                        INFO Finalizing EventDataSvc - package version StoreGate-00-00-00
+IdDictDetDescrCnv                                   INFO in finalize
+IOVDbFolder                                         INFO Folder /LAR/Align (PoolRef) db-read 1/1 objs/chan/bytes 1/1/170 ((     0.04 ))s
+IOVDbFolder                                         INFO Folder /TILE/OFL02/CALIB/CES (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
+IOVDbFolder                                         INFO Folder /TILE/OFL02/CALIB/CIS/FIT/LIN (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
+IOVDbFolder                                         INFO Folder /TILE/OFL02/CALIB/CIS/FIT/NLN (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
+IOVDbFolder                                         INFO Folder /TILE/OFL02/CALIB/EMS (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
+IOVDbFolder                                         INFO Folder /TILE/OFL02/CALIB/LAS/FIBER (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
+IOVDbFolder                                         INFO Folder /TILE/OFL02/CALIB/LAS/LIN (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
+IOVDbFolder                                         INFO Folder /TILE/OFL02/CALIB/LAS/NLN (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
+IOVDbFolder                                         INFO Folder /TILE/OFL02/NOISE/SAMPLE (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
+IOVDbFolder                                         INFO Folder /TILE/OFL02/STATUS/ADC (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
+IOVDbFolder                                         INFO Folder /TILE/OFL02/TIME/CHANNELOFFSET/PHY (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
+IOVDbFolder                                         INFO Folder /TILE/ONL01/STATUS/ADC (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
+IOVDbFolder                                         INFO Folder /LAR/LArCellPositionShift (PoolRef) db-read 1/1 objs/chan/bytes 1/1/195 ((     0.02 ))s
+IOVDbSvc                                            INFO  bytes in ((      0.06 ))s
+IOVDbSvc                                            INFO Connection sqlite://;schema=mycool.db;dbname=OFLP200 : nConnect: 0 nFolders: 0 ReadTime: ((     0.00 ))s
+IOVDbSvc                                            INFO Connection COOLOFL_LAR/OFLP200 : nConnect: 2 nFolders: 2 ReadTime: ((     0.06 ))s
+IOVDbSvc                                            INFO Connection COOLOFL_TILE/OFLP200 : nConnect: 1 nFolders: 11 ReadTime: ((     0.00 ))s
+AthDictLoaderSvc                                    INFO in finalize...
+ToolSvc                                             INFO Removing all tools created by ToolSvc
+ToolSvc.TileROD_Decoder.TileL2Builder               INFO Finalizing
+ToolSvc.ByteStreamMetadataTool                      INFO in finalize()
+*****Chrono*****                                    INFO ****************************************************************************************************
+*****Chrono*****                                    INFO WARNING: MT job; statistics are unreliable
+*****Chrono*****                                    INFO  The Final CPU consumption ( Chrono ) Table (ordered)
+*****Chrono*****                                    INFO ****************************************************************************************************
+cObjR_ALL                                           INFO Time User   : Tot=  310 [ms] Ave/Min/Max=  155(+-  145)/   10/  300 [ms] #=  2
+cObj_ALL                                            INFO Time User   : Tot=  360 [ms] Ave/Min/Max=  180(+-  130)/   50/  310 [ms] #=  2
+ChronoStatSvc                                       INFO Time User   : Tot= 5.76  [s]                                             #=  1
+*****Chrono*****                                    INFO ****************************************************************************************************
+ChronoStatSvc.finalize()                            INFO  Service finalized successfully 
+ApplicationMgr                                      INFO Application Manager Finalized successfully
+ApplicationMgr                                      INFO Application Manager Terminated successfully
 Py:Athena            INFO leaving with code 0: "successful run"
diff --git a/TileCalorimeter/TileSvc/TileByteStream/share/TileDigitsContByteStreamCnv_test.ref b/TileCalorimeter/TileSvc/TileByteStream/share/TileDigitsContByteStreamCnv_test.ref
index 15d55f3c764..063684ca9b9 100644
--- a/TileCalorimeter/TileSvc/TileByteStream/share/TileDigitsContByteStreamCnv_test.ref
+++ b/TileCalorimeter/TileSvc/TileByteStream/share/TileDigitsContByteStreamCnv_test.ref
@@ -1,16 +1,16 @@
-Wed Aug  7 22:10:19 CEST 2019
+Fri Nov 29 11:09:23 CET 2019
 Preloading tcmalloc_minimal.so
 Py:Athena            INFO including file "AthenaCommon/Preparation.py"
-Py:Athena            INFO using release [WorkDir-22.0.3] [x86_64-centos7-gcc8-opt] [test.TileRecUtils-20190807/f9360ea601f] -- built on [2019-08-07T2151]
+Py:Athena            INFO using release [WorkDir-22.0.9] [x86_64-centos7-gcc8-opt] [tilecal-12bit/82699bf159] -- built on [2019-11-29T1101]
 Py:Athena            INFO including file "AthenaCommon/Atlas.UnixStandardJob.py"
 Py:Athena            INFO executing ROOT6Setup
 Py:Athena            INFO including file "AthenaCommon/Execution.py"
 Py:Athena            INFO including file "TileByteStream/TileDigitsContByteStreamCnv_test.py"
-SetGeometryVersion.py obtained major release version 22
+Py:Athena            INFO SetGeometryVersion.py obtained major release version 22
 Py:Athena            INFO including file "IdDictDetDescrCnv/IdDictDetDescrCnv_joboptions.py"
-Py:ConfigurableDb    INFO Read module info for 5518 configurables from 5 genConfDb files
+Py:ConfigurableDb    INFO Read module info for 5635 configurables from 11 genConfDb files
 Py:ConfigurableDb    INFO No duplicates have been found: that's good !
-EventInfoMgtInit: Got release version  Athena-22.0.3
+EventInfoMgtInit: Got release version  Athena-22.0.9
 Py:IOVDbSvc.CondDB    INFO Setting up conditions DB access to instance OFLP200
 Py:Athena            INFO including file "TileConditions/TileConditions_jobOptions.py"
 Py:TileInfoConf.     INFO Adding TileCablingSvc to ServiceMgr
@@ -22,20 +22,22 @@ Py:TileInfoConf.     INFO Changing default TileCondToolEmscale configuration to
 Py:TileInfoConf.     INFO Changing default TileCondToolNoiseSample configuration to COOL source
 Py:TileInfoConf.     INFO Changing default TileCondToolTiming configuration to COOL source
 Py:TileConditions_jobOptions.py    INFO Adjusting TileInfo to return cell noise for Opt.Filter without iterations
+Py:TileConditions_jobOptions.py    INFO Setting 10-bit ADC configuration
+Py:TileInfoConf.     INFO Setting 10-bit Tile ADC
 Py:Athena            INFO including file "AthenaCommon/runbatch.py"
 ApplicationMgr       INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0
 ApplicationMgr       INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0
 ApplicationMgr    SUCCESS 
 ====================================================================================================================================
-                                                   Welcome to ApplicationMgr (GaudiCoreSvc v32r0)
-                                          running on lxplus725.cern.ch on Wed Aug  7 22:10:33 2019
+                                                   Welcome to ApplicationMgr (GaudiCoreSvc v32r2)
+                                          running on pcpraha5 on Fri Nov 29 11:09:28 2019
 ====================================================================================================================================
 ApplicationMgr       INFO Application Manager Configured successfully
 ApplicationMgr       INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0
 StatusCodeSvc        INFO initialize
 AthDictLoaderSvc     INFO in initialize...
 AthDictLoaderSvc     INFO acquired Dso-registry
-ClassIDSvc           INFO  getRegistryEntries: read 7079 CLIDRegistry entries for module ALL
+ClassIDSvc           INFO  getRegistryEntries: read 7151 CLIDRegistry entries for module ALL
 CoreDumpSvc          INFO install f-a-t-a-l handler... (flag = -1)
 CoreDumpSvc          INFO Handling signals: 11(Segmentation fault) 7(Bus error) 4(Illegal instruction) 8(Floating point exception) 
 MetaDataSvc          INFO Initializing MetaDataSvc - package version AthenaServices-00-00-00
@@ -44,8 +46,8 @@ PoolSvc              INFO io_register[PoolSvc](xmlcatalog_file:PoolFileCatalog.x
 PoolSvc              INFO Set connectionsvc retry/timeout/IDLE timeout to  'ConnectionRetrialPeriod':300/ 'ConnectionRetrialTimeOut':3600/ 'ConnectionTimeOut':5 seconds with connection cleanup disabled
 PoolSvc              INFO Frontier compression level set to 5
 DBReplicaSvc         INFO Frontier server at (serverurl=http://atlasfrontier-local.cern.ch:8000/atlr)(serverurl=http://atlasfrontier-ai.cern.ch:8000/atlr)(serverurl=http://lcgft-atlas.gridpp.rl.ac.uk:3128/frontierATLAS)(serverurl=http://ccfrontier.in2p3.fr:23128/ccin2p3-AtlasFrontier)(proxyurl=http://ca-proxy.cern.ch:3128)(proxyurl=http://ca-proxy-meyrin.cern.ch:3128)(proxyurl=http://ca-proxy-wigner.cern.ch:3128)(proxyurl=http://atlasbpfrontier.cern.ch:3127)(proxyurl=http://atlasbpfrontier.fnal.gov:3127) will be considered for COOL data
-DBReplicaSvc         INFO Read replica configuration from /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-06T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/dbreplica.config
-DBReplicaSvc         INFO Total of 10 servers found for host lxplus725.cern.ch [ATLF ATLAS_COOLPROD atlas_dd ATLAS_CONFIG INT8R INTR ATONR_COOL ATONR_CONF DEVDB11 ATLF ]
+DBReplicaSvc         INFO Read replica configuration from /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/dbreplica.config
+DBReplicaSvc         INFO Total of 10 servers found for host pcpraha5.dyndns.cern.ch [ATLF ATLAS_COOLPROD atlas_dd ATLAS_CONFIG INT8R INTR ATONR_COOL ATONR_CONF DEVDB11 ATLF ]
 PoolSvc              INFO Successfully setup replica sorting algorithm
 PoolSvc              INFO Setting up APR FileCatalog and Streams
 PoolSvc           WARNING Unable to locate catalog for prfile:poolcond/PoolCat_oflcond.xml check your ATLAS_POOLCOND_PATH and DATAPATH variables
@@ -68,8 +70,8 @@ ByteStreamAddre...   INFO initialized
 ByteStreamAddre...   INFO -- Will fill Store with id =  0
 IOVDbSvc             INFO preLoadAddresses: Removing folder /TagInfo. It should only be in the file meta data and was not found.
 IOVDbSvc             INFO Opening COOL connection for COOLOFL_LAR/OFLP200
-ClassIDSvc           INFO  getRegistryEntries: read 3223 CLIDRegistry entries for module ALL
-ClassIDSvc           INFO  getRegistryEntries: read 831 CLIDRegistry entries for module ALL
+ClassIDSvc           INFO  getRegistryEntries: read 3291 CLIDRegistry entries for module ALL
+ClassIDSvc           INFO  getRegistryEntries: read 863 CLIDRegistry entries for module ALL
 IOVSvc               INFO No IOVSvcTool associated with store "StoreGateSvc"
 IOVSvc.IOVSvcTool    INFO IOVRanges will be checked at every Event
 IOVDbSvc             INFO Opening COOL connection for COOLOFL_TILE/OFLP200
@@ -88,7 +90,7 @@ IOVDbSvc             INFO Added taginfo remove for /TILE/OFL02/STATUS/ADC
 IOVDbSvc             INFO Added taginfo remove for /TILE/OFL02/TIME/CHANNELOFFSET/PHY
 IOVDbSvc             INFO Added taginfo remove for /TILE/ONL01/STATUS/ADC
 IOVDbSvc             INFO Added taginfo remove for /LAR/LArCellPositionShift
-ClassIDSvc           INFO  getRegistryEntries: read 17 CLIDRegistry entries for module ALL
+ClassIDSvc           INFO  getRegistryEntries: read 18 CLIDRegistry entries for module ALL
 DetDescrCnvSvc       INFO  initializing 
 DetDescrCnvSvc       INFO Found DetectorStore service
 DetDescrCnvSvc       INFO  filling proxies for detector managers 
@@ -123,8 +125,6 @@ DetDescrCnvSvc       INFO  filling address for MDTIDHELPER with CLID 4170 and st
 DetDescrCnvSvc       INFO  filling address for CSCIDHELPER with CLID 4171 and storage type 68 to detector store 
 DetDescrCnvSvc       INFO  filling address for RPCIDHELPER with CLID 4172 and storage type 68 to detector store 
 DetDescrCnvSvc       INFO  filling address for TGCIDHELPER with CLID 4173 and storage type 68 to detector store 
-DetDescrCnvSvc       INFO  filling address for STGCIDHELPER with CLID 4174 and storage type 68 to detector store 
-DetDescrCnvSvc       INFO  filling address for MMIDHELPER with CLID 4175 and storage type 68 to detector store 
 DetDescrCnvSvc       INFO  filling address for CaloLVL1_ID with CLID 108133391 and storage type 68 to detector store 
 DetDescrCnvSvc       INFO  filling address for CaloCell_ID with CLID 123500438 and storage type 68 to detector store 
 DetDescrCnvSvc       INFO  filling address for CaloCell_SuperCell_ID with CLID 128365736 and storage type 68 to detector store 
@@ -190,7 +190,7 @@ EMECConstruction     INFO multi-layered version of absorbers activated, paramete
 EMECConstruction     INFO activating LAr::EMEC::Neg::InnerWheel
 EMECConstruction     INFO activating LAr::EMEC::Neg::OuterWheel
 EndcapDMConstru...   INFO Start building EC electronics geometry
-GeoModelSvc          INFO GeoModelSvc.LArDetectorToolNV	 SZ= 25368Kb 	 Time = 0.54S
+GeoModelSvc          INFO GeoModelSvc.LArDetectorToolNV	 SZ= 25368Kb 	 Time = 0.45S
 GeoModelSvc.Til...   INFO  Entering TileDetectorTool::create()
 TileDddbManager      INFO m_tag = ATLAS-R2-2016-01-00-01
 TileDddbManager      INFO n_tiglob = 5
@@ -201,7 +201,7 @@ TileDddbManager      INFO n_tilb = 21
 TileDddbManager      INFO n_tileSwitches = 1
 CaloIDHelper_ID...   INFO in createObj: creating a TileID helper object in the detector store
 AtlasDetectorID      INFO initialize_from_dictionary - OK
-TileNeighbour        INFO Reading file  /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-06T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/TileNeighbour_reduced.txt
+TileNeighbour        INFO Reading file  /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/TileNeighbour_reduced.txt
 TileHWIDDetDesc...   INFO in createObj: creating a TileHWID helper object in the detector store
 TileHWID             INFO initialize_from_dictionary 
 AtlasDetectorID      INFO initialize_from_dictionary - OK
@@ -213,9 +213,9 @@ CaloIDHelper_ID...   INFO in createObj: creating a LArHEC_ID helper object in th
 AtlasDetectorID      INFO initialize_from_dictionary - OK
 CaloIDHelper_ID...   INFO in createObj: creating a LArFCAL_ID helper object in the detector store
 AtlasDetectorID      INFO initialize_from_dictionary - OK
-LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-06T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/FCal2DNeighbors-April2011.txt
-LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-06T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/FCal3DNeighborsNext-April2011.txt
-LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-06T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/FCal3DNeighborsPrev-April2011.txt
+LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/FCal2DNeighbors-April2011.txt
+LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/FCal3DNeighborsNext-April2011.txt
+LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/FCal3DNeighborsPrev-April2011.txt
 CaloIDHelper_ID...   INFO in createObj: creating a LArMiniFCAL_ID helper object in the detector store
 AtlasDetectorID      INFO initialize_from_dictionary - OK
 LArMiniFCAL_ID       INFO  initialize_from_dict - LArCalorimeter dictionary does NOT contain miniFCAL description. Unable to initialize LArMiniFCAL_ID.
@@ -250,7 +250,7 @@ GeoModelSvc.Til...   INFO  Global positioning of barrel with rotation (0,0,0)) a
 GeoModelSvc.Til...   INFO  Global positioning of positive ext.barrel with rotation (0,0,0)) and translation (0,0,0) Gaudi::Units::cm
 GeoModelSvc.Til...   INFO  Global positioning of negative ext.barrel with rotation (0,0,0)) and translation (0,0,1) Gaudi::Units::cm
 TileDetDescrMan...   INFO Entering create_elements()
-GeoModelSvc          INFO GeoModelSvc.TileDetectorTool	 SZ= 3576Kb 	 Time = 0.17S
+GeoModelSvc          INFO GeoModelSvc.TileDetectorTool	 SZ= 3576Kb 	 Time = 0.12S
 ClassIDSvc           INFO  getRegistryEntries: read 66 CLIDRegistry entries for module ALL
 TileInfoLoader       INFO Changing TTL1 calib from 4.1 to 6.9
 TileInfoLoader       INFO Changing TTL1 noise sigma from 2.5 to 2.8
@@ -305,7 +305,7 @@ TileEMScaleCond...   INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCond
 TileEMScaleCond...   INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OnlEms) for folder: "/TILE/OFL02/CALIB/EMS"
 TileSampleNoise...   INFO Creating TileCondProxyCool(TileSampleNoiseCondAlg.TileCondProxyCool_NoiseSample) for folder: "/TILE/OFL02/NOISE/SAMPLE"
 TileTimingCondA...   INFO Creating TileCondProxyCool(TileTimingCondAlg.TileCondProxyCool_AdcOffset) for folder: "/TILE/OFL02/TIME/CHANNELOFFSET/PHY"
-ClassIDSvc           INFO  getRegistryEntries: read 3927 CLIDRegistry entries for module ALL
+ClassIDSvc           INFO  getRegistryEntries: read 3915 CLIDRegistry entries for module ALL
 PyComponentMgr       INFO Initializing PyComponentMgr...
 Finalizer            INFO Initializing Finalizer...
 HistogramPersis...WARNING Histograms saving not required.
@@ -318,8 +318,8 @@ ROBDataProviderSvc   INFO  ---> Filter out Sub Detector ROBs by Status Code: # S
 EventSelector        INFO reinitialization...
 AthenaEventLoopMgr   INFO Setup EventSelector service EventSelector
 ApplicationMgr       INFO Application Manager Initialized successfully
-ByteStreamInputSvc   INFO Picked valid file: /cvmfs/atlas-nightlies.cern.ch/repo/data/data-art/Tier0ChainTests/data12_8TeV.00204073.physics_JetTauEtmiss.merge.RAW._lb0144._SFO-5._0001.1
 ClassIDSvc           INFO  getRegistryEntries: read 425 CLIDRegistry entries for module ALL
+ByteStreamInputSvc   INFO Picked valid file: /cvmfs/atlas-nightlies.cern.ch/repo/data/data-art/Tier0ChainTests/data12_8TeV.00204073.physics_JetTauEtmiss.merge.RAW._lb0144._SFO-5._0001.1
 CondInputLoader      INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/CALIB/CES'
 CondInputLoader      INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/CALIB/CIS/FIT/LIN'
 CondInputLoader      INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/CALIB/CIS/FIT/NLN'
@@ -348,7 +348,7 @@ Domain[ROOT_All]     INFO                           /cvmfs/atlas-condb.cern.ch/r
 RootDatabase.open    INFO /cvmfs/atlas-condb.cern.ch/repo/conditions/cond09/cond09_mc.000029.gen.COND/cond09_mc.000029.gen.COND._0002.pool.root File version:52200
 CaloMgrDetDescrCnv   INFO in createObj: creating a Calo Detector Manager object in the detector store
 CaloIdMgrDetDes...   INFO in createObj: creating a CaloDescrManager object in the detector store
-ClassIDSvc           INFO  getRegistryEntries: read 195 CLIDRegistry entries for module ALL
+ClassIDSvc           INFO  getRegistryEntries: read 198 CLIDRegistry entries for module ALL
 CaloIDHelper_ID...   INFO in createObj: creating a CaloDM_ID helper object in the detector store
 CaloDM_ID            INFO initialize_from_dictionary
 AtlasDetectorID      INFO initialize_from_dictionary - OK
@@ -362,12 +362,12 @@ CaloIDHelper_ID...   INFO in createObj: creating a LArHEC_SuperCell_ID helper ob
 AtlasDetectorID      INFO initialize_from_dictionary - OK
 CaloIDHelper_ID...   INFO in createObj: creating a LArFCAL_SuperCell_ID helper object in the detector store
 AtlasDetectorID      INFO initialize_from_dictionary - OK
-LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-06T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/FCalSuperCells2DNeighborsNew-April2014.txt
-LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-06T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/FCalSuperCells3DNeighborsNextNew-April2014.txt
-LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-06T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/FCalSuperCells3DNeighborsPrevNew-April2014.txt
+LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/FCalSuperCells2DNeighborsNew-April2014.txt
+LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/FCalSuperCells3DNeighborsNextNew-April2014.txt
+LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/FCalSuperCells3DNeighborsPrevNew-April2014.txt
 CaloIDHelper_ID...   INFO in createObj: creating a Tile_SuperCell_ID helper object in the detector store
 AtlasDetectorID      INFO initialize_from_dictionary - OK
-TileNeighbour        INFO Reading file  /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-06T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/TileSuperCellNeighbour.txt
+TileNeighbour        INFO Reading file  /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/TileSuperCellNeighbour.txt
 AtlasDetectorID      INFO initialize_from_dictionary - OK
 CaloIdMgrDetDes...   INFO  Finished 
 CaloIdMgrDetDes...   INFO Initializing CaloIdMgr from values in CaloIdMgrDetDescrCnv 
@@ -398,8 +398,8 @@ TileBadChannels...   INFO TileBchStatus::isNoGainL1() is defined by: ADC dead; N
 TileBadChannels...   INFO TileBchStatus::isBadTiming() is defined by: Bad timing; Online bad timing; 
 TileBadChannels...   INFO TileBchStatus::isWrongBCID() is defined by: Wrong BCID; Online wrong BCID; 
 TileBadChannels...   INFO No drawer trips probabilities found in DB
-ClassIDSvc           INFO  getRegistryEntries: read 2448 CLIDRegistry entries for module ALL
-ClassIDSvc           INFO  getRegistryEntries: read 90 CLIDRegistry entries for module ALL
+ClassIDSvc           INFO  getRegistryEntries: read 2265 CLIDRegistry entries for module ALL
+ClassIDSvc           INFO  getRegistryEntries: read 91 CLIDRegistry entries for module ALL
 ToolSvc.TileROD...   INFO TileL2Builder initialization completed
 ToolSvc.TileDig...   INFO Initializing TileDigitsContByteStreamTool
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #1129572, run #204073 1 events processed so far  <<<===
@@ -614,54 +614,54 @@ Finalize: compared 20 dumps
 IncidentProcAlg2     INFO Finalize
 PyComponentMgr       INFO Finalizing PyComponentMgr...
 IdDictDetDescrCnv    INFO in finalize
-IOVDbFolder          INFO Folder /LAR/Align (PoolRef) db-read 1/1 objs/chan/bytes 1/1/170 ((     1.00 ))s
-IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/CES (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/103344 ((     2.17 ))s
-IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/CIS/FIT/LIN (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/80 ((     0.70 ))s
-IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/CIS/FIT/NLN (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/80 ((     0.72 ))s
-IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/EMS (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/92 ((     0.60 ))s
-IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/LAS/FIBER (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/940 ((     0.64 ))s
-IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/LAS/LIN (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/72 ((     0.56 ))s
-IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/LAS/NLN (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/76 ((     0.67 ))s
-IOVDbFolder          INFO Folder /TILE/OFL02/NOISE/SAMPLE (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/641504 ((     0.84 ))s
-IOVDbFolder          INFO Folder /TILE/OFL02/STATUS/ADC (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/93060 ((     0.02 ))s
-IOVDbFolder          INFO Folder /TILE/OFL02/TIME/CHANNELOFFSET/PHY (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/96 ((     0.02 ))s
-IOVDbFolder          INFO Folder /TILE/ONL01/STATUS/ADC (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/76 ((     0.00 ))s
-IOVDbFolder          INFO Folder /LAR/LArCellPositionShift (PoolRef) db-read 1/1 objs/chan/bytes 1/1/195 ((     0.55 ))s
-IOVDbSvc             INFO  bytes in ((      8.50 ))s
+IOVDbFolder          INFO Folder /LAR/Align (PoolRef) db-read 1/1 objs/chan/bytes 1/1/170 ((     0.05 ))s
+IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/CES (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/103344 ((     0.05 ))s
+IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/CIS/FIT/LIN (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/80 ((     0.04 ))s
+IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/CIS/FIT/NLN (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/80 ((     0.04 ))s
+IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/EMS (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/92 ((     0.04 ))s
+IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/LAS/FIBER (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/940 ((     0.04 ))s
+IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/LAS/LIN (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/72 ((     0.04 ))s
+IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/LAS/NLN (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/76 ((     0.04 ))s
+IOVDbFolder          INFO Folder /TILE/OFL02/NOISE/SAMPLE (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/641504 ((     0.05 ))s
+IOVDbFolder          INFO Folder /TILE/OFL02/STATUS/ADC (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/93060 ((     0.04 ))s
+IOVDbFolder          INFO Folder /TILE/OFL02/TIME/CHANNELOFFSET/PHY (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/96 ((     0.04 ))s
+IOVDbFolder          INFO Folder /TILE/ONL01/STATUS/ADC (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/76 ((     0.01 ))s
+IOVDbFolder          INFO Folder /LAR/LArCellPositionShift (PoolRef) db-read 1/1 objs/chan/bytes 1/1/195 ((     0.02 ))s
+IOVDbSvc             INFO  bytes in ((      0.48 ))s
 IOVDbSvc             INFO Connection sqlite://;schema=mycool.db;dbname=OFLP200 : nConnect: 0 nFolders: 0 ReadTime: ((     0.00 ))s
-IOVDbSvc             INFO Connection COOLOFL_LAR/OFLP200 : nConnect: 2 nFolders: 2 ReadTime: ((     1.56 ))s
-IOVDbSvc             INFO Connection COOLOFL_TILE/OFLP200 : nConnect: 2 nFolders: 11 ReadTime: ((     6.94 ))s
+IOVDbSvc             INFO Connection COOLOFL_LAR/OFLP200 : nConnect: 2 nFolders: 2 ReadTime: ((     0.08 ))s
+IOVDbSvc             INFO Connection COOLOFL_TILE/OFLP200 : nConnect: 2 nFolders: 11 ReadTime: ((     0.41 ))s
 AthDictLoaderSvc     INFO in finalize...
 ToolSvc              INFO Removing all tools created by ToolSvc
-ToolSvc.ByteStr...   INFO in finalize()
 ToolSvc.TileDig...   INFO Finalizing TileDigitsContByteStreamTool successfuly
 ToolSvc.TileROD...   INFO Finalizing
+ToolSvc.ByteStr...   INFO in finalize()
 *****Chrono*****     INFO ****************************************************************************************************
 *****Chrono*****     INFO  The Final CPU consumption ( Chrono ) Table (ordered)
 *****Chrono*****     INFO ****************************************************************************************************
-cObjR_ALL            INFO Time User   : Tot=  370 [ms] Ave/Min/Max=  185(+-  185)/    0/  370 [ms] #=  2
-cObj_ALL             INFO Time User   : Tot=  420 [ms] Ave/Min/Max= 32.3(+-  104)/    0/  390 [ms] #= 13
-ChronoStatSvc        INFO Time User   : Tot= 9.37  [s]                                             #=  1
+cObjR_ALL            INFO Time User   : Tot=  310 [ms] Ave/Min/Max=  155(+-  155)/    0/  310 [ms] #=  2
+cObj_ALL             INFO Time User   : Tot=  350 [ms] Ave/Min/Max= 26.9(+- 87.7)/    0/  330 [ms] #= 13
+ChronoStatSvc        INFO Time User   : Tot= 7.42  [s]                                             #=  1
 *****Chrono*****     INFO ****************************************************************************************************
 ChronoStatSvc.f...   INFO  Service finalized successfully 
 ApplicationMgr       INFO Application Manager Finalized successfully
 ApplicationMgr       INFO Application Manager Terminated successfully
 Py:Athena            INFO leaving with code 0: "successful run"
-Wed Aug  7 22:11:07 CEST 2019
+Fri Nov 29 11:09:39 CET 2019
 Preloading tcmalloc_minimal.so
 Py:Athena            INFO including file "AthenaCommon/Preparation.py"
-Py:Athena            INFO using release [WorkDir-22.0.3] [x86_64-centos7-gcc8-opt] [test.TileRecUtils-20190807/f9360ea601f] -- built on [2019-08-07T2151]
+Py:Athena            INFO using release [WorkDir-22.0.9] [x86_64-centos7-gcc8-opt] [tilecal-12bit/82699bf159] -- built on [2019-11-29T1101]
 Py:Athena            INFO including file "AthenaCommon/Atlas.UnixStandardJob.py"
 Py:Athena            INFO executing ROOT6Setup
 Py:Athena            INFO configuring AthenaHive with [4] concurrent threads and [4] concurrent events
 Py:AlgScheduler      INFO setting up AvalancheSchedulerSvc/AvalancheSchedulerSvc with 4 threads
 Py:Athena            INFO including file "AthenaCommon/Execution.py"
 Py:Athena            INFO including file "TileByteStream/TileDigitsContByteStreamCnv_test.py"
-SetGeometryVersion.py obtained major release version 22
+Py:Athena            INFO SetGeometryVersion.py obtained major release version 22
 Py:Athena            INFO including file "IdDictDetDescrCnv/IdDictDetDescrCnv_joboptions.py"
-Py:ConfigurableDb    INFO Read module info for 5518 configurables from 5 genConfDb files
+Py:ConfigurableDb    INFO Read module info for 5635 configurables from 11 genConfDb files
 Py:ConfigurableDb    INFO No duplicates have been found: that's good !
-EventInfoMgtInit: Got release version  Athena-22.0.3
+EventInfoMgtInit: Got release version  Athena-22.0.9
 Py:IOVDbSvc.CondDB    INFO Setting up conditions DB access to instance OFLP200
 Py:Athena            INFO including file "TileConditions/TileConditions_jobOptions.py"
 Py:TileInfoConf.     INFO Adding TileCablingSvc to ServiceMgr
@@ -673,251 +673,251 @@ Py:TileInfoConf.     INFO Changing default TileCondToolEmscale configuration to
 Py:TileInfoConf.     INFO Changing default TileCondToolNoiseSample configuration to COOL source
 Py:TileInfoConf.     INFO Changing default TileCondToolTiming configuration to COOL source
 Py:TileConditions_jobOptions.py    INFO Adjusting TileInfo to return cell noise for Opt.Filter without iterations
+Py:TileConditions_jobOptions.py    INFO Setting 10-bit ADC configuration
+Py:TileInfoConf.     INFO Setting 10-bit Tile ADC
 Py:Athena            INFO including file "AthenaCommon/runbatch.py"
 ApplicationMgr       INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0
 ApplicationMgr       INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0
 MessageSvc           INFO Activating in a separate thread
 ApplicationMgr    SUCCESS 
 ====================================================================================================================================
-                                                   Welcome to ApplicationMgr (GaudiCoreSvc v32r0)
-                                          running on lxplus725.cern.ch on Wed Aug  7 22:11:19 2019
+                                                   Welcome to ApplicationMgr (GaudiCoreSvc v32r2)
+                                          running on pcpraha5 on Fri Nov 29 11:09:46 2019
 ====================================================================================================================================
 ApplicationMgr       INFO Application Manager Configured successfully
-ApplicationMgr                                     INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0
-AthDictLoaderSvc                                   INFO in initialize...
-AthDictLoaderSvc                                   INFO acquired Dso-registry
-ClassIDSvc                                         INFO  getRegistryEntries: read 7717 CLIDRegistry entries for module ALL
-CoreDumpSvc                                        INFO install f-a-t-a-l handler... (flag = -1)
-CoreDumpSvc                                        INFO Handling signals: 11(Segmentation fault) 7(Bus error) 4(Illegal instruction) 8(Floating point exception) 
-MetaDataSvc                                        INFO Initializing MetaDataSvc - package version AthenaServices-00-00-00
-AthenaPoolCnvSvc                                   INFO Initializing AthenaPoolCnvSvc - package version AthenaPoolCnvSvc-00-00-00
-PoolSvc                                            INFO io_register[PoolSvc](xmlcatalog_file:PoolFileCatalog.xml) [ok]
-PoolSvc                                            INFO Set connectionsvc retry/timeout/IDLE timeout to  'ConnectionRetrialPeriod':300/ 'ConnectionRetrialTimeOut':3600/ 'ConnectionTimeOut':5 seconds with connection cleanup disabled
-PoolSvc                                            INFO Frontier compression level set to 5
-DBReplicaSvc                                       INFO Frontier server at (serverurl=http://atlasfrontier-local.cern.ch:8000/atlr)(serverurl=http://atlasfrontier-ai.cern.ch:8000/atlr)(serverurl=http://lcgft-atlas.gridpp.rl.ac.uk:3128/frontierATLAS)(serverurl=http://ccfrontier.in2p3.fr:23128/ccin2p3-AtlasFrontier)(proxyurl=http://ca-proxy.cern.ch:3128)(proxyurl=http://ca-proxy-meyrin.cern.ch:3128)(proxyurl=http://ca-proxy-wigner.cern.ch:3128)(proxyurl=http://atlasbpfrontier.cern.ch:3127)(proxyurl=http://atlasbpfrontier.fnal.gov:3127) will be considered for COOL data
-DBReplicaSvc                                       INFO Read replica configuration from /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-06T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/dbreplica.config
-DBReplicaSvc                                       INFO Total of 10 servers found for host lxplus725.cern.ch [ATLF ATLAS_COOLPROD atlas_dd ATLAS_CONFIG INT8R INTR ATONR_COOL ATONR_CONF DEVDB11 ATLF ]
-PoolSvc                                            INFO Successfully setup replica sorting algorithm
-PoolSvc                                            INFO Setting up APR FileCatalog and Streams
-PoolSvc                                         WARNING Unable to locate catalog for prfile:poolcond/PoolCat_oflcond.xml check your ATLAS_POOLCOND_PATH and DATAPATH variables
-PoolSvc                                         WARNING Unable to locate catalog for apcfile:poolcond/PoolCat_oflcond.xml check your ATLAS_POOLCOND_PATH and DATAPATH variables
-PoolSvc                                            INFO Resolved path (via ATLAS_POOLCOND_PATH) is /cvmfs/atlas-condb.cern.ch/repo/conditions/poolcond/PoolFileCatalog.xml
-PoolSvc                                            INFO POOL WriteCatalog is xmlcatalog_file:PoolFileCatalog.xml
-DbSession                                          INFO     Open     DbSession    
-Domain[ROOT_All]                                   INFO >   Access   DbDomain     READ      [ROOT_All] 
-ToolSvc.ByteStreamMetadataTool                     INFO Initializing ToolSvc.ByteStreamMetadataTool - package version ByteStreamCnvSvc-00-00-00
-MetaDataSvc                                        INFO Found MetaDataTools = PublicToolHandleArray(['IOVDbMetaDataTool','ByteStreamMetadataTool'])
-IOVDbSvc                                           INFO Opened read transaction for POOL PersistencySvc
-IOVDbSvc                                           INFO Only 5 POOL conditions files will be open at once
-IOVDbSvc                                           INFO Cache alignment will be done in 3 slices
-IOVDbSvc                                           INFO Global tag: OFLCOND-RUN12-SDR-35 set from joboptions
-IOVDbFolder                                        INFO Read from meta data only for folder /TagInfo
-IOVDbSvc                                           INFO Initialised with 3 connections and 14 folders
-IOVDbSvc                                           INFO Service IOVDbSvc initialised successfully
-ByteStreamAddressProviderSvc                       INFO Initializing ByteStreamAddressProviderSvc - package version ByteStreamCnvSvcBase-00-00-00
-ByteStreamAddressProviderSvc                       INFO initialized 
-ByteStreamAddressProviderSvc                       INFO -- Will fill Store with id =  0
-IOVDbSvc                                           INFO preLoadAddresses: Removing folder /TagInfo. It should only be in the file meta data and was not found.
-IOVDbSvc                                           INFO Opening COOL connection for COOLOFL_LAR/OFLP200
-ClassIDSvc                                         INFO  getRegistryEntries: read 3223 CLIDRegistry entries for module ALL
-ClassIDSvc                                         INFO  getRegistryEntries: read 769 CLIDRegistry entries for module ALL
-IOVSvc                                             INFO No IOVSvcTool associated with store "StoreGateSvc"
-IOVSvc.IOVSvcTool                                  INFO IOVRanges will be checked at every Event
-IOVDbSvc                                           INFO Opening COOL connection for COOLOFL_TILE/OFLP200
-IOVDbSvc                                           INFO Disconnecting from COOLOFL_LAR/OFLP200
-IOVDbSvc                                           INFO Disconnecting from COOLOFL_TILE/OFLP200
-IOVDbSvc                                           INFO Added taginfo remove for /LAR/Align
-IOVDbSvc                                           INFO Added taginfo remove for /TILE/OFL02/CALIB/CES
-IOVDbSvc                                           INFO Added taginfo remove for /TILE/OFL02/CALIB/CIS/FIT/LIN
-IOVDbSvc                                           INFO Added taginfo remove for /TILE/OFL02/CALIB/CIS/FIT/NLN
-IOVDbSvc                                           INFO Added taginfo remove for /TILE/OFL02/CALIB/EMS
-IOVDbSvc                                           INFO Added taginfo remove for /TILE/OFL02/CALIB/LAS/FIBER
-IOVDbSvc                                           INFO Added taginfo remove for /TILE/OFL02/CALIB/LAS/LIN
-IOVDbSvc                                           INFO Added taginfo remove for /TILE/OFL02/CALIB/LAS/NLN
-IOVDbSvc                                           INFO Added taginfo remove for /TILE/OFL02/NOISE/SAMPLE
-IOVDbSvc                                           INFO Added taginfo remove for /TILE/OFL02/STATUS/ADC
-IOVDbSvc                                           INFO Added taginfo remove for /TILE/OFL02/TIME/CHANNELOFFSET/PHY
-IOVDbSvc                                           INFO Added taginfo remove for /TILE/ONL01/STATUS/ADC
-IOVDbSvc                                           INFO Added taginfo remove for /LAR/LArCellPositionShift
-ClassIDSvc                                         INFO  getRegistryEntries: read 17 CLIDRegistry entries for module ALL
-DetDescrCnvSvc                                     INFO  initializing 
-DetDescrCnvSvc                                     INFO Found DetectorStore service
-DetDescrCnvSvc                                     INFO  filling proxies for detector managers 
-DetDescrCnvSvc                                     INFO  filling address for CaloTTMgr with CLID 117659265 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for CaloMgr with CLID 4548337 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for CaloSuperCellMgr with CLID 241807251 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for CaloIdManager with CLID 125856940 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for LArIdManager with CLID 79554919 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for IdDict with CLID 2411 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for AtlasID with CLID 164875623 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for PixelID with CLID 2516 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for SCT_ID with CLID 2517 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for TRT_ID with CLID 2518 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for SiliconID with CLID 129452393 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for LArEM_ID with CLID 163583365 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for LArEM_SuperCell_ID with CLID 99488227 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for LArHEC_ID with CLID 3870484 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for LArHEC_SuperCell_ID with CLID 254277678 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for LArFCAL_ID with CLID 45738051 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for LArFCAL_SuperCell_ID with CLID 12829437 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for LArMiniFCAL_ID with CLID 79264204 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for LArOnlineID with CLID 158698068 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for TTOnlineID with CLID 38321944 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for LArOnline_SuperCellID with CLID 115600394 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for LArHVLineID with CLID 27863673 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for LArElectrodeID with CLID 80757351 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for TileID with CLID 2901 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for Tile_SuperCell_ID with CLID 49557789 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for TileHWID with CLID 2902 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for TileTBID with CLID 2903 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for MDTIDHELPER with CLID 4170 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for CSCIDHELPER with CLID 4171 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for RPCIDHELPER with CLID 4172 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for TGCIDHELPER with CLID 4173 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for STGCIDHELPER with CLID 4174 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for MMIDHELPER with CLID 4175 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for CaloLVL1_ID with CLID 108133391 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for CaloCell_ID with CLID 123500438 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for CaloCell_SuperCell_ID with CLID 128365736 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for CaloDM_ID with CLID 167756483 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for ZdcID with CLID 190591643 and storage type 68 to detector store 
-GeoModelSvc::RDBMaterialManager                 WARNING  Getting PixTBMatComponents with default tag
-GeoModelSvc::RDBMaterialManager                 WARNING  Getting PixTBMaterials with default tag
-GeoModelSvc::RDBMaterialManager                 WARNING  Getting InDetMatComponents with default tag
-GeoModelSvc::RDBMaterialManager                 WARNING  Getting InDetMaterials with default tag
-EventPersistencySvc                                INFO Added successfully Conversion service:DetDescrCnvSvc
-LArElectrodeIDDetDescrCnv                          INFO in createObj: creating a LArElectrodeID helper object in the detector store
-IdDictDetDescrCnv                                  INFO in initialize
-IdDictDetDescrCnv                                  INFO in createObj: creating a IdDictManager object in the detector store
-IdDictDetDescrCnv                                  INFO IdDictName:  IdDictParser/ATLAS_IDS.xml
-IdDictDetDescrCnv                                  INFO Reading InnerDetector    IdDict file InDetIdDictFiles/IdDictInnerDetector_IBL3D25-03.xml
-IdDictDetDescrCnv                                  INFO Reading LArCalorimeter   IdDict file IdDictParser/IdDictLArCalorimeter_DC3-05-Comm-01.xml
-IdDictDetDescrCnv                                  INFO Reading TileCalorimeter  IdDict file IdDictParser/IdDictTileCalorimeter.xml
-IdDictDetDescrCnv                                  INFO Reading Calorimeter      IdDict file IdDictParser/IdDictCalorimeter_L1Onl.xml
-IdDictDetDescrCnv                                  INFO Reading MuonSpectrometer IdDict file IdDictParser/IdDictMuonSpectrometer_R.03.xml
-IdDictDetDescrCnv                                  INFO Reading ForwardDetectors IdDict file IdDictParser/IdDictForwardDetectors_2010.xml
-IdDictDetDescrCnv                                  INFO Found id dicts:
-IdDictDetDescrCnv                                  INFO Using dictionary tag: null
-IdDictDetDescrCnv                                  INFO Dictionary ATLAS                version default              DetDescr tag (using default) file 
-IdDictDetDescrCnv                                  INFO Dictionary Calorimeter          version default              DetDescr tag CaloIdentifier-LVL1-02 file IdDictParser/IdDictCalorimeter_L1Onl.xml
-IdDictDetDescrCnv                                  INFO Dictionary ForwardDetectors     version default              DetDescr tag ForDetIdentifier-01       file IdDictParser/IdDictForwardDetectors_2010.xml
-IdDictDetDescrCnv                                  INFO Dictionary InnerDetector        version IBL-DBM              DetDescr tag InDetIdentifier-IBL3D25-02 file InDetIdDictFiles/IdDictInnerDetector_IBL3D25-03.xml
-IdDictDetDescrCnv                                  INFO Dictionary LArCalorimeter       version fullAtlas            DetDescr tag LArIdentifier-DC3-05-Comm file IdDictParser/IdDictLArCalorimeter_DC3-05-Comm-01.xml
-IdDictDetDescrCnv                                  INFO Dictionary LArElectrode         version fullAtlas            DetDescr tag (using default) file 
-IdDictDetDescrCnv                                  INFO Dictionary LArHighVoltage       version fullAtlas            DetDescr tag (using default) file 
-IdDictDetDescrCnv                                  INFO Dictionary MuonSpectrometer     version R.03                 DetDescr tag MuonIdentifier-08         file IdDictParser/IdDictMuonSpectrometer_R.03.xml
-IdDictDetDescrCnv                                  INFO Dictionary TileCalorimeter      version fullAtlasAndTestBeam DetDescr tag TileIdentifier-00         file IdDictParser/IdDictTileCalorimeter.xml
-LArElectrodeID                                     INFO  => initialize_from_dictionary()
-AtlasDetectorID                                    INFO initialize_from_dictionary - OK
-AtlasDetectorID                                    INFO initialize_from_dictionary - OK
-LArHVLineIDDetDescrCnv                             INFO in createObj: creating a LArHVLineID helper object in the detector store
-LArHVLineID                                        INFO  => initialize_from_dictionary()
-AtlasDetectorID                                    INFO initialize_from_dictionary - OK
-AtlasDetectorID                                    INFO initialize_from_dictionary - OK
-LArHVLineID                                        INFO  => initialize_from_dictionary(dict_mgr) =0
-LArHVLineID                                        INFO Register_dict_tag of LArHighVoltage is OK
-LArHVLineID                                        INFO setDictVersion of LArHighVoltage is OK
-LArHVLineID                                        INFO [initLevelsFromDict] m_dict OK ... 
-LArHVLineID                                        INFO [initialize_from_dictionary] >  HV line range -> 11/1/48:79/0:15 | 11/1/148:179/0:15 | 11/1/80:93/0:7 | 11/1/180:193/0:7 | 11/1/200:231/0:15 | 11/1/232:263/0:15 | 11/1/296,297,306,307/0:15 | 11/1/299,304,305,308,309/0:15 | 11/1/264:279/0:15 | 11/1/280:295/0:15 | 11/1/0:47/0:15 | 11/1/320:322/0:15 | 11/1/100:147/0:15 | 11/1/324,325/0:15 | 11/1/312:315/0:15 | 11/1/316:319/0:15 | 11/1/300:303/0:15 | 11/1/310,311/0:15 | 11/1/323/0:15 | 11/1/326,327/0:15 | 11/1/94:99/0:15 | 11/1/194:199/0:15
-LArHVLineID                                        INFO [init_hashes()] > Hvline_size= 5008
-GeoModelSvc.LArDetectorToolNV                      INFO Keys for LAr are ATLAS-R2-2016-01-00-01  ATLAS
-GeoModelSvc.LArDetectorToolNV                      INFO Building LAr version LAr-Revised-17-01 while ATLAS version is ATLAS-R2-2016-01-00-01
-GeoModelSvc.LArDetectorToolNV                      INFO LAr Geometry Options:
-GeoModelSvc.LArDetectorToolNV                      INFO   Sagging           = false
-GeoModelSvc.LArDetectorToolNV                      INFO   Barrel            = ON
-GeoModelSvc.LArDetectorToolNV                      INFO   Endcap            = ON
-BarrelConstruction                                 INFO Getting primary numbers for ATLAS, ATLAS-R2-2016-01-00-01
-BarrelConstruction                                 INFO   Makes detailed absorber sandwich  ? 1 1
-BarrelConstruction                                 INFO   Use sagging in geometry  ? 0
-EMECConstruction                                   INFO multi-layered version of absorbers activated, parameter value is 1
-EMECConstruction                                   INFO activating LAr::EMEC::Pos::InnerWheel
-EMECConstruction                                   INFO activating LAr::EMEC::Pos::OuterWheel
-ClassIDSvc                                         INFO  getRegistryEntries: read 2901 CLIDRegistry entries for module ALL
-CaloIDHelper_IDDetDescrCnv                         INFO in createObj: creating a TileTBID helper object in the detector store
-TileTBID                                           INFO initialize_from_dictionary 
-AtlasDetectorID                                    INFO initialize_from_dictionary - OK
-EndcapDMConstruction                               INFO Start building EC electronics geometry
-EMECConstruction                                   INFO multi-layered version of absorbers activated, parameter value is 1
-EMECConstruction                                   INFO activating LAr::EMEC::Neg::InnerWheel
-EMECConstruction                                   INFO activating LAr::EMEC::Neg::OuterWheel
-EndcapDMConstruction                               INFO Start building EC electronics geometry
-GeoModelSvc                                        INFO GeoModelSvc.LArDetectorToolNV	 SZ= 25368Kb 	 Time = 0.6S
-GeoModelSvc.TileDetectorTool                       INFO  Entering TileDetectorTool::create()
-TileDddbManager                                    INFO m_tag = ATLAS-R2-2016-01-00-01
-TileDddbManager                                    INFO n_tiglob = 5
-TileDddbManager                                    INFO n_timod = 320
-TileDddbManager                                    INFO n_cuts = 9
-TileDddbManager                                    INFO n_saddle = 1
-TileDddbManager                                    INFO n_tilb = 21
-TileDddbManager                                    INFO n_tileSwitches = 1
-CaloIDHelper_IDDetDescrCnv                         INFO in createObj: creating a TileID helper object in the detector store
-AtlasDetectorID                                    INFO initialize_from_dictionary - OK
-TileNeighbour                                      INFO Reading file  /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-06T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/TileNeighbour_reduced.txt
-TileHWIDDetDescrCnv                                INFO in createObj: creating a TileHWID helper object in the detector store
-TileHWID                                           INFO initialize_from_dictionary 
-AtlasDetectorID                                    INFO initialize_from_dictionary - OK
-ClassIDSvc                                         INFO  getRegistryEntries: read 55 CLIDRegistry entries for module ALL
-CaloIDHelper_IDDetDescrCnv                         INFO in createObj: creating a CaloCell_ID helper object in the detector store
-CaloIDHelper_IDDetDescrCnv                         INFO in createObj: creating a LArEM_ID helper object in the detector store
-AtlasDetectorID                                    INFO initialize_from_dictionary - OK
-CaloIDHelper_IDDetDescrCnv                         INFO in createObj: creating a LArHEC_ID helper object in the detector store
-AtlasDetectorID                                    INFO initialize_from_dictionary - OK
-CaloIDHelper_IDDetDescrCnv                         INFO in createObj: creating a LArFCAL_ID helper object in the detector store
-AtlasDetectorID                                    INFO initialize_from_dictionary - OK
-LArFCAL_Base_ID                                    INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-06T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/FCal2DNeighbors-April2011.txt
-LArFCAL_Base_ID                                    INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-06T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/FCal3DNeighborsNext-April2011.txt
-LArFCAL_Base_ID                                    INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-06T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/FCal3DNeighborsPrev-April2011.txt
-CaloIDHelper_IDDetDescrCnv                         INFO in createObj: creating a LArMiniFCAL_ID helper object in the detector store
-AtlasDetectorID                                    INFO initialize_from_dictionary - OK
-LArMiniFCAL_ID                                     INFO  initialize_from_dict - LArCalorimeter dictionary does NOT contain miniFCAL description. Unable to initialize LArMiniFCAL_ID.
-AtlasDetectorID                                    INFO initialize_from_dictionary - OK
-GeoModelSvc.TileDetectorTool                       INFO  U-shape parameter from database is: 1
-GeoModelSvc.TileDetectorTool                       INFO  Glue parameter from database is: 1
-GeoModelSvc.TileDetectorTool                       INFO  Cs Tube parameter from database is: 0
-GeoModelSvc.TileDetectorTool                       INFO  Entering TileAtlasFactory::create()
-GeoModelSvc.TileDetectorTool                       INFO  Tile Geometry with Saddle supports, starting from TileCal-CSC-02 xxx
-GeoModelSvc.TileDetectorTool                       INFO  => New BFingerLengthPos 430.5
-GeoModelSvc.TileDetectorTool                       INFO  => New BFingerLengthNeg 420.5
-GeoModelSvc.TileDetectorTool                       INFO  Positioning barrel with translation 0
-GeoModelSvc.TileDetectorTool                       INFO  Positioning positive barrel finger with translation 3035.25
-GeoModelSvc.TileDetectorTool                       INFO  Positioning negative barrel finger with translation -3030.25
-GeoModelSvc.TileDetectorTool                       INFO  Positioning positive ext.barrel with translation 4854.75
-GeoModelSvc.TileDetectorTool                       INFO  Positioning positive ext.barrel finger with translation ztrans= 6338.5
-GeoModelSvc.TileDetectorTool                       INFO  Positioning positive ext.barrel saddle with translation ztrans= 6192.5
-GeoModelSvc.TileDetectorTool                       INFO  Positive ITC envelope parameters: PLUG1  Rmin= 3438.85 Rmax= 4250 dzITC1= 154.5
-GeoModelSvc.TileDetectorTool                       INFO                                    PLUG2  Rmin= 2981 Rmax= 3440 dzITC2= 47.425
-GeoModelSvc.TileDetectorTool                       INFO  Positioning positive ITC with translation 3405
-GeoModelSvc.TileDetectorTool                       INFO  Positioning positive Gap with translation 3552
-GeoModelSvc.TileDetectorTool                       INFO  Positioning positive Crack with translation 3536
-GeoModelSvc.TileDetectorTool                       INFO  Positioning negative ext.barrel with translation ztrans -4854.75
-GeoModelSvc.TileDetectorTool                       INFO  Positioning negative ext.barrel finger with translation ztrans= -6338.5
-GeoModelSvc.TileDetectorTool                       INFO  Positioning negative ext.barrel saddle with translation ztrans= -6192.5
-GeoModelSvc.TileDetectorTool                       INFO  Negative ITC envelope parameters: PLUG1  Rmin= 3438.85 Rmax= 4250 dzITC1= 154.5
-GeoModelSvc.TileDetectorTool                       INFO                                    PLUG2  Rmin= 2981 Rmax= 3440 dzITC2= 47.425
-GeoModelSvc.TileDetectorTool                       INFO  Positioning negative ITC with translation -3405
-GeoModelSvc.TileDetectorTool                       INFO  Positioning negative Gap with translation -3552
-GeoModelSvc.TileDetectorTool                       INFO  Positioning negative Crack with translation -3536
-GeoModelSvc.TileDetectorTool                       INFO  Global positioning of barrel with rotation (0,0,0)) and translation (0,0,0) Gaudi::Units::cm
-GeoModelSvc.TileDetectorTool                       INFO  Global positioning of positive ext.barrel with rotation (0,0,0)) and translation (0,0,0) Gaudi::Units::cm
-GeoModelSvc.TileDetectorTool                       INFO  Global positioning of negative ext.barrel with rotation (0,0,0)) and translation (0,0,1) Gaudi::Units::cm
-TileDetDescrManager                                INFO Entering create_elements()
-GeoModelSvc                                        INFO GeoModelSvc.TileDetectorTool	 SZ= 2552Kb 	 Time = 0.18S
-ClassIDSvc                                         INFO  getRegistryEntries: read 66 CLIDRegistry entries for module ALL
-TileInfoLoader                                     INFO Changing TTL1 calib from 4.1 to 6.9
-TileInfoLoader                                     INFO Changing TTL1 noise sigma from 2.5 to 2.8
-CaloIDHelper_IDDetDescrCnv                         INFO in createObj: creating a CaloLVL1_ID helper object in the detector store
-CaloLVL1_ID                                        INFO initialize_from_dictionary
-AtlasDetectorID                                    INFO initialize_from_dictionary - OK
-TileCablingSvc                                     INFO RUN2 ATLAS geometry flag detected for geometry: ATLAS-R2-2016-01-00-01
-TileCablingSvc                                     INFO Cabling for RUN2 (2014-2017) ATLAS geometry is set via jobOptions 
-TileCablingSvc                                     INFO Setting Cabling type to 4
-AthenaHiveEventLoopMgr                             INFO Initializing AthenaHiveEventLoopMgr - package version AthenaServices-00-00-00
-ClassIDSvc                                  0      INFO  getRegistryEntries: read 4192 CLIDRegistry entries for module ALL
-PyComponentMgr                              0      INFO Initializing PyComponentMgr...
-Finalizer                                   0      INFO Initializing Finalizer...
-ClassIDSvc                                  0      INFO  getRegistryEntries: read 53 CLIDRegistry entries for module ALL
-CondInputLoader                             0      INFO Initializing CondInputLoader...
-CondInputLoader                             0      INFO Adding base classes:
+ApplicationMgr                                      INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0
+AthDictLoaderSvc                                    INFO in initialize...
+AthDictLoaderSvc                                    INFO acquired Dso-registry
+ClassIDSvc                                          INFO  getRegistryEntries: read 7790 CLIDRegistry entries for module ALL
+CoreDumpSvc                                         INFO install f-a-t-a-l handler... (flag = -1)
+CoreDumpSvc                                         INFO Handling signals: 11(Segmentation fault) 7(Bus error) 4(Illegal instruction) 8(Floating point exception) 
+MetaDataSvc                                         INFO Initializing MetaDataSvc - package version AthenaServices-00-00-00
+AthenaPoolCnvSvc                                    INFO Initializing AthenaPoolCnvSvc - package version AthenaPoolCnvSvc-00-00-00
+PoolSvc                                             INFO io_register[PoolSvc](xmlcatalog_file:PoolFileCatalog.xml) [ok]
+PoolSvc                                             INFO Set connectionsvc retry/timeout/IDLE timeout to  'ConnectionRetrialPeriod':300/ 'ConnectionRetrialTimeOut':3600/ 'ConnectionTimeOut':5 seconds with connection cleanup disabled
+PoolSvc                                             INFO Frontier compression level set to 5
+DBReplicaSvc                                        INFO Frontier server at (serverurl=http://atlasfrontier-local.cern.ch:8000/atlr)(serverurl=http://atlasfrontier-ai.cern.ch:8000/atlr)(serverurl=http://lcgft-atlas.gridpp.rl.ac.uk:3128/frontierATLAS)(serverurl=http://ccfrontier.in2p3.fr:23128/ccin2p3-AtlasFrontier)(proxyurl=http://ca-proxy.cern.ch:3128)(proxyurl=http://ca-proxy-meyrin.cern.ch:3128)(proxyurl=http://ca-proxy-wigner.cern.ch:3128)(proxyurl=http://atlasbpfrontier.cern.ch:3127)(proxyurl=http://atlasbpfrontier.fnal.gov:3127) will be considered for COOL data
+DBReplicaSvc                                        INFO Read replica configuration from /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/dbreplica.config
+DBReplicaSvc                                        INFO Total of 10 servers found for host pcpraha5.dyndns.cern.ch [ATLF ATLAS_COOLPROD atlas_dd ATLAS_CONFIG INT8R INTR ATONR_COOL ATONR_CONF DEVDB11 ATLF ]
+PoolSvc                                             INFO Successfully setup replica sorting algorithm
+PoolSvc                                             INFO Setting up APR FileCatalog and Streams
+PoolSvc                                          WARNING Unable to locate catalog for prfile:poolcond/PoolCat_oflcond.xml check your ATLAS_POOLCOND_PATH and DATAPATH variables
+PoolSvc                                          WARNING Unable to locate catalog for apcfile:poolcond/PoolCat_oflcond.xml check your ATLAS_POOLCOND_PATH and DATAPATH variables
+PoolSvc                                             INFO Resolved path (via ATLAS_POOLCOND_PATH) is /cvmfs/atlas-condb.cern.ch/repo/conditions/poolcond/PoolFileCatalog.xml
+PoolSvc                                             INFO POOL WriteCatalog is xmlcatalog_file:PoolFileCatalog.xml
+DbSession                                           INFO     Open     DbSession    
+Domain[ROOT_All]                                    INFO >   Access   DbDomain     READ      [ROOT_All] 
+ToolSvc.ByteStreamMetadataTool                      INFO Initializing ToolSvc.ByteStreamMetadataTool - package version ByteStreamCnvSvc-00-00-00
+MetaDataSvc                                         INFO Found MetaDataTools = PublicToolHandleArray(['IOVDbMetaDataTool','ByteStreamMetadataTool'])
+IOVDbSvc                                            INFO Opened read transaction for POOL PersistencySvc
+IOVDbSvc                                            INFO Only 5 POOL conditions files will be open at once
+IOVDbSvc                                            INFO Cache alignment will be done in 3 slices
+IOVDbSvc                                            INFO Global tag: OFLCOND-RUN12-SDR-35 set from joboptions
+IOVDbFolder                                         INFO Read from meta data only for folder /TagInfo
+IOVDbSvc                                            INFO Initialised with 3 connections and 14 folders
+IOVDbSvc                                            INFO Service IOVDbSvc initialised successfully
+ByteStreamAddressProviderSvc                        INFO Initializing ByteStreamAddressProviderSvc - package version ByteStreamCnvSvcBase-00-00-00
+ByteStreamAddressProviderSvc                        INFO initialized 
+ByteStreamAddressProviderSvc                        INFO -- Will fill Store with id =  0
+IOVDbSvc                                            INFO preLoadAddresses: Removing folder /TagInfo. It should only be in the file meta data and was not found.
+IOVDbSvc                                            INFO Opening COOL connection for COOLOFL_LAR/OFLP200
+ClassIDSvc                                          INFO  getRegistryEntries: read 3291 CLIDRegistry entries for module ALL
+ClassIDSvc                                          INFO  getRegistryEntries: read 800 CLIDRegistry entries for module ALL
+IOVSvc                                              INFO No IOVSvcTool associated with store "StoreGateSvc"
+IOVSvc.IOVSvcTool                                   INFO IOVRanges will be checked at every Event
+IOVDbSvc                                            INFO Opening COOL connection for COOLOFL_TILE/OFLP200
+IOVDbSvc                                            INFO Disconnecting from COOLOFL_LAR/OFLP200
+IOVDbSvc                                            INFO Disconnecting from COOLOFL_TILE/OFLP200
+IOVDbSvc                                            INFO Added taginfo remove for /LAR/Align
+IOVDbSvc                                            INFO Added taginfo remove for /TILE/OFL02/CALIB/CES
+IOVDbSvc                                            INFO Added taginfo remove for /TILE/OFL02/CALIB/CIS/FIT/LIN
+IOVDbSvc                                            INFO Added taginfo remove for /TILE/OFL02/CALIB/CIS/FIT/NLN
+IOVDbSvc                                            INFO Added taginfo remove for /TILE/OFL02/CALIB/EMS
+IOVDbSvc                                            INFO Added taginfo remove for /TILE/OFL02/CALIB/LAS/FIBER
+IOVDbSvc                                            INFO Added taginfo remove for /TILE/OFL02/CALIB/LAS/LIN
+IOVDbSvc                                            INFO Added taginfo remove for /TILE/OFL02/CALIB/LAS/NLN
+IOVDbSvc                                            INFO Added taginfo remove for /TILE/OFL02/NOISE/SAMPLE
+IOVDbSvc                                            INFO Added taginfo remove for /TILE/OFL02/STATUS/ADC
+IOVDbSvc                                            INFO Added taginfo remove for /TILE/OFL02/TIME/CHANNELOFFSET/PHY
+IOVDbSvc                                            INFO Added taginfo remove for /TILE/ONL01/STATUS/ADC
+IOVDbSvc                                            INFO Added taginfo remove for /LAR/LArCellPositionShift
+ClassIDSvc                                          INFO  getRegistryEntries: read 18 CLIDRegistry entries for module ALL
+DetDescrCnvSvc                                      INFO  initializing 
+DetDescrCnvSvc                                      INFO Found DetectorStore service
+DetDescrCnvSvc                                      INFO  filling proxies for detector managers 
+DetDescrCnvSvc                                      INFO  filling address for CaloTTMgr with CLID 117659265 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for CaloMgr with CLID 4548337 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for CaloSuperCellMgr with CLID 241807251 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for CaloIdManager with CLID 125856940 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for LArIdManager with CLID 79554919 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for IdDict with CLID 2411 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for AtlasID with CLID 164875623 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for PixelID with CLID 2516 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for SCT_ID with CLID 2517 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for TRT_ID with CLID 2518 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for SiliconID with CLID 129452393 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for LArEM_ID with CLID 163583365 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for LArEM_SuperCell_ID with CLID 99488227 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for LArHEC_ID with CLID 3870484 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for LArHEC_SuperCell_ID with CLID 254277678 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for LArFCAL_ID with CLID 45738051 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for LArFCAL_SuperCell_ID with CLID 12829437 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for LArMiniFCAL_ID with CLID 79264204 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for LArOnlineID with CLID 158698068 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for TTOnlineID with CLID 38321944 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for LArOnline_SuperCellID with CLID 115600394 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for LArHVLineID with CLID 27863673 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for LArElectrodeID with CLID 80757351 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for TileID with CLID 2901 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for Tile_SuperCell_ID with CLID 49557789 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for TileHWID with CLID 2902 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for TileTBID with CLID 2903 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for MDTIDHELPER with CLID 4170 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for CSCIDHELPER with CLID 4171 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for RPCIDHELPER with CLID 4172 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for TGCIDHELPER with CLID 4173 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for CaloLVL1_ID with CLID 108133391 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for CaloCell_ID with CLID 123500438 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for CaloCell_SuperCell_ID with CLID 128365736 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for CaloDM_ID with CLID 167756483 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for ZdcID with CLID 190591643 and storage type 68 to detector store 
+GeoModelSvc::RDBMaterialManager                  WARNING  Getting PixTBMatComponents with default tag
+GeoModelSvc::RDBMaterialManager                  WARNING  Getting PixTBMaterials with default tag
+GeoModelSvc::RDBMaterialManager                  WARNING  Getting InDetMatComponents with default tag
+GeoModelSvc::RDBMaterialManager                  WARNING  Getting InDetMaterials with default tag
+EventPersistencySvc                                 INFO Added successfully Conversion service:DetDescrCnvSvc
+LArElectrodeIDDetDescrCnv                           INFO in createObj: creating a LArElectrodeID helper object in the detector store
+IdDictDetDescrCnv                                   INFO in initialize
+IdDictDetDescrCnv                                   INFO in createObj: creating a IdDictManager object in the detector store
+IdDictDetDescrCnv                                   INFO IdDictName:  IdDictParser/ATLAS_IDS.xml
+IdDictDetDescrCnv                                   INFO Reading InnerDetector    IdDict file InDetIdDictFiles/IdDictInnerDetector_IBL3D25-03.xml
+IdDictDetDescrCnv                                   INFO Reading LArCalorimeter   IdDict file IdDictParser/IdDictLArCalorimeter_DC3-05-Comm-01.xml
+IdDictDetDescrCnv                                   INFO Reading TileCalorimeter  IdDict file IdDictParser/IdDictTileCalorimeter.xml
+IdDictDetDescrCnv                                   INFO Reading Calorimeter      IdDict file IdDictParser/IdDictCalorimeter_L1Onl.xml
+IdDictDetDescrCnv                                   INFO Reading MuonSpectrometer IdDict file IdDictParser/IdDictMuonSpectrometer_R.03.xml
+IdDictDetDescrCnv                                   INFO Reading ForwardDetectors IdDict file IdDictParser/IdDictForwardDetectors_2010.xml
+IdDictDetDescrCnv                                   INFO Found id dicts:
+IdDictDetDescrCnv                                   INFO Using dictionary tag: null
+IdDictDetDescrCnv                                   INFO Dictionary ATLAS                version default              DetDescr tag (using default) file 
+IdDictDetDescrCnv                                   INFO Dictionary Calorimeter          version default              DetDescr tag CaloIdentifier-LVL1-02 file IdDictParser/IdDictCalorimeter_L1Onl.xml
+IdDictDetDescrCnv                                   INFO Dictionary ForwardDetectors     version default              DetDescr tag ForDetIdentifier-01       file IdDictParser/IdDictForwardDetectors_2010.xml
+IdDictDetDescrCnv                                   INFO Dictionary InnerDetector        version IBL-DBM              DetDescr tag InDetIdentifier-IBL3D25-02 file InDetIdDictFiles/IdDictInnerDetector_IBL3D25-03.xml
+IdDictDetDescrCnv                                   INFO Dictionary LArCalorimeter       version fullAtlas            DetDescr tag LArIdentifier-DC3-05-Comm file IdDictParser/IdDictLArCalorimeter_DC3-05-Comm-01.xml
+IdDictDetDescrCnv                                   INFO Dictionary LArElectrode         version fullAtlas            DetDescr tag (using default) file 
+IdDictDetDescrCnv                                   INFO Dictionary LArHighVoltage       version fullAtlas            DetDescr tag (using default) file 
+IdDictDetDescrCnv                                   INFO Dictionary MuonSpectrometer     version R.03                 DetDescr tag MuonIdentifier-08         file IdDictParser/IdDictMuonSpectrometer_R.03.xml
+IdDictDetDescrCnv                                   INFO Dictionary TileCalorimeter      version fullAtlasAndTestBeam DetDescr tag TileIdentifier-00         file IdDictParser/IdDictTileCalorimeter.xml
+LArElectrodeID                                      INFO  => initialize_from_dictionary()
+AtlasDetectorID                                     INFO initialize_from_dictionary - OK
+AtlasDetectorID                                     INFO initialize_from_dictionary - OK
+LArHVLineIDDetDescrCnv                              INFO in createObj: creating a LArHVLineID helper object in the detector store
+LArHVLineID                                         INFO  => initialize_from_dictionary()
+AtlasDetectorID                                     INFO initialize_from_dictionary - OK
+AtlasDetectorID                                     INFO initialize_from_dictionary - OK
+LArHVLineID                                         INFO  => initialize_from_dictionary(dict_mgr) =0
+LArHVLineID                                         INFO Register_dict_tag of LArHighVoltage is OK
+LArHVLineID                                         INFO setDictVersion of LArHighVoltage is OK
+LArHVLineID                                         INFO [initLevelsFromDict] m_dict OK ... 
+LArHVLineID                                         INFO [initialize_from_dictionary] >  HV line range -> 11/1/48:79/0:15 | 11/1/148:179/0:15 | 11/1/80:93/0:7 | 11/1/180:193/0:7 | 11/1/200:231/0:15 | 11/1/232:263/0:15 | 11/1/296,297,306,307/0:15 | 11/1/299,304,305,308,309/0:15 | 11/1/264:279/0:15 | 11/1/280:295/0:15 | 11/1/0:47/0:15 | 11/1/320:322/0:15 | 11/1/100:147/0:15 | 11/1/324,325/0:15 | 11/1/312:315/0:15 | 11/1/316:319/0:15 | 11/1/300:303/0:15 | 11/1/310,311/0:15 | 11/1/323/0:15 | 11/1/326,327/0:15 | 11/1/94:99/0:15 | 11/1/194:199/0:15
+LArHVLineID                                         INFO [init_hashes()] > Hvline_size= 5008
+GeoModelSvc.LArDetectorToolNV                       INFO Keys for LAr are ATLAS-R2-2016-01-00-01  ATLAS
+GeoModelSvc.LArDetectorToolNV                       INFO Building LAr version LAr-Revised-17-01 while ATLAS version is ATLAS-R2-2016-01-00-01
+GeoModelSvc.LArDetectorToolNV                       INFO LAr Geometry Options:
+GeoModelSvc.LArDetectorToolNV                       INFO   Sagging           = false
+GeoModelSvc.LArDetectorToolNV                       INFO   Barrel            = ON
+GeoModelSvc.LArDetectorToolNV                       INFO   Endcap            = ON
+BarrelConstruction                                  INFO Getting primary numbers for ATLAS, ATLAS-R2-2016-01-00-01
+BarrelConstruction                                  INFO   Makes detailed absorber sandwich  ? 1 1
+BarrelConstruction                                  INFO   Use sagging in geometry  ? 0
+EMECConstruction                                    INFO multi-layered version of absorbers activated, parameter value is 1
+EMECConstruction                                    INFO activating LAr::EMEC::Pos::InnerWheel
+EMECConstruction                                    INFO activating LAr::EMEC::Pos::OuterWheel
+ClassIDSvc                                          INFO  getRegistryEntries: read 2901 CLIDRegistry entries for module ALL
+CaloIDHelper_IDDetDescrCnv                          INFO in createObj: creating a TileTBID helper object in the detector store
+TileTBID                                            INFO initialize_from_dictionary 
+AtlasDetectorID                                     INFO initialize_from_dictionary - OK
+EndcapDMConstruction                                INFO Start building EC electronics geometry
+EMECConstruction                                    INFO multi-layered version of absorbers activated, parameter value is 1
+EMECConstruction                                    INFO activating LAr::EMEC::Neg::InnerWheel
+EMECConstruction                                    INFO activating LAr::EMEC::Neg::OuterWheel
+EndcapDMConstruction                                INFO Start building EC electronics geometry
+GeoModelSvc                                         INFO GeoModelSvc.LArDetectorToolNV	 SZ= 25368Kb 	 Time = 0.43S
+GeoModelSvc.TileDetectorTool                        INFO  Entering TileDetectorTool::create()
+TileDddbManager                                     INFO m_tag = ATLAS-R2-2016-01-00-01
+TileDddbManager                                     INFO n_tiglob = 5
+TileDddbManager                                     INFO n_timod = 320
+TileDddbManager                                     INFO n_cuts = 9
+TileDddbManager                                     INFO n_saddle = 1
+TileDddbManager                                     INFO n_tilb = 21
+TileDddbManager                                     INFO n_tileSwitches = 1
+CaloIDHelper_IDDetDescrCnv                          INFO in createObj: creating a TileID helper object in the detector store
+AtlasDetectorID                                     INFO initialize_from_dictionary - OK
+TileNeighbour                                       INFO Reading file  /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/TileNeighbour_reduced.txt
+TileHWIDDetDescrCnv                                 INFO in createObj: creating a TileHWID helper object in the detector store
+TileHWID                                            INFO initialize_from_dictionary 
+AtlasDetectorID                                     INFO initialize_from_dictionary - OK
+ClassIDSvc                                          INFO  getRegistryEntries: read 55 CLIDRegistry entries for module ALL
+CaloIDHelper_IDDetDescrCnv                          INFO in createObj: creating a CaloCell_ID helper object in the detector store
+CaloIDHelper_IDDetDescrCnv                          INFO in createObj: creating a LArEM_ID helper object in the detector store
+AtlasDetectorID                                     INFO initialize_from_dictionary - OK
+CaloIDHelper_IDDetDescrCnv                          INFO in createObj: creating a LArHEC_ID helper object in the detector store
+AtlasDetectorID                                     INFO initialize_from_dictionary - OK
+CaloIDHelper_IDDetDescrCnv                          INFO in createObj: creating a LArFCAL_ID helper object in the detector store
+AtlasDetectorID                                     INFO initialize_from_dictionary - OK
+LArFCAL_Base_ID                                     INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/FCal2DNeighbors-April2011.txt
+LArFCAL_Base_ID                                     INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/FCal3DNeighborsNext-April2011.txt
+LArFCAL_Base_ID                                     INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/FCal3DNeighborsPrev-April2011.txt
+CaloIDHelper_IDDetDescrCnv                          INFO in createObj: creating a LArMiniFCAL_ID helper object in the detector store
+AtlasDetectorID                                     INFO initialize_from_dictionary - OK
+LArMiniFCAL_ID                                      INFO  initialize_from_dict - LArCalorimeter dictionary does NOT contain miniFCAL description. Unable to initialize LArMiniFCAL_ID.
+AtlasDetectorID                                     INFO initialize_from_dictionary - OK
+GeoModelSvc.TileDetectorTool                        INFO  U-shape parameter from database is: 1
+GeoModelSvc.TileDetectorTool                        INFO  Glue parameter from database is: 1
+GeoModelSvc.TileDetectorTool                        INFO  Cs Tube parameter from database is: 0
+GeoModelSvc.TileDetectorTool                        INFO  Entering TileAtlasFactory::create()
+GeoModelSvc.TileDetectorTool                        INFO  Tile Geometry with Saddle supports, starting from TileCal-CSC-02 xxx
+GeoModelSvc.TileDetectorTool                        INFO  => New BFingerLengthPos 430.5
+GeoModelSvc.TileDetectorTool                        INFO  => New BFingerLengthNeg 420.5
+GeoModelSvc.TileDetectorTool                        INFO  Positioning barrel with translation 0
+GeoModelSvc.TileDetectorTool                        INFO  Positioning positive barrel finger with translation 3035.25
+GeoModelSvc.TileDetectorTool                        INFO  Positioning negative barrel finger with translation -3030.25
+GeoModelSvc.TileDetectorTool                        INFO  Positioning positive ext.barrel with translation 4854.75
+GeoModelSvc.TileDetectorTool                        INFO  Positioning positive ext.barrel finger with translation ztrans= 6338.5
+GeoModelSvc.TileDetectorTool                        INFO  Positioning positive ext.barrel saddle with translation ztrans= 6192.5
+GeoModelSvc.TileDetectorTool                        INFO  Positive ITC envelope parameters: PLUG1  Rmin= 3438.85 Rmax= 4250 dzITC1= 154.5
+GeoModelSvc.TileDetectorTool                        INFO                                    PLUG2  Rmin= 2981 Rmax= 3440 dzITC2= 47.425
+GeoModelSvc.TileDetectorTool                        INFO  Positioning positive ITC with translation 3405
+GeoModelSvc.TileDetectorTool                        INFO  Positioning positive Gap with translation 3552
+GeoModelSvc.TileDetectorTool                        INFO  Positioning positive Crack with translation 3536
+GeoModelSvc.TileDetectorTool                        INFO  Positioning negative ext.barrel with translation ztrans -4854.75
+GeoModelSvc.TileDetectorTool                        INFO  Positioning negative ext.barrel finger with translation ztrans= -6338.5
+GeoModelSvc.TileDetectorTool                        INFO  Positioning negative ext.barrel saddle with translation ztrans= -6192.5
+GeoModelSvc.TileDetectorTool                        INFO  Negative ITC envelope parameters: PLUG1  Rmin= 3438.85 Rmax= 4250 dzITC1= 154.5
+GeoModelSvc.TileDetectorTool                        INFO                                    PLUG2  Rmin= 2981 Rmax= 3440 dzITC2= 47.425
+GeoModelSvc.TileDetectorTool                        INFO  Positioning negative ITC with translation -3405
+GeoModelSvc.TileDetectorTool                        INFO  Positioning negative Gap with translation -3552
+GeoModelSvc.TileDetectorTool                        INFO  Positioning negative Crack with translation -3536
+GeoModelSvc.TileDetectorTool                        INFO  Global positioning of barrel with rotation (0,0,0)) and translation (0,0,0) Gaudi::Units::cm
+GeoModelSvc.TileDetectorTool                        INFO  Global positioning of positive ext.barrel with rotation (0,0,0)) and translation (0,0,0) Gaudi::Units::cm
+GeoModelSvc.TileDetectorTool                        INFO  Global positioning of negative ext.barrel with rotation (0,0,0)) and translation (0,0,1) Gaudi::Units::cm
+TileDetDescrManager                                 INFO Entering create_elements()
+GeoModelSvc                                         INFO GeoModelSvc.TileDetectorTool	 SZ= 3576Kb 	 Time = 0.12S
+ClassIDSvc                                          INFO  getRegistryEntries: read 66 CLIDRegistry entries for module ALL
+TileInfoLoader                                      INFO Changing TTL1 calib from 4.1 to 6.9
+TileInfoLoader                                      INFO Changing TTL1 noise sigma from 2.5 to 2.8
+CaloIDHelper_IDDetDescrCnv                          INFO in createObj: creating a CaloLVL1_ID helper object in the detector store
+CaloLVL1_ID                                         INFO initialize_from_dictionary
+AtlasDetectorID                                     INFO initialize_from_dictionary - OK
+TileCablingSvc                                      INFO RUN2 ATLAS geometry flag detected for geometry: ATLAS-R2-2016-01-00-01
+TileCablingSvc                                      INFO Cabling for RUN2 (2014-2017) ATLAS geometry is set via jobOptions 
+TileCablingSvc                                      INFO Setting Cabling type to 4
+AthenaHiveEventLoopMgr                              INFO Initializing AthenaHiveEventLoopMgr - package version AthenaServices-00-00-00
+ClassIDSvc                                     0    INFO  getRegistryEntries: read 4180 CLIDRegistry entries for module ALL
+PyComponentMgr                                 0    INFO Initializing PyComponentMgr...
+Finalizer                                      0    INFO Initializing Finalizer...
+ClassIDSvc                                     0    INFO  getRegistryEntries: read 53 CLIDRegistry entries for module ALL
+CondInputLoader                                0    INFO Initializing CondInputLoader...
+CondInputLoader                                0    INFO Adding base classes:
   +  ( 'CondAttrListCollection' , 'ConditionStore+/TILE/OFL02/CALIB/CES' )   ->
   +  ( 'CondAttrListCollection' , 'ConditionStore+/TILE/OFL02/CALIB/CIS/FIT/LIN' )   ->
   +  ( 'CondAttrListCollection' , 'ConditionStore+/TILE/OFL02/CALIB/CIS/FIT/NLN' )   ->
@@ -929,7 +929,7 @@ CondInputLoader                             0      INFO Adding base classes:
   +  ( 'CondAttrListCollection' , 'ConditionStore+/TILE/OFL02/STATUS/ADC' )   ->
   +  ( 'CondAttrListCollection' , 'ConditionStore+/TILE/OFL02/TIME/CHANNELOFFSET/PHY' )   ->
   +  ( 'CondAttrListCollection' , 'ConditionStore+/TILE/ONL01/STATUS/ADC' )   ->
-CondInputLoader                             0      INFO Will create WriteCondHandle dependencies for the following DataObjects:
+CondInputLoader                                0    INFO Will create WriteCondHandle dependencies for the following DataObjects:
     +  ( 'CondAttrListCollection' , 'ConditionStore+/TILE/OFL02/CALIB/CES' ) 
     +  ( 'CondAttrListCollection' , 'ConditionStore+/TILE/OFL02/CALIB/CIS/FIT/LIN' ) 
     +  ( 'CondAttrListCollection' , 'ConditionStore+/TILE/OFL02/CALIB/CIS/FIT/NLN' ) 
@@ -941,358 +941,358 @@ CondInputLoader                             0      INFO Will create WriteCondHan
     +  ( 'CondAttrListCollection' , 'ConditionStore+/TILE/OFL02/STATUS/ADC' ) 
     +  ( 'CondAttrListCollection' , 'ConditionStore+/TILE/OFL02/TIME/CHANNELOFFSET/PHY' ) 
     +  ( 'CondAttrListCollection' , 'ConditionStore+/TILE/ONL01/STATUS/ADC' ) 
-TileBadChannelsCondAlg.TileCondProxyC...    0      INFO Creating TileCondProxyCool(TileBadChannelsCondAlg.TileCondProxyCool_OnlBch) for folder: "/TILE/ONL01/STATUS/ADC"
-TileBadChannelsCondAlg.TileCondProxyC...    0      INFO Creating TileCondProxyCool(TileBadChannelsCondAlg.TileCondProxyCool_OflBch) for folder: "/TILE/OFL02/STATUS/ADC"
-TileBadChannelsCondAlg                      0      INFO ProxyOnlBch and ProxyOflBch will be used for bad channel status
-TileEMScaleCondAlg.TileCondProxyCool_...    0      INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OflCisLin) for folder: "/TILE/OFL02/CALIB/CIS/FIT/LIN"
-TileEMScaleCondAlg.TileCondProxyCool_...    0      INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OflCisNln) for folder: "/TILE/OFL02/CALIB/CIS/FIT/NLN"
-TileEMScaleCondAlg.TileCondProxyCool_...    0      INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OflLasLin) for folder: "/TILE/OFL02/CALIB/LAS/LIN"
-TileEMScaleCondAlg.TileCondProxyCool_...    0      INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OflLasNln) for folder: "/TILE/OFL02/CALIB/LAS/NLN"
-TileEMScaleCondAlg.TileCondProxyCool_...    0      INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OflLasFib) for folder: "/TILE/OFL02/CALIB/LAS/FIBER"
-TileEMScaleCondAlg                          0      INFO ProxyOflLasFib is set up and can be used
-TileEMScaleCondAlg.TileCondProxyCool_...    0      INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OflCes) for folder: "/TILE/OFL02/CALIB/CES"
-TileEMScaleCondAlg.TileCondProxyCool_...    0      INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OflEms) for folder: "/TILE/OFL02/CALIB/EMS"
-TileEMScaleCondAlg                          0      INFO Undoing online calibration is not requested, since OnlCacheUnit= 'OnlCacheUnit':Invalid
-TileEMScaleCondAlg.TileCondProxyCool_...    0      INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OnlCis) for folder: "/TILE/OFL02/CALIB/CIS/FIT/LIN"
-TileEMScaleCondAlg.TileCondProxyCool_...    0      INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OnlLas) for folder: "/TILE/OFL02/CALIB/LAS/LIN"
-TileEMScaleCondAlg.TileCondProxyCool_...    0      INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OnlCes) for folder: "/TILE/OFL02/CALIB/CES"
-TileEMScaleCondAlg.TileCondProxyCool_...    0      INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OnlEms) for folder: "/TILE/OFL02/CALIB/EMS"
-TileSampleNoiseCondAlg.TileCondProxyC...    0      INFO Creating TileCondProxyCool(TileSampleNoiseCondAlg.TileCondProxyCool_NoiseSample) for folder: "/TILE/OFL02/NOISE/SAMPLE"
-TileTimingCondAlg.TileCondProxyCool_A...    0      INFO Creating TileCondProxyCool(TileTimingCondAlg.TileCondProxyCool_AdcOffset) for folder: "/TILE/OFL02/TIME/CHANNELOFFSET/PHY"
-ThreadPoolSvc                               0      INFO no thread init tools attached
-AvalancheSchedulerSvc                       0      INFO Activating scheduler in a separate thread
-AvalancheSchedulerSvc                       0      INFO Found 13 algorithms
-AvalancheSchedulerSvc                       0      INFO Will attribute the following unmet INPUT dependencies to "SGInputLoader/SGInputLoader" Algorithm
+TileBadChannelsCondAlg.TileCondProxyC...       0    INFO Creating TileCondProxyCool(TileBadChannelsCondAlg.TileCondProxyCool_OnlBch) for folder: "/TILE/ONL01/STATUS/ADC"
+TileBadChannelsCondAlg.TileCondProxyC...       0    INFO Creating TileCondProxyCool(TileBadChannelsCondAlg.TileCondProxyCool_OflBch) for folder: "/TILE/OFL02/STATUS/ADC"
+TileBadChannelsCondAlg                         0    INFO ProxyOnlBch and ProxyOflBch will be used for bad channel status
+TileEMScaleCondAlg.TileCondProxyCool_...       0    INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OflCisLin) for folder: "/TILE/OFL02/CALIB/CIS/FIT/LIN"
+TileEMScaleCondAlg.TileCondProxyCool_...       0    INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OflCisNln) for folder: "/TILE/OFL02/CALIB/CIS/FIT/NLN"
+TileEMScaleCondAlg.TileCondProxyCool_...       0    INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OflLasLin) for folder: "/TILE/OFL02/CALIB/LAS/LIN"
+TileEMScaleCondAlg.TileCondProxyCool_...       0    INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OflLasNln) for folder: "/TILE/OFL02/CALIB/LAS/NLN"
+TileEMScaleCondAlg.TileCondProxyCool_...       0    INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OflLasFib) for folder: "/TILE/OFL02/CALIB/LAS/FIBER"
+TileEMScaleCondAlg                             0    INFO ProxyOflLasFib is set up and can be used
+TileEMScaleCondAlg.TileCondProxyCool_...       0    INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OflCes) for folder: "/TILE/OFL02/CALIB/CES"
+TileEMScaleCondAlg.TileCondProxyCool_...       0    INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OflEms) for folder: "/TILE/OFL02/CALIB/EMS"
+TileEMScaleCondAlg                             0    INFO Undoing online calibration is not requested, since OnlCacheUnit= 'OnlCacheUnit':Invalid
+TileEMScaleCondAlg.TileCondProxyCool_...       0    INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OnlCis) for folder: "/TILE/OFL02/CALIB/CIS/FIT/LIN"
+TileEMScaleCondAlg.TileCondProxyCool_...       0    INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OnlLas) for folder: "/TILE/OFL02/CALIB/LAS/LIN"
+TileEMScaleCondAlg.TileCondProxyCool_...       0    INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OnlCes) for folder: "/TILE/OFL02/CALIB/CES"
+TileEMScaleCondAlg.TileCondProxyCool_...       0    INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OnlEms) for folder: "/TILE/OFL02/CALIB/EMS"
+TileSampleNoiseCondAlg.TileCondProxyC...       0    INFO Creating TileCondProxyCool(TileSampleNoiseCondAlg.TileCondProxyCool_NoiseSample) for folder: "/TILE/OFL02/NOISE/SAMPLE"
+TileTimingCondAlg.TileCondProxyCool_A...       0    INFO Creating TileCondProxyCool(TileTimingCondAlg.TileCondProxyCool_AdcOffset) for folder: "/TILE/OFL02/TIME/CHANNELOFFSET/PHY"
+ThreadPoolSvc                                  0    INFO no thread init tools attached
+AvalancheSchedulerSvc                          0    INFO Activating scheduler in a separate thread
+AvalancheSchedulerSvc                          0    INFO Found 13 algorithms
+AvalancheSchedulerSvc                          0    INFO Will attribute the following unmet INPUT dependencies to "SGInputLoader/SGInputLoader" Algorithm
    o  ( 'TileDigitsContainer' , 'StoreGateSvc+MuRcvDigitsCnt' )     required by Algorithm: 
        * MuRcvDigitsCntDumper
    o  ( 'TileDigitsContainer' , 'StoreGateSvc+TileDigitsCnt' )     required by Algorithm: 
        * TileDigitsCntDumper
-PrecedenceSvc                               0      INFO Assembling CF and DF task precedence rules
-PrecedenceRulesGraph                        0      INFO CondSvc found. DF precedence rules will be augmented with 'Conditions'
-PrecedenceSvc                               0      INFO PrecedenceSvc initialized successfully
-AvalancheSchedulerSvc                       0      INFO Concurrency level information:
-AvalancheSchedulerSvc                       0      INFO  o Number of events in flight: 4
-AvalancheSchedulerSvc                       0      INFO  o TBB thread pool size:  'ThreadPoolSize':4
-HistogramPersistencySvc                     0   WARNING Histograms saving not required.
-EventSelector                               0      INFO Initializing EventSelector - package version ByteStreamCnvSvc-00-00-00
-ByteStreamInputSvc                          0      INFO Initializing ByteStreamInputSvc - package version ByteStreamCnvSvc-00-00-00
-ROBDataProviderSvc                          0      INFO Initializing ROBDataProviderSvc - package version ByteStreamCnvSvcBase-00-00-00
-ROBDataProviderSvc                          0      INFO  ---> Filter out empty ROB fragments                               =  'filterEmptyROB':False
-ROBDataProviderSvc                          0      INFO  ---> Filter out specific ROBs by Status Code: # ROBs = 0
-ROBDataProviderSvc                          0      INFO  ---> Filter out Sub Detector ROBs by Status Code: # Sub Detectors = 0
-EventSelector                               0      INFO reinitialization...
-AthenaHiveEventLoopMgr                      0      INFO Setup EventSelector service EventSelector
-ApplicationMgr                              0      INFO Application Manager Initialized successfully
-PoolSvc                                     0      INFO Enabled implicit multithreading in ROOT via PersistencySvc to: 4
-CondInputLoader                             0      INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/CALIB/CES'
-CondInputLoader                             0      INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/CALIB/CIS/FIT/LIN'
-CondInputLoader                             0      INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/CALIB/CIS/FIT/NLN'
-CondInputLoader                             0      INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/CALIB/EMS'
-CondInputLoader                             0      INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/CALIB/LAS/FIBER'
-CondInputLoader                             0      INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/CALIB/LAS/LIN'
-CondInputLoader                             0      INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/CALIB/LAS/NLN'
-CondInputLoader                             0      INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/NOISE/SAMPLE'
-CondInputLoader                             0      INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/STATUS/ADC'
-CondInputLoader                             0      INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/TIME/CHANNELOFFSET/PHY'
-CondInputLoader                             0      INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/ONL01/STATUS/ADC'
-ByteStreamInputSvc                          0      INFO Picked valid file: /cvmfs/atlas-nightlies.cern.ch/repo/data/data-art/Tier0ChainTests/data12_8TeV.00204073.physics_JetTauEtmiss.merge.RAW._lb0144._SFO-5._0001.1
-ApplicationMgr                              0      INFO Application Manager Started successfully
-AthenaHiveEventLoopMgr                      0      INFO Starting loop on events
-EventPersistencySvc                     0   0      INFO Added successfully Conversion service:AthenaPoolCnvSvc
-EventPersistencySvc                     0   0      INFO Added successfully Conversion service:TagInfoMgr
-EventPersistencySvc                     0   0      INFO Added successfully Conversion service:ByteStreamCnvSvc
-EventInfoByteStreamAuxCnv               0   0      INFO IsSimulation : 0
-EventInfoByteStreamAuxCnv               0   0      INFO IsTestbeam : 0
-EventInfoByteStreamAuxCnv               0   0      INFO IsCalibration : 0
-AthenaHiveEventLoopMgr                  0   0      INFO   ===>>>  start of run 204073    <<<===
-IOVDbSvc                                0   0      INFO Opening COOL connection for COOLOFL_LAR/OFLP200
-IOVDbFolder                             0   0      INFO HVS tag OFLCOND-RUN12-SDR-35 resolved to LARAlign-IOVDEP-00 for folder /LAR/Align
-IOVDbFolder                             0   0      INFO HVS tag OFLCOND-RUN12-SDR-35 resolved to LArCellPositionShift-ideal for folder /LAR/LArCellPositionShift
-IOVDbSvc                                0   0      INFO Disconnecting from COOLOFL_LAR/OFLP200
-Domain[ROOT_All]                        0   0      INFO ->  Access   DbDatabase   READ      [ROOT_All] 06C9EAE8-6F5B-E011-BAAA-003048F0E7AC
-Domain[ROOT_All]                        0   0      INFO                           /cvmfs/atlas-condb.cern.ch/repo/conditions/cond09/cond09_mc.000029.gen.COND/cond09_mc.000029.gen.COND._0002.pool.root
-RootDatabase.open                       0   0      INFO /cvmfs/atlas-condb.cern.ch/repo/conditions/cond09/cond09_mc.000029.gen.COND/cond09_mc.000029.gen.COND._0002.pool.root File version:52200
-CaloMgrDetDescrCnv                      0   0      INFO in createObj: creating a Calo Detector Manager object in the detector store
-CaloIdMgrDetDescrCnv                    0   0      INFO in createObj: creating a CaloDescrManager object in the detector store
-ClassIDSvc                              0   0      INFO  getRegistryEntries: read 195 CLIDRegistry entries for module ALL
-CaloIDHelper_IDDetDescrCnv              0   0      INFO in createObj: creating a CaloDM_ID helper object in the detector store
-CaloDM_ID                               0   0      INFO initialize_from_dictionary
-AtlasDetectorID                         0   0      INFO initialize_from_dictionary - OK
-CaloIDHelper_IDDetDescrCnv              0   0      INFO in createObj: creating a TTOnlineID helper object in the detector store
-TTOnlineID                              0   0      INFO initialize_from_dictionary
-AtlasDetectorID                         0   0      INFO initialize_from_dictionary - OK
-CaloIDHelper_IDDetDescrCnv              0   0      INFO in createObj: creating a CaloCell_SuperCell_ID helper object in the detector store
-CaloIDHelper_IDDetDescrCnv              0   0      INFO in createObj: creating a LArEM_SuperCell_ID helper object in the detector store
-AtlasDetectorID                         0   0      INFO initialize_from_dictionary - OK
-CaloIDHelper_IDDetDescrCnv              0   0      INFO in createObj: creating a LArHEC_SuperCell_ID helper object in the detector store
-AtlasDetectorID                         0   0      INFO initialize_from_dictionary - OK
-CaloIDHelper_IDDetDescrCnv              0   0      INFO in createObj: creating a LArFCAL_SuperCell_ID helper object in the detector store
-AtlasDetectorID                         0   0      INFO initialize_from_dictionary - OK
-LArFCAL_Base_ID                         0   0      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-06T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/FCalSuperCells2DNeighborsNew-April2014.txt
-LArFCAL_Base_ID                         0   0      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-06T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/FCalSuperCells3DNeighborsNextNew-April2014.txt
-LArFCAL_Base_ID                         0   0      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-06T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/FCalSuperCells3DNeighborsPrevNew-April2014.txt
-CaloIDHelper_IDDetDescrCnv              0   0      INFO in createObj: creating a Tile_SuperCell_ID helper object in the detector store
-AtlasDetectorID                         0   0      INFO initialize_from_dictionary - OK
-TileNeighbour                           0   0      INFO Reading file  /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-06T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/TileSuperCellNeighbour.txt
-AtlasDetectorID                         0   0      INFO initialize_from_dictionary - OK
-CaloIdMgrDetDescrCnv                    0   0      INFO  Finished 
-CaloIdMgrDetDescrCnv                    0   0      INFO Initializing CaloIdMgr from values in CaloIdMgrDetDescrCnv 
-Domain[ROOT_All]                        0   0      INFO ->  Access   DbDatabase   READ      [ROOT_All] 8667C6F2-1559-DE11-A611-000423D9A21A
-Domain[ROOT_All]                        0   0      INFO                           /cvmfs/atlas-condb.cern.ch/repo/conditions/cond08/cond08_mc.000003.gen.COND/cond08_mc.000003.gen.COND._0064.pool.root
-RootDatabase.open                       0   0      INFO /cvmfs/atlas-condb.cern.ch/repo/conditions/cond08/cond08_mc.000003.gen.COND/cond08_mc.000003.gen.COND._0064.pool.root File version:52200
-AthenaHiveEventLoopMgr                  0   0      INFO   ===>>>  start processing event #1129572, run #204073 on slot 0,  0 events processed so far  <<<===
-ClassIDSvc                              0   0      INFO  getRegistryEntries: read 672 CLIDRegistry entries for module ALL
-ClassIDSvc                              0   0      INFO  getRegistryEntries: read 1776 CLIDRegistry entries for module ALL
-ClassIDSvc                              0   0      INFO  getRegistryEntries: read 90 CLIDRegistry entries for module ALL
-ToolSvc.TileROD_Decoder.TileL2Builder   0   0      INFO TileL2Builder initialization completed
-ToolSvc.TileDigitsContByteStreamTool    0   0      INFO Initializing TileDigitsContByteStreamTool
-AthenaHiveEventLoopMgr                  1   1      INFO   ===>>>  start processing event #1129665, run #204073 on slot 1,  0 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  2   2      INFO   ===>>>  start processing event #1131212, run #204073 on slot 2,  0 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  3   3      INFO   ===>>>  start processing event #1131086, run #204073 on slot 3,  0 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1129572, run #204073 on slot 0,  1 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1129665, run #204073 on slot 1,  2 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1131212, run #204073 on slot 2,  3 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  4   0      INFO   ===>>>  start processing event #1130272, run #204073 on slot 0,  3 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  5   1      INFO   ===>>>  start processing event #1131269, run #204073 on slot 1,  3 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  6   2      INFO   ===>>>  start processing event #1130716, run #204073 on slot 2,  3 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1131086, run #204073 on slot 3,  4 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1130272, run #204073 on slot 0,  5 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1131269, run #204073 on slot 1,  6 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  7   0      INFO   ===>>>  start processing event #1132019, run #204073 on slot 0,  6 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  8   1      INFO   ===>>>  start processing event #1132092, run #204073 on slot 1,  6 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  9   3      INFO   ===>>>  start processing event #1130238, run #204073 on slot 3,  6 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1130716, run #204073 on slot 2,  7 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  10  2      INFO   ===>>>  start processing event #1134553, run #204073 on slot 2,  7 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1132092, run #204073 on slot 1,  8 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1132019, run #204073 on slot 0,  9 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1130238, run #204073 on slot 3,  10 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  11  0      INFO   ===>>>  start processing event #1130999, run #204073 on slot 0,  10 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  12  1      INFO   ===>>>  start processing event #1133461, run #204073 on slot 1,  10 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  13  3      INFO   ===>>>  start processing event #1131152, run #204073 on slot 3,  10 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1134553, run #204073 on slot 2,  11 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1130999, run #204073 on slot 0,  12 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1133461, run #204073 on slot 1,  13 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  14  0      INFO   ===>>>  start processing event #1130142, run #204073 on slot 0,  13 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  15  1      INFO   ===>>>  start processing event #1132770, run #204073 on slot 1,  13 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  16  2      INFO   ===>>>  start processing event #1132365, run #204073 on slot 2,  13 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1131152, run #204073 on slot 3,  14 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1130142, run #204073 on slot 0,  15 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1132770, run #204073 on slot 1,  16 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  17  0      INFO   ===>>>  start processing event #1136791, run #204073 on slot 0,  16 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  18  1      INFO   ===>>>  start processing event #1133781, run #204073 on slot 1,  16 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  19  3      INFO   ===>>>  start processing event #1132067, run #204073 on slot 3,  16 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1132365, run #204073 on slot 2,  17 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1136791, run #204073 on slot 0,  18 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1133781, run #204073 on slot 1,  19 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  20  0      INFO   ===>>>  start processing event #1138637, run #204073 on slot 0,  19 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  21  1      INFO   ===>>>  start processing event #1139495, run #204073 on slot 1,  19 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  22  2      INFO   ===>>>  start processing event #1140193, run #204073 on slot 2,  19 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1132067, run #204073 on slot 3,  20 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1138637, run #204073 on slot 0,  21 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1139495, run #204073 on slot 1,  22 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  23  0      INFO   ===>>>  start processing event #1142953, run #204073 on slot 0,  22 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  24  1      INFO   ===>>>  start processing event #1139127, run #204073 on slot 1,  22 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  25  3      INFO   ===>>>  start processing event #1141272, run #204073 on slot 3,  22 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1140193, run #204073 on slot 2,  23 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1142953, run #204073 on slot 0,  24 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1139127, run #204073 on slot 1,  25 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  26  0      INFO   ===>>>  start processing event #1137117, run #204073 on slot 0,  25 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  27  1      INFO   ===>>>  start processing event #1139599, run #204073 on slot 1,  25 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  28  2      INFO   ===>>>  start processing event #1140314, run #204073 on slot 2,  25 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1141272, run #204073 on slot 3,  26 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1137117, run #204073 on slot 0,  27 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1139599, run #204073 on slot 1,  28 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  29  0      INFO   ===>>>  start processing event #1133685, run #204073 on slot 0,  28 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  30  1      INFO   ===>>>  start processing event #1143279, run #204073 on slot 1,  28 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  31  3      INFO   ===>>>  start processing event #1137563, run #204073 on slot 3,  28 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1140314, run #204073 on slot 2,  29 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1133685, run #204073 on slot 0,  30 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1143279, run #204073 on slot 1,  31 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  32  0      INFO   ===>>>  start processing event #1139927, run #204073 on slot 0,  31 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  33  1      INFO   ===>>>  start processing event #1141197, run #204073 on slot 1,  31 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  34  2      INFO   ===>>>  start processing event #1140039, run #204073 on slot 2,  31 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1137563, run #204073 on slot 3,  32 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1139927, run #204073 on slot 0,  33 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1141197, run #204073 on slot 1,  34 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  35  0      INFO   ===>>>  start processing event #1142531, run #204073 on slot 0,  34 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  36  1      INFO   ===>>>  start processing event #1139475, run #204073 on slot 1,  34 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  37  3      INFO   ===>>>  start processing event #1139958, run #204073 on slot 3,  34 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1140039, run #204073 on slot 2,  35 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1142531, run #204073 on slot 0,  36 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1139475, run #204073 on slot 1,  37 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  38  0      INFO   ===>>>  start processing event #1143765, run #204073 on slot 0,  37 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  39  1      INFO   ===>>>  start processing event #1143097, run #204073 on slot 1,  37 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  40  2      INFO   ===>>>  start processing event #1134147, run #204073 on slot 2,  37 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1139958, run #204073 on slot 3,  38 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1143765, run #204073 on slot 0,  39 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1143097, run #204073 on slot 1,  40 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  41  0      INFO   ===>>>  start processing event #1137156, run #204073 on slot 0,  40 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  42  1      INFO   ===>>>  start processing event #1136377, run #204073 on slot 1,  40 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  43  3      INFO   ===>>>  start processing event #1137842, run #204073 on slot 3,  40 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1134147, run #204073 on slot 2,  41 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1137156, run #204073 on slot 0,  42 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1136377, run #204073 on slot 1,  43 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  44  0      INFO   ===>>>  start processing event #1141705, run #204073 on slot 0,  43 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  45  1      INFO   ===>>>  start processing event #1143410, run #204073 on slot 1,  43 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  46  2      INFO   ===>>>  start processing event #1144170, run #204073 on slot 2,  43 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1137842, run #204073 on slot 3,  44 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1141705, run #204073 on slot 0,  45 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1143410, run #204073 on slot 1,  46 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  47  0      INFO   ===>>>  start processing event #1145987, run #204073 on slot 0,  46 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  48  1      INFO   ===>>>  start processing event #1145633, run #204073 on slot 1,  46 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  49  3      INFO   ===>>>  start processing event #1135005, run #204073 on slot 3,  46 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1144170, run #204073 on slot 2,  47 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1145987, run #204073 on slot 0,  48 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1145633, run #204073 on slot 1,  49 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  50  0      INFO   ===>>>  start processing event #1142167, run #204073 on slot 0,  49 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  51  1      INFO   ===>>>  start processing event #1144646, run #204073 on slot 1,  49 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  52  2      INFO   ===>>>  start processing event #1145027, run #204073 on slot 2,  49 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1135005, run #204073 on slot 3,  50 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1142167, run #204073 on slot 0,  51 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1144646, run #204073 on slot 1,  52 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  53  0      INFO   ===>>>  start processing event #1144112, run #204073 on slot 0,  52 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  54  1      INFO   ===>>>  start processing event #1138485, run #204073 on slot 1,  52 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  55  3      INFO   ===>>>  start processing event #1144565, run #204073 on slot 3,  52 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1145027, run #204073 on slot 2,  53 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1144112, run #204073 on slot 0,  54 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1138485, run #204073 on slot 1,  55 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  56  0      INFO   ===>>>  start processing event #1139498, run #204073 on slot 0,  55 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  57  1      INFO   ===>>>  start processing event #1136546, run #204073 on slot 1,  55 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  58  2      INFO   ===>>>  start processing event #1143799, run #204073 on slot 2,  55 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1144565, run #204073 on slot 3,  56 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1139498, run #204073 on slot 0,  57 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1136546, run #204073 on slot 1,  58 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  59  0      INFO   ===>>>  start processing event #1142877, run #204073 on slot 0,  58 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  60  1      INFO   ===>>>  start processing event #1149894, run #204073 on slot 1,  58 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  61  3      INFO   ===>>>  start processing event #1145364, run #204073 on slot 3,  58 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1143799, run #204073 on slot 2,  59 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1142877, run #204073 on slot 0,  60 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1149894, run #204073 on slot 1,  61 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  62  0      INFO   ===>>>  start processing event #1143770, run #204073 on slot 0,  61 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  63  1      INFO   ===>>>  start processing event #1148361, run #204073 on slot 1,  61 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  64  2      INFO   ===>>>  start processing event #1148167, run #204073 on slot 2,  61 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1145364, run #204073 on slot 3,  62 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1143770, run #204073 on slot 0,  63 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1148361, run #204073 on slot 1,  64 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  65  0      INFO   ===>>>  start processing event #1138948, run #204073 on slot 0,  64 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  66  1      INFO   ===>>>  start processing event #1144808, run #204073 on slot 1,  64 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  67  3      INFO   ===>>>  start processing event #1145832, run #204073 on slot 3,  64 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1148167, run #204073 on slot 2,  65 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1138948, run #204073 on slot 0,  66 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1144808, run #204073 on slot 1,  67 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  68  0      INFO   ===>>>  start processing event #1153100, run #204073 on slot 0,  67 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  69  1      INFO   ===>>>  start processing event #1142524, run #204073 on slot 1,  67 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  70  2      INFO   ===>>>  start processing event #1138294, run #204073 on slot 2,  67 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1145832, run #204073 on slot 3,  68 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1153100, run #204073 on slot 0,  69 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1142524, run #204073 on slot 1,  70 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  71  0      INFO   ===>>>  start processing event #1138350, run #204073 on slot 0,  70 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  72  1      INFO   ===>>>  start processing event #1149424, run #204073 on slot 1,  70 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  73  3      INFO   ===>>>  start processing event #1151102, run #204073 on slot 3,  70 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1138294, run #204073 on slot 2,  71 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1138350, run #204073 on slot 0,  72 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1149424, run #204073 on slot 1,  73 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  74  0      INFO   ===>>>  start processing event #1152242, run #204073 on slot 0,  73 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  75  1      INFO   ===>>>  start processing event #1148416, run #204073 on slot 1,  73 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  76  2      INFO   ===>>>  start processing event #1142753, run #204073 on slot 2,  73 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1151102, run #204073 on slot 3,  74 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1152242, run #204073 on slot 0,  75 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1148416, run #204073 on slot 1,  76 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  77  0      INFO   ===>>>  start processing event #1149997, run #204073 on slot 0,  76 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  78  1      INFO   ===>>>  start processing event #1151617, run #204073 on slot 1,  76 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  79  3      INFO   ===>>>  start processing event #1149794, run #204073 on slot 3,  76 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1142753, run #204073 on slot 2,  77 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1149997, run #204073 on slot 0,  78 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1151617, run #204073 on slot 1,  79 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  80  0      INFO   ===>>>  start processing event #1152504, run #204073 on slot 0,  79 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  81  1      INFO   ===>>>  start processing event #1142485, run #204073 on slot 1,  79 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  82  2      INFO   ===>>>  start processing event #1151364, run #204073 on slot 2,  79 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1149794, run #204073 on slot 3,  80 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1152504, run #204073 on slot 0,  81 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1142485, run #204073 on slot 1,  82 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  83  0      INFO   ===>>>  start processing event #1143901, run #204073 on slot 0,  82 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  84  1      INFO   ===>>>  start processing event #1153979, run #204073 on slot 1,  82 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  85  3      INFO   ===>>>  start processing event #1150212, run #204073 on slot 3,  82 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1151364, run #204073 on slot 2,  83 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1143901, run #204073 on slot 0,  84 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1153979, run #204073 on slot 1,  85 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  86  0      INFO   ===>>>  start processing event #1152633, run #204073 on slot 0,  85 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  87  1      INFO   ===>>>  start processing event #1155482, run #204073 on slot 1,  85 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  88  2      INFO   ===>>>  start processing event #1150472, run #204073 on slot 2,  85 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1150212, run #204073 on slot 3,  86 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1152633, run #204073 on slot 0,  87 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1155482, run #204073 on slot 1,  88 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  89  0      INFO   ===>>>  start processing event #1140275, run #204073 on slot 0,  88 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  90  1      INFO   ===>>>  start processing event #1145882, run #204073 on slot 1,  88 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  91  3      INFO   ===>>>  start processing event #1151732, run #204073 on slot 3,  88 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1150472, run #204073 on slot 2,  89 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1140275, run #204073 on slot 0,  90 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1145882, run #204073 on slot 1,  91 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  92  0      INFO   ===>>>  start processing event #1137896, run #204073 on slot 0,  91 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  93  1      INFO   ===>>>  start processing event #1156381, run #204073 on slot 1,  91 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  94  2      INFO   ===>>>  start processing event #1149161, run #204073 on slot 2,  91 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1151732, run #204073 on slot 3,  92 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1137896, run #204073 on slot 0,  93 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1156381, run #204073 on slot 1,  94 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  95  0      INFO   ===>>>  start processing event #1153794, run #204073 on slot 0,  94 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  96  1      INFO   ===>>>  start processing event #1151312, run #204073 on slot 1,  94 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  97  3      INFO   ===>>>  start processing event #1148893, run #204073 on slot 3,  94 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1149161, run #204073 on slot 2,  95 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1153794, run #204073 on slot 0,  96 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1151312, run #204073 on slot 1,  97 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  98  0      INFO   ===>>>  start processing event #1156938, run #204073 on slot 0,  97 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  99  1      INFO   ===>>>  start processing event #1156351, run #204073 on slot 1,  97 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1148893, run #204073 on slot 3,  98 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1156938, run #204073 on slot 0,  99 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1156351, run #204073 on slot 1,  100 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO ---> Loop Finished (seconds): 7.77844
-/cvmfs/atlas-condb.cern.ch/repo/condi...           INFO Database being retired...
-Domain[ROOT_All]                                   INFO ->  Deaccess DbDatabase   READ      [ROOT_All] 06C9EAE8-6F5B-E011-BAAA-003048F0E7AC
-/cvmfs/atlas-condb.cern.ch/repo/condi...           INFO Database being retired...
-Domain[ROOT_All]                                   INFO ->  Deaccess DbDatabase   READ      [ROOT_All] 8667C6F2-1559-DE11-A611-000423D9A21A
-Domain[ROOT_All]                                   INFO >   Deaccess DbDomain     READ      [ROOT_All] 
-ApplicationMgr                                     INFO Application Manager Stopped successfully
-IncidentProcAlg1                                   INFO Finalize
-SGInputLoader                                      INFO Finalizing SGInputLoader...
-Finalizer                                          INFO Finalizing Finalizer...
+PrecedenceSvc                                  0    INFO Assembling CF and DF task precedence rules
+PrecedenceRulesGraph                           0    INFO CondSvc found. DF precedence rules will be augmented with 'Conditions'
+PrecedenceSvc                                  0    INFO PrecedenceSvc initialized successfully
+AvalancheSchedulerSvc                          0    INFO Concurrency level information:
+AvalancheSchedulerSvc                          0    INFO  o Number of events in flight: 4
+AvalancheSchedulerSvc                          0    INFO  o TBB thread pool size:  'ThreadPoolSize':4
+HistogramPersistencySvc                        0 WARNING Histograms saving not required.
+EventSelector                                  0    INFO Initializing EventSelector - package version ByteStreamCnvSvc-00-00-00
+ByteStreamInputSvc                             0    INFO Initializing ByteStreamInputSvc - package version ByteStreamCnvSvc-00-00-00
+ROBDataProviderSvc                             0    INFO Initializing ROBDataProviderSvc - package version ByteStreamCnvSvcBase-00-00-00
+ROBDataProviderSvc                             0    INFO  ---> Filter out empty ROB fragments                               =  'filterEmptyROB':False
+ROBDataProviderSvc                             0    INFO  ---> Filter out specific ROBs by Status Code: # ROBs = 0
+ROBDataProviderSvc                             0    INFO  ---> Filter out Sub Detector ROBs by Status Code: # Sub Detectors = 0
+EventSelector                                  0    INFO reinitialization...
+AthenaHiveEventLoopMgr                         0    INFO Setup EventSelector service EventSelector
+ApplicationMgr                                 0    INFO Application Manager Initialized successfully
+PoolSvc                                        0    INFO Enabled implicit multithreading in ROOT via PersistencySvc to: 4
+CondInputLoader                                0    INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/CALIB/CES'
+CondInputLoader                                0    INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/CALIB/CIS/FIT/LIN'
+CondInputLoader                                0    INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/CALIB/CIS/FIT/NLN'
+CondInputLoader                                0    INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/CALIB/EMS'
+CondInputLoader                                0    INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/CALIB/LAS/FIBER'
+CondInputLoader                                0    INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/CALIB/LAS/LIN'
+CondInputLoader                                0    INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/CALIB/LAS/NLN'
+CondInputLoader                                0    INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/NOISE/SAMPLE'
+CondInputLoader                                0    INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/STATUS/ADC'
+CondInputLoader                                0    INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/TIME/CHANNELOFFSET/PHY'
+CondInputLoader                                0    INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/ONL01/STATUS/ADC'
+ByteStreamInputSvc                             0    INFO Picked valid file: /cvmfs/atlas-nightlies.cern.ch/repo/data/data-art/Tier0ChainTests/data12_8TeV.00204073.physics_JetTauEtmiss.merge.RAW._lb0144._SFO-5._0001.1
+ApplicationMgr                                 0    INFO Application Manager Started successfully
+AthenaHiveEventLoopMgr                         0    INFO Starting loop on events
+EventPersistencySvc                        0   0    INFO Added successfully Conversion service:AthenaPoolCnvSvc
+EventPersistencySvc                        0   0    INFO Added successfully Conversion service:TagInfoMgr
+EventPersistencySvc                        0   0    INFO Added successfully Conversion service:ByteStreamCnvSvc
+EventInfoByteStreamAuxCnv                  0   0    INFO IsSimulation : 0
+EventInfoByteStreamAuxCnv                  0   0    INFO IsTestbeam : 0
+EventInfoByteStreamAuxCnv                  0   0    INFO IsCalibration : 0
+AthenaHiveEventLoopMgr                     0   0    INFO   ===>>>  start of run 204073    <<<===
+IOVDbSvc                                   0   0    INFO Opening COOL connection for COOLOFL_LAR/OFLP200
+IOVDbFolder                                0   0    INFO HVS tag OFLCOND-RUN12-SDR-35 resolved to LARAlign-IOVDEP-00 for folder /LAR/Align
+IOVDbFolder                                0   0    INFO HVS tag OFLCOND-RUN12-SDR-35 resolved to LArCellPositionShift-ideal for folder /LAR/LArCellPositionShift
+IOVDbSvc                                   0   0    INFO Disconnecting from COOLOFL_LAR/OFLP200
+Domain[ROOT_All]                           0   0    INFO ->  Access   DbDatabase   READ      [ROOT_All] 06C9EAE8-6F5B-E011-BAAA-003048F0E7AC
+Domain[ROOT_All]                           0   0    INFO                           /cvmfs/atlas-condb.cern.ch/repo/conditions/cond09/cond09_mc.000029.gen.COND/cond09_mc.000029.gen.COND._0002.pool.root
+RootDatabase.open                          0   0    INFO /cvmfs/atlas-condb.cern.ch/repo/conditions/cond09/cond09_mc.000029.gen.COND/cond09_mc.000029.gen.COND._0002.pool.root File version:52200
+CaloMgrDetDescrCnv                         0   0    INFO in createObj: creating a Calo Detector Manager object in the detector store
+CaloIdMgrDetDescrCnv                       0   0    INFO in createObj: creating a CaloDescrManager object in the detector store
+ClassIDSvc                                 0   0    INFO  getRegistryEntries: read 198 CLIDRegistry entries for module ALL
+CaloIDHelper_IDDetDescrCnv                 0   0    INFO in createObj: creating a CaloDM_ID helper object in the detector store
+CaloDM_ID                                  0   0    INFO initialize_from_dictionary
+AtlasDetectorID                            0   0    INFO initialize_from_dictionary - OK
+CaloIDHelper_IDDetDescrCnv                 0   0    INFO in createObj: creating a TTOnlineID helper object in the detector store
+TTOnlineID                                 0   0    INFO initialize_from_dictionary
+AtlasDetectorID                            0   0    INFO initialize_from_dictionary - OK
+CaloIDHelper_IDDetDescrCnv                 0   0    INFO in createObj: creating a CaloCell_SuperCell_ID helper object in the detector store
+CaloIDHelper_IDDetDescrCnv                 0   0    INFO in createObj: creating a LArEM_SuperCell_ID helper object in the detector store
+AtlasDetectorID                            0   0    INFO initialize_from_dictionary - OK
+CaloIDHelper_IDDetDescrCnv                 0   0    INFO in createObj: creating a LArHEC_SuperCell_ID helper object in the detector store
+AtlasDetectorID                            0   0    INFO initialize_from_dictionary - OK
+CaloIDHelper_IDDetDescrCnv                 0   0    INFO in createObj: creating a LArFCAL_SuperCell_ID helper object in the detector store
+AtlasDetectorID                            0   0    INFO initialize_from_dictionary - OK
+LArFCAL_Base_ID                            0   0    INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/FCalSuperCells2DNeighborsNew-April2014.txt
+LArFCAL_Base_ID                            0   0    INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/FCalSuperCells3DNeighborsNextNew-April2014.txt
+LArFCAL_Base_ID                            0   0    INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/FCalSuperCells3DNeighborsPrevNew-April2014.txt
+CaloIDHelper_IDDetDescrCnv                 0   0    INFO in createObj: creating a Tile_SuperCell_ID helper object in the detector store
+AtlasDetectorID                            0   0    INFO initialize_from_dictionary - OK
+TileNeighbour                              0   0    INFO Reading file  /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/TileSuperCellNeighbour.txt
+AtlasDetectorID                            0   0    INFO initialize_from_dictionary - OK
+CaloIdMgrDetDescrCnv                       0   0    INFO  Finished 
+CaloIdMgrDetDescrCnv                       0   0    INFO Initializing CaloIdMgr from values in CaloIdMgrDetDescrCnv 
+Domain[ROOT_All]                           0   0    INFO ->  Access   DbDatabase   READ      [ROOT_All] 8667C6F2-1559-DE11-A611-000423D9A21A
+Domain[ROOT_All]                           0   0    INFO                           /cvmfs/atlas-condb.cern.ch/repo/conditions/cond08/cond08_mc.000003.gen.COND/cond08_mc.000003.gen.COND._0064.pool.root
+RootDatabase.open                          0   0    INFO /cvmfs/atlas-condb.cern.ch/repo/conditions/cond08/cond08_mc.000003.gen.COND/cond08_mc.000003.gen.COND._0064.pool.root File version:52200
+AthenaHiveEventLoopMgr                     0   0    INFO   ===>>>  start processing event #1129572, run #204073 on slot 0,  0 events processed so far  <<<===
+ClassIDSvc                                 0   0    INFO  getRegistryEntries: read 470 CLIDRegistry entries for module ALL
+ClassIDSvc                                 0   0    INFO  getRegistryEntries: read 1795 CLIDRegistry entries for module ALL
+ClassIDSvc                                 0   0    INFO  getRegistryEntries: read 91 CLIDRegistry entries for module ALL
+ToolSvc.TileROD_Decoder.TileL2Builder      0   0    INFO TileL2Builder initialization completed
+ToolSvc.TileDigitsContByteStreamTool       0   0    INFO Initializing TileDigitsContByteStreamTool
+AthenaHiveEventLoopMgr                     1   1    INFO   ===>>>  start processing event #1129665, run #204073 on slot 1,  0 events processed so far  <<<===
+AthenaHiveEventLoopMgr                     2   2    INFO   ===>>>  start processing event #1131212, run #204073 on slot 2,  0 events processed so far  <<<===
+AthenaHiveEventLoopMgr                     3   3    INFO   ===>>>  start processing event #1131086, run #204073 on slot 3,  0 events processed so far  <<<===
+AthenaHiveEventLoopMgr                     1   1    INFO   ===>>>  done processing event #1129665, run #204073 on slot 1,  1 events processed so far  <<<===
+AthenaHiveEventLoopMgr                     0   0    INFO   ===>>>  done processing event #1129572, run #204073 on slot 0,  2 events processed so far  <<<===
+AthenaHiveEventLoopMgr                     2   2    INFO   ===>>>  done processing event #1131212, run #204073 on slot 2,  3 events processed so far  <<<===
+AthenaHiveEventLoopMgr                     4   0    INFO   ===>>>  start processing event #1130272, run #204073 on slot 0,  3 events processed so far  <<<===
+AthenaHiveEventLoopMgr                     5   1    INFO   ===>>>  start processing event #1131269, run #204073 on slot 1,  3 events processed so far  <<<===
+AthenaHiveEventLoopMgr                     6   2    INFO   ===>>>  start processing event #1130716, run #204073 on slot 2,  3 events processed so far  <<<===
+AthenaHiveEventLoopMgr                     3   3    INFO   ===>>>  done processing event #1131086, run #204073 on slot 3,  4 events processed so far  <<<===
+AthenaHiveEventLoopMgr                     4   0    INFO   ===>>>  done processing event #1130272, run #204073 on slot 0,  5 events processed so far  <<<===
+AthenaHiveEventLoopMgr                     5   1    INFO   ===>>>  done processing event #1131269, run #204073 on slot 1,  6 events processed so far  <<<===
+AthenaHiveEventLoopMgr                     7   0    INFO   ===>>>  start processing event #1132019, run #204073 on slot 0,  6 events processed so far  <<<===
+AthenaHiveEventLoopMgr                     8   1    INFO   ===>>>  start processing event #1132092, run #204073 on slot 1,  6 events processed so far  <<<===
+AthenaHiveEventLoopMgr                     9   3    INFO   ===>>>  start processing event #1130238, run #204073 on slot 3,  6 events processed so far  <<<===
+AthenaHiveEventLoopMgr                     6   2    INFO   ===>>>  done processing event #1130716, run #204073 on slot 2,  7 events processed so far  <<<===
+AthenaHiveEventLoopMgr                     7   0    INFO   ===>>>  done processing event #1132019, run #204073 on slot 0,  8 events processed so far  <<<===
+AthenaHiveEventLoopMgr                     8   1    INFO   ===>>>  done processing event #1132092, run #204073 on slot 1,  9 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    10   0    INFO   ===>>>  start processing event #1134553, run #204073 on slot 0,  9 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    11   1    INFO   ===>>>  start processing event #1130999, run #204073 on slot 1,  9 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    12   2    INFO   ===>>>  start processing event #1133461, run #204073 on slot 2,  9 events processed so far  <<<===
+AthenaHiveEventLoopMgr                     9   3    INFO   ===>>>  done processing event #1130238, run #204073 on slot 3,  10 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    10   0    INFO   ===>>>  done processing event #1134553, run #204073 on slot 0,  11 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    11   1    INFO   ===>>>  done processing event #1130999, run #204073 on slot 1,  12 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    13   0    INFO   ===>>>  start processing event #1131152, run #204073 on slot 0,  12 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    14   1    INFO   ===>>>  start processing event #1130142, run #204073 on slot 1,  12 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    15   3    INFO   ===>>>  start processing event #1132770, run #204073 on slot 3,  12 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    12   2    INFO   ===>>>  done processing event #1133461, run #204073 on slot 2,  13 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    13   0    INFO   ===>>>  done processing event #1131152, run #204073 on slot 0,  14 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    14   1    INFO   ===>>>  done processing event #1130142, run #204073 on slot 1,  15 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    16   0    INFO   ===>>>  start processing event #1132365, run #204073 on slot 0,  15 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    17   1    INFO   ===>>>  start processing event #1136791, run #204073 on slot 1,  15 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    18   2    INFO   ===>>>  start processing event #1133781, run #204073 on slot 2,  15 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    15   3    INFO   ===>>>  done processing event #1132770, run #204073 on slot 3,  16 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    16   0    INFO   ===>>>  done processing event #1132365, run #204073 on slot 0,  17 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    17   1    INFO   ===>>>  done processing event #1136791, run #204073 on slot 1,  18 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    19   0    INFO   ===>>>  start processing event #1132067, run #204073 on slot 0,  18 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    20   1    INFO   ===>>>  start processing event #1138637, run #204073 on slot 1,  18 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    21   3    INFO   ===>>>  start processing event #1139495, run #204073 on slot 3,  18 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    18   2    INFO   ===>>>  done processing event #1133781, run #204073 on slot 2,  19 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    19   0    INFO   ===>>>  done processing event #1132067, run #204073 on slot 0,  20 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    20   1    INFO   ===>>>  done processing event #1138637, run #204073 on slot 1,  21 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    22   0    INFO   ===>>>  start processing event #1140193, run #204073 on slot 0,  21 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    23   1    INFO   ===>>>  start processing event #1142953, run #204073 on slot 1,  21 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    24   2    INFO   ===>>>  start processing event #1139127, run #204073 on slot 2,  21 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    21   3    INFO   ===>>>  done processing event #1139495, run #204073 on slot 3,  22 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    22   0    INFO   ===>>>  done processing event #1140193, run #204073 on slot 0,  23 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    23   1    INFO   ===>>>  done processing event #1142953, run #204073 on slot 1,  24 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    25   0    INFO   ===>>>  start processing event #1141272, run #204073 on slot 0,  24 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    26   1    INFO   ===>>>  start processing event #1137117, run #204073 on slot 1,  24 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    27   3    INFO   ===>>>  start processing event #1139599, run #204073 on slot 3,  24 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    24   2    INFO   ===>>>  done processing event #1139127, run #204073 on slot 2,  25 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    25   0    INFO   ===>>>  done processing event #1141272, run #204073 on slot 0,  26 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    26   1    INFO   ===>>>  done processing event #1137117, run #204073 on slot 1,  27 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    28   0    INFO   ===>>>  start processing event #1140314, run #204073 on slot 0,  27 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    29   1    INFO   ===>>>  start processing event #1133685, run #204073 on slot 1,  27 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    30   2    INFO   ===>>>  start processing event #1143279, run #204073 on slot 2,  27 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    27   3    INFO   ===>>>  done processing event #1139599, run #204073 on slot 3,  28 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    28   0    INFO   ===>>>  done processing event #1140314, run #204073 on slot 0,  29 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    29   1    INFO   ===>>>  done processing event #1133685, run #204073 on slot 1,  30 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    31   0    INFO   ===>>>  start processing event #1137563, run #204073 on slot 0,  30 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    32   1    INFO   ===>>>  start processing event #1139927, run #204073 on slot 1,  30 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    33   3    INFO   ===>>>  start processing event #1141197, run #204073 on slot 3,  30 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    30   2    INFO   ===>>>  done processing event #1143279, run #204073 on slot 2,  31 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    31   0    INFO   ===>>>  done processing event #1137563, run #204073 on slot 0,  32 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    32   1    INFO   ===>>>  done processing event #1139927, run #204073 on slot 1,  33 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    34   0    INFO   ===>>>  start processing event #1140039, run #204073 on slot 0,  33 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    35   1    INFO   ===>>>  start processing event #1142531, run #204073 on slot 1,  33 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    36   2    INFO   ===>>>  start processing event #1139475, run #204073 on slot 2,  33 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    33   3    INFO   ===>>>  done processing event #1141197, run #204073 on slot 3,  34 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    34   0    INFO   ===>>>  done processing event #1140039, run #204073 on slot 0,  35 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    35   1    INFO   ===>>>  done processing event #1142531, run #204073 on slot 1,  36 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    37   0    INFO   ===>>>  start processing event #1139958, run #204073 on slot 0,  36 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    38   1    INFO   ===>>>  start processing event #1143765, run #204073 on slot 1,  36 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    39   3    INFO   ===>>>  start processing event #1143097, run #204073 on slot 3,  36 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    36   2    INFO   ===>>>  done processing event #1139475, run #204073 on slot 2,  37 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    37   0    INFO   ===>>>  done processing event #1139958, run #204073 on slot 0,  38 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    38   1    INFO   ===>>>  done processing event #1143765, run #204073 on slot 1,  39 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    40   0    INFO   ===>>>  start processing event #1134147, run #204073 on slot 0,  39 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    41   1    INFO   ===>>>  start processing event #1137156, run #204073 on slot 1,  39 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    42   2    INFO   ===>>>  start processing event #1136377, run #204073 on slot 2,  39 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    39   3    INFO   ===>>>  done processing event #1143097, run #204073 on slot 3,  40 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    40   0    INFO   ===>>>  done processing event #1134147, run #204073 on slot 0,  41 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    41   1    INFO   ===>>>  done processing event #1137156, run #204073 on slot 1,  42 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    43   0    INFO   ===>>>  start processing event #1137842, run #204073 on slot 0,  42 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    44   1    INFO   ===>>>  start processing event #1141705, run #204073 on slot 1,  42 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    45   3    INFO   ===>>>  start processing event #1143410, run #204073 on slot 3,  42 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    42   2    INFO   ===>>>  done processing event #1136377, run #204073 on slot 2,  43 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    43   0    INFO   ===>>>  done processing event #1137842, run #204073 on slot 0,  44 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    44   1    INFO   ===>>>  done processing event #1141705, run #204073 on slot 1,  45 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    46   0    INFO   ===>>>  start processing event #1144170, run #204073 on slot 0,  45 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    47   1    INFO   ===>>>  start processing event #1145987, run #204073 on slot 1,  45 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    48   2    INFO   ===>>>  start processing event #1145633, run #204073 on slot 2,  45 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    45   3    INFO   ===>>>  done processing event #1143410, run #204073 on slot 3,  46 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    46   0    INFO   ===>>>  done processing event #1144170, run #204073 on slot 0,  47 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    47   1    INFO   ===>>>  done processing event #1145987, run #204073 on slot 1,  48 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    49   0    INFO   ===>>>  start processing event #1135005, run #204073 on slot 0,  48 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    50   1    INFO   ===>>>  start processing event #1142167, run #204073 on slot 1,  48 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    51   3    INFO   ===>>>  start processing event #1144646, run #204073 on slot 3,  48 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    48   2    INFO   ===>>>  done processing event #1145633, run #204073 on slot 2,  49 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    49   0    INFO   ===>>>  done processing event #1135005, run #204073 on slot 0,  50 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    50   1    INFO   ===>>>  done processing event #1142167, run #204073 on slot 1,  51 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    52   0    INFO   ===>>>  start processing event #1145027, run #204073 on slot 0,  51 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    53   1    INFO   ===>>>  start processing event #1144112, run #204073 on slot 1,  51 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    54   2    INFO   ===>>>  start processing event #1138485, run #204073 on slot 2,  51 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    51   3    INFO   ===>>>  done processing event #1144646, run #204073 on slot 3,  52 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    52   0    INFO   ===>>>  done processing event #1145027, run #204073 on slot 0,  53 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    53   1    INFO   ===>>>  done processing event #1144112, run #204073 on slot 1,  54 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    55   0    INFO   ===>>>  start processing event #1144565, run #204073 on slot 0,  54 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    56   1    INFO   ===>>>  start processing event #1139498, run #204073 on slot 1,  54 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    57   3    INFO   ===>>>  start processing event #1136546, run #204073 on slot 3,  54 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    54   2    INFO   ===>>>  done processing event #1138485, run #204073 on slot 2,  55 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    55   0    INFO   ===>>>  done processing event #1144565, run #204073 on slot 0,  56 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    56   1    INFO   ===>>>  done processing event #1139498, run #204073 on slot 1,  57 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    58   0    INFO   ===>>>  start processing event #1143799, run #204073 on slot 0,  57 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    59   1    INFO   ===>>>  start processing event #1142877, run #204073 on slot 1,  57 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    60   2    INFO   ===>>>  start processing event #1149894, run #204073 on slot 2,  57 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    57   3    INFO   ===>>>  done processing event #1136546, run #204073 on slot 3,  58 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    58   0    INFO   ===>>>  done processing event #1143799, run #204073 on slot 0,  59 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    59   1    INFO   ===>>>  done processing event #1142877, run #204073 on slot 1,  60 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    61   0    INFO   ===>>>  start processing event #1145364, run #204073 on slot 0,  60 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    62   1    INFO   ===>>>  start processing event #1143770, run #204073 on slot 1,  60 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    63   3    INFO   ===>>>  start processing event #1148361, run #204073 on slot 3,  60 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    60   2    INFO   ===>>>  done processing event #1149894, run #204073 on slot 2,  61 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    61   0    INFO   ===>>>  done processing event #1145364, run #204073 on slot 0,  62 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    62   1    INFO   ===>>>  done processing event #1143770, run #204073 on slot 1,  63 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    64   0    INFO   ===>>>  start processing event #1148167, run #204073 on slot 0,  63 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    65   1    INFO   ===>>>  start processing event #1138948, run #204073 on slot 1,  63 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    66   2    INFO   ===>>>  start processing event #1144808, run #204073 on slot 2,  63 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    63   3    INFO   ===>>>  done processing event #1148361, run #204073 on slot 3,  64 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    64   0    INFO   ===>>>  done processing event #1148167, run #204073 on slot 0,  65 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    65   1    INFO   ===>>>  done processing event #1138948, run #204073 on slot 1,  66 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    67   0    INFO   ===>>>  start processing event #1145832, run #204073 on slot 0,  66 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    68   1    INFO   ===>>>  start processing event #1153100, run #204073 on slot 1,  66 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    69   3    INFO   ===>>>  start processing event #1142524, run #204073 on slot 3,  66 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    66   2    INFO   ===>>>  done processing event #1144808, run #204073 on slot 2,  67 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    67   0    INFO   ===>>>  done processing event #1145832, run #204073 on slot 0,  68 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    68   1    INFO   ===>>>  done processing event #1153100, run #204073 on slot 1,  69 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    70   0    INFO   ===>>>  start processing event #1138294, run #204073 on slot 0,  69 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    71   1    INFO   ===>>>  start processing event #1138350, run #204073 on slot 1,  69 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    72   2    INFO   ===>>>  start processing event #1149424, run #204073 on slot 2,  69 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    69   3    INFO   ===>>>  done processing event #1142524, run #204073 on slot 3,  70 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    70   0    INFO   ===>>>  done processing event #1138294, run #204073 on slot 0,  71 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    71   1    INFO   ===>>>  done processing event #1138350, run #204073 on slot 1,  72 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    73   0    INFO   ===>>>  start processing event #1151102, run #204073 on slot 0,  72 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    74   1    INFO   ===>>>  start processing event #1152242, run #204073 on slot 1,  72 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    75   3    INFO   ===>>>  start processing event #1148416, run #204073 on slot 3,  72 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    72   2    INFO   ===>>>  done processing event #1149424, run #204073 on slot 2,  73 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    73   0    INFO   ===>>>  done processing event #1151102, run #204073 on slot 0,  74 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    74   1    INFO   ===>>>  done processing event #1152242, run #204073 on slot 1,  75 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    76   0    INFO   ===>>>  start processing event #1142753, run #204073 on slot 0,  75 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    77   1    INFO   ===>>>  start processing event #1149997, run #204073 on slot 1,  75 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    78   2    INFO   ===>>>  start processing event #1151617, run #204073 on slot 2,  75 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    75   3    INFO   ===>>>  done processing event #1148416, run #204073 on slot 3,  76 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    76   0    INFO   ===>>>  done processing event #1142753, run #204073 on slot 0,  77 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    77   1    INFO   ===>>>  done processing event #1149997, run #204073 on slot 1,  78 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    79   0    INFO   ===>>>  start processing event #1149794, run #204073 on slot 0,  78 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    80   1    INFO   ===>>>  start processing event #1152504, run #204073 on slot 1,  78 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    81   3    INFO   ===>>>  start processing event #1142485, run #204073 on slot 3,  78 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    78   2    INFO   ===>>>  done processing event #1151617, run #204073 on slot 2,  79 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    79   0    INFO   ===>>>  done processing event #1149794, run #204073 on slot 0,  80 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    80   1    INFO   ===>>>  done processing event #1152504, run #204073 on slot 1,  81 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    82   0    INFO   ===>>>  start processing event #1151364, run #204073 on slot 0,  81 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    83   1    INFO   ===>>>  start processing event #1143901, run #204073 on slot 1,  81 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    84   2    INFO   ===>>>  start processing event #1153979, run #204073 on slot 2,  81 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    81   3    INFO   ===>>>  done processing event #1142485, run #204073 on slot 3,  82 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    82   0    INFO   ===>>>  done processing event #1151364, run #204073 on slot 0,  83 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    83   1    INFO   ===>>>  done processing event #1143901, run #204073 on slot 1,  84 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    85   0    INFO   ===>>>  start processing event #1150212, run #204073 on slot 0,  84 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    86   1    INFO   ===>>>  start processing event #1152633, run #204073 on slot 1,  84 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    87   3    INFO   ===>>>  start processing event #1155482, run #204073 on slot 3,  84 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    84   2    INFO   ===>>>  done processing event #1153979, run #204073 on slot 2,  85 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    85   0    INFO   ===>>>  done processing event #1150212, run #204073 on slot 0,  86 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    86   1    INFO   ===>>>  done processing event #1152633, run #204073 on slot 1,  87 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    88   0    INFO   ===>>>  start processing event #1150472, run #204073 on slot 0,  87 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    89   1    INFO   ===>>>  start processing event #1140275, run #204073 on slot 1,  87 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    90   2    INFO   ===>>>  start processing event #1145882, run #204073 on slot 2,  87 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    87   3    INFO   ===>>>  done processing event #1155482, run #204073 on slot 3,  88 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    88   0    INFO   ===>>>  done processing event #1150472, run #204073 on slot 0,  89 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    89   1    INFO   ===>>>  done processing event #1140275, run #204073 on slot 1,  90 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    91   0    INFO   ===>>>  start processing event #1151732, run #204073 on slot 0,  90 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    92   1    INFO   ===>>>  start processing event #1137896, run #204073 on slot 1,  90 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    93   3    INFO   ===>>>  start processing event #1156381, run #204073 on slot 3,  90 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    90   2    INFO   ===>>>  done processing event #1145882, run #204073 on slot 2,  91 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    91   0    INFO   ===>>>  done processing event #1151732, run #204073 on slot 0,  92 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    92   1    INFO   ===>>>  done processing event #1137896, run #204073 on slot 1,  93 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    94   0    INFO   ===>>>  start processing event #1149161, run #204073 on slot 0,  93 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    95   1    INFO   ===>>>  start processing event #1153794, run #204073 on slot 1,  93 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    96   2    INFO   ===>>>  start processing event #1151312, run #204073 on slot 2,  93 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    93   3    INFO   ===>>>  done processing event #1156381, run #204073 on slot 3,  94 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    94   0    INFO   ===>>>  done processing event #1149161, run #204073 on slot 0,  95 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    95   1    INFO   ===>>>  done processing event #1153794, run #204073 on slot 1,  96 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    97   0    INFO   ===>>>  start processing event #1148893, run #204073 on slot 0,  96 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    98   1    INFO   ===>>>  start processing event #1156938, run #204073 on slot 1,  96 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    99   3    INFO   ===>>>  start processing event #1156351, run #204073 on slot 3,  96 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    96   2    INFO   ===>>>  done processing event #1151312, run #204073 on slot 2,  97 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    97   0    INFO   ===>>>  done processing event #1148893, run #204073 on slot 0,  98 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    98   1    INFO   ===>>>  done processing event #1156938, run #204073 on slot 1,  99 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    99   3    INFO   ===>>>  done processing event #1156351, run #204073 on slot 3,  100 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    99   3    INFO ---> Loop Finished (seconds): 3.84317
+/cvmfs/atlas-condb.cern.ch/repo/condi...            INFO Database being retired...
+Domain[ROOT_All]                                    INFO ->  Deaccess DbDatabase   READ      [ROOT_All] 06C9EAE8-6F5B-E011-BAAA-003048F0E7AC
+/cvmfs/atlas-condb.cern.ch/repo/condi...            INFO Database being retired...
+Domain[ROOT_All]                                    INFO ->  Deaccess DbDatabase   READ      [ROOT_All] 8667C6F2-1559-DE11-A611-000423D9A21A
+Domain[ROOT_All]                                    INFO >   Deaccess DbDomain     READ      [ROOT_All] 
+ApplicationMgr                                      INFO Application Manager Stopped successfully
+IncidentProcAlg1                                    INFO Finalize
+SGInputLoader                                       INFO Finalizing SGInputLoader...
+Finalizer                                           INFO Finalizing Finalizer...
 Finalize: compared 20 dumps
-CondInputLoader                                    INFO Finalizing CondInputLoader...
-IncidentProcAlg2                                   INFO Finalize
-AvalancheSchedulerSvc                              INFO Joining Scheduler thread
-PyComponentMgr                                     INFO Finalizing PyComponentMgr...
-EventDataSvc                                       INFO Finalizing EventDataSvc - package version StoreGate-00-00-00
-IdDictDetDescrCnv                                  INFO in finalize
-IOVDbFolder                                        INFO Folder /LAR/Align (PoolRef) db-read 1/1 objs/chan/bytes 1/1/170 ((     0.69 ))s
-IOVDbFolder                                        INFO Folder /TILE/OFL02/CALIB/CES (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
-IOVDbFolder                                        INFO Folder /TILE/OFL02/CALIB/CIS/FIT/LIN (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
-IOVDbFolder                                        INFO Folder /TILE/OFL02/CALIB/CIS/FIT/NLN (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
-IOVDbFolder                                        INFO Folder /TILE/OFL02/CALIB/EMS (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
-IOVDbFolder                                        INFO Folder /TILE/OFL02/CALIB/LAS/FIBER (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
-IOVDbFolder                                        INFO Folder /TILE/OFL02/CALIB/LAS/LIN (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
-IOVDbFolder                                        INFO Folder /TILE/OFL02/CALIB/LAS/NLN (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
-IOVDbFolder                                        INFO Folder /TILE/OFL02/NOISE/SAMPLE (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
-IOVDbFolder                                        INFO Folder /TILE/OFL02/STATUS/ADC (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
-IOVDbFolder                                        INFO Folder /TILE/OFL02/TIME/CHANNELOFFSET/PHY (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
-IOVDbFolder                                        INFO Folder /TILE/ONL01/STATUS/ADC (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
-IOVDbFolder                                        INFO Folder /LAR/LArCellPositionShift (PoolRef) db-read 1/1 objs/chan/bytes 1/1/195 ((     0.39 ))s
-IOVDbSvc                                           INFO  bytes in ((      1.07 ))s
-IOVDbSvc                                           INFO Connection sqlite://;schema=mycool.db;dbname=OFLP200 : nConnect: 0 nFolders: 0 ReadTime: ((     0.00 ))s
-IOVDbSvc                                           INFO Connection COOLOFL_LAR/OFLP200 : nConnect: 2 nFolders: 2 ReadTime: ((     1.07 ))s
-IOVDbSvc                                           INFO Connection COOLOFL_TILE/OFLP200 : nConnect: 1 nFolders: 11 ReadTime: ((     0.00 ))s
-AthDictLoaderSvc                                   INFO in finalize...
-ToolSvc                                            INFO Removing all tools created by ToolSvc
-ToolSvc.ByteStreamMetadataTool                     INFO in finalize()
-ToolSvc.TileDigitsContByteStreamTool               INFO Finalizing TileDigitsContByteStreamTool successfuly
-ToolSvc.TileROD_Decoder.TileL2Builder              INFO Finalizing
-*****Chrono*****                                   INFO ****************************************************************************************************
-*****Chrono*****                                   INFO WARNING: MT job; statistics are unreliable
-*****Chrono*****                                   INFO  The Final CPU consumption ( Chrono ) Table (ordered)
-*****Chrono*****                                   INFO ****************************************************************************************************
-cObjR_ALL                                          INFO Time User   : Tot=  400 [ms] Ave/Min/Max=  200(+-  190)/   10/  390 [ms] #=  2
-cObj_ALL                                           INFO Time User   : Tot=  430 [ms] Ave/Min/Max=  215(+-  185)/   30/  400 [ms] #=  2
-ChronoStatSvc                                      INFO Time User   : Tot= 8.01  [s]                                             #=  1
-*****Chrono*****                                   INFO ****************************************************************************************************
-ChronoStatSvc.finalize()                           INFO  Service finalized successfully 
-ApplicationMgr                                     INFO Application Manager Finalized successfully
-ApplicationMgr                                     INFO Application Manager Terminated successfully
+CondInputLoader                                     INFO Finalizing CondInputLoader...
+IncidentProcAlg2                                    INFO Finalize
+AvalancheSchedulerSvc                               INFO Joining Scheduler thread
+PyComponentMgr                                      INFO Finalizing PyComponentMgr...
+EventDataSvc                                        INFO Finalizing EventDataSvc - package version StoreGate-00-00-00
+IdDictDetDescrCnv                                   INFO in finalize
+IOVDbFolder                                         INFO Folder /LAR/Align (PoolRef) db-read 1/1 objs/chan/bytes 1/1/170 ((     0.05 ))s
+IOVDbFolder                                         INFO Folder /TILE/OFL02/CALIB/CES (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
+IOVDbFolder                                         INFO Folder /TILE/OFL02/CALIB/CIS/FIT/LIN (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
+IOVDbFolder                                         INFO Folder /TILE/OFL02/CALIB/CIS/FIT/NLN (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
+IOVDbFolder                                         INFO Folder /TILE/OFL02/CALIB/EMS (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
+IOVDbFolder                                         INFO Folder /TILE/OFL02/CALIB/LAS/FIBER (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
+IOVDbFolder                                         INFO Folder /TILE/OFL02/CALIB/LAS/LIN (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
+IOVDbFolder                                         INFO Folder /TILE/OFL02/CALIB/LAS/NLN (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
+IOVDbFolder                                         INFO Folder /TILE/OFL02/NOISE/SAMPLE (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
+IOVDbFolder                                         INFO Folder /TILE/OFL02/STATUS/ADC (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
+IOVDbFolder                                         INFO Folder /TILE/OFL02/TIME/CHANNELOFFSET/PHY (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
+IOVDbFolder                                         INFO Folder /TILE/ONL01/STATUS/ADC (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
+IOVDbFolder                                         INFO Folder /LAR/LArCellPositionShift (PoolRef) db-read 1/1 objs/chan/bytes 1/1/195 ((     0.02 ))s
+IOVDbSvc                                            INFO  bytes in ((      0.07 ))s
+IOVDbSvc                                            INFO Connection sqlite://;schema=mycool.db;dbname=OFLP200 : nConnect: 0 nFolders: 0 ReadTime: ((     0.00 ))s
+IOVDbSvc                                            INFO Connection COOLOFL_LAR/OFLP200 : nConnect: 2 nFolders: 2 ReadTime: ((     0.07 ))s
+IOVDbSvc                                            INFO Connection COOLOFL_TILE/OFLP200 : nConnect: 1 nFolders: 11 ReadTime: ((     0.00 ))s
+AthDictLoaderSvc                                    INFO in finalize...
+ToolSvc                                             INFO Removing all tools created by ToolSvc
+ToolSvc.TileDigitsContByteStreamTool                INFO Finalizing TileDigitsContByteStreamTool successfuly
+ToolSvc.TileROD_Decoder.TileL2Builder               INFO Finalizing
+ToolSvc.ByteStreamMetadataTool                      INFO in finalize()
+*****Chrono*****                                    INFO ****************************************************************************************************
+*****Chrono*****                                    INFO WARNING: MT job; statistics are unreliable
+*****Chrono*****                                    INFO  The Final CPU consumption ( Chrono ) Table (ordered)
+*****Chrono*****                                    INFO ****************************************************************************************************
+cObjR_ALL                                           INFO Time User   : Tot=  310 [ms] Ave/Min/Max=  155(+-  145)/   10/  300 [ms] #=  2
+cObj_ALL                                            INFO Time User   : Tot=  350 [ms] Ave/Min/Max=  175(+-  145)/   30/  320 [ms] #=  2
+ChronoStatSvc                                       INFO Time User   : Tot= 7.07  [s]                                             #=  1
+*****Chrono*****                                    INFO ****************************************************************************************************
+ChronoStatSvc.finalize()                            INFO  Service finalized successfully 
+ApplicationMgr                                      INFO Application Manager Finalized successfully
+ApplicationMgr                                      INFO Application Manager Terminated successfully
 Py:Athena            INFO leaving with code 0: "successful run"
diff --git a/TileCalorimeter/TileSvc/TileByteStream/share/TileL2ContByteStreamCnv_test.ref b/TileCalorimeter/TileSvc/TileByteStream/share/TileL2ContByteStreamCnv_test.ref
index d987a3a0012..0e31448e044 100644
--- a/TileCalorimeter/TileSvc/TileByteStream/share/TileL2ContByteStreamCnv_test.ref
+++ b/TileCalorimeter/TileSvc/TileByteStream/share/TileL2ContByteStreamCnv_test.ref
@@ -1,16 +1,16 @@
-Wed Aug  7 22:10:19 CEST 2019
+Fri Nov 29 11:11:03 CET 2019
 Preloading tcmalloc_minimal.so
 Py:Athena            INFO including file "AthenaCommon/Preparation.py"
-Py:Athena            INFO using release [WorkDir-22.0.3] [x86_64-centos7-gcc8-opt] [test.TileRecUtils-20190807/f9360ea601f] -- built on [2019-08-07T2151]
+Py:Athena            INFO using release [WorkDir-22.0.9] [x86_64-centos7-gcc8-opt] [tilecal-12bit/82699bf159] -- built on [2019-11-29T1101]
 Py:Athena            INFO including file "AthenaCommon/Atlas.UnixStandardJob.py"
 Py:Athena            INFO executing ROOT6Setup
 Py:Athena            INFO including file "AthenaCommon/Execution.py"
 Py:Athena            INFO including file "TileByteStream/TileL2ContByteStreamCnv_test.py"
-SetGeometryVersion.py obtained major release version 22
+Py:Athena            INFO SetGeometryVersion.py obtained major release version 22
 Py:Athena            INFO including file "IdDictDetDescrCnv/IdDictDetDescrCnv_joboptions.py"
-Py:ConfigurableDb    INFO Read module info for 5518 configurables from 5 genConfDb files
+Py:ConfigurableDb    INFO Read module info for 5635 configurables from 11 genConfDb files
 Py:ConfigurableDb    INFO No duplicates have been found: that's good !
-EventInfoMgtInit: Got release version  Athena-22.0.3
+EventInfoMgtInit: Got release version  Athena-22.0.9
 Py:IOVDbSvc.CondDB    INFO Setting up conditions DB access to instance OFLP200
 Py:Athena            INFO including file "TileConditions/TileConditions_jobOptions.py"
 Py:TileInfoConf.     INFO Adding TileCablingSvc to ServiceMgr
@@ -22,20 +22,22 @@ Py:TileInfoConf.     INFO Changing default TileCondToolEmscale configuration to
 Py:TileInfoConf.     INFO Changing default TileCondToolNoiseSample configuration to COOL source
 Py:TileInfoConf.     INFO Changing default TileCondToolTiming configuration to COOL source
 Py:TileConditions_jobOptions.py    INFO Adjusting TileInfo to return cell noise for Opt.Filter without iterations
+Py:TileConditions_jobOptions.py    INFO Setting 10-bit ADC configuration
+Py:TileInfoConf.     INFO Setting 10-bit Tile ADC
 Py:Athena            INFO including file "AthenaCommon/runbatch.py"
 ApplicationMgr       INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0
 ApplicationMgr       INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0
 ApplicationMgr    SUCCESS 
 ====================================================================================================================================
-                                                   Welcome to ApplicationMgr (GaudiCoreSvc v32r0)
-                                          running on lxplus725.cern.ch on Wed Aug  7 22:10:33 2019
+                                                   Welcome to ApplicationMgr (GaudiCoreSvc v32r2)
+                                          running on pcpraha5 on Fri Nov 29 11:11:09 2019
 ====================================================================================================================================
 ApplicationMgr       INFO Application Manager Configured successfully
 ApplicationMgr       INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0
 StatusCodeSvc        INFO initialize
 AthDictLoaderSvc     INFO in initialize...
 AthDictLoaderSvc     INFO acquired Dso-registry
-ClassIDSvc           INFO  getRegistryEntries: read 7079 CLIDRegistry entries for module ALL
+ClassIDSvc           INFO  getRegistryEntries: read 7151 CLIDRegistry entries for module ALL
 CoreDumpSvc          INFO install f-a-t-a-l handler... (flag = -1)
 CoreDumpSvc          INFO Handling signals: 11(Segmentation fault) 7(Bus error) 4(Illegal instruction) 8(Floating point exception) 
 MetaDataSvc          INFO Initializing MetaDataSvc - package version AthenaServices-00-00-00
@@ -44,8 +46,8 @@ PoolSvc              INFO io_register[PoolSvc](xmlcatalog_file:PoolFileCatalog.x
 PoolSvc              INFO Set connectionsvc retry/timeout/IDLE timeout to  'ConnectionRetrialPeriod':300/ 'ConnectionRetrialTimeOut':3600/ 'ConnectionTimeOut':5 seconds with connection cleanup disabled
 PoolSvc              INFO Frontier compression level set to 5
 DBReplicaSvc         INFO Frontier server at (serverurl=http://atlasfrontier-local.cern.ch:8000/atlr)(serverurl=http://atlasfrontier-ai.cern.ch:8000/atlr)(serverurl=http://lcgft-atlas.gridpp.rl.ac.uk:3128/frontierATLAS)(serverurl=http://ccfrontier.in2p3.fr:23128/ccin2p3-AtlasFrontier)(proxyurl=http://ca-proxy.cern.ch:3128)(proxyurl=http://ca-proxy-meyrin.cern.ch:3128)(proxyurl=http://ca-proxy-wigner.cern.ch:3128)(proxyurl=http://atlasbpfrontier.cern.ch:3127)(proxyurl=http://atlasbpfrontier.fnal.gov:3127) will be considered for COOL data
-DBReplicaSvc         INFO Read replica configuration from /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-06T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/dbreplica.config
-DBReplicaSvc         INFO Total of 10 servers found for host lxplus725.cern.ch [ATLF ATLAS_COOLPROD atlas_dd ATLAS_CONFIG INT8R INTR ATONR_COOL ATONR_CONF DEVDB11 ATLF ]
+DBReplicaSvc         INFO Read replica configuration from /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/dbreplica.config
+DBReplicaSvc         INFO Total of 10 servers found for host pcpraha5.dyndns.cern.ch [ATLF ATLAS_COOLPROD atlas_dd ATLAS_CONFIG INT8R INTR ATONR_COOL ATONR_CONF DEVDB11 ATLF ]
 PoolSvc              INFO Successfully setup replica sorting algorithm
 PoolSvc              INFO Setting up APR FileCatalog and Streams
 PoolSvc           WARNING Unable to locate catalog for prfile:poolcond/PoolCat_oflcond.xml check your ATLAS_POOLCOND_PATH and DATAPATH variables
@@ -68,7 +70,7 @@ ByteStreamAddre...   INFO initialized
 ByteStreamAddre...   INFO -- Will fill Store with id =  0
 IOVDbSvc             INFO preLoadAddresses: Removing folder /TagInfo. It should only be in the file meta data and was not found.
 IOVDbSvc             INFO Opening COOL connection for COOLOFL_LAR/OFLP200
-ClassIDSvc           INFO  getRegistryEntries: read 3223 CLIDRegistry entries for module ALL
+ClassIDSvc           INFO  getRegistryEntries: read 3291 CLIDRegistry entries for module ALL
 IOVSvc               INFO No IOVSvcTool associated with store "StoreGateSvc"
 IOVSvc.IOVSvcTool    INFO IOVRanges will be checked at every Event
 IOVDbSvc             INFO Opening COOL connection for COOLOFL_TILE/OFLP200
@@ -87,8 +89,8 @@ IOVDbSvc             INFO Added taginfo remove for /TILE/OFL02/STATUS/ADC
 IOVDbSvc             INFO Added taginfo remove for /TILE/OFL02/TIME/CHANNELOFFSET/PHY
 IOVDbSvc             INFO Added taginfo remove for /TILE/ONL01/STATUS/ADC
 IOVDbSvc             INFO Added taginfo remove for /LAR/LArCellPositionShift
-ClassIDSvc           INFO  getRegistryEntries: read 831 CLIDRegistry entries for module ALL
-ClassIDSvc           INFO  getRegistryEntries: read 17 CLIDRegistry entries for module ALL
+ClassIDSvc           INFO  getRegistryEntries: read 863 CLIDRegistry entries for module ALL
+ClassIDSvc           INFO  getRegistryEntries: read 18 CLIDRegistry entries for module ALL
 DetDescrCnvSvc       INFO  initializing 
 DetDescrCnvSvc       INFO Found DetectorStore service
 DetDescrCnvSvc       INFO  filling proxies for detector managers 
@@ -123,8 +125,6 @@ DetDescrCnvSvc       INFO  filling address for MDTIDHELPER with CLID 4170 and st
 DetDescrCnvSvc       INFO  filling address for CSCIDHELPER with CLID 4171 and storage type 68 to detector store 
 DetDescrCnvSvc       INFO  filling address for RPCIDHELPER with CLID 4172 and storage type 68 to detector store 
 DetDescrCnvSvc       INFO  filling address for TGCIDHELPER with CLID 4173 and storage type 68 to detector store 
-DetDescrCnvSvc       INFO  filling address for STGCIDHELPER with CLID 4174 and storage type 68 to detector store 
-DetDescrCnvSvc       INFO  filling address for MMIDHELPER with CLID 4175 and storage type 68 to detector store 
 DetDescrCnvSvc       INFO  filling address for CaloLVL1_ID with CLID 108133391 and storage type 68 to detector store 
 DetDescrCnvSvc       INFO  filling address for CaloCell_ID with CLID 123500438 and storage type 68 to detector store 
 DetDescrCnvSvc       INFO  filling address for CaloCell_SuperCell_ID with CLID 128365736 and storage type 68 to detector store 
@@ -190,7 +190,7 @@ EMECConstruction     INFO multi-layered version of absorbers activated, paramete
 EMECConstruction     INFO activating LAr::EMEC::Neg::InnerWheel
 EMECConstruction     INFO activating LAr::EMEC::Neg::OuterWheel
 EndcapDMConstru...   INFO Start building EC electronics geometry
-GeoModelSvc          INFO GeoModelSvc.LArDetectorToolNV	 SZ= 25368Kb 	 Time = 0.57S
+GeoModelSvc          INFO GeoModelSvc.LArDetectorToolNV	 SZ= 25368Kb 	 Time = 0.44S
 GeoModelSvc.Til...   INFO  Entering TileDetectorTool::create()
 TileDddbManager      INFO m_tag = ATLAS-R2-2016-01-00-01
 TileDddbManager      INFO n_tiglob = 5
@@ -201,7 +201,7 @@ TileDddbManager      INFO n_tilb = 21
 TileDddbManager      INFO n_tileSwitches = 1
 CaloIDHelper_ID...   INFO in createObj: creating a TileID helper object in the detector store
 AtlasDetectorID      INFO initialize_from_dictionary - OK
-TileNeighbour        INFO Reading file  /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-06T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/TileNeighbour_reduced.txt
+TileNeighbour        INFO Reading file  /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/TileNeighbour_reduced.txt
 TileHWIDDetDesc...   INFO in createObj: creating a TileHWID helper object in the detector store
 TileHWID             INFO initialize_from_dictionary 
 AtlasDetectorID      INFO initialize_from_dictionary - OK
@@ -213,9 +213,9 @@ CaloIDHelper_ID...   INFO in createObj: creating a LArHEC_ID helper object in th
 AtlasDetectorID      INFO initialize_from_dictionary - OK
 CaloIDHelper_ID...   INFO in createObj: creating a LArFCAL_ID helper object in the detector store
 AtlasDetectorID      INFO initialize_from_dictionary - OK
-LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-06T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/FCal2DNeighbors-April2011.txt
-LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-06T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/FCal3DNeighborsNext-April2011.txt
-LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-06T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/FCal3DNeighborsPrev-April2011.txt
+LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/FCal2DNeighbors-April2011.txt
+LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/FCal3DNeighborsNext-April2011.txt
+LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/FCal3DNeighborsPrev-April2011.txt
 CaloIDHelper_ID...   INFO in createObj: creating a LArMiniFCAL_ID helper object in the detector store
 AtlasDetectorID      INFO initialize_from_dictionary - OK
 LArMiniFCAL_ID       INFO  initialize_from_dict - LArCalorimeter dictionary does NOT contain miniFCAL description. Unable to initialize LArMiniFCAL_ID.
@@ -250,7 +250,7 @@ GeoModelSvc.Til...   INFO  Global positioning of barrel with rotation (0,0,0)) a
 GeoModelSvc.Til...   INFO  Global positioning of positive ext.barrel with rotation (0,0,0)) and translation (0,0,0) Gaudi::Units::cm
 GeoModelSvc.Til...   INFO  Global positioning of negative ext.barrel with rotation (0,0,0)) and translation (0,0,1) Gaudi::Units::cm
 TileDetDescrMan...   INFO Entering create_elements()
-GeoModelSvc          INFO GeoModelSvc.TileDetectorTool	 SZ= 3576Kb 	 Time = 0.17S
+GeoModelSvc          INFO GeoModelSvc.TileDetectorTool	 SZ= 3576Kb 	 Time = 0.12S
 ClassIDSvc           INFO  getRegistryEntries: read 66 CLIDRegistry entries for module ALL
 TileInfoLoader       INFO Changing TTL1 calib from 4.1 to 6.9
 TileInfoLoader       INFO Changing TTL1 noise sigma from 2.5 to 2.8
@@ -305,7 +305,7 @@ TileEMScaleCond...   INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCond
 TileEMScaleCond...   INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OnlEms) for folder: "/TILE/OFL02/CALIB/EMS"
 TileSampleNoise...   INFO Creating TileCondProxyCool(TileSampleNoiseCondAlg.TileCondProxyCool_NoiseSample) for folder: "/TILE/OFL02/NOISE/SAMPLE"
 TileTimingCondA...   INFO Creating TileCondProxyCool(TileTimingCondAlg.TileCondProxyCool_AdcOffset) for folder: "/TILE/OFL02/TIME/CHANNELOFFSET/PHY"
-ClassIDSvc           INFO  getRegistryEntries: read 3927 CLIDRegistry entries for module ALL
+ClassIDSvc           INFO  getRegistryEntries: read 3915 CLIDRegistry entries for module ALL
 PyComponentMgr       INFO Initializing PyComponentMgr...
 Finalizer            INFO Initializing Finalizer...
 HistogramPersis...WARNING Histograms saving not required.
@@ -318,8 +318,8 @@ ROBDataProviderSvc   INFO  ---> Filter out Sub Detector ROBs by Status Code: # S
 EventSelector        INFO reinitialization...
 AthenaEventLoopMgr   INFO Setup EventSelector service EventSelector
 ApplicationMgr       INFO Application Manager Initialized successfully
-ByteStreamInputSvc   INFO Picked valid file: /cvmfs/atlas-nightlies.cern.ch/repo/data/data-art/Tier0ChainTests/data12_8TeV.00204073.physics_JetTauEtmiss.merge.RAW._lb0144._SFO-5._0001.1
 ClassIDSvc           INFO  getRegistryEntries: read 425 CLIDRegistry entries for module ALL
+ByteStreamInputSvc   INFO Picked valid file: /cvmfs/atlas-nightlies.cern.ch/repo/data/data-art/Tier0ChainTests/data12_8TeV.00204073.physics_JetTauEtmiss.merge.RAW._lb0144._SFO-5._0001.1
 CondInputLoader      INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/CALIB/CES'
 CondInputLoader      INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/CALIB/CIS/FIT/LIN'
 CondInputLoader      INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/CALIB/CIS/FIT/NLN'
@@ -348,7 +348,7 @@ Domain[ROOT_All]     INFO                           /cvmfs/atlas-condb.cern.ch/r
 RootDatabase.open    INFO /cvmfs/atlas-condb.cern.ch/repo/conditions/cond09/cond09_mc.000029.gen.COND/cond09_mc.000029.gen.COND._0002.pool.root File version:52200
 CaloMgrDetDescrCnv   INFO in createObj: creating a Calo Detector Manager object in the detector store
 CaloIdMgrDetDes...   INFO in createObj: creating a CaloDescrManager object in the detector store
-ClassIDSvc           INFO  getRegistryEntries: read 195 CLIDRegistry entries for module ALL
+ClassIDSvc           INFO  getRegistryEntries: read 198 CLIDRegistry entries for module ALL
 CaloIDHelper_ID...   INFO in createObj: creating a CaloDM_ID helper object in the detector store
 CaloDM_ID            INFO initialize_from_dictionary
 AtlasDetectorID      INFO initialize_from_dictionary - OK
@@ -362,12 +362,12 @@ CaloIDHelper_ID...   INFO in createObj: creating a LArHEC_SuperCell_ID helper ob
 AtlasDetectorID      INFO initialize_from_dictionary - OK
 CaloIDHelper_ID...   INFO in createObj: creating a LArFCAL_SuperCell_ID helper object in the detector store
 AtlasDetectorID      INFO initialize_from_dictionary - OK
-LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-06T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/FCalSuperCells2DNeighborsNew-April2014.txt
-LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-06T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/FCalSuperCells3DNeighborsNextNew-April2014.txt
-LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-06T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/FCalSuperCells3DNeighborsPrevNew-April2014.txt
+LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/FCalSuperCells2DNeighborsNew-April2014.txt
+LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/FCalSuperCells3DNeighborsNextNew-April2014.txt
+LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/FCalSuperCells3DNeighborsPrevNew-April2014.txt
 CaloIDHelper_ID...   INFO in createObj: creating a Tile_SuperCell_ID helper object in the detector store
 AtlasDetectorID      INFO initialize_from_dictionary - OK
-TileNeighbour        INFO Reading file  /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-06T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/TileSuperCellNeighbour.txt
+TileNeighbour        INFO Reading file  /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/TileSuperCellNeighbour.txt
 AtlasDetectorID      INFO initialize_from_dictionary - OK
 CaloIdMgrDetDes...   INFO  Finished 
 CaloIdMgrDetDes...   INFO Initializing CaloIdMgr from values in CaloIdMgrDetDescrCnv 
@@ -398,8 +398,8 @@ TileBadChannels...   INFO TileBchStatus::isNoGainL1() is defined by: ADC dead; N
 TileBadChannels...   INFO TileBchStatus::isBadTiming() is defined by: Bad timing; Online bad timing; 
 TileBadChannels...   INFO TileBchStatus::isWrongBCID() is defined by: Wrong BCID; Online wrong BCID; 
 TileBadChannels...   INFO No drawer trips probabilities found in DB
-ClassIDSvc           INFO  getRegistryEntries: read 2448 CLIDRegistry entries for module ALL
-ClassIDSvc           INFO  getRegistryEntries: read 90 CLIDRegistry entries for module ALL
+ClassIDSvc           INFO  getRegistryEntries: read 2265 CLIDRegistry entries for module ALL
+ClassIDSvc           INFO  getRegistryEntries: read 91 CLIDRegistry entries for module ALL
 ToolSvc.TileROD...   INFO TileL2Builder initialization completed
 ToolSvc.TileL2C...   INFO Initializing TileL2ContByteStreamTool
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #1129572, run #204073 1 events processed so far  <<<===
@@ -614,53 +614,53 @@ Finalize: compared 10 dumps
 IncidentProcAlg2     INFO Finalize
 PyComponentMgr       INFO Finalizing PyComponentMgr...
 IdDictDetDescrCnv    INFO in finalize
-IOVDbFolder          INFO Folder /LAR/Align (PoolRef) db-read 1/1 objs/chan/bytes 1/1/170 ((     0.84 ))s
-IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/CES (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/103344 ((     0.95 ))s
-IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/CIS/FIT/LIN (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/80 ((     0.81 ))s
-IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/CIS/FIT/NLN (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/80 ((     0.83 ))s
-IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/EMS (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/92 ((     0.61 ))s
-IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/LAS/FIBER (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/940 ((     0.59 ))s
-IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/LAS/LIN (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/72 ((     0.56 ))s
-IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/LAS/NLN (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/76 ((     0.72 ))s
-IOVDbFolder          INFO Folder /TILE/OFL02/NOISE/SAMPLE (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/641504 ((     0.61 ))s
+IOVDbFolder          INFO Folder /LAR/Align (PoolRef) db-read 1/1 objs/chan/bytes 1/1/170 ((     0.05 ))s
+IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/CES (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/103344 ((     0.04 ))s
+IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/CIS/FIT/LIN (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/80 ((     0.04 ))s
+IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/CIS/FIT/NLN (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/80 ((     0.04 ))s
+IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/EMS (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/92 ((     0.03 ))s
+IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/LAS/FIBER (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/940 ((     0.03 ))s
+IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/LAS/LIN (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/72 ((     0.04 ))s
+IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/LAS/NLN (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/76 ((     0.04 ))s
+IOVDbFolder          INFO Folder /TILE/OFL02/NOISE/SAMPLE (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/641504 ((     0.04 ))s
 IOVDbFolder          INFO Folder /TILE/OFL02/STATUS/ADC (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/93060 ((     0.03 ))s
-IOVDbFolder          INFO Folder /TILE/OFL02/TIME/CHANNELOFFSET/PHY (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/96 ((     0.02 ))s
-IOVDbFolder          INFO Folder /TILE/ONL01/STATUS/ADC (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/76 ((     0.00 ))s
-IOVDbFolder          INFO Folder /LAR/LArCellPositionShift (PoolRef) db-read 1/1 objs/chan/bytes 1/1/195 ((     0.36 ))s
-IOVDbSvc             INFO  bytes in ((      6.95 ))s
+IOVDbFolder          INFO Folder /TILE/OFL02/TIME/CHANNELOFFSET/PHY (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/96 ((     0.03 ))s
+IOVDbFolder          INFO Folder /TILE/ONL01/STATUS/ADC (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/76 ((     0.01 ))s
+IOVDbFolder          INFO Folder /LAR/LArCellPositionShift (PoolRef) db-read 1/1 objs/chan/bytes 1/1/195 ((     0.02 ))s
+IOVDbSvc             INFO  bytes in ((      0.44 ))s
 IOVDbSvc             INFO Connection sqlite://;schema=mycool.db;dbname=OFLP200 : nConnect: 0 nFolders: 0 ReadTime: ((     0.00 ))s
-IOVDbSvc             INFO Connection COOLOFL_LAR/OFLP200 : nConnect: 2 nFolders: 2 ReadTime: ((     1.20 ))s
-IOVDbSvc             INFO Connection COOLOFL_TILE/OFLP200 : nConnect: 2 nFolders: 11 ReadTime: ((     5.74 ))s
+IOVDbSvc             INFO Connection COOLOFL_LAR/OFLP200 : nConnect: 2 nFolders: 2 ReadTime: ((     0.07 ))s
+IOVDbSvc             INFO Connection COOLOFL_TILE/OFLP200 : nConnect: 2 nFolders: 11 ReadTime: ((     0.37 ))s
 AthDictLoaderSvc     INFO in finalize...
 ToolSvc              INFO Removing all tools created by ToolSvc
-ToolSvc.ByteStr...   INFO in finalize()
 ToolSvc.TileROD...   INFO Finalizing
+ToolSvc.ByteStr...   INFO in finalize()
 *****Chrono*****     INFO ****************************************************************************************************
 *****Chrono*****     INFO  The Final CPU consumption ( Chrono ) Table (ordered)
 *****Chrono*****     INFO ****************************************************************************************************
-cObjR_ALL            INFO Time User   : Tot=  340 [ms] Ave/Min/Max=  170(+-  160)/   10/  330 [ms] #=  2
-cObj_ALL             INFO Time User   : Tot=  380 [ms] Ave/Min/Max= 29.2(+- 92.9)/    0/  350 [ms] #= 13
-ChronoStatSvc        INFO Time User   : Tot= 9.76  [s]                                             #=  1
+cObjR_ALL            INFO Time User   : Tot=  300 [ms] Ave/Min/Max=  150(+-  140)/   10/  290 [ms] #=  2
+cObj_ALL             INFO Time User   : Tot=  320 [ms] Ave/Min/Max= 24.6(+- 79.7)/    0/  300 [ms] #= 13
+ChronoStatSvc        INFO Time User   : Tot= 6.46  [s]                                             #=  1
 *****Chrono*****     INFO ****************************************************************************************************
 ChronoStatSvc.f...   INFO  Service finalized successfully 
 ApplicationMgr       INFO Application Manager Finalized successfully
 ApplicationMgr       INFO Application Manager Terminated successfully
 Py:Athena            INFO leaving with code 0: "successful run"
-Wed Aug  7 22:11:05 CEST 2019
+Fri Nov 29 11:11:18 CET 2019
 Preloading tcmalloc_minimal.so
 Py:Athena            INFO including file "AthenaCommon/Preparation.py"
-Py:Athena            INFO using release [WorkDir-22.0.3] [x86_64-centos7-gcc8-opt] [test.TileRecUtils-20190807/f9360ea601f] -- built on [2019-08-07T2151]
+Py:Athena            INFO using release [WorkDir-22.0.9] [x86_64-centos7-gcc8-opt] [tilecal-12bit/82699bf159] -- built on [2019-11-29T1101]
 Py:Athena            INFO including file "AthenaCommon/Atlas.UnixStandardJob.py"
 Py:Athena            INFO executing ROOT6Setup
 Py:Athena            INFO configuring AthenaHive with [4] concurrent threads and [4] concurrent events
 Py:AlgScheduler      INFO setting up AvalancheSchedulerSvc/AvalancheSchedulerSvc with 4 threads
 Py:Athena            INFO including file "AthenaCommon/Execution.py"
 Py:Athena            INFO including file "TileByteStream/TileL2ContByteStreamCnv_test.py"
-SetGeometryVersion.py obtained major release version 22
+Py:Athena            INFO SetGeometryVersion.py obtained major release version 22
 Py:Athena            INFO including file "IdDictDetDescrCnv/IdDictDetDescrCnv_joboptions.py"
-Py:ConfigurableDb    INFO Read module info for 5518 configurables from 5 genConfDb files
+Py:ConfigurableDb    INFO Read module info for 5635 configurables from 11 genConfDb files
 Py:ConfigurableDb    INFO No duplicates have been found: that's good !
-EventInfoMgtInit: Got release version  Athena-22.0.3
+EventInfoMgtInit: Got release version  Athena-22.0.9
 Py:IOVDbSvc.CondDB    INFO Setting up conditions DB access to instance OFLP200
 Py:Athena            INFO including file "TileConditions/TileConditions_jobOptions.py"
 Py:TileInfoConf.     INFO Adding TileCablingSvc to ServiceMgr
@@ -672,251 +672,251 @@ Py:TileInfoConf.     INFO Changing default TileCondToolEmscale configuration to
 Py:TileInfoConf.     INFO Changing default TileCondToolNoiseSample configuration to COOL source
 Py:TileInfoConf.     INFO Changing default TileCondToolTiming configuration to COOL source
 Py:TileConditions_jobOptions.py    INFO Adjusting TileInfo to return cell noise for Opt.Filter without iterations
+Py:TileConditions_jobOptions.py    INFO Setting 10-bit ADC configuration
+Py:TileInfoConf.     INFO Setting 10-bit Tile ADC
 Py:Athena            INFO including file "AthenaCommon/runbatch.py"
 ApplicationMgr       INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0
 ApplicationMgr       INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0
 MessageSvc           INFO Activating in a separate thread
 ApplicationMgr    SUCCESS 
 ====================================================================================================================================
-                                                   Welcome to ApplicationMgr (GaudiCoreSvc v32r0)
-                                          running on lxplus725.cern.ch on Wed Aug  7 22:11:17 2019
+                                                   Welcome to ApplicationMgr (GaudiCoreSvc v32r2)
+                                          running on pcpraha5 on Fri Nov 29 11:11:24 2019
 ====================================================================================================================================
 ApplicationMgr       INFO Application Manager Configured successfully
-ApplicationMgr                                     INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0
-AthDictLoaderSvc                                   INFO in initialize...
-AthDictLoaderSvc                                   INFO acquired Dso-registry
-ClassIDSvc                                         INFO  getRegistryEntries: read 7717 CLIDRegistry entries for module ALL
-CoreDumpSvc                                        INFO install f-a-t-a-l handler... (flag = -1)
-CoreDumpSvc                                        INFO Handling signals: 11(Segmentation fault) 7(Bus error) 4(Illegal instruction) 8(Floating point exception) 
-MetaDataSvc                                        INFO Initializing MetaDataSvc - package version AthenaServices-00-00-00
-AthenaPoolCnvSvc                                   INFO Initializing AthenaPoolCnvSvc - package version AthenaPoolCnvSvc-00-00-00
-PoolSvc                                            INFO io_register[PoolSvc](xmlcatalog_file:PoolFileCatalog.xml) [ok]
-PoolSvc                                            INFO Set connectionsvc retry/timeout/IDLE timeout to  'ConnectionRetrialPeriod':300/ 'ConnectionRetrialTimeOut':3600/ 'ConnectionTimeOut':5 seconds with connection cleanup disabled
-PoolSvc                                            INFO Frontier compression level set to 5
-DBReplicaSvc                                       INFO Frontier server at (serverurl=http://atlasfrontier-local.cern.ch:8000/atlr)(serverurl=http://atlasfrontier-ai.cern.ch:8000/atlr)(serverurl=http://lcgft-atlas.gridpp.rl.ac.uk:3128/frontierATLAS)(serverurl=http://ccfrontier.in2p3.fr:23128/ccin2p3-AtlasFrontier)(proxyurl=http://ca-proxy.cern.ch:3128)(proxyurl=http://ca-proxy-meyrin.cern.ch:3128)(proxyurl=http://ca-proxy-wigner.cern.ch:3128)(proxyurl=http://atlasbpfrontier.cern.ch:3127)(proxyurl=http://atlasbpfrontier.fnal.gov:3127) will be considered for COOL data
-DBReplicaSvc                                       INFO Read replica configuration from /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-06T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/dbreplica.config
-DBReplicaSvc                                       INFO Total of 10 servers found for host lxplus725.cern.ch [ATLF ATLAS_COOLPROD atlas_dd ATLAS_CONFIG INT8R INTR ATONR_COOL ATONR_CONF DEVDB11 ATLF ]
-PoolSvc                                            INFO Successfully setup replica sorting algorithm
-PoolSvc                                            INFO Setting up APR FileCatalog and Streams
-PoolSvc                                         WARNING Unable to locate catalog for prfile:poolcond/PoolCat_oflcond.xml check your ATLAS_POOLCOND_PATH and DATAPATH variables
-PoolSvc                                         WARNING Unable to locate catalog for apcfile:poolcond/PoolCat_oflcond.xml check your ATLAS_POOLCOND_PATH and DATAPATH variables
-PoolSvc                                            INFO Resolved path (via ATLAS_POOLCOND_PATH) is /cvmfs/atlas-condb.cern.ch/repo/conditions/poolcond/PoolFileCatalog.xml
-PoolSvc                                            INFO POOL WriteCatalog is xmlcatalog_file:PoolFileCatalog.xml
-DbSession                                          INFO     Open     DbSession    
-Domain[ROOT_All]                                   INFO >   Access   DbDomain     READ      [ROOT_All] 
-ToolSvc.ByteStreamMetadataTool                     INFO Initializing ToolSvc.ByteStreamMetadataTool - package version ByteStreamCnvSvc-00-00-00
-MetaDataSvc                                        INFO Found MetaDataTools = PublicToolHandleArray(['IOVDbMetaDataTool','ByteStreamMetadataTool'])
-IOVDbSvc                                           INFO Opened read transaction for POOL PersistencySvc
-IOVDbSvc                                           INFO Only 5 POOL conditions files will be open at once
-IOVDbSvc                                           INFO Cache alignment will be done in 3 slices
-IOVDbSvc                                           INFO Global tag: OFLCOND-RUN12-SDR-35 set from joboptions
-IOVDbFolder                                        INFO Read from meta data only for folder /TagInfo
-IOVDbSvc                                           INFO Initialised with 3 connections and 14 folders
-IOVDbSvc                                           INFO Service IOVDbSvc initialised successfully
-ByteStreamAddressProviderSvc                       INFO Initializing ByteStreamAddressProviderSvc - package version ByteStreamCnvSvcBase-00-00-00
-ByteStreamAddressProviderSvc                       INFO initialized 
-ByteStreamAddressProviderSvc                       INFO -- Will fill Store with id =  0
-IOVDbSvc                                           INFO preLoadAddresses: Removing folder /TagInfo. It should only be in the file meta data and was not found.
-IOVDbSvc                                           INFO Opening COOL connection for COOLOFL_LAR/OFLP200
-ClassIDSvc                                         INFO  getRegistryEntries: read 3223 CLIDRegistry entries for module ALL
-IOVSvc                                             INFO No IOVSvcTool associated with store "StoreGateSvc"
-IOVSvc.IOVSvcTool                                  INFO IOVRanges will be checked at every Event
-IOVDbSvc                                           INFO Opening COOL connection for COOLOFL_TILE/OFLP200
-IOVDbSvc                                           INFO Disconnecting from COOLOFL_LAR/OFLP200
-IOVDbSvc                                           INFO Disconnecting from COOLOFL_TILE/OFLP200
-IOVDbSvc                                           INFO Added taginfo remove for /LAR/Align
-IOVDbSvc                                           INFO Added taginfo remove for /TILE/OFL02/CALIB/CES
-IOVDbSvc                                           INFO Added taginfo remove for /TILE/OFL02/CALIB/CIS/FIT/LIN
-IOVDbSvc                                           INFO Added taginfo remove for /TILE/OFL02/CALIB/CIS/FIT/NLN
-IOVDbSvc                                           INFO Added taginfo remove for /TILE/OFL02/CALIB/EMS
-IOVDbSvc                                           INFO Added taginfo remove for /TILE/OFL02/CALIB/LAS/FIBER
-IOVDbSvc                                           INFO Added taginfo remove for /TILE/OFL02/CALIB/LAS/LIN
-IOVDbSvc                                           INFO Added taginfo remove for /TILE/OFL02/CALIB/LAS/NLN
-IOVDbSvc                                           INFO Added taginfo remove for /TILE/OFL02/NOISE/SAMPLE
-IOVDbSvc                                           INFO Added taginfo remove for /TILE/OFL02/STATUS/ADC
-IOVDbSvc                                           INFO Added taginfo remove for /TILE/OFL02/TIME/CHANNELOFFSET/PHY
-IOVDbSvc                                           INFO Added taginfo remove for /TILE/ONL01/STATUS/ADC
-IOVDbSvc                                           INFO Added taginfo remove for /LAR/LArCellPositionShift
-ClassIDSvc                                         INFO  getRegistryEntries: read 769 CLIDRegistry entries for module ALL
-ClassIDSvc                                         INFO  getRegistryEntries: read 17 CLIDRegistry entries for module ALL
-DetDescrCnvSvc                                     INFO  initializing 
-DetDescrCnvSvc                                     INFO Found DetectorStore service
-DetDescrCnvSvc                                     INFO  filling proxies for detector managers 
-DetDescrCnvSvc                                     INFO  filling address for CaloTTMgr with CLID 117659265 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for CaloMgr with CLID 4548337 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for CaloSuperCellMgr with CLID 241807251 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for CaloIdManager with CLID 125856940 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for LArIdManager with CLID 79554919 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for IdDict with CLID 2411 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for AtlasID with CLID 164875623 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for PixelID with CLID 2516 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for SCT_ID with CLID 2517 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for TRT_ID with CLID 2518 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for SiliconID with CLID 129452393 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for LArEM_ID with CLID 163583365 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for LArEM_SuperCell_ID with CLID 99488227 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for LArHEC_ID with CLID 3870484 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for LArHEC_SuperCell_ID with CLID 254277678 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for LArFCAL_ID with CLID 45738051 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for LArFCAL_SuperCell_ID with CLID 12829437 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for LArMiniFCAL_ID with CLID 79264204 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for LArOnlineID with CLID 158698068 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for TTOnlineID with CLID 38321944 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for LArOnline_SuperCellID with CLID 115600394 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for LArHVLineID with CLID 27863673 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for LArElectrodeID with CLID 80757351 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for TileID with CLID 2901 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for Tile_SuperCell_ID with CLID 49557789 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for TileHWID with CLID 2902 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for TileTBID with CLID 2903 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for MDTIDHELPER with CLID 4170 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for CSCIDHELPER with CLID 4171 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for RPCIDHELPER with CLID 4172 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for TGCIDHELPER with CLID 4173 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for STGCIDHELPER with CLID 4174 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for MMIDHELPER with CLID 4175 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for CaloLVL1_ID with CLID 108133391 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for CaloCell_ID with CLID 123500438 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for CaloCell_SuperCell_ID with CLID 128365736 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for CaloDM_ID with CLID 167756483 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for ZdcID with CLID 190591643 and storage type 68 to detector store 
-GeoModelSvc::RDBMaterialManager                 WARNING  Getting PixTBMatComponents with default tag
-GeoModelSvc::RDBMaterialManager                 WARNING  Getting PixTBMaterials with default tag
-GeoModelSvc::RDBMaterialManager                 WARNING  Getting InDetMatComponents with default tag
-GeoModelSvc::RDBMaterialManager                 WARNING  Getting InDetMaterials with default tag
-EventPersistencySvc                                INFO Added successfully Conversion service:DetDescrCnvSvc
-LArElectrodeIDDetDescrCnv                          INFO in createObj: creating a LArElectrodeID helper object in the detector store
-IdDictDetDescrCnv                                  INFO in initialize
-IdDictDetDescrCnv                                  INFO in createObj: creating a IdDictManager object in the detector store
-IdDictDetDescrCnv                                  INFO IdDictName:  IdDictParser/ATLAS_IDS.xml
-IdDictDetDescrCnv                                  INFO Reading InnerDetector    IdDict file InDetIdDictFiles/IdDictInnerDetector_IBL3D25-03.xml
-IdDictDetDescrCnv                                  INFO Reading LArCalorimeter   IdDict file IdDictParser/IdDictLArCalorimeter_DC3-05-Comm-01.xml
-IdDictDetDescrCnv                                  INFO Reading TileCalorimeter  IdDict file IdDictParser/IdDictTileCalorimeter.xml
-IdDictDetDescrCnv                                  INFO Reading Calorimeter      IdDict file IdDictParser/IdDictCalorimeter_L1Onl.xml
-IdDictDetDescrCnv                                  INFO Reading MuonSpectrometer IdDict file IdDictParser/IdDictMuonSpectrometer_R.03.xml
-IdDictDetDescrCnv                                  INFO Reading ForwardDetectors IdDict file IdDictParser/IdDictForwardDetectors_2010.xml
-IdDictDetDescrCnv                                  INFO Found id dicts:
-IdDictDetDescrCnv                                  INFO Using dictionary tag: null
-IdDictDetDescrCnv                                  INFO Dictionary ATLAS                version default              DetDescr tag (using default) file 
-IdDictDetDescrCnv                                  INFO Dictionary Calorimeter          version default              DetDescr tag CaloIdentifier-LVL1-02 file IdDictParser/IdDictCalorimeter_L1Onl.xml
-IdDictDetDescrCnv                                  INFO Dictionary ForwardDetectors     version default              DetDescr tag ForDetIdentifier-01       file IdDictParser/IdDictForwardDetectors_2010.xml
-IdDictDetDescrCnv                                  INFO Dictionary InnerDetector        version IBL-DBM              DetDescr tag InDetIdentifier-IBL3D25-02 file InDetIdDictFiles/IdDictInnerDetector_IBL3D25-03.xml
-IdDictDetDescrCnv                                  INFO Dictionary LArCalorimeter       version fullAtlas            DetDescr tag LArIdentifier-DC3-05-Comm file IdDictParser/IdDictLArCalorimeter_DC3-05-Comm-01.xml
-IdDictDetDescrCnv                                  INFO Dictionary LArElectrode         version fullAtlas            DetDescr tag (using default) file 
-IdDictDetDescrCnv                                  INFO Dictionary LArHighVoltage       version fullAtlas            DetDescr tag (using default) file 
-IdDictDetDescrCnv                                  INFO Dictionary MuonSpectrometer     version R.03                 DetDescr tag MuonIdentifier-08         file IdDictParser/IdDictMuonSpectrometer_R.03.xml
-IdDictDetDescrCnv                                  INFO Dictionary TileCalorimeter      version fullAtlasAndTestBeam DetDescr tag TileIdentifier-00         file IdDictParser/IdDictTileCalorimeter.xml
-LArElectrodeID                                     INFO  => initialize_from_dictionary()
-AtlasDetectorID                                    INFO initialize_from_dictionary - OK
-AtlasDetectorID                                    INFO initialize_from_dictionary - OK
-LArHVLineIDDetDescrCnv                             INFO in createObj: creating a LArHVLineID helper object in the detector store
-LArHVLineID                                        INFO  => initialize_from_dictionary()
-AtlasDetectorID                                    INFO initialize_from_dictionary - OK
-AtlasDetectorID                                    INFO initialize_from_dictionary - OK
-LArHVLineID                                        INFO  => initialize_from_dictionary(dict_mgr) =0
-LArHVLineID                                        INFO Register_dict_tag of LArHighVoltage is OK
-LArHVLineID                                        INFO setDictVersion of LArHighVoltage is OK
-LArHVLineID                                        INFO [initLevelsFromDict] m_dict OK ... 
-LArHVLineID                                        INFO [initialize_from_dictionary] >  HV line range -> 11/1/48:79/0:15 | 11/1/148:179/0:15 | 11/1/80:93/0:7 | 11/1/180:193/0:7 | 11/1/200:231/0:15 | 11/1/232:263/0:15 | 11/1/296,297,306,307/0:15 | 11/1/299,304,305,308,309/0:15 | 11/1/264:279/0:15 | 11/1/280:295/0:15 | 11/1/0:47/0:15 | 11/1/320:322/0:15 | 11/1/100:147/0:15 | 11/1/324,325/0:15 | 11/1/312:315/0:15 | 11/1/316:319/0:15 | 11/1/300:303/0:15 | 11/1/310,311/0:15 | 11/1/323/0:15 | 11/1/326,327/0:15 | 11/1/94:99/0:15 | 11/1/194:199/0:15
-LArHVLineID                                        INFO [init_hashes()] > Hvline_size= 5008
-GeoModelSvc.LArDetectorToolNV                      INFO Keys for LAr are ATLAS-R2-2016-01-00-01  ATLAS
-GeoModelSvc.LArDetectorToolNV                      INFO Building LAr version LAr-Revised-17-01 while ATLAS version is ATLAS-R2-2016-01-00-01
-GeoModelSvc.LArDetectorToolNV                      INFO LAr Geometry Options:
-GeoModelSvc.LArDetectorToolNV                      INFO   Sagging           = false
-GeoModelSvc.LArDetectorToolNV                      INFO   Barrel            = ON
-GeoModelSvc.LArDetectorToolNV                      INFO   Endcap            = ON
-BarrelConstruction                                 INFO Getting primary numbers for ATLAS, ATLAS-R2-2016-01-00-01
-BarrelConstruction                                 INFO   Makes detailed absorber sandwich  ? 1 1
-BarrelConstruction                                 INFO   Use sagging in geometry  ? 0
-EMECConstruction                                   INFO multi-layered version of absorbers activated, parameter value is 1
-EMECConstruction                                   INFO activating LAr::EMEC::Pos::InnerWheel
-EMECConstruction                                   INFO activating LAr::EMEC::Pos::OuterWheel
-ClassIDSvc                                         INFO  getRegistryEntries: read 2901 CLIDRegistry entries for module ALL
-CaloIDHelper_IDDetDescrCnv                         INFO in createObj: creating a TileTBID helper object in the detector store
-TileTBID                                           INFO initialize_from_dictionary 
-AtlasDetectorID                                    INFO initialize_from_dictionary - OK
-EndcapDMConstruction                               INFO Start building EC electronics geometry
-EMECConstruction                                   INFO multi-layered version of absorbers activated, parameter value is 1
-EMECConstruction                                   INFO activating LAr::EMEC::Neg::InnerWheel
-EMECConstruction                                   INFO activating LAr::EMEC::Neg::OuterWheel
-EndcapDMConstruction                               INFO Start building EC electronics geometry
-GeoModelSvc                                        INFO GeoModelSvc.LArDetectorToolNV	 SZ= 25368Kb 	 Time = 0.55S
-GeoModelSvc.TileDetectorTool                       INFO  Entering TileDetectorTool::create()
-TileDddbManager                                    INFO m_tag = ATLAS-R2-2016-01-00-01
-TileDddbManager                                    INFO n_tiglob = 5
-TileDddbManager                                    INFO n_timod = 320
-TileDddbManager                                    INFO n_cuts = 9
-TileDddbManager                                    INFO n_saddle = 1
-TileDddbManager                                    INFO n_tilb = 21
-TileDddbManager                                    INFO n_tileSwitches = 1
-CaloIDHelper_IDDetDescrCnv                         INFO in createObj: creating a TileID helper object in the detector store
-AtlasDetectorID                                    INFO initialize_from_dictionary - OK
-TileNeighbour                                      INFO Reading file  /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-06T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/TileNeighbour_reduced.txt
-TileHWIDDetDescrCnv                                INFO in createObj: creating a TileHWID helper object in the detector store
-TileHWID                                           INFO initialize_from_dictionary 
-AtlasDetectorID                                    INFO initialize_from_dictionary - OK
-ClassIDSvc                                         INFO  getRegistryEntries: read 55 CLIDRegistry entries for module ALL
-CaloIDHelper_IDDetDescrCnv                         INFO in createObj: creating a CaloCell_ID helper object in the detector store
-CaloIDHelper_IDDetDescrCnv                         INFO in createObj: creating a LArEM_ID helper object in the detector store
-AtlasDetectorID                                    INFO initialize_from_dictionary - OK
-CaloIDHelper_IDDetDescrCnv                         INFO in createObj: creating a LArHEC_ID helper object in the detector store
-AtlasDetectorID                                    INFO initialize_from_dictionary - OK
-CaloIDHelper_IDDetDescrCnv                         INFO in createObj: creating a LArFCAL_ID helper object in the detector store
-AtlasDetectorID                                    INFO initialize_from_dictionary - OK
-LArFCAL_Base_ID                                    INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-06T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/FCal2DNeighbors-April2011.txt
-LArFCAL_Base_ID                                    INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-06T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/FCal3DNeighborsNext-April2011.txt
-LArFCAL_Base_ID                                    INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-06T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/FCal3DNeighborsPrev-April2011.txt
-CaloIDHelper_IDDetDescrCnv                         INFO in createObj: creating a LArMiniFCAL_ID helper object in the detector store
-AtlasDetectorID                                    INFO initialize_from_dictionary - OK
-LArMiniFCAL_ID                                     INFO  initialize_from_dict - LArCalorimeter dictionary does NOT contain miniFCAL description. Unable to initialize LArMiniFCAL_ID.
-AtlasDetectorID                                    INFO initialize_from_dictionary - OK
-GeoModelSvc.TileDetectorTool                       INFO  U-shape parameter from database is: 1
-GeoModelSvc.TileDetectorTool                       INFO  Glue parameter from database is: 1
-GeoModelSvc.TileDetectorTool                       INFO  Cs Tube parameter from database is: 0
-GeoModelSvc.TileDetectorTool                       INFO  Entering TileAtlasFactory::create()
-GeoModelSvc.TileDetectorTool                       INFO  Tile Geometry with Saddle supports, starting from TileCal-CSC-02 xxx
-GeoModelSvc.TileDetectorTool                       INFO  => New BFingerLengthPos 430.5
-GeoModelSvc.TileDetectorTool                       INFO  => New BFingerLengthNeg 420.5
-GeoModelSvc.TileDetectorTool                       INFO  Positioning barrel with translation 0
-GeoModelSvc.TileDetectorTool                       INFO  Positioning positive barrel finger with translation 3035.25
-GeoModelSvc.TileDetectorTool                       INFO  Positioning negative barrel finger with translation -3030.25
-GeoModelSvc.TileDetectorTool                       INFO  Positioning positive ext.barrel with translation 4854.75
-GeoModelSvc.TileDetectorTool                       INFO  Positioning positive ext.barrel finger with translation ztrans= 6338.5
-GeoModelSvc.TileDetectorTool                       INFO  Positioning positive ext.barrel saddle with translation ztrans= 6192.5
-GeoModelSvc.TileDetectorTool                       INFO  Positive ITC envelope parameters: PLUG1  Rmin= 3438.85 Rmax= 4250 dzITC1= 154.5
-GeoModelSvc.TileDetectorTool                       INFO                                    PLUG2  Rmin= 2981 Rmax= 3440 dzITC2= 47.425
-GeoModelSvc.TileDetectorTool                       INFO  Positioning positive ITC with translation 3405
-GeoModelSvc.TileDetectorTool                       INFO  Positioning positive Gap with translation 3552
-GeoModelSvc.TileDetectorTool                       INFO  Positioning positive Crack with translation 3536
-GeoModelSvc.TileDetectorTool                       INFO  Positioning negative ext.barrel with translation ztrans -4854.75
-GeoModelSvc.TileDetectorTool                       INFO  Positioning negative ext.barrel finger with translation ztrans= -6338.5
-GeoModelSvc.TileDetectorTool                       INFO  Positioning negative ext.barrel saddle with translation ztrans= -6192.5
-GeoModelSvc.TileDetectorTool                       INFO  Negative ITC envelope parameters: PLUG1  Rmin= 3438.85 Rmax= 4250 dzITC1= 154.5
-GeoModelSvc.TileDetectorTool                       INFO                                    PLUG2  Rmin= 2981 Rmax= 3440 dzITC2= 47.425
-GeoModelSvc.TileDetectorTool                       INFO  Positioning negative ITC with translation -3405
-GeoModelSvc.TileDetectorTool                       INFO  Positioning negative Gap with translation -3552
-GeoModelSvc.TileDetectorTool                       INFO  Positioning negative Crack with translation -3536
-GeoModelSvc.TileDetectorTool                       INFO  Global positioning of barrel with rotation (0,0,0)) and translation (0,0,0) Gaudi::Units::cm
-GeoModelSvc.TileDetectorTool                       INFO  Global positioning of positive ext.barrel with rotation (0,0,0)) and translation (0,0,0) Gaudi::Units::cm
-GeoModelSvc.TileDetectorTool                       INFO  Global positioning of negative ext.barrel with rotation (0,0,0)) and translation (0,0,1) Gaudi::Units::cm
-TileDetDescrManager                                INFO Entering create_elements()
-GeoModelSvc                                        INFO GeoModelSvc.TileDetectorTool	 SZ= 2552Kb 	 Time = 0.18S
-ClassIDSvc                                         INFO  getRegistryEntries: read 66 CLIDRegistry entries for module ALL
-TileInfoLoader                                     INFO Changing TTL1 calib from 4.1 to 6.9
-TileInfoLoader                                     INFO Changing TTL1 noise sigma from 2.5 to 2.8
-CaloIDHelper_IDDetDescrCnv                         INFO in createObj: creating a CaloLVL1_ID helper object in the detector store
-CaloLVL1_ID                                        INFO initialize_from_dictionary
-AtlasDetectorID                                    INFO initialize_from_dictionary - OK
-TileCablingSvc                                     INFO RUN2 ATLAS geometry flag detected for geometry: ATLAS-R2-2016-01-00-01
-TileCablingSvc                                     INFO Cabling for RUN2 (2014-2017) ATLAS geometry is set via jobOptions 
-TileCablingSvc                                     INFO Setting Cabling type to 4
-AthenaHiveEventLoopMgr                             INFO Initializing AthenaHiveEventLoopMgr - package version AthenaServices-00-00-00
-ClassIDSvc                                  0      INFO  getRegistryEntries: read 4192 CLIDRegistry entries for module ALL
-PyComponentMgr                              0      INFO Initializing PyComponentMgr...
-Finalizer                                   0      INFO Initializing Finalizer...
-ClassIDSvc                                  0      INFO  getRegistryEntries: read 53 CLIDRegistry entries for module ALL
-CondInputLoader                             0      INFO Initializing CondInputLoader...
-CondInputLoader                             0      INFO Adding base classes:
+ApplicationMgr                                      INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0
+AthDictLoaderSvc                                    INFO in initialize...
+AthDictLoaderSvc                                    INFO acquired Dso-registry
+ClassIDSvc                                          INFO  getRegistryEntries: read 7790 CLIDRegistry entries for module ALL
+CoreDumpSvc                                         INFO install f-a-t-a-l handler... (flag = -1)
+CoreDumpSvc                                         INFO Handling signals: 11(Segmentation fault) 7(Bus error) 4(Illegal instruction) 8(Floating point exception) 
+MetaDataSvc                                         INFO Initializing MetaDataSvc - package version AthenaServices-00-00-00
+AthenaPoolCnvSvc                                    INFO Initializing AthenaPoolCnvSvc - package version AthenaPoolCnvSvc-00-00-00
+PoolSvc                                             INFO io_register[PoolSvc](xmlcatalog_file:PoolFileCatalog.xml) [ok]
+PoolSvc                                             INFO Set connectionsvc retry/timeout/IDLE timeout to  'ConnectionRetrialPeriod':300/ 'ConnectionRetrialTimeOut':3600/ 'ConnectionTimeOut':5 seconds with connection cleanup disabled
+PoolSvc                                             INFO Frontier compression level set to 5
+DBReplicaSvc                                        INFO Frontier server at (serverurl=http://atlasfrontier-local.cern.ch:8000/atlr)(serverurl=http://atlasfrontier-ai.cern.ch:8000/atlr)(serverurl=http://lcgft-atlas.gridpp.rl.ac.uk:3128/frontierATLAS)(serverurl=http://ccfrontier.in2p3.fr:23128/ccin2p3-AtlasFrontier)(proxyurl=http://ca-proxy.cern.ch:3128)(proxyurl=http://ca-proxy-meyrin.cern.ch:3128)(proxyurl=http://ca-proxy-wigner.cern.ch:3128)(proxyurl=http://atlasbpfrontier.cern.ch:3127)(proxyurl=http://atlasbpfrontier.fnal.gov:3127) will be considered for COOL data
+DBReplicaSvc                                        INFO Read replica configuration from /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/dbreplica.config
+DBReplicaSvc                                        INFO Total of 10 servers found for host pcpraha5.dyndns.cern.ch [ATLF ATLAS_COOLPROD atlas_dd ATLAS_CONFIG INT8R INTR ATONR_COOL ATONR_CONF DEVDB11 ATLF ]
+PoolSvc                                             INFO Successfully setup replica sorting algorithm
+PoolSvc                                             INFO Setting up APR FileCatalog and Streams
+PoolSvc                                          WARNING Unable to locate catalog for prfile:poolcond/PoolCat_oflcond.xml check your ATLAS_POOLCOND_PATH and DATAPATH variables
+PoolSvc                                          WARNING Unable to locate catalog for apcfile:poolcond/PoolCat_oflcond.xml check your ATLAS_POOLCOND_PATH and DATAPATH variables
+PoolSvc                                             INFO Resolved path (via ATLAS_POOLCOND_PATH) is /cvmfs/atlas-condb.cern.ch/repo/conditions/poolcond/PoolFileCatalog.xml
+PoolSvc                                             INFO POOL WriteCatalog is xmlcatalog_file:PoolFileCatalog.xml
+DbSession                                           INFO     Open     DbSession    
+Domain[ROOT_All]                                    INFO >   Access   DbDomain     READ      [ROOT_All] 
+ToolSvc.ByteStreamMetadataTool                      INFO Initializing ToolSvc.ByteStreamMetadataTool - package version ByteStreamCnvSvc-00-00-00
+MetaDataSvc                                         INFO Found MetaDataTools = PublicToolHandleArray(['IOVDbMetaDataTool','ByteStreamMetadataTool'])
+IOVDbSvc                                            INFO Opened read transaction for POOL PersistencySvc
+IOVDbSvc                                            INFO Only 5 POOL conditions files will be open at once
+IOVDbSvc                                            INFO Cache alignment will be done in 3 slices
+IOVDbSvc                                            INFO Global tag: OFLCOND-RUN12-SDR-35 set from joboptions
+IOVDbFolder                                         INFO Read from meta data only for folder /TagInfo
+IOVDbSvc                                            INFO Initialised with 3 connections and 14 folders
+IOVDbSvc                                            INFO Service IOVDbSvc initialised successfully
+ByteStreamAddressProviderSvc                        INFO Initializing ByteStreamAddressProviderSvc - package version ByteStreamCnvSvcBase-00-00-00
+ByteStreamAddressProviderSvc                        INFO initialized 
+ByteStreamAddressProviderSvc                        INFO -- Will fill Store with id =  0
+IOVDbSvc                                            INFO preLoadAddresses: Removing folder /TagInfo. It should only be in the file meta data and was not found.
+IOVDbSvc                                            INFO Opening COOL connection for COOLOFL_LAR/OFLP200
+ClassIDSvc                                          INFO  getRegistryEntries: read 3291 CLIDRegistry entries for module ALL
+IOVSvc                                              INFO No IOVSvcTool associated with store "StoreGateSvc"
+IOVSvc.IOVSvcTool                                   INFO IOVRanges will be checked at every Event
+IOVDbSvc                                            INFO Opening COOL connection for COOLOFL_TILE/OFLP200
+IOVDbSvc                                            INFO Disconnecting from COOLOFL_LAR/OFLP200
+IOVDbSvc                                            INFO Disconnecting from COOLOFL_TILE/OFLP200
+IOVDbSvc                                            INFO Added taginfo remove for /LAR/Align
+IOVDbSvc                                            INFO Added taginfo remove for /TILE/OFL02/CALIB/CES
+IOVDbSvc                                            INFO Added taginfo remove for /TILE/OFL02/CALIB/CIS/FIT/LIN
+IOVDbSvc                                            INFO Added taginfo remove for /TILE/OFL02/CALIB/CIS/FIT/NLN
+IOVDbSvc                                            INFO Added taginfo remove for /TILE/OFL02/CALIB/EMS
+IOVDbSvc                                            INFO Added taginfo remove for /TILE/OFL02/CALIB/LAS/FIBER
+IOVDbSvc                                            INFO Added taginfo remove for /TILE/OFL02/CALIB/LAS/LIN
+IOVDbSvc                                            INFO Added taginfo remove for /TILE/OFL02/CALIB/LAS/NLN
+IOVDbSvc                                            INFO Added taginfo remove for /TILE/OFL02/NOISE/SAMPLE
+IOVDbSvc                                            INFO Added taginfo remove for /TILE/OFL02/STATUS/ADC
+IOVDbSvc                                            INFO Added taginfo remove for /TILE/OFL02/TIME/CHANNELOFFSET/PHY
+IOVDbSvc                                            INFO Added taginfo remove for /TILE/ONL01/STATUS/ADC
+IOVDbSvc                                            INFO Added taginfo remove for /LAR/LArCellPositionShift
+ClassIDSvc                                          INFO  getRegistryEntries: read 800 CLIDRegistry entries for module ALL
+ClassIDSvc                                          INFO  getRegistryEntries: read 18 CLIDRegistry entries for module ALL
+DetDescrCnvSvc                                      INFO  initializing 
+DetDescrCnvSvc                                      INFO Found DetectorStore service
+DetDescrCnvSvc                                      INFO  filling proxies for detector managers 
+DetDescrCnvSvc                                      INFO  filling address for CaloTTMgr with CLID 117659265 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for CaloMgr with CLID 4548337 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for CaloSuperCellMgr with CLID 241807251 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for CaloIdManager with CLID 125856940 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for LArIdManager with CLID 79554919 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for IdDict with CLID 2411 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for AtlasID with CLID 164875623 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for PixelID with CLID 2516 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for SCT_ID with CLID 2517 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for TRT_ID with CLID 2518 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for SiliconID with CLID 129452393 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for LArEM_ID with CLID 163583365 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for LArEM_SuperCell_ID with CLID 99488227 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for LArHEC_ID with CLID 3870484 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for LArHEC_SuperCell_ID with CLID 254277678 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for LArFCAL_ID with CLID 45738051 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for LArFCAL_SuperCell_ID with CLID 12829437 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for LArMiniFCAL_ID with CLID 79264204 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for LArOnlineID with CLID 158698068 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for TTOnlineID with CLID 38321944 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for LArOnline_SuperCellID with CLID 115600394 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for LArHVLineID with CLID 27863673 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for LArElectrodeID with CLID 80757351 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for TileID with CLID 2901 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for Tile_SuperCell_ID with CLID 49557789 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for TileHWID with CLID 2902 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for TileTBID with CLID 2903 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for MDTIDHELPER with CLID 4170 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for CSCIDHELPER with CLID 4171 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for RPCIDHELPER with CLID 4172 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for TGCIDHELPER with CLID 4173 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for CaloLVL1_ID with CLID 108133391 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for CaloCell_ID with CLID 123500438 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for CaloCell_SuperCell_ID with CLID 128365736 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for CaloDM_ID with CLID 167756483 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for ZdcID with CLID 190591643 and storage type 68 to detector store 
+GeoModelSvc::RDBMaterialManager                  WARNING  Getting PixTBMatComponents with default tag
+GeoModelSvc::RDBMaterialManager                  WARNING  Getting PixTBMaterials with default tag
+GeoModelSvc::RDBMaterialManager                  WARNING  Getting InDetMatComponents with default tag
+GeoModelSvc::RDBMaterialManager                  WARNING  Getting InDetMaterials with default tag
+EventPersistencySvc                                 INFO Added successfully Conversion service:DetDescrCnvSvc
+LArElectrodeIDDetDescrCnv                           INFO in createObj: creating a LArElectrodeID helper object in the detector store
+IdDictDetDescrCnv                                   INFO in initialize
+IdDictDetDescrCnv                                   INFO in createObj: creating a IdDictManager object in the detector store
+IdDictDetDescrCnv                                   INFO IdDictName:  IdDictParser/ATLAS_IDS.xml
+IdDictDetDescrCnv                                   INFO Reading InnerDetector    IdDict file InDetIdDictFiles/IdDictInnerDetector_IBL3D25-03.xml
+IdDictDetDescrCnv                                   INFO Reading LArCalorimeter   IdDict file IdDictParser/IdDictLArCalorimeter_DC3-05-Comm-01.xml
+IdDictDetDescrCnv                                   INFO Reading TileCalorimeter  IdDict file IdDictParser/IdDictTileCalorimeter.xml
+IdDictDetDescrCnv                                   INFO Reading Calorimeter      IdDict file IdDictParser/IdDictCalorimeter_L1Onl.xml
+IdDictDetDescrCnv                                   INFO Reading MuonSpectrometer IdDict file IdDictParser/IdDictMuonSpectrometer_R.03.xml
+IdDictDetDescrCnv                                   INFO Reading ForwardDetectors IdDict file IdDictParser/IdDictForwardDetectors_2010.xml
+IdDictDetDescrCnv                                   INFO Found id dicts:
+IdDictDetDescrCnv                                   INFO Using dictionary tag: null
+IdDictDetDescrCnv                                   INFO Dictionary ATLAS                version default              DetDescr tag (using default) file 
+IdDictDetDescrCnv                                   INFO Dictionary Calorimeter          version default              DetDescr tag CaloIdentifier-LVL1-02 file IdDictParser/IdDictCalorimeter_L1Onl.xml
+IdDictDetDescrCnv                                   INFO Dictionary ForwardDetectors     version default              DetDescr tag ForDetIdentifier-01       file IdDictParser/IdDictForwardDetectors_2010.xml
+IdDictDetDescrCnv                                   INFO Dictionary InnerDetector        version IBL-DBM              DetDescr tag InDetIdentifier-IBL3D25-02 file InDetIdDictFiles/IdDictInnerDetector_IBL3D25-03.xml
+IdDictDetDescrCnv                                   INFO Dictionary LArCalorimeter       version fullAtlas            DetDescr tag LArIdentifier-DC3-05-Comm file IdDictParser/IdDictLArCalorimeter_DC3-05-Comm-01.xml
+IdDictDetDescrCnv                                   INFO Dictionary LArElectrode         version fullAtlas            DetDescr tag (using default) file 
+IdDictDetDescrCnv                                   INFO Dictionary LArHighVoltage       version fullAtlas            DetDescr tag (using default) file 
+IdDictDetDescrCnv                                   INFO Dictionary MuonSpectrometer     version R.03                 DetDescr tag MuonIdentifier-08         file IdDictParser/IdDictMuonSpectrometer_R.03.xml
+IdDictDetDescrCnv                                   INFO Dictionary TileCalorimeter      version fullAtlasAndTestBeam DetDescr tag TileIdentifier-00         file IdDictParser/IdDictTileCalorimeter.xml
+LArElectrodeID                                      INFO  => initialize_from_dictionary()
+AtlasDetectorID                                     INFO initialize_from_dictionary - OK
+AtlasDetectorID                                     INFO initialize_from_dictionary - OK
+LArHVLineIDDetDescrCnv                              INFO in createObj: creating a LArHVLineID helper object in the detector store
+LArHVLineID                                         INFO  => initialize_from_dictionary()
+AtlasDetectorID                                     INFO initialize_from_dictionary - OK
+AtlasDetectorID                                     INFO initialize_from_dictionary - OK
+LArHVLineID                                         INFO  => initialize_from_dictionary(dict_mgr) =0
+LArHVLineID                                         INFO Register_dict_tag of LArHighVoltage is OK
+LArHVLineID                                         INFO setDictVersion of LArHighVoltage is OK
+LArHVLineID                                         INFO [initLevelsFromDict] m_dict OK ... 
+LArHVLineID                                         INFO [initialize_from_dictionary] >  HV line range -> 11/1/48:79/0:15 | 11/1/148:179/0:15 | 11/1/80:93/0:7 | 11/1/180:193/0:7 | 11/1/200:231/0:15 | 11/1/232:263/0:15 | 11/1/296,297,306,307/0:15 | 11/1/299,304,305,308,309/0:15 | 11/1/264:279/0:15 | 11/1/280:295/0:15 | 11/1/0:47/0:15 | 11/1/320:322/0:15 | 11/1/100:147/0:15 | 11/1/324,325/0:15 | 11/1/312:315/0:15 | 11/1/316:319/0:15 | 11/1/300:303/0:15 | 11/1/310,311/0:15 | 11/1/323/0:15 | 11/1/326,327/0:15 | 11/1/94:99/0:15 | 11/1/194:199/0:15
+LArHVLineID                                         INFO [init_hashes()] > Hvline_size= 5008
+GeoModelSvc.LArDetectorToolNV                       INFO Keys for LAr are ATLAS-R2-2016-01-00-01  ATLAS
+GeoModelSvc.LArDetectorToolNV                       INFO Building LAr version LAr-Revised-17-01 while ATLAS version is ATLAS-R2-2016-01-00-01
+GeoModelSvc.LArDetectorToolNV                       INFO LAr Geometry Options:
+GeoModelSvc.LArDetectorToolNV                       INFO   Sagging           = false
+GeoModelSvc.LArDetectorToolNV                       INFO   Barrel            = ON
+GeoModelSvc.LArDetectorToolNV                       INFO   Endcap            = ON
+BarrelConstruction                                  INFO Getting primary numbers for ATLAS, ATLAS-R2-2016-01-00-01
+BarrelConstruction                                  INFO   Makes detailed absorber sandwich  ? 1 1
+BarrelConstruction                                  INFO   Use sagging in geometry  ? 0
+EMECConstruction                                    INFO multi-layered version of absorbers activated, parameter value is 1
+EMECConstruction                                    INFO activating LAr::EMEC::Pos::InnerWheel
+EMECConstruction                                    INFO activating LAr::EMEC::Pos::OuterWheel
+ClassIDSvc                                          INFO  getRegistryEntries: read 2901 CLIDRegistry entries for module ALL
+CaloIDHelper_IDDetDescrCnv                          INFO in createObj: creating a TileTBID helper object in the detector store
+TileTBID                                            INFO initialize_from_dictionary 
+AtlasDetectorID                                     INFO initialize_from_dictionary - OK
+EndcapDMConstruction                                INFO Start building EC electronics geometry
+EMECConstruction                                    INFO multi-layered version of absorbers activated, parameter value is 1
+EMECConstruction                                    INFO activating LAr::EMEC::Neg::InnerWheel
+EMECConstruction                                    INFO activating LAr::EMEC::Neg::OuterWheel
+EndcapDMConstruction                                INFO Start building EC electronics geometry
+GeoModelSvc                                         INFO GeoModelSvc.LArDetectorToolNV	 SZ= 25368Kb 	 Time = 0.43S
+GeoModelSvc.TileDetectorTool                        INFO  Entering TileDetectorTool::create()
+TileDddbManager                                     INFO m_tag = ATLAS-R2-2016-01-00-01
+TileDddbManager                                     INFO n_tiglob = 5
+TileDddbManager                                     INFO n_timod = 320
+TileDddbManager                                     INFO n_cuts = 9
+TileDddbManager                                     INFO n_saddle = 1
+TileDddbManager                                     INFO n_tilb = 21
+TileDddbManager                                     INFO n_tileSwitches = 1
+CaloIDHelper_IDDetDescrCnv                          INFO in createObj: creating a TileID helper object in the detector store
+AtlasDetectorID                                     INFO initialize_from_dictionary - OK
+TileNeighbour                                       INFO Reading file  /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/TileNeighbour_reduced.txt
+TileHWIDDetDescrCnv                                 INFO in createObj: creating a TileHWID helper object in the detector store
+TileHWID                                            INFO initialize_from_dictionary 
+AtlasDetectorID                                     INFO initialize_from_dictionary - OK
+ClassIDSvc                                          INFO  getRegistryEntries: read 55 CLIDRegistry entries for module ALL
+CaloIDHelper_IDDetDescrCnv                          INFO in createObj: creating a CaloCell_ID helper object in the detector store
+CaloIDHelper_IDDetDescrCnv                          INFO in createObj: creating a LArEM_ID helper object in the detector store
+AtlasDetectorID                                     INFO initialize_from_dictionary - OK
+CaloIDHelper_IDDetDescrCnv                          INFO in createObj: creating a LArHEC_ID helper object in the detector store
+AtlasDetectorID                                     INFO initialize_from_dictionary - OK
+CaloIDHelper_IDDetDescrCnv                          INFO in createObj: creating a LArFCAL_ID helper object in the detector store
+AtlasDetectorID                                     INFO initialize_from_dictionary - OK
+LArFCAL_Base_ID                                     INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/FCal2DNeighbors-April2011.txt
+LArFCAL_Base_ID                                     INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/FCal3DNeighborsNext-April2011.txt
+LArFCAL_Base_ID                                     INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/FCal3DNeighborsPrev-April2011.txt
+CaloIDHelper_IDDetDescrCnv                          INFO in createObj: creating a LArMiniFCAL_ID helper object in the detector store
+AtlasDetectorID                                     INFO initialize_from_dictionary - OK
+LArMiniFCAL_ID                                      INFO  initialize_from_dict - LArCalorimeter dictionary does NOT contain miniFCAL description. Unable to initialize LArMiniFCAL_ID.
+AtlasDetectorID                                     INFO initialize_from_dictionary - OK
+GeoModelSvc.TileDetectorTool                        INFO  U-shape parameter from database is: 1
+GeoModelSvc.TileDetectorTool                        INFO  Glue parameter from database is: 1
+GeoModelSvc.TileDetectorTool                        INFO  Cs Tube parameter from database is: 0
+GeoModelSvc.TileDetectorTool                        INFO  Entering TileAtlasFactory::create()
+GeoModelSvc.TileDetectorTool                        INFO  Tile Geometry with Saddle supports, starting from TileCal-CSC-02 xxx
+GeoModelSvc.TileDetectorTool                        INFO  => New BFingerLengthPos 430.5
+GeoModelSvc.TileDetectorTool                        INFO  => New BFingerLengthNeg 420.5
+GeoModelSvc.TileDetectorTool                        INFO  Positioning barrel with translation 0
+GeoModelSvc.TileDetectorTool                        INFO  Positioning positive barrel finger with translation 3035.25
+GeoModelSvc.TileDetectorTool                        INFO  Positioning negative barrel finger with translation -3030.25
+GeoModelSvc.TileDetectorTool                        INFO  Positioning positive ext.barrel with translation 4854.75
+GeoModelSvc.TileDetectorTool                        INFO  Positioning positive ext.barrel finger with translation ztrans= 6338.5
+GeoModelSvc.TileDetectorTool                        INFO  Positioning positive ext.barrel saddle with translation ztrans= 6192.5
+GeoModelSvc.TileDetectorTool                        INFO  Positive ITC envelope parameters: PLUG1  Rmin= 3438.85 Rmax= 4250 dzITC1= 154.5
+GeoModelSvc.TileDetectorTool                        INFO                                    PLUG2  Rmin= 2981 Rmax= 3440 dzITC2= 47.425
+GeoModelSvc.TileDetectorTool                        INFO  Positioning positive ITC with translation 3405
+GeoModelSvc.TileDetectorTool                        INFO  Positioning positive Gap with translation 3552
+GeoModelSvc.TileDetectorTool                        INFO  Positioning positive Crack with translation 3536
+GeoModelSvc.TileDetectorTool                        INFO  Positioning negative ext.barrel with translation ztrans -4854.75
+GeoModelSvc.TileDetectorTool                        INFO  Positioning negative ext.barrel finger with translation ztrans= -6338.5
+GeoModelSvc.TileDetectorTool                        INFO  Positioning negative ext.barrel saddle with translation ztrans= -6192.5
+GeoModelSvc.TileDetectorTool                        INFO  Negative ITC envelope parameters: PLUG1  Rmin= 3438.85 Rmax= 4250 dzITC1= 154.5
+GeoModelSvc.TileDetectorTool                        INFO                                    PLUG2  Rmin= 2981 Rmax= 3440 dzITC2= 47.425
+GeoModelSvc.TileDetectorTool                        INFO  Positioning negative ITC with translation -3405
+GeoModelSvc.TileDetectorTool                        INFO  Positioning negative Gap with translation -3552
+GeoModelSvc.TileDetectorTool                        INFO  Positioning negative Crack with translation -3536
+GeoModelSvc.TileDetectorTool                        INFO  Global positioning of barrel with rotation (0,0,0)) and translation (0,0,0) Gaudi::Units::cm
+GeoModelSvc.TileDetectorTool                        INFO  Global positioning of positive ext.barrel with rotation (0,0,0)) and translation (0,0,0) Gaudi::Units::cm
+GeoModelSvc.TileDetectorTool                        INFO  Global positioning of negative ext.barrel with rotation (0,0,0)) and translation (0,0,1) Gaudi::Units::cm
+TileDetDescrManager                                 INFO Entering create_elements()
+GeoModelSvc                                         INFO GeoModelSvc.TileDetectorTool	 SZ= 3576Kb 	 Time = 0.12S
+ClassIDSvc                                          INFO  getRegistryEntries: read 66 CLIDRegistry entries for module ALL
+TileInfoLoader                                      INFO Changing TTL1 calib from 4.1 to 6.9
+TileInfoLoader                                      INFO Changing TTL1 noise sigma from 2.5 to 2.8
+CaloIDHelper_IDDetDescrCnv                          INFO in createObj: creating a CaloLVL1_ID helper object in the detector store
+CaloLVL1_ID                                         INFO initialize_from_dictionary
+AtlasDetectorID                                     INFO initialize_from_dictionary - OK
+TileCablingSvc                                      INFO RUN2 ATLAS geometry flag detected for geometry: ATLAS-R2-2016-01-00-01
+TileCablingSvc                                      INFO Cabling for RUN2 (2014-2017) ATLAS geometry is set via jobOptions 
+TileCablingSvc                                      INFO Setting Cabling type to 4
+AthenaHiveEventLoopMgr                              INFO Initializing AthenaHiveEventLoopMgr - package version AthenaServices-00-00-00
+ClassIDSvc                                     0    INFO  getRegistryEntries: read 4180 CLIDRegistry entries for module ALL
+PyComponentMgr                                 0    INFO Initializing PyComponentMgr...
+Finalizer                                      0    INFO Initializing Finalizer...
+ClassIDSvc                                     0    INFO  getRegistryEntries: read 53 CLIDRegistry entries for module ALL
+CondInputLoader                                0    INFO Initializing CondInputLoader...
+CondInputLoader                                0    INFO Adding base classes:
   +  ( 'CondAttrListCollection' , 'ConditionStore+/TILE/OFL02/CALIB/CES' )   ->
   +  ( 'CondAttrListCollection' , 'ConditionStore+/TILE/OFL02/CALIB/CIS/FIT/LIN' )   ->
   +  ( 'CondAttrListCollection' , 'ConditionStore+/TILE/OFL02/CALIB/CIS/FIT/NLN' )   ->
@@ -928,7 +928,7 @@ CondInputLoader                             0      INFO Adding base classes:
   +  ( 'CondAttrListCollection' , 'ConditionStore+/TILE/OFL02/STATUS/ADC' )   ->
   +  ( 'CondAttrListCollection' , 'ConditionStore+/TILE/OFL02/TIME/CHANNELOFFSET/PHY' )   ->
   +  ( 'CondAttrListCollection' , 'ConditionStore+/TILE/ONL01/STATUS/ADC' )   ->
-CondInputLoader                             0      INFO Will create WriteCondHandle dependencies for the following DataObjects:
+CondInputLoader                                0    INFO Will create WriteCondHandle dependencies for the following DataObjects:
     +  ( 'CondAttrListCollection' , 'ConditionStore+/TILE/OFL02/CALIB/CES' ) 
     +  ( 'CondAttrListCollection' , 'ConditionStore+/TILE/OFL02/CALIB/CIS/FIT/LIN' ) 
     +  ( 'CondAttrListCollection' , 'ConditionStore+/TILE/OFL02/CALIB/CIS/FIT/NLN' ) 
@@ -940,355 +940,355 @@ CondInputLoader                             0      INFO Will create WriteCondHan
     +  ( 'CondAttrListCollection' , 'ConditionStore+/TILE/OFL02/STATUS/ADC' ) 
     +  ( 'CondAttrListCollection' , 'ConditionStore+/TILE/OFL02/TIME/CHANNELOFFSET/PHY' ) 
     +  ( 'CondAttrListCollection' , 'ConditionStore+/TILE/ONL01/STATUS/ADC' ) 
-TileBadChannelsCondAlg.TileCondProxyC...    0      INFO Creating TileCondProxyCool(TileBadChannelsCondAlg.TileCondProxyCool_OnlBch) for folder: "/TILE/ONL01/STATUS/ADC"
-TileBadChannelsCondAlg.TileCondProxyC...    0      INFO Creating TileCondProxyCool(TileBadChannelsCondAlg.TileCondProxyCool_OflBch) for folder: "/TILE/OFL02/STATUS/ADC"
-TileBadChannelsCondAlg                      0      INFO ProxyOnlBch and ProxyOflBch will be used for bad channel status
-TileEMScaleCondAlg.TileCondProxyCool_...    0      INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OflCisLin) for folder: "/TILE/OFL02/CALIB/CIS/FIT/LIN"
-TileEMScaleCondAlg.TileCondProxyCool_...    0      INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OflCisNln) for folder: "/TILE/OFL02/CALIB/CIS/FIT/NLN"
-TileEMScaleCondAlg.TileCondProxyCool_...    0      INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OflLasLin) for folder: "/TILE/OFL02/CALIB/LAS/LIN"
-TileEMScaleCondAlg.TileCondProxyCool_...    0      INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OflLasNln) for folder: "/TILE/OFL02/CALIB/LAS/NLN"
-TileEMScaleCondAlg.TileCondProxyCool_...    0      INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OflLasFib) for folder: "/TILE/OFL02/CALIB/LAS/FIBER"
-TileEMScaleCondAlg                          0      INFO ProxyOflLasFib is set up and can be used
-TileEMScaleCondAlg.TileCondProxyCool_...    0      INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OflCes) for folder: "/TILE/OFL02/CALIB/CES"
-TileEMScaleCondAlg.TileCondProxyCool_...    0      INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OflEms) for folder: "/TILE/OFL02/CALIB/EMS"
-TileEMScaleCondAlg                          0      INFO Undoing online calibration is not requested, since OnlCacheUnit= 'OnlCacheUnit':Invalid
-TileEMScaleCondAlg.TileCondProxyCool_...    0      INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OnlCis) for folder: "/TILE/OFL02/CALIB/CIS/FIT/LIN"
-TileEMScaleCondAlg.TileCondProxyCool_...    0      INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OnlLas) for folder: "/TILE/OFL02/CALIB/LAS/LIN"
-TileEMScaleCondAlg.TileCondProxyCool_...    0      INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OnlCes) for folder: "/TILE/OFL02/CALIB/CES"
-TileEMScaleCondAlg.TileCondProxyCool_...    0      INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OnlEms) for folder: "/TILE/OFL02/CALIB/EMS"
-TileSampleNoiseCondAlg.TileCondProxyC...    0      INFO Creating TileCondProxyCool(TileSampleNoiseCondAlg.TileCondProxyCool_NoiseSample) for folder: "/TILE/OFL02/NOISE/SAMPLE"
-TileTimingCondAlg.TileCondProxyCool_A...    0      INFO Creating TileCondProxyCool(TileTimingCondAlg.TileCondProxyCool_AdcOffset) for folder: "/TILE/OFL02/TIME/CHANNELOFFSET/PHY"
-ThreadPoolSvc                               0      INFO no thread init tools attached
-AvalancheSchedulerSvc                       0      INFO Activating scheduler in a separate thread
-AvalancheSchedulerSvc                       0      INFO Found 12 algorithms
-AvalancheSchedulerSvc                       0      INFO Will attribute the following unmet INPUT dependencies to "SGInputLoader/SGInputLoader" Algorithm
+TileBadChannelsCondAlg.TileCondProxyC...       0    INFO Creating TileCondProxyCool(TileBadChannelsCondAlg.TileCondProxyCool_OnlBch) for folder: "/TILE/ONL01/STATUS/ADC"
+TileBadChannelsCondAlg.TileCondProxyC...       0    INFO Creating TileCondProxyCool(TileBadChannelsCondAlg.TileCondProxyCool_OflBch) for folder: "/TILE/OFL02/STATUS/ADC"
+TileBadChannelsCondAlg                         0    INFO ProxyOnlBch and ProxyOflBch will be used for bad channel status
+TileEMScaleCondAlg.TileCondProxyCool_...       0    INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OflCisLin) for folder: "/TILE/OFL02/CALIB/CIS/FIT/LIN"
+TileEMScaleCondAlg.TileCondProxyCool_...       0    INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OflCisNln) for folder: "/TILE/OFL02/CALIB/CIS/FIT/NLN"
+TileEMScaleCondAlg.TileCondProxyCool_...       0    INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OflLasLin) for folder: "/TILE/OFL02/CALIB/LAS/LIN"
+TileEMScaleCondAlg.TileCondProxyCool_...       0    INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OflLasNln) for folder: "/TILE/OFL02/CALIB/LAS/NLN"
+TileEMScaleCondAlg.TileCondProxyCool_...       0    INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OflLasFib) for folder: "/TILE/OFL02/CALIB/LAS/FIBER"
+TileEMScaleCondAlg                             0    INFO ProxyOflLasFib is set up and can be used
+TileEMScaleCondAlg.TileCondProxyCool_...       0    INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OflCes) for folder: "/TILE/OFL02/CALIB/CES"
+TileEMScaleCondAlg.TileCondProxyCool_...       0    INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OflEms) for folder: "/TILE/OFL02/CALIB/EMS"
+TileEMScaleCondAlg                             0    INFO Undoing online calibration is not requested, since OnlCacheUnit= 'OnlCacheUnit':Invalid
+TileEMScaleCondAlg.TileCondProxyCool_...       0    INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OnlCis) for folder: "/TILE/OFL02/CALIB/CIS/FIT/LIN"
+TileEMScaleCondAlg.TileCondProxyCool_...       0    INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OnlLas) for folder: "/TILE/OFL02/CALIB/LAS/LIN"
+TileEMScaleCondAlg.TileCondProxyCool_...       0    INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OnlCes) for folder: "/TILE/OFL02/CALIB/CES"
+TileEMScaleCondAlg.TileCondProxyCool_...       0    INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OnlEms) for folder: "/TILE/OFL02/CALIB/EMS"
+TileSampleNoiseCondAlg.TileCondProxyC...       0    INFO Creating TileCondProxyCool(TileSampleNoiseCondAlg.TileCondProxyCool_NoiseSample) for folder: "/TILE/OFL02/NOISE/SAMPLE"
+TileTimingCondAlg.TileCondProxyCool_A...       0    INFO Creating TileCondProxyCool(TileTimingCondAlg.TileCondProxyCool_AdcOffset) for folder: "/TILE/OFL02/TIME/CHANNELOFFSET/PHY"
+ThreadPoolSvc                                  0    INFO no thread init tools attached
+AvalancheSchedulerSvc                          0    INFO Activating scheduler in a separate thread
+AvalancheSchedulerSvc                          0    INFO Found 12 algorithms
+AvalancheSchedulerSvc                          0    INFO Will attribute the following unmet INPUT dependencies to "SGInputLoader/SGInputLoader" Algorithm
    o  ( 'TileL2Container' , 'StoreGateSvc+TileL2Cnt' )     required by Algorithm: 
        * TileL2CntDumper
-PrecedenceSvc                               0      INFO Assembling CF and DF task precedence rules
-PrecedenceRulesGraph                        0      INFO CondSvc found. DF precedence rules will be augmented with 'Conditions'
-PrecedenceSvc                               0      INFO PrecedenceSvc initialized successfully
-AvalancheSchedulerSvc                       0      INFO Concurrency level information:
-AvalancheSchedulerSvc                       0      INFO  o Number of events in flight: 4
-AvalancheSchedulerSvc                       0      INFO  o TBB thread pool size:  'ThreadPoolSize':4
-HistogramPersistencySvc                     0   WARNING Histograms saving not required.
-EventSelector                               0      INFO Initializing EventSelector - package version ByteStreamCnvSvc-00-00-00
-ByteStreamInputSvc                          0      INFO Initializing ByteStreamInputSvc - package version ByteStreamCnvSvc-00-00-00
-ROBDataProviderSvc                          0      INFO Initializing ROBDataProviderSvc - package version ByteStreamCnvSvcBase-00-00-00
-ROBDataProviderSvc                          0      INFO  ---> Filter out empty ROB fragments                               =  'filterEmptyROB':False
-ROBDataProviderSvc                          0      INFO  ---> Filter out specific ROBs by Status Code: # ROBs = 0
-ROBDataProviderSvc                          0      INFO  ---> Filter out Sub Detector ROBs by Status Code: # Sub Detectors = 0
-EventSelector                               0      INFO reinitialization...
-AthenaHiveEventLoopMgr                      0      INFO Setup EventSelector service EventSelector
-ApplicationMgr                              0      INFO Application Manager Initialized successfully
-PoolSvc                                     0      INFO Enabled implicit multithreading in ROOT via PersistencySvc to: 4
-CondInputLoader                             0      INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/CALIB/CES'
-CondInputLoader                             0      INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/CALIB/CIS/FIT/LIN'
-CondInputLoader                             0      INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/CALIB/CIS/FIT/NLN'
-CondInputLoader                             0      INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/CALIB/EMS'
-CondInputLoader                             0      INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/CALIB/LAS/FIBER'
-CondInputLoader                             0      INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/CALIB/LAS/LIN'
-CondInputLoader                             0      INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/CALIB/LAS/NLN'
-CondInputLoader                             0      INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/NOISE/SAMPLE'
-CondInputLoader                             0      INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/STATUS/ADC'
-CondInputLoader                             0      INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/TIME/CHANNELOFFSET/PHY'
-CondInputLoader                             0      INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/ONL01/STATUS/ADC'
-ByteStreamInputSvc                          0      INFO Picked valid file: /cvmfs/atlas-nightlies.cern.ch/repo/data/data-art/Tier0ChainTests/data12_8TeV.00204073.physics_JetTauEtmiss.merge.RAW._lb0144._SFO-5._0001.1
-ApplicationMgr                              0      INFO Application Manager Started successfully
-AthenaHiveEventLoopMgr                      0      INFO Starting loop on events
-EventPersistencySvc                     0   0      INFO Added successfully Conversion service:AthenaPoolCnvSvc
-EventPersistencySvc                     0   0      INFO Added successfully Conversion service:TagInfoMgr
-EventPersistencySvc                     0   0      INFO Added successfully Conversion service:ByteStreamCnvSvc
-EventInfoByteStreamAuxCnv               0   0      INFO IsSimulation : 0
-EventInfoByteStreamAuxCnv               0   0      INFO IsTestbeam : 0
-EventInfoByteStreamAuxCnv               0   0      INFO IsCalibration : 0
-AthenaHiveEventLoopMgr                  0   0      INFO   ===>>>  start of run 204073    <<<===
-IOVDbSvc                                0   0      INFO Opening COOL connection for COOLOFL_LAR/OFLP200
-IOVDbFolder                             0   0      INFO HVS tag OFLCOND-RUN12-SDR-35 resolved to LARAlign-IOVDEP-00 for folder /LAR/Align
-IOVDbFolder                             0   0      INFO HVS tag OFLCOND-RUN12-SDR-35 resolved to LArCellPositionShift-ideal for folder /LAR/LArCellPositionShift
-IOVDbSvc                                0   0      INFO Disconnecting from COOLOFL_LAR/OFLP200
-Domain[ROOT_All]                        0   0      INFO ->  Access   DbDatabase   READ      [ROOT_All] 06C9EAE8-6F5B-E011-BAAA-003048F0E7AC
-Domain[ROOT_All]                        0   0      INFO                           /cvmfs/atlas-condb.cern.ch/repo/conditions/cond09/cond09_mc.000029.gen.COND/cond09_mc.000029.gen.COND._0002.pool.root
-RootDatabase.open                       0   0      INFO /cvmfs/atlas-condb.cern.ch/repo/conditions/cond09/cond09_mc.000029.gen.COND/cond09_mc.000029.gen.COND._0002.pool.root File version:52200
-CaloMgrDetDescrCnv                      0   0      INFO in createObj: creating a Calo Detector Manager object in the detector store
-CaloIdMgrDetDescrCnv                    0   0      INFO in createObj: creating a CaloDescrManager object in the detector store
-ClassIDSvc                              0   0      INFO  getRegistryEntries: read 195 CLIDRegistry entries for module ALL
-CaloIDHelper_IDDetDescrCnv              0   0      INFO in createObj: creating a CaloDM_ID helper object in the detector store
-CaloDM_ID                               0   0      INFO initialize_from_dictionary
-AtlasDetectorID                         0   0      INFO initialize_from_dictionary - OK
-CaloIDHelper_IDDetDescrCnv              0   0      INFO in createObj: creating a TTOnlineID helper object in the detector store
-TTOnlineID                              0   0      INFO initialize_from_dictionary
-AtlasDetectorID                         0   0      INFO initialize_from_dictionary - OK
-CaloIDHelper_IDDetDescrCnv              0   0      INFO in createObj: creating a CaloCell_SuperCell_ID helper object in the detector store
-CaloIDHelper_IDDetDescrCnv              0   0      INFO in createObj: creating a LArEM_SuperCell_ID helper object in the detector store
-AtlasDetectorID                         0   0      INFO initialize_from_dictionary - OK
-CaloIDHelper_IDDetDescrCnv              0   0      INFO in createObj: creating a LArHEC_SuperCell_ID helper object in the detector store
-AtlasDetectorID                         0   0      INFO initialize_from_dictionary - OK
-CaloIDHelper_IDDetDescrCnv              0   0      INFO in createObj: creating a LArFCAL_SuperCell_ID helper object in the detector store
-AtlasDetectorID                         0   0      INFO initialize_from_dictionary - OK
-LArFCAL_Base_ID                         0   0      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-06T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/FCalSuperCells2DNeighborsNew-April2014.txt
-LArFCAL_Base_ID                         0   0      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-06T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/FCalSuperCells3DNeighborsNextNew-April2014.txt
-LArFCAL_Base_ID                         0   0      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-06T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/FCalSuperCells3DNeighborsPrevNew-April2014.txt
-CaloIDHelper_IDDetDescrCnv              0   0      INFO in createObj: creating a Tile_SuperCell_ID helper object in the detector store
-AtlasDetectorID                         0   0      INFO initialize_from_dictionary - OK
-TileNeighbour                           0   0      INFO Reading file  /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-06T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/TileSuperCellNeighbour.txt
-AtlasDetectorID                         0   0      INFO initialize_from_dictionary - OK
-CaloIdMgrDetDescrCnv                    0   0      INFO  Finished 
-CaloIdMgrDetDescrCnv                    0   0      INFO Initializing CaloIdMgr from values in CaloIdMgrDetDescrCnv 
-Domain[ROOT_All]                        0   0      INFO ->  Access   DbDatabase   READ      [ROOT_All] 8667C6F2-1559-DE11-A611-000423D9A21A
-Domain[ROOT_All]                        0   0      INFO                           /cvmfs/atlas-condb.cern.ch/repo/conditions/cond08/cond08_mc.000003.gen.COND/cond08_mc.000003.gen.COND._0064.pool.root
-RootDatabase.open                       0   0      INFO /cvmfs/atlas-condb.cern.ch/repo/conditions/cond08/cond08_mc.000003.gen.COND/cond08_mc.000003.gen.COND._0064.pool.root File version:52200
-AthenaHiveEventLoopMgr                  0   0      INFO   ===>>>  start processing event #1129572, run #204073 on slot 0,  0 events processed so far  <<<===
-ClassIDSvc                              0   0      INFO  getRegistryEntries: read 672 CLIDRegistry entries for module ALL
-ClassIDSvc                              0   0      INFO  getRegistryEntries: read 1776 CLIDRegistry entries for module ALL
-ClassIDSvc                              0   0      INFO  getRegistryEntries: read 90 CLIDRegistry entries for module ALL
-ToolSvc.TileROD_Decoder.TileL2Builder   0   0      INFO TileL2Builder initialization completed
-ToolSvc.TileL2ContByteStreamTool        0   0      INFO Initializing TileL2ContByteStreamTool
-AthenaHiveEventLoopMgr                  1   1      INFO   ===>>>  start processing event #1129665, run #204073 on slot 1,  0 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  2   2      INFO   ===>>>  start processing event #1131212, run #204073 on slot 2,  0 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  3   3      INFO   ===>>>  start processing event #1131086, run #204073 on slot 3,  0 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1129572, run #204073 on slot 0,  1 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1129665, run #204073 on slot 1,  2 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1131212, run #204073 on slot 2,  3 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  4   0      INFO   ===>>>  start processing event #1130272, run #204073 on slot 0,  3 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  5   1      INFO   ===>>>  start processing event #1131269, run #204073 on slot 1,  3 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  6   2      INFO   ===>>>  start processing event #1130716, run #204073 on slot 2,  3 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1131086, run #204073 on slot 3,  4 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1130272, run #204073 on slot 0,  5 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1131269, run #204073 on slot 1,  6 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  7   0      INFO   ===>>>  start processing event #1132019, run #204073 on slot 0,  6 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  8   1      INFO   ===>>>  start processing event #1132092, run #204073 on slot 1,  6 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  9   3      INFO   ===>>>  start processing event #1130238, run #204073 on slot 3,  6 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1130716, run #204073 on slot 2,  7 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1132019, run #204073 on slot 0,  8 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1132092, run #204073 on slot 1,  9 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  10  0      INFO   ===>>>  start processing event #1134553, run #204073 on slot 0,  9 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  11  1      INFO   ===>>>  start processing event #1130999, run #204073 on slot 1,  9 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  12  2      INFO   ===>>>  start processing event #1133461, run #204073 on slot 2,  9 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1130238, run #204073 on slot 3,  10 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1134553, run #204073 on slot 0,  11 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1130999, run #204073 on slot 1,  12 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  13  0      INFO   ===>>>  start processing event #1131152, run #204073 on slot 0,  12 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  14  1      INFO   ===>>>  start processing event #1130142, run #204073 on slot 1,  12 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  15  3      INFO   ===>>>  start processing event #1132770, run #204073 on slot 3,  12 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1133461, run #204073 on slot 2,  13 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1131152, run #204073 on slot 0,  14 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1130142, run #204073 on slot 1,  15 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  16  0      INFO   ===>>>  start processing event #1132365, run #204073 on slot 0,  15 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  17  1      INFO   ===>>>  start processing event #1136791, run #204073 on slot 1,  15 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  18  2      INFO   ===>>>  start processing event #1133781, run #204073 on slot 2,  15 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1132770, run #204073 on slot 3,  16 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1132365, run #204073 on slot 0,  17 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1136791, run #204073 on slot 1,  18 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  19  0      INFO   ===>>>  start processing event #1132067, run #204073 on slot 0,  18 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  20  1      INFO   ===>>>  start processing event #1138637, run #204073 on slot 1,  18 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  21  3      INFO   ===>>>  start processing event #1139495, run #204073 on slot 3,  18 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1133781, run #204073 on slot 2,  19 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1132067, run #204073 on slot 0,  20 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1138637, run #204073 on slot 1,  21 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  22  0      INFO   ===>>>  start processing event #1140193, run #204073 on slot 0,  21 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  23  1      INFO   ===>>>  start processing event #1142953, run #204073 on slot 1,  21 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  24  2      INFO   ===>>>  start processing event #1139127, run #204073 on slot 2,  21 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1139495, run #204073 on slot 3,  22 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1140193, run #204073 on slot 0,  23 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1142953, run #204073 on slot 1,  24 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  25  0      INFO   ===>>>  start processing event #1141272, run #204073 on slot 0,  24 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  26  1      INFO   ===>>>  start processing event #1137117, run #204073 on slot 1,  24 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  27  3      INFO   ===>>>  start processing event #1139599, run #204073 on slot 3,  24 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1139127, run #204073 on slot 2,  25 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1141272, run #204073 on slot 0,  26 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1137117, run #204073 on slot 1,  27 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  28  0      INFO   ===>>>  start processing event #1140314, run #204073 on slot 0,  27 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  29  1      INFO   ===>>>  start processing event #1133685, run #204073 on slot 1,  27 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  30  2      INFO   ===>>>  start processing event #1143279, run #204073 on slot 2,  27 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1139599, run #204073 on slot 3,  28 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1140314, run #204073 on slot 0,  29 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1133685, run #204073 on slot 1,  30 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  31  0      INFO   ===>>>  start processing event #1137563, run #204073 on slot 0,  30 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  32  1      INFO   ===>>>  start processing event #1139927, run #204073 on slot 1,  30 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  33  3      INFO   ===>>>  start processing event #1141197, run #204073 on slot 3,  30 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1143279, run #204073 on slot 2,  31 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1137563, run #204073 on slot 0,  32 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1139927, run #204073 on slot 1,  33 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  34  0      INFO   ===>>>  start processing event #1140039, run #204073 on slot 0,  33 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  35  1      INFO   ===>>>  start processing event #1142531, run #204073 on slot 1,  33 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  36  2      INFO   ===>>>  start processing event #1139475, run #204073 on slot 2,  33 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1141197, run #204073 on slot 3,  34 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1140039, run #204073 on slot 0,  35 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1142531, run #204073 on slot 1,  36 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  37  0      INFO   ===>>>  start processing event #1139958, run #204073 on slot 0,  36 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  38  1      INFO   ===>>>  start processing event #1143765, run #204073 on slot 1,  36 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  39  3      INFO   ===>>>  start processing event #1143097, run #204073 on slot 3,  36 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1139475, run #204073 on slot 2,  37 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1139958, run #204073 on slot 0,  38 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1143765, run #204073 on slot 1,  39 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  40  0      INFO   ===>>>  start processing event #1134147, run #204073 on slot 0,  39 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  41  1      INFO   ===>>>  start processing event #1137156, run #204073 on slot 1,  39 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  42  2      INFO   ===>>>  start processing event #1136377, run #204073 on slot 2,  39 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1143097, run #204073 on slot 3,  40 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1134147, run #204073 on slot 0,  41 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1137156, run #204073 on slot 1,  42 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  43  0      INFO   ===>>>  start processing event #1137842, run #204073 on slot 0,  42 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  44  1      INFO   ===>>>  start processing event #1141705, run #204073 on slot 1,  42 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  45  3      INFO   ===>>>  start processing event #1143410, run #204073 on slot 3,  42 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1136377, run #204073 on slot 2,  43 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1137842, run #204073 on slot 0,  44 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1141705, run #204073 on slot 1,  45 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  46  0      INFO   ===>>>  start processing event #1144170, run #204073 on slot 0,  45 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  47  1      INFO   ===>>>  start processing event #1145987, run #204073 on slot 1,  45 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  48  2      INFO   ===>>>  start processing event #1145633, run #204073 on slot 2,  45 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1143410, run #204073 on slot 3,  46 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1144170, run #204073 on slot 0,  47 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1145987, run #204073 on slot 1,  48 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  49  0      INFO   ===>>>  start processing event #1135005, run #204073 on slot 0,  48 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  50  1      INFO   ===>>>  start processing event #1142167, run #204073 on slot 1,  48 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  51  3      INFO   ===>>>  start processing event #1144646, run #204073 on slot 3,  48 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1145633, run #204073 on slot 2,  49 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1135005, run #204073 on slot 0,  50 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1142167, run #204073 on slot 1,  51 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  52  0      INFO   ===>>>  start processing event #1145027, run #204073 on slot 0,  51 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  53  1      INFO   ===>>>  start processing event #1144112, run #204073 on slot 1,  51 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  54  2      INFO   ===>>>  start processing event #1138485, run #204073 on slot 2,  51 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1144646, run #204073 on slot 3,  52 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1145027, run #204073 on slot 0,  53 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1144112, run #204073 on slot 1,  54 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  55  0      INFO   ===>>>  start processing event #1144565, run #204073 on slot 0,  54 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  56  1      INFO   ===>>>  start processing event #1139498, run #204073 on slot 1,  54 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  57  3      INFO   ===>>>  start processing event #1136546, run #204073 on slot 3,  54 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1138485, run #204073 on slot 2,  55 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1144565, run #204073 on slot 0,  56 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1139498, run #204073 on slot 1,  57 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  58  0      INFO   ===>>>  start processing event #1143799, run #204073 on slot 0,  57 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  59  1      INFO   ===>>>  start processing event #1142877, run #204073 on slot 1,  57 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  60  2      INFO   ===>>>  start processing event #1149894, run #204073 on slot 2,  57 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1136546, run #204073 on slot 3,  58 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1143799, run #204073 on slot 0,  59 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1142877, run #204073 on slot 1,  60 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  61  0      INFO   ===>>>  start processing event #1145364, run #204073 on slot 0,  60 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  62  1      INFO   ===>>>  start processing event #1143770, run #204073 on slot 1,  60 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  63  3      INFO   ===>>>  start processing event #1148361, run #204073 on slot 3,  60 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1149894, run #204073 on slot 2,  61 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1145364, run #204073 on slot 0,  62 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1143770, run #204073 on slot 1,  63 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  64  0      INFO   ===>>>  start processing event #1148167, run #204073 on slot 0,  63 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  65  1      INFO   ===>>>  start processing event #1138948, run #204073 on slot 1,  63 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  66  2      INFO   ===>>>  start processing event #1144808, run #204073 on slot 2,  63 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1148361, run #204073 on slot 3,  64 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1148167, run #204073 on slot 0,  65 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1138948, run #204073 on slot 1,  66 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  67  0      INFO   ===>>>  start processing event #1145832, run #204073 on slot 0,  66 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  68  1      INFO   ===>>>  start processing event #1153100, run #204073 on slot 1,  66 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  69  3      INFO   ===>>>  start processing event #1142524, run #204073 on slot 3,  66 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1144808, run #204073 on slot 2,  67 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1145832, run #204073 on slot 0,  68 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1153100, run #204073 on slot 1,  69 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  70  0      INFO   ===>>>  start processing event #1138294, run #204073 on slot 0,  69 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  71  1      INFO   ===>>>  start processing event #1138350, run #204073 on slot 1,  69 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  72  2      INFO   ===>>>  start processing event #1149424, run #204073 on slot 2,  69 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1142524, run #204073 on slot 3,  70 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1138294, run #204073 on slot 0,  71 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1138350, run #204073 on slot 1,  72 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  73  0      INFO   ===>>>  start processing event #1151102, run #204073 on slot 0,  72 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  74  1      INFO   ===>>>  start processing event #1152242, run #204073 on slot 1,  72 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  75  3      INFO   ===>>>  start processing event #1148416, run #204073 on slot 3,  72 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1149424, run #204073 on slot 2,  73 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1151102, run #204073 on slot 0,  74 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1152242, run #204073 on slot 1,  75 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  76  0      INFO   ===>>>  start processing event #1142753, run #204073 on slot 0,  75 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  77  1      INFO   ===>>>  start processing event #1149997, run #204073 on slot 1,  75 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  78  2      INFO   ===>>>  start processing event #1151617, run #204073 on slot 2,  75 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1148416, run #204073 on slot 3,  76 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1142753, run #204073 on slot 0,  77 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1149997, run #204073 on slot 1,  78 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  79  0      INFO   ===>>>  start processing event #1149794, run #204073 on slot 0,  78 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  80  1      INFO   ===>>>  start processing event #1152504, run #204073 on slot 1,  78 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  81  3      INFO   ===>>>  start processing event #1142485, run #204073 on slot 3,  78 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1151617, run #204073 on slot 2,  79 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1149794, run #204073 on slot 0,  80 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1152504, run #204073 on slot 1,  81 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  82  0      INFO   ===>>>  start processing event #1151364, run #204073 on slot 0,  81 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  83  1      INFO   ===>>>  start processing event #1143901, run #204073 on slot 1,  81 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  84  2      INFO   ===>>>  start processing event #1153979, run #204073 on slot 2,  81 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1142485, run #204073 on slot 3,  82 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1151364, run #204073 on slot 0,  83 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1143901, run #204073 on slot 1,  84 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  85  0      INFO   ===>>>  start processing event #1150212, run #204073 on slot 0,  84 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  86  1      INFO   ===>>>  start processing event #1152633, run #204073 on slot 1,  84 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  87  3      INFO   ===>>>  start processing event #1155482, run #204073 on slot 3,  84 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1153979, run #204073 on slot 2,  85 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1150212, run #204073 on slot 0,  86 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1152633, run #204073 on slot 1,  87 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  88  0      INFO   ===>>>  start processing event #1150472, run #204073 on slot 0,  87 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  89  1      INFO   ===>>>  start processing event #1140275, run #204073 on slot 1,  87 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  90  2      INFO   ===>>>  start processing event #1145882, run #204073 on slot 2,  87 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1155482, run #204073 on slot 3,  88 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1150472, run #204073 on slot 0,  89 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1140275, run #204073 on slot 1,  90 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  91  0      INFO   ===>>>  start processing event #1151732, run #204073 on slot 0,  90 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  92  1      INFO   ===>>>  start processing event #1137896, run #204073 on slot 1,  90 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  93  3      INFO   ===>>>  start processing event #1156381, run #204073 on slot 3,  90 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1145882, run #204073 on slot 2,  91 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1151732, run #204073 on slot 0,  92 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1137896, run #204073 on slot 1,  93 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  94  0      INFO   ===>>>  start processing event #1149161, run #204073 on slot 0,  93 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  95  1      INFO   ===>>>  start processing event #1153794, run #204073 on slot 1,  93 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  96  2      INFO   ===>>>  start processing event #1151312, run #204073 on slot 2,  93 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1156381, run #204073 on slot 3,  94 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1149161, run #204073 on slot 0,  95 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1153794, run #204073 on slot 1,  96 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  97  0      INFO   ===>>>  start processing event #1148893, run #204073 on slot 0,  96 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  98  1      INFO   ===>>>  start processing event #1156938, run #204073 on slot 1,  96 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  99  3      INFO   ===>>>  start processing event #1156351, run #204073 on slot 3,  96 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1151312, run #204073 on slot 2,  97 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1148893, run #204073 on slot 0,  98 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1156938, run #204073 on slot 1,  99 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1156351, run #204073 on slot 3,  100 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO ---> Loop Finished (seconds): 7.97174
-/cvmfs/atlas-condb.cern.ch/repo/condi...           INFO Database being retired...
-Domain[ROOT_All]                                   INFO ->  Deaccess DbDatabase   READ      [ROOT_All] 06C9EAE8-6F5B-E011-BAAA-003048F0E7AC
-/cvmfs/atlas-condb.cern.ch/repo/condi...           INFO Database being retired...
-Domain[ROOT_All]                                   INFO ->  Deaccess DbDatabase   READ      [ROOT_All] 8667C6F2-1559-DE11-A611-000423D9A21A
-Domain[ROOT_All]                                   INFO >   Deaccess DbDomain     READ      [ROOT_All] 
-ApplicationMgr                                     INFO Application Manager Stopped successfully
-IncidentProcAlg1                                   INFO Finalize
-SGInputLoader                                      INFO Finalizing SGInputLoader...
-Finalizer                                          INFO Finalizing Finalizer...
+PrecedenceSvc                                  0    INFO Assembling CF and DF task precedence rules
+PrecedenceRulesGraph                           0    INFO CondSvc found. DF precedence rules will be augmented with 'Conditions'
+PrecedenceSvc                                  0    INFO PrecedenceSvc initialized successfully
+AvalancheSchedulerSvc                          0    INFO Concurrency level information:
+AvalancheSchedulerSvc                          0    INFO  o Number of events in flight: 4
+AvalancheSchedulerSvc                          0    INFO  o TBB thread pool size:  'ThreadPoolSize':4
+HistogramPersistencySvc                        0 WARNING Histograms saving not required.
+EventSelector                                  0    INFO Initializing EventSelector - package version ByteStreamCnvSvc-00-00-00
+ByteStreamInputSvc                             0    INFO Initializing ByteStreamInputSvc - package version ByteStreamCnvSvc-00-00-00
+ROBDataProviderSvc                             0    INFO Initializing ROBDataProviderSvc - package version ByteStreamCnvSvcBase-00-00-00
+ROBDataProviderSvc                             0    INFO  ---> Filter out empty ROB fragments                               =  'filterEmptyROB':False
+ROBDataProviderSvc                             0    INFO  ---> Filter out specific ROBs by Status Code: # ROBs = 0
+ROBDataProviderSvc                             0    INFO  ---> Filter out Sub Detector ROBs by Status Code: # Sub Detectors = 0
+EventSelector                                  0    INFO reinitialization...
+AthenaHiveEventLoopMgr                         0    INFO Setup EventSelector service EventSelector
+ApplicationMgr                                 0    INFO Application Manager Initialized successfully
+PoolSvc                                        0    INFO Enabled implicit multithreading in ROOT via PersistencySvc to: 4
+CondInputLoader                                0    INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/CALIB/CES'
+CondInputLoader                                0    INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/CALIB/CIS/FIT/LIN'
+CondInputLoader                                0    INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/CALIB/CIS/FIT/NLN'
+CondInputLoader                                0    INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/CALIB/EMS'
+CondInputLoader                                0    INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/CALIB/LAS/FIBER'
+CondInputLoader                                0    INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/CALIB/LAS/LIN'
+CondInputLoader                                0    INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/CALIB/LAS/NLN'
+CondInputLoader                                0    INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/NOISE/SAMPLE'
+CondInputLoader                                0    INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/STATUS/ADC'
+CondInputLoader                                0    INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/TIME/CHANNELOFFSET/PHY'
+CondInputLoader                                0    INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/ONL01/STATUS/ADC'
+ByteStreamInputSvc                             0    INFO Picked valid file: /cvmfs/atlas-nightlies.cern.ch/repo/data/data-art/Tier0ChainTests/data12_8TeV.00204073.physics_JetTauEtmiss.merge.RAW._lb0144._SFO-5._0001.1
+ApplicationMgr                                 0    INFO Application Manager Started successfully
+AthenaHiveEventLoopMgr                         0    INFO Starting loop on events
+EventPersistencySvc                        0   0    INFO Added successfully Conversion service:AthenaPoolCnvSvc
+EventPersistencySvc                        0   0    INFO Added successfully Conversion service:TagInfoMgr
+EventPersistencySvc                        0   0    INFO Added successfully Conversion service:ByteStreamCnvSvc
+EventInfoByteStreamAuxCnv                  0   0    INFO IsSimulation : 0
+EventInfoByteStreamAuxCnv                  0   0    INFO IsTestbeam : 0
+EventInfoByteStreamAuxCnv                  0   0    INFO IsCalibration : 0
+AthenaHiveEventLoopMgr                     0   0    INFO   ===>>>  start of run 204073    <<<===
+IOVDbSvc                                   0   0    INFO Opening COOL connection for COOLOFL_LAR/OFLP200
+IOVDbFolder                                0   0    INFO HVS tag OFLCOND-RUN12-SDR-35 resolved to LARAlign-IOVDEP-00 for folder /LAR/Align
+IOVDbFolder                                0   0    INFO HVS tag OFLCOND-RUN12-SDR-35 resolved to LArCellPositionShift-ideal for folder /LAR/LArCellPositionShift
+IOVDbSvc                                   0   0    INFO Disconnecting from COOLOFL_LAR/OFLP200
+Domain[ROOT_All]                           0   0    INFO ->  Access   DbDatabase   READ      [ROOT_All] 06C9EAE8-6F5B-E011-BAAA-003048F0E7AC
+Domain[ROOT_All]                           0   0    INFO                           /cvmfs/atlas-condb.cern.ch/repo/conditions/cond09/cond09_mc.000029.gen.COND/cond09_mc.000029.gen.COND._0002.pool.root
+RootDatabase.open                          0   0    INFO /cvmfs/atlas-condb.cern.ch/repo/conditions/cond09/cond09_mc.000029.gen.COND/cond09_mc.000029.gen.COND._0002.pool.root File version:52200
+CaloMgrDetDescrCnv                         0   0    INFO in createObj: creating a Calo Detector Manager object in the detector store
+CaloIdMgrDetDescrCnv                       0   0    INFO in createObj: creating a CaloDescrManager object in the detector store
+ClassIDSvc                                 0   0    INFO  getRegistryEntries: read 198 CLIDRegistry entries for module ALL
+CaloIDHelper_IDDetDescrCnv                 0   0    INFO in createObj: creating a CaloDM_ID helper object in the detector store
+CaloDM_ID                                  0   0    INFO initialize_from_dictionary
+AtlasDetectorID                            0   0    INFO initialize_from_dictionary - OK
+CaloIDHelper_IDDetDescrCnv                 0   0    INFO in createObj: creating a TTOnlineID helper object in the detector store
+TTOnlineID                                 0   0    INFO initialize_from_dictionary
+AtlasDetectorID                            0   0    INFO initialize_from_dictionary - OK
+CaloIDHelper_IDDetDescrCnv                 0   0    INFO in createObj: creating a CaloCell_SuperCell_ID helper object in the detector store
+CaloIDHelper_IDDetDescrCnv                 0   0    INFO in createObj: creating a LArEM_SuperCell_ID helper object in the detector store
+AtlasDetectorID                            0   0    INFO initialize_from_dictionary - OK
+CaloIDHelper_IDDetDescrCnv                 0   0    INFO in createObj: creating a LArHEC_SuperCell_ID helper object in the detector store
+AtlasDetectorID                            0   0    INFO initialize_from_dictionary - OK
+CaloIDHelper_IDDetDescrCnv                 0   0    INFO in createObj: creating a LArFCAL_SuperCell_ID helper object in the detector store
+AtlasDetectorID                            0   0    INFO initialize_from_dictionary - OK
+LArFCAL_Base_ID                            0   0    INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/FCalSuperCells2DNeighborsNew-April2014.txt
+LArFCAL_Base_ID                            0   0    INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/FCalSuperCells3DNeighborsNextNew-April2014.txt
+LArFCAL_Base_ID                            0   0    INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/FCalSuperCells3DNeighborsPrevNew-April2014.txt
+CaloIDHelper_IDDetDescrCnv                 0   0    INFO in createObj: creating a Tile_SuperCell_ID helper object in the detector store
+AtlasDetectorID                            0   0    INFO initialize_from_dictionary - OK
+TileNeighbour                              0   0    INFO Reading file  /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/TileSuperCellNeighbour.txt
+AtlasDetectorID                            0   0    INFO initialize_from_dictionary - OK
+CaloIdMgrDetDescrCnv                       0   0    INFO  Finished 
+CaloIdMgrDetDescrCnv                       0   0    INFO Initializing CaloIdMgr from values in CaloIdMgrDetDescrCnv 
+Domain[ROOT_All]                           0   0    INFO ->  Access   DbDatabase   READ      [ROOT_All] 8667C6F2-1559-DE11-A611-000423D9A21A
+Domain[ROOT_All]                           0   0    INFO                           /cvmfs/atlas-condb.cern.ch/repo/conditions/cond08/cond08_mc.000003.gen.COND/cond08_mc.000003.gen.COND._0064.pool.root
+RootDatabase.open                          0   0    INFO /cvmfs/atlas-condb.cern.ch/repo/conditions/cond08/cond08_mc.000003.gen.COND/cond08_mc.000003.gen.COND._0064.pool.root File version:52200
+AthenaHiveEventLoopMgr                     0   0    INFO   ===>>>  start processing event #1129572, run #204073 on slot 0,  0 events processed so far  <<<===
+ClassIDSvc                                 0   0    INFO  getRegistryEntries: read 470 CLIDRegistry entries for module ALL
+ClassIDSvc                                 0   0    INFO  getRegistryEntries: read 1795 CLIDRegistry entries for module ALL
+ClassIDSvc                                 0   0    INFO  getRegistryEntries: read 91 CLIDRegistry entries for module ALL
+ToolSvc.TileROD_Decoder.TileL2Builder      0   0    INFO TileL2Builder initialization completed
+ToolSvc.TileL2ContByteStreamTool           0   0    INFO Initializing TileL2ContByteStreamTool
+AthenaHiveEventLoopMgr                     1   1    INFO   ===>>>  start processing event #1129665, run #204073 on slot 1,  0 events processed so far  <<<===
+AthenaHiveEventLoopMgr                     2   2    INFO   ===>>>  start processing event #1131212, run #204073 on slot 2,  0 events processed so far  <<<===
+AthenaHiveEventLoopMgr                     3   3    INFO   ===>>>  start processing event #1131086, run #204073 on slot 3,  0 events processed so far  <<<===
+AthenaHiveEventLoopMgr                     1   1    INFO   ===>>>  done processing event #1129665, run #204073 on slot 1,  1 events processed so far  <<<===
+AthenaHiveEventLoopMgr                     0   0    INFO   ===>>>  done processing event #1129572, run #204073 on slot 0,  2 events processed so far  <<<===
+AthenaHiveEventLoopMgr                     2   2    INFO   ===>>>  done processing event #1131212, run #204073 on slot 2,  3 events processed so far  <<<===
+AthenaHiveEventLoopMgr                     4   0    INFO   ===>>>  start processing event #1130272, run #204073 on slot 0,  3 events processed so far  <<<===
+AthenaHiveEventLoopMgr                     5   1    INFO   ===>>>  start processing event #1131269, run #204073 on slot 1,  3 events processed so far  <<<===
+AthenaHiveEventLoopMgr                     6   2    INFO   ===>>>  start processing event #1130716, run #204073 on slot 2,  3 events processed so far  <<<===
+AthenaHiveEventLoopMgr                     3   3    INFO   ===>>>  done processing event #1131086, run #204073 on slot 3,  4 events processed so far  <<<===
+AthenaHiveEventLoopMgr                     4   0    INFO   ===>>>  done processing event #1130272, run #204073 on slot 0,  5 events processed so far  <<<===
+AthenaHiveEventLoopMgr                     5   1    INFO   ===>>>  done processing event #1131269, run #204073 on slot 1,  6 events processed so far  <<<===
+AthenaHiveEventLoopMgr                     7   0    INFO   ===>>>  start processing event #1132019, run #204073 on slot 0,  6 events processed so far  <<<===
+AthenaHiveEventLoopMgr                     8   1    INFO   ===>>>  start processing event #1132092, run #204073 on slot 1,  6 events processed so far  <<<===
+AthenaHiveEventLoopMgr                     9   3    INFO   ===>>>  start processing event #1130238, run #204073 on slot 3,  6 events processed so far  <<<===
+AthenaHiveEventLoopMgr                     6   2    INFO   ===>>>  done processing event #1130716, run #204073 on slot 2,  7 events processed so far  <<<===
+AthenaHiveEventLoopMgr                     7   0    INFO   ===>>>  done processing event #1132019, run #204073 on slot 0,  8 events processed so far  <<<===
+AthenaHiveEventLoopMgr                     8   1    INFO   ===>>>  done processing event #1132092, run #204073 on slot 1,  9 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    10   0    INFO   ===>>>  start processing event #1134553, run #204073 on slot 0,  9 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    11   1    INFO   ===>>>  start processing event #1130999, run #204073 on slot 1,  9 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    12   2    INFO   ===>>>  start processing event #1133461, run #204073 on slot 2,  9 events processed so far  <<<===
+AthenaHiveEventLoopMgr                     9   3    INFO   ===>>>  done processing event #1130238, run #204073 on slot 3,  10 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    10   0    INFO   ===>>>  done processing event #1134553, run #204073 on slot 0,  11 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    11   1    INFO   ===>>>  done processing event #1130999, run #204073 on slot 1,  12 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    13   0    INFO   ===>>>  start processing event #1131152, run #204073 on slot 0,  12 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    14   1    INFO   ===>>>  start processing event #1130142, run #204073 on slot 1,  12 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    15   3    INFO   ===>>>  start processing event #1132770, run #204073 on slot 3,  12 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    12   2    INFO   ===>>>  done processing event #1133461, run #204073 on slot 2,  13 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    13   0    INFO   ===>>>  done processing event #1131152, run #204073 on slot 0,  14 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    14   1    INFO   ===>>>  done processing event #1130142, run #204073 on slot 1,  15 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    16   0    INFO   ===>>>  start processing event #1132365, run #204073 on slot 0,  15 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    17   1    INFO   ===>>>  start processing event #1136791, run #204073 on slot 1,  15 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    18   2    INFO   ===>>>  start processing event #1133781, run #204073 on slot 2,  15 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    15   3    INFO   ===>>>  done processing event #1132770, run #204073 on slot 3,  16 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    16   0    INFO   ===>>>  done processing event #1132365, run #204073 on slot 0,  17 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    17   1    INFO   ===>>>  done processing event #1136791, run #204073 on slot 1,  18 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    19   0    INFO   ===>>>  start processing event #1132067, run #204073 on slot 0,  18 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    20   1    INFO   ===>>>  start processing event #1138637, run #204073 on slot 1,  18 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    21   3    INFO   ===>>>  start processing event #1139495, run #204073 on slot 3,  18 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    18   2    INFO   ===>>>  done processing event #1133781, run #204073 on slot 2,  19 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    19   0    INFO   ===>>>  done processing event #1132067, run #204073 on slot 0,  20 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    20   1    INFO   ===>>>  done processing event #1138637, run #204073 on slot 1,  21 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    22   0    INFO   ===>>>  start processing event #1140193, run #204073 on slot 0,  21 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    23   1    INFO   ===>>>  start processing event #1142953, run #204073 on slot 1,  21 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    24   2    INFO   ===>>>  start processing event #1139127, run #204073 on slot 2,  21 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    21   3    INFO   ===>>>  done processing event #1139495, run #204073 on slot 3,  22 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    22   0    INFO   ===>>>  done processing event #1140193, run #204073 on slot 0,  23 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    23   1    INFO   ===>>>  done processing event #1142953, run #204073 on slot 1,  24 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    25   0    INFO   ===>>>  start processing event #1141272, run #204073 on slot 0,  24 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    26   1    INFO   ===>>>  start processing event #1137117, run #204073 on slot 1,  24 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    27   3    INFO   ===>>>  start processing event #1139599, run #204073 on slot 3,  24 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    24   2    INFO   ===>>>  done processing event #1139127, run #204073 on slot 2,  25 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    25   0    INFO   ===>>>  done processing event #1141272, run #204073 on slot 0,  26 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    26   1    INFO   ===>>>  done processing event #1137117, run #204073 on slot 1,  27 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    28   0    INFO   ===>>>  start processing event #1140314, run #204073 on slot 0,  27 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    29   1    INFO   ===>>>  start processing event #1133685, run #204073 on slot 1,  27 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    30   2    INFO   ===>>>  start processing event #1143279, run #204073 on slot 2,  27 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    27   3    INFO   ===>>>  done processing event #1139599, run #204073 on slot 3,  28 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    28   0    INFO   ===>>>  done processing event #1140314, run #204073 on slot 0,  29 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    29   1    INFO   ===>>>  done processing event #1133685, run #204073 on slot 1,  30 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    31   0    INFO   ===>>>  start processing event #1137563, run #204073 on slot 0,  30 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    32   1    INFO   ===>>>  start processing event #1139927, run #204073 on slot 1,  30 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    33   3    INFO   ===>>>  start processing event #1141197, run #204073 on slot 3,  30 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    30   2    INFO   ===>>>  done processing event #1143279, run #204073 on slot 2,  31 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    31   0    INFO   ===>>>  done processing event #1137563, run #204073 on slot 0,  32 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    32   1    INFO   ===>>>  done processing event #1139927, run #204073 on slot 1,  33 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    34   0    INFO   ===>>>  start processing event #1140039, run #204073 on slot 0,  33 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    35   1    INFO   ===>>>  start processing event #1142531, run #204073 on slot 1,  33 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    36   2    INFO   ===>>>  start processing event #1139475, run #204073 on slot 2,  33 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    33   3    INFO   ===>>>  done processing event #1141197, run #204073 on slot 3,  34 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    34   0    INFO   ===>>>  done processing event #1140039, run #204073 on slot 0,  35 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    35   1    INFO   ===>>>  done processing event #1142531, run #204073 on slot 1,  36 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    37   0    INFO   ===>>>  start processing event #1139958, run #204073 on slot 0,  36 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    38   1    INFO   ===>>>  start processing event #1143765, run #204073 on slot 1,  36 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    39   3    INFO   ===>>>  start processing event #1143097, run #204073 on slot 3,  36 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    36   2    INFO   ===>>>  done processing event #1139475, run #204073 on slot 2,  37 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    37   0    INFO   ===>>>  done processing event #1139958, run #204073 on slot 0,  38 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    38   1    INFO   ===>>>  done processing event #1143765, run #204073 on slot 1,  39 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    40   0    INFO   ===>>>  start processing event #1134147, run #204073 on slot 0,  39 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    41   1    INFO   ===>>>  start processing event #1137156, run #204073 on slot 1,  39 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    42   2    INFO   ===>>>  start processing event #1136377, run #204073 on slot 2,  39 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    39   3    INFO   ===>>>  done processing event #1143097, run #204073 on slot 3,  40 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    40   0    INFO   ===>>>  done processing event #1134147, run #204073 on slot 0,  41 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    41   1    INFO   ===>>>  done processing event #1137156, run #204073 on slot 1,  42 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    43   0    INFO   ===>>>  start processing event #1137842, run #204073 on slot 0,  42 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    44   1    INFO   ===>>>  start processing event #1141705, run #204073 on slot 1,  42 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    45   3    INFO   ===>>>  start processing event #1143410, run #204073 on slot 3,  42 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    42   2    INFO   ===>>>  done processing event #1136377, run #204073 on slot 2,  43 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    43   0    INFO   ===>>>  done processing event #1137842, run #204073 on slot 0,  44 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    44   1    INFO   ===>>>  done processing event #1141705, run #204073 on slot 1,  45 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    46   0    INFO   ===>>>  start processing event #1144170, run #204073 on slot 0,  45 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    47   1    INFO   ===>>>  start processing event #1145987, run #204073 on slot 1,  45 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    48   2    INFO   ===>>>  start processing event #1145633, run #204073 on slot 2,  45 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    45   3    INFO   ===>>>  done processing event #1143410, run #204073 on slot 3,  46 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    46   0    INFO   ===>>>  done processing event #1144170, run #204073 on slot 0,  47 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    47   1    INFO   ===>>>  done processing event #1145987, run #204073 on slot 1,  48 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    49   0    INFO   ===>>>  start processing event #1135005, run #204073 on slot 0,  48 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    50   1    INFO   ===>>>  start processing event #1142167, run #204073 on slot 1,  48 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    51   3    INFO   ===>>>  start processing event #1144646, run #204073 on slot 3,  48 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    48   2    INFO   ===>>>  done processing event #1145633, run #204073 on slot 2,  49 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    49   0    INFO   ===>>>  done processing event #1135005, run #204073 on slot 0,  50 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    50   1    INFO   ===>>>  done processing event #1142167, run #204073 on slot 1,  51 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    52   0    INFO   ===>>>  start processing event #1145027, run #204073 on slot 0,  51 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    53   1    INFO   ===>>>  start processing event #1144112, run #204073 on slot 1,  51 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    54   2    INFO   ===>>>  start processing event #1138485, run #204073 on slot 2,  51 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    51   3    INFO   ===>>>  done processing event #1144646, run #204073 on slot 3,  52 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    52   0    INFO   ===>>>  done processing event #1145027, run #204073 on slot 0,  53 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    53   1    INFO   ===>>>  done processing event #1144112, run #204073 on slot 1,  54 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    55   0    INFO   ===>>>  start processing event #1144565, run #204073 on slot 0,  54 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    56   1    INFO   ===>>>  start processing event #1139498, run #204073 on slot 1,  54 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    57   3    INFO   ===>>>  start processing event #1136546, run #204073 on slot 3,  54 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    54   2    INFO   ===>>>  done processing event #1138485, run #204073 on slot 2,  55 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    55   0    INFO   ===>>>  done processing event #1144565, run #204073 on slot 0,  56 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    56   1    INFO   ===>>>  done processing event #1139498, run #204073 on slot 1,  57 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    58   0    INFO   ===>>>  start processing event #1143799, run #204073 on slot 0,  57 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    59   1    INFO   ===>>>  start processing event #1142877, run #204073 on slot 1,  57 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    60   2    INFO   ===>>>  start processing event #1149894, run #204073 on slot 2,  57 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    57   3    INFO   ===>>>  done processing event #1136546, run #204073 on slot 3,  58 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    58   0    INFO   ===>>>  done processing event #1143799, run #204073 on slot 0,  59 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    59   1    INFO   ===>>>  done processing event #1142877, run #204073 on slot 1,  60 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    61   0    INFO   ===>>>  start processing event #1145364, run #204073 on slot 0,  60 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    62   1    INFO   ===>>>  start processing event #1143770, run #204073 on slot 1,  60 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    63   3    INFO   ===>>>  start processing event #1148361, run #204073 on slot 3,  60 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    60   2    INFO   ===>>>  done processing event #1149894, run #204073 on slot 2,  61 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    61   0    INFO   ===>>>  done processing event #1145364, run #204073 on slot 0,  62 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    62   1    INFO   ===>>>  done processing event #1143770, run #204073 on slot 1,  63 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    64   0    INFO   ===>>>  start processing event #1148167, run #204073 on slot 0,  63 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    65   1    INFO   ===>>>  start processing event #1138948, run #204073 on slot 1,  63 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    66   2    INFO   ===>>>  start processing event #1144808, run #204073 on slot 2,  63 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    63   3    INFO   ===>>>  done processing event #1148361, run #204073 on slot 3,  64 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    64   0    INFO   ===>>>  done processing event #1148167, run #204073 on slot 0,  65 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    65   1    INFO   ===>>>  done processing event #1138948, run #204073 on slot 1,  66 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    67   0    INFO   ===>>>  start processing event #1145832, run #204073 on slot 0,  66 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    68   1    INFO   ===>>>  start processing event #1153100, run #204073 on slot 1,  66 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    69   3    INFO   ===>>>  start processing event #1142524, run #204073 on slot 3,  66 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    66   2    INFO   ===>>>  done processing event #1144808, run #204073 on slot 2,  67 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    67   0    INFO   ===>>>  done processing event #1145832, run #204073 on slot 0,  68 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    68   1    INFO   ===>>>  done processing event #1153100, run #204073 on slot 1,  69 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    70   0    INFO   ===>>>  start processing event #1138294, run #204073 on slot 0,  69 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    71   1    INFO   ===>>>  start processing event #1138350, run #204073 on slot 1,  69 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    72   2    INFO   ===>>>  start processing event #1149424, run #204073 on slot 2,  69 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    69   3    INFO   ===>>>  done processing event #1142524, run #204073 on slot 3,  70 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    70   0    INFO   ===>>>  done processing event #1138294, run #204073 on slot 0,  71 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    71   1    INFO   ===>>>  done processing event #1138350, run #204073 on slot 1,  72 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    73   0    INFO   ===>>>  start processing event #1151102, run #204073 on slot 0,  72 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    74   1    INFO   ===>>>  start processing event #1152242, run #204073 on slot 1,  72 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    75   3    INFO   ===>>>  start processing event #1148416, run #204073 on slot 3,  72 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    72   2    INFO   ===>>>  done processing event #1149424, run #204073 on slot 2,  73 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    73   0    INFO   ===>>>  done processing event #1151102, run #204073 on slot 0,  74 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    74   1    INFO   ===>>>  done processing event #1152242, run #204073 on slot 1,  75 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    76   0    INFO   ===>>>  start processing event #1142753, run #204073 on slot 0,  75 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    77   1    INFO   ===>>>  start processing event #1149997, run #204073 on slot 1,  75 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    78   2    INFO   ===>>>  start processing event #1151617, run #204073 on slot 2,  75 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    75   3    INFO   ===>>>  done processing event #1148416, run #204073 on slot 3,  76 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    76   0    INFO   ===>>>  done processing event #1142753, run #204073 on slot 0,  77 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    77   1    INFO   ===>>>  done processing event #1149997, run #204073 on slot 1,  78 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    79   0    INFO   ===>>>  start processing event #1149794, run #204073 on slot 0,  78 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    80   1    INFO   ===>>>  start processing event #1152504, run #204073 on slot 1,  78 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    81   3    INFO   ===>>>  start processing event #1142485, run #204073 on slot 3,  78 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    78   2    INFO   ===>>>  done processing event #1151617, run #204073 on slot 2,  79 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    79   0    INFO   ===>>>  done processing event #1149794, run #204073 on slot 0,  80 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    80   1    INFO   ===>>>  done processing event #1152504, run #204073 on slot 1,  81 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    82   0    INFO   ===>>>  start processing event #1151364, run #204073 on slot 0,  81 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    83   1    INFO   ===>>>  start processing event #1143901, run #204073 on slot 1,  81 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    84   2    INFO   ===>>>  start processing event #1153979, run #204073 on slot 2,  81 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    81   3    INFO   ===>>>  done processing event #1142485, run #204073 on slot 3,  82 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    82   0    INFO   ===>>>  done processing event #1151364, run #204073 on slot 0,  83 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    83   1    INFO   ===>>>  done processing event #1143901, run #204073 on slot 1,  84 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    85   0    INFO   ===>>>  start processing event #1150212, run #204073 on slot 0,  84 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    86   1    INFO   ===>>>  start processing event #1152633, run #204073 on slot 1,  84 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    87   3    INFO   ===>>>  start processing event #1155482, run #204073 on slot 3,  84 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    84   2    INFO   ===>>>  done processing event #1153979, run #204073 on slot 2,  85 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    85   0    INFO   ===>>>  done processing event #1150212, run #204073 on slot 0,  86 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    86   1    INFO   ===>>>  done processing event #1152633, run #204073 on slot 1,  87 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    88   0    INFO   ===>>>  start processing event #1150472, run #204073 on slot 0,  87 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    89   1    INFO   ===>>>  start processing event #1140275, run #204073 on slot 1,  87 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    90   2    INFO   ===>>>  start processing event #1145882, run #204073 on slot 2,  87 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    87   3    INFO   ===>>>  done processing event #1155482, run #204073 on slot 3,  88 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    88   0    INFO   ===>>>  done processing event #1150472, run #204073 on slot 0,  89 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    89   1    INFO   ===>>>  done processing event #1140275, run #204073 on slot 1,  90 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    91   0    INFO   ===>>>  start processing event #1151732, run #204073 on slot 0,  90 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    92   1    INFO   ===>>>  start processing event #1137896, run #204073 on slot 1,  90 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    93   3    INFO   ===>>>  start processing event #1156381, run #204073 on slot 3,  90 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    90   2    INFO   ===>>>  done processing event #1145882, run #204073 on slot 2,  91 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    91   0    INFO   ===>>>  done processing event #1151732, run #204073 on slot 0,  92 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    92   1    INFO   ===>>>  done processing event #1137896, run #204073 on slot 1,  93 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    94   0    INFO   ===>>>  start processing event #1149161, run #204073 on slot 0,  93 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    95   1    INFO   ===>>>  start processing event #1153794, run #204073 on slot 1,  93 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    96   2    INFO   ===>>>  start processing event #1151312, run #204073 on slot 2,  93 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    93   3    INFO   ===>>>  done processing event #1156381, run #204073 on slot 3,  94 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    94   0    INFO   ===>>>  done processing event #1149161, run #204073 on slot 0,  95 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    95   1    INFO   ===>>>  done processing event #1153794, run #204073 on slot 1,  96 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    97   0    INFO   ===>>>  start processing event #1148893, run #204073 on slot 0,  96 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    98   1    INFO   ===>>>  start processing event #1156938, run #204073 on slot 1,  96 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    99   3    INFO   ===>>>  start processing event #1156351, run #204073 on slot 3,  96 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    96   2    INFO   ===>>>  done processing event #1151312, run #204073 on slot 2,  97 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    97   0    INFO   ===>>>  done processing event #1148893, run #204073 on slot 0,  98 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    98   1    INFO   ===>>>  done processing event #1156938, run #204073 on slot 1,  99 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    99   3    INFO   ===>>>  done processing event #1156351, run #204073 on slot 3,  100 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    99   3    INFO ---> Loop Finished (seconds): 4.04525
+/cvmfs/atlas-condb.cern.ch/repo/condi...            INFO Database being retired...
+Domain[ROOT_All]                                    INFO ->  Deaccess DbDatabase   READ      [ROOT_All] 06C9EAE8-6F5B-E011-BAAA-003048F0E7AC
+/cvmfs/atlas-condb.cern.ch/repo/condi...            INFO Database being retired...
+Domain[ROOT_All]                                    INFO ->  Deaccess DbDatabase   READ      [ROOT_All] 8667C6F2-1559-DE11-A611-000423D9A21A
+Domain[ROOT_All]                                    INFO >   Deaccess DbDomain     READ      [ROOT_All] 
+ApplicationMgr                                      INFO Application Manager Stopped successfully
+IncidentProcAlg1                                    INFO Finalize
+SGInputLoader                                       INFO Finalizing SGInputLoader...
+Finalizer                                           INFO Finalizing Finalizer...
 Finalize: compared 10 dumps
-CondInputLoader                                    INFO Finalizing CondInputLoader...
-IncidentProcAlg2                                   INFO Finalize
-AvalancheSchedulerSvc                              INFO Joining Scheduler thread
-PyComponentMgr                                     INFO Finalizing PyComponentMgr...
-EventDataSvc                                       INFO Finalizing EventDataSvc - package version StoreGate-00-00-00
-IdDictDetDescrCnv                                  INFO in finalize
-IOVDbFolder                                        INFO Folder /LAR/Align (PoolRef) db-read 1/1 objs/chan/bytes 1/1/170 ((     0.65 ))s
-IOVDbFolder                                        INFO Folder /TILE/OFL02/CALIB/CES (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
-IOVDbFolder                                        INFO Folder /TILE/OFL02/CALIB/CIS/FIT/LIN (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
-IOVDbFolder                                        INFO Folder /TILE/OFL02/CALIB/CIS/FIT/NLN (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
-IOVDbFolder                                        INFO Folder /TILE/OFL02/CALIB/EMS (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
-IOVDbFolder                                        INFO Folder /TILE/OFL02/CALIB/LAS/FIBER (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
-IOVDbFolder                                        INFO Folder /TILE/OFL02/CALIB/LAS/LIN (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
-IOVDbFolder                                        INFO Folder /TILE/OFL02/CALIB/LAS/NLN (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
-IOVDbFolder                                        INFO Folder /TILE/OFL02/NOISE/SAMPLE (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
-IOVDbFolder                                        INFO Folder /TILE/OFL02/STATUS/ADC (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
-IOVDbFolder                                        INFO Folder /TILE/OFL02/TIME/CHANNELOFFSET/PHY (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
-IOVDbFolder                                        INFO Folder /TILE/ONL01/STATUS/ADC (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
-IOVDbFolder                                        INFO Folder /LAR/LArCellPositionShift (PoolRef) db-read 1/1 objs/chan/bytes 1/1/195 ((     0.77 ))s
-IOVDbSvc                                           INFO  bytes in ((      1.42 ))s
-IOVDbSvc                                           INFO Connection sqlite://;schema=mycool.db;dbname=OFLP200 : nConnect: 0 nFolders: 0 ReadTime: ((     0.00 ))s
-IOVDbSvc                                           INFO Connection COOLOFL_LAR/OFLP200 : nConnect: 2 nFolders: 2 ReadTime: ((     1.42 ))s
-IOVDbSvc                                           INFO Connection COOLOFL_TILE/OFLP200 : nConnect: 1 nFolders: 11 ReadTime: ((     0.00 ))s
-AthDictLoaderSvc                                   INFO in finalize...
-ToolSvc                                            INFO Removing all tools created by ToolSvc
-ToolSvc.ByteStreamMetadataTool                     INFO in finalize()
-ToolSvc.TileROD_Decoder.TileL2Builder              INFO Finalizing
-*****Chrono*****                                   INFO ****************************************************************************************************
-*****Chrono*****                                   INFO WARNING: MT job; statistics are unreliable
-*****Chrono*****                                   INFO  The Final CPU consumption ( Chrono ) Table (ordered)
-*****Chrono*****                                   INFO ****************************************************************************************************
-cObjR_ALL                                          INFO Time User   : Tot=  360 [ms] Ave/Min/Max=  180(+-  180)/    0/  360 [ms] #=  2
-cObj_ALL                                           INFO Time User   : Tot=  410 [ms] Ave/Min/Max=  205(+-  175)/   30/  380 [ms] #=  2
-ChronoStatSvc                                      INFO Time User   : Tot= 8.57  [s]                                             #=  1
-*****Chrono*****                                   INFO ****************************************************************************************************
-ChronoStatSvc.finalize()                           INFO  Service finalized successfully 
-ApplicationMgr                                     INFO Application Manager Finalized successfully
-ApplicationMgr                                     INFO Application Manager Terminated successfully
+CondInputLoader                                     INFO Finalizing CondInputLoader...
+IncidentProcAlg2                                    INFO Finalize
+AvalancheSchedulerSvc                               INFO Joining Scheduler thread
+PyComponentMgr                                      INFO Finalizing PyComponentMgr...
+EventDataSvc                                        INFO Finalizing EventDataSvc - package version StoreGate-00-00-00
+IdDictDetDescrCnv                                   INFO in finalize
+IOVDbFolder                                         INFO Folder /LAR/Align (PoolRef) db-read 1/1 objs/chan/bytes 1/1/170 ((     0.05 ))s
+IOVDbFolder                                         INFO Folder /TILE/OFL02/CALIB/CES (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
+IOVDbFolder                                         INFO Folder /TILE/OFL02/CALIB/CIS/FIT/LIN (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
+IOVDbFolder                                         INFO Folder /TILE/OFL02/CALIB/CIS/FIT/NLN (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
+IOVDbFolder                                         INFO Folder /TILE/OFL02/CALIB/EMS (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
+IOVDbFolder                                         INFO Folder /TILE/OFL02/CALIB/LAS/FIBER (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
+IOVDbFolder                                         INFO Folder /TILE/OFL02/CALIB/LAS/LIN (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
+IOVDbFolder                                         INFO Folder /TILE/OFL02/CALIB/LAS/NLN (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
+IOVDbFolder                                         INFO Folder /TILE/OFL02/NOISE/SAMPLE (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
+IOVDbFolder                                         INFO Folder /TILE/OFL02/STATUS/ADC (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
+IOVDbFolder                                         INFO Folder /TILE/OFL02/TIME/CHANNELOFFSET/PHY (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
+IOVDbFolder                                         INFO Folder /TILE/ONL01/STATUS/ADC (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
+IOVDbFolder                                         INFO Folder /LAR/LArCellPositionShift (PoolRef) db-read 1/1 objs/chan/bytes 1/1/195 ((     0.03 ))s
+IOVDbSvc                                            INFO  bytes in ((      0.08 ))s
+IOVDbSvc                                            INFO Connection sqlite://;schema=mycool.db;dbname=OFLP200 : nConnect: 0 nFolders: 0 ReadTime: ((     0.00 ))s
+IOVDbSvc                                            INFO Connection COOLOFL_LAR/OFLP200 : nConnect: 2 nFolders: 2 ReadTime: ((     0.08 ))s
+IOVDbSvc                                            INFO Connection COOLOFL_TILE/OFLP200 : nConnect: 1 nFolders: 11 ReadTime: ((     0.00 ))s
+AthDictLoaderSvc                                    INFO in finalize...
+ToolSvc                                             INFO Removing all tools created by ToolSvc
+ToolSvc.TileROD_Decoder.TileL2Builder               INFO Finalizing
+ToolSvc.ByteStreamMetadataTool                      INFO in finalize()
+*****Chrono*****                                    INFO ****************************************************************************************************
+*****Chrono*****                                    INFO WARNING: MT job; statistics are unreliable
+*****Chrono*****                                    INFO  The Final CPU consumption ( Chrono ) Table (ordered)
+*****Chrono*****                                    INFO ****************************************************************************************************
+cObjR_ALL                                           INFO Time User   : Tot=  300 [ms] Ave/Min/Max=  150(+-  140)/   10/  290 [ms] #=  2
+cObj_ALL                                            INFO Time User   : Tot=  330 [ms] Ave/Min/Max=  165(+-  145)/   20/  310 [ms] #=  2
+ChronoStatSvc                                       INFO Time User   : Tot= 6.03  [s]                                             #=  1
+*****Chrono*****                                    INFO ****************************************************************************************************
+ChronoStatSvc.finalize()                            INFO  Service finalized successfully 
+ApplicationMgr                                      INFO Application Manager Finalized successfully
+ApplicationMgr                                      INFO Application Manager Terminated successfully
 Py:Athena            INFO leaving with code 0: "successful run"
diff --git a/TileCalorimeter/TileSvc/TileByteStream/share/TileLaserObjByteStreamCnv_test.ref b/TileCalorimeter/TileSvc/TileByteStream/share/TileLaserObjByteStreamCnv_test.ref
index 36413e6063a..ce636be69c2 100644
--- a/TileCalorimeter/TileSvc/TileByteStream/share/TileLaserObjByteStreamCnv_test.ref
+++ b/TileCalorimeter/TileSvc/TileByteStream/share/TileLaserObjByteStreamCnv_test.ref
@@ -1,16 +1,16 @@
-Wed Aug  7 22:20:42 CEST 2019
+Fri Nov 29 11:11:34 CET 2019
 Preloading tcmalloc_minimal.so
 Py:Athena            INFO including file "AthenaCommon/Preparation.py"
-Py:Athena            INFO using release [WorkDir-22.0.3] [x86_64-centos7-gcc8-opt] [test.TileRecUtils-20190807/f9360ea601f] -- built on [2019-08-07T2151]
+Py:Athena            INFO using release [WorkDir-22.0.9] [x86_64-centos7-gcc8-opt] [tilecal-12bit/82699bf159] -- built on [2019-11-29T1101]
 Py:Athena            INFO including file "AthenaCommon/Atlas.UnixStandardJob.py"
 Py:Athena            INFO executing ROOT6Setup
 Py:Athena            INFO including file "AthenaCommon/Execution.py"
 Py:Athena            INFO including file "TileByteStream/TileLaserObjByteStreamCnv_test.py"
-SetGeometryVersion.py obtained major release version 22
+Py:Athena            INFO SetGeometryVersion.py obtained major release version 22
 Py:Athena            INFO including file "IdDictDetDescrCnv/IdDictDetDescrCnv_joboptions.py"
-Py:ConfigurableDb    INFO Read module info for 5518 configurables from 5 genConfDb files
+Py:ConfigurableDb    INFO Read module info for 5635 configurables from 11 genConfDb files
 Py:ConfigurableDb    INFO No duplicates have been found: that's good !
-EventInfoMgtInit: Got release version  Athena-22.0.3
+EventInfoMgtInit: Got release version  Athena-22.0.9
 Py:IOVDbSvc.CondDB    INFO Setting up conditions DB access to instance OFLP200
 Py:Athena            INFO including file "TileConditions/TileConditions_jobOptions.py"
 Py:TileInfoConf.     INFO Adding TileCablingSvc to ServiceMgr
@@ -22,20 +22,22 @@ Py:TileInfoConf.     INFO Changing default TileCondToolEmscale configuration to
 Py:TileInfoConf.     INFO Changing default TileCondToolNoiseSample configuration to COOL source
 Py:TileInfoConf.     INFO Changing default TileCondToolTiming configuration to COOL source
 Py:TileConditions_jobOptions.py    INFO Adjusting TileInfo to return cell noise for Opt.Filter without iterations
+Py:TileConditions_jobOptions.py    INFO Setting 10-bit ADC configuration
+Py:TileInfoConf.     INFO Setting 10-bit Tile ADC
 Py:Athena            INFO including file "AthenaCommon/runbatch.py"
 ApplicationMgr       INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0
 ApplicationMgr       INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0
 ApplicationMgr    SUCCESS 
 ====================================================================================================================================
-                                                   Welcome to ApplicationMgr (GaudiCoreSvc v32r0)
-                                          running on lxplus725.cern.ch on Wed Aug  7 22:20:56 2019
+                                                   Welcome to ApplicationMgr (GaudiCoreSvc v32r2)
+                                          running on pcpraha5 on Fri Nov 29 11:11:40 2019
 ====================================================================================================================================
 ApplicationMgr       INFO Application Manager Configured successfully
 ApplicationMgr       INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0
 StatusCodeSvc        INFO initialize
 AthDictLoaderSvc     INFO in initialize...
 AthDictLoaderSvc     INFO acquired Dso-registry
-ClassIDSvc           INFO  getRegistryEntries: read 7079 CLIDRegistry entries for module ALL
+ClassIDSvc           INFO  getRegistryEntries: read 7151 CLIDRegistry entries for module ALL
 CoreDumpSvc          INFO install f-a-t-a-l handler... (flag = -1)
 CoreDumpSvc          INFO Handling signals: 11(Segmentation fault) 7(Bus error) 4(Illegal instruction) 8(Floating point exception) 
 MetaDataSvc          INFO Initializing MetaDataSvc - package version AthenaServices-00-00-00
@@ -44,8 +46,8 @@ PoolSvc              INFO io_register[PoolSvc](xmlcatalog_file:PoolFileCatalog.x
 PoolSvc              INFO Set connectionsvc retry/timeout/IDLE timeout to  'ConnectionRetrialPeriod':300/ 'ConnectionRetrialTimeOut':3600/ 'ConnectionTimeOut':5 seconds with connection cleanup disabled
 PoolSvc              INFO Frontier compression level set to 5
 DBReplicaSvc         INFO Frontier server at (serverurl=http://atlasfrontier-local.cern.ch:8000/atlr)(serverurl=http://atlasfrontier-ai.cern.ch:8000/atlr)(serverurl=http://lcgft-atlas.gridpp.rl.ac.uk:3128/frontierATLAS)(serverurl=http://ccfrontier.in2p3.fr:23128/ccin2p3-AtlasFrontier)(proxyurl=http://ca-proxy.cern.ch:3128)(proxyurl=http://ca-proxy-meyrin.cern.ch:3128)(proxyurl=http://ca-proxy-wigner.cern.ch:3128)(proxyurl=http://atlasbpfrontier.cern.ch:3127)(proxyurl=http://atlasbpfrontier.fnal.gov:3127) will be considered for COOL data
-DBReplicaSvc         INFO Read replica configuration from /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-06T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/dbreplica.config
-DBReplicaSvc         INFO Total of 10 servers found for host lxplus725.cern.ch [ATLF ATLAS_COOLPROD atlas_dd ATLAS_CONFIG INT8R INTR ATONR_COOL ATONR_CONF DEVDB11 ATLF ]
+DBReplicaSvc         INFO Read replica configuration from /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/dbreplica.config
+DBReplicaSvc         INFO Total of 10 servers found for host pcpraha5.dyndns.cern.ch [ATLF ATLAS_COOLPROD atlas_dd ATLAS_CONFIG INT8R INTR ATONR_COOL ATONR_CONF DEVDB11 ATLF ]
 PoolSvc              INFO Successfully setup replica sorting algorithm
 PoolSvc              INFO Setting up APR FileCatalog and Streams
 PoolSvc           WARNING Unable to locate catalog for prfile:poolcond/PoolCat_oflcond.xml check your ATLAS_POOLCOND_PATH and DATAPATH variables
@@ -68,7 +70,7 @@ ByteStreamAddre...   INFO initialized
 ByteStreamAddre...   INFO -- Will fill Store with id =  0
 IOVDbSvc             INFO preLoadAddresses: Removing folder /TagInfo. It should only be in the file meta data and was not found.
 IOVDbSvc             INFO Opening COOL connection for COOLOFL_LAR/OFLP200
-ClassIDSvc           INFO  getRegistryEntries: read 3223 CLIDRegistry entries for module ALL
+ClassIDSvc           INFO  getRegistryEntries: read 3291 CLIDRegistry entries for module ALL
 IOVSvc               INFO No IOVSvcTool associated with store "StoreGateSvc"
 IOVSvc.IOVSvcTool    INFO IOVRanges will be checked at every Event
 IOVDbSvc             INFO Opening COOL connection for COOLOFL_TILE/OFLP200
@@ -87,7 +89,7 @@ IOVDbSvc             INFO Added taginfo remove for /TILE/OFL02/STATUS/ADC
 IOVDbSvc             INFO Added taginfo remove for /TILE/OFL02/TIME/CHANNELOFFSET/PHY
 IOVDbSvc             INFO Added taginfo remove for /TILE/ONL01/STATUS/ADC
 IOVDbSvc             INFO Added taginfo remove for /LAR/LArCellPositionShift
-ClassIDSvc           INFO  getRegistryEntries: read 17 CLIDRegistry entries for module ALL
+ClassIDSvc           INFO  getRegistryEntries: read 24 CLIDRegistry entries for module ALL
 DetDescrCnvSvc       INFO  initializing 
 DetDescrCnvSvc       INFO Found DetectorStore service
 DetDescrCnvSvc       INFO  filling proxies for detector managers 
@@ -122,8 +124,6 @@ DetDescrCnvSvc       INFO  filling address for MDTIDHELPER with CLID 4170 and st
 DetDescrCnvSvc       INFO  filling address for CSCIDHELPER with CLID 4171 and storage type 68 to detector store 
 DetDescrCnvSvc       INFO  filling address for RPCIDHELPER with CLID 4172 and storage type 68 to detector store 
 DetDescrCnvSvc       INFO  filling address for TGCIDHELPER with CLID 4173 and storage type 68 to detector store 
-DetDescrCnvSvc       INFO  filling address for STGCIDHELPER with CLID 4174 and storage type 68 to detector store 
-DetDescrCnvSvc       INFO  filling address for MMIDHELPER with CLID 4175 and storage type 68 to detector store 
 DetDescrCnvSvc       INFO  filling address for CaloLVL1_ID with CLID 108133391 and storage type 68 to detector store 
 DetDescrCnvSvc       INFO  filling address for CaloCell_ID with CLID 123500438 and storage type 68 to detector store 
 DetDescrCnvSvc       INFO  filling address for CaloCell_SuperCell_ID with CLID 128365736 and storage type 68 to detector store 
@@ -180,7 +180,7 @@ BarrelConstruction   INFO   Use sagging in geometry  ? 0
 EMECConstruction     INFO multi-layered version of absorbers activated, parameter value is 1
 EMECConstruction     INFO activating LAr::EMEC::Pos::InnerWheel
 EMECConstruction     INFO activating LAr::EMEC::Pos::OuterWheel
-ClassIDSvc           INFO  getRegistryEntries: read 2987 CLIDRegistry entries for module ALL
+ClassIDSvc           INFO  getRegistryEntries: read 2988 CLIDRegistry entries for module ALL
 CaloIDHelper_ID...   INFO in createObj: creating a TileTBID helper object in the detector store
 TileTBID             INFO initialize_from_dictionary 
 AtlasDetectorID      INFO initialize_from_dictionary - OK
@@ -189,7 +189,7 @@ EMECConstruction     INFO multi-layered version of absorbers activated, paramete
 EMECConstruction     INFO activating LAr::EMEC::Neg::InnerWheel
 EMECConstruction     INFO activating LAr::EMEC::Neg::OuterWheel
 EndcapDMConstru...   INFO Start building EC electronics geometry
-GeoModelSvc          INFO GeoModelSvc.LArDetectorToolNV	 SZ= 24344Kb 	 Time = 0.55S
+GeoModelSvc          INFO GeoModelSvc.LArDetectorToolNV	 SZ= 25368Kb 	 Time = 0.56S
 GeoModelSvc.Til...   INFO  Entering TileDetectorTool::create()
 TileDddbManager      INFO m_tag = ATLAS-R2-2016-01-00-01
 TileDddbManager      INFO n_tiglob = 5
@@ -200,7 +200,7 @@ TileDddbManager      INFO n_tilb = 21
 TileDddbManager      INFO n_tileSwitches = 1
 CaloIDHelper_ID...   INFO in createObj: creating a TileID helper object in the detector store
 AtlasDetectorID      INFO initialize_from_dictionary - OK
-TileNeighbour        INFO Reading file  /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-06T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/TileNeighbour_reduced.txt
+TileNeighbour        INFO Reading file  /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/TileNeighbour_reduced.txt
 TileHWIDDetDesc...   INFO in createObj: creating a TileHWID helper object in the detector store
 TileHWID             INFO initialize_from_dictionary 
 AtlasDetectorID      INFO initialize_from_dictionary - OK
@@ -212,9 +212,9 @@ CaloIDHelper_ID...   INFO in createObj: creating a LArHEC_ID helper object in th
 AtlasDetectorID      INFO initialize_from_dictionary - OK
 CaloIDHelper_ID...   INFO in createObj: creating a LArFCAL_ID helper object in the detector store
 AtlasDetectorID      INFO initialize_from_dictionary - OK
-LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-06T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/FCal2DNeighbors-April2011.txt
-LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-06T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/FCal3DNeighborsNext-April2011.txt
-LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-06T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/FCal3DNeighborsPrev-April2011.txt
+LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/FCal2DNeighbors-April2011.txt
+LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/FCal3DNeighborsNext-April2011.txt
+LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/FCal3DNeighborsPrev-April2011.txt
 CaloIDHelper_ID...   INFO in createObj: creating a LArMiniFCAL_ID helper object in the detector store
 AtlasDetectorID      INFO initialize_from_dictionary - OK
 LArMiniFCAL_ID       INFO  initialize_from_dict - LArCalorimeter dictionary does NOT contain miniFCAL description. Unable to initialize LArMiniFCAL_ID.
@@ -249,7 +249,7 @@ GeoModelSvc.Til...   INFO  Global positioning of barrel with rotation (0,0,0)) a
 GeoModelSvc.Til...   INFO  Global positioning of positive ext.barrel with rotation (0,0,0)) and translation (0,0,0) Gaudi::Units::cm
 GeoModelSvc.Til...   INFO  Global positioning of negative ext.barrel with rotation (0,0,0)) and translation (0,0,1) Gaudi::Units::cm
 TileDetDescrMan...   INFO Entering create_elements()
-GeoModelSvc          INFO GeoModelSvc.TileDetectorTool	 SZ= 3576Kb 	 Time = 0.17S
+GeoModelSvc          INFO GeoModelSvc.TileDetectorTool	 SZ= 3576Kb 	 Time = 0.12S
 ClassIDSvc           INFO  getRegistryEntries: read 66 CLIDRegistry entries for module ALL
 TileInfoLoader       INFO Changing TTL1 calib from 4.1 to 6.9
 TileInfoLoader       INFO Changing TTL1 noise sigma from 2.5 to 2.8
@@ -304,7 +304,7 @@ TileEMScaleCond...   INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCond
 TileEMScaleCond...   INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OnlEms) for folder: "/TILE/OFL02/CALIB/EMS"
 TileSampleNoise...   INFO Creating TileCondProxyCool(TileSampleNoiseCondAlg.TileCondProxyCool_NoiseSample) for folder: "/TILE/OFL02/NOISE/SAMPLE"
 TileTimingCondA...   INFO Creating TileCondProxyCool(TileTimingCondAlg.TileCondProxyCool_AdcOffset) for folder: "/TILE/OFL02/TIME/CHANNELOFFSET/PHY"
-ClassIDSvc           INFO  getRegistryEntries: read 4575 CLIDRegistry entries for module ALL
+ClassIDSvc           INFO  getRegistryEntries: read 4586 CLIDRegistry entries for module ALL
 PyComponentMgr       INFO Initializing PyComponentMgr...
 Finalizer            INFO Initializing Finalizer...
 HistogramPersis...WARNING Histograms saving not required.
@@ -317,8 +317,8 @@ ROBDataProviderSvc   INFO  ---> Filter out Sub Detector ROBs by Status Code: # S
 EventSelector        INFO reinitialization...
 AthenaEventLoopMgr   INFO Setup EventSelector service EventSelector
 ApplicationMgr       INFO Application Manager Initialized successfully
-ByteStreamInputSvc   INFO Picked valid file: /cvmfs/atlas-nightlies.cern.ch/repo/data/data-art/TileByteStream/TileByteStream-02-00-00/data18_tilecomm.00363899.calibration_tile.daq.RAW._lb0000._TileREB-ROS._0005-200ev.data
 ClassIDSvc           INFO  getRegistryEntries: read 425 CLIDRegistry entries for module ALL
+ByteStreamInputSvc   INFO Picked valid file: /cvmfs/atlas-nightlies.cern.ch/repo/data/data-art/TileByteStream/TileByteStream-02-00-00/data18_tilecomm.00363899.calibration_tile.daq.RAW._lb0000._TileREB-ROS._0005-200ev.data
 CondInputLoader      INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/CALIB/CES'
 CondInputLoader      INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/CALIB/CIS/FIT/LIN'
 CondInputLoader      INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/CALIB/CIS/FIT/NLN'
@@ -347,7 +347,7 @@ Domain[ROOT_All]     INFO                           /cvmfs/atlas-condb.cern.ch/r
 RootDatabase.open    INFO /cvmfs/atlas-condb.cern.ch/repo/conditions/cond09/cond09_mc.000029.gen.COND/cond09_mc.000029.gen.COND._0002.pool.root File version:52200
 CaloMgrDetDescrCnv   INFO in createObj: creating a Calo Detector Manager object in the detector store
 CaloIdMgrDetDes...   INFO in createObj: creating a CaloDescrManager object in the detector store
-ClassIDSvc           INFO  getRegistryEntries: read 195 CLIDRegistry entries for module ALL
+ClassIDSvc           INFO  getRegistryEntries: read 198 CLIDRegistry entries for module ALL
 CaloIDHelper_ID...   INFO in createObj: creating a CaloDM_ID helper object in the detector store
 CaloDM_ID            INFO initialize_from_dictionary
 AtlasDetectorID      INFO initialize_from_dictionary - OK
@@ -361,12 +361,12 @@ CaloIDHelper_ID...   INFO in createObj: creating a LArHEC_SuperCell_ID helper ob
 AtlasDetectorID      INFO initialize_from_dictionary - OK
 CaloIDHelper_ID...   INFO in createObj: creating a LArFCAL_SuperCell_ID helper object in the detector store
 AtlasDetectorID      INFO initialize_from_dictionary - OK
-LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-06T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/FCalSuperCells2DNeighborsNew-April2014.txt
-LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-06T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/FCalSuperCells3DNeighborsNextNew-April2014.txt
-LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-06T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/FCalSuperCells3DNeighborsPrevNew-April2014.txt
+LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/FCalSuperCells2DNeighborsNew-April2014.txt
+LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/FCalSuperCells3DNeighborsNextNew-April2014.txt
+LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/FCalSuperCells3DNeighborsPrevNew-April2014.txt
 CaloIDHelper_ID...   INFO in createObj: creating a Tile_SuperCell_ID helper object in the detector store
 AtlasDetectorID      INFO initialize_from_dictionary - OK
-TileNeighbour        INFO Reading file  /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-06T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/TileSuperCellNeighbour.txt
+TileNeighbour        INFO Reading file  /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/TileSuperCellNeighbour.txt
 AtlasDetectorID      INFO initialize_from_dictionary - OK
 CaloIdMgrDetDes...   INFO  Finished 
 CaloIdMgrDetDes...   INFO Initializing CaloIdMgr from values in CaloIdMgrDetDescrCnv 
@@ -397,8 +397,8 @@ TileBadChannels...   INFO TileBchStatus::isNoGainL1() is defined by: ADC dead; N
 TileBadChannels...   INFO TileBchStatus::isBadTiming() is defined by: Bad timing; 
 TileBadChannels...   INFO TileBchStatus::isWrongBCID() is defined by: Wrong BCID; Online wrong BCID; 
 TileBadChannels...   INFO No drawer trips probabilities found in DB
-ClassIDSvc           INFO  getRegistryEntries: read 2448 CLIDRegistry entries for module ALL
-ClassIDSvc           INFO  getRegistryEntries: read 90 CLIDRegistry entries for module ALL
+ClassIDSvc           INFO  getRegistryEntries: read 2265 CLIDRegistry entries for module ALL
+ClassIDSvc           INFO  getRegistryEntries: read 91 CLIDRegistry entries for module ALL
 ToolSvc.TileROD...   INFO TileL2Builder initialization completed
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #18124, run #363899 1 events processed so far  <<<===
 AthenaEventLoopMgr   INFO   ===>>>  start processing event #18125, run #363899 1 events processed so far  <<<===
@@ -612,53 +612,53 @@ Finalize: compared 10 dumps
 IncidentProcAlg2     INFO Finalize
 PyComponentMgr       INFO Finalizing PyComponentMgr...
 IdDictDetDescrCnv    INFO in finalize
-IOVDbFolder          INFO Folder /LAR/Align (PoolRef) db-read 1/1 objs/chan/bytes 1/1/170 ((     0.04 ))s
+IOVDbFolder          INFO Folder /LAR/Align (PoolRef) db-read 1/1 objs/chan/bytes 1/1/170 ((     0.05 ))s
 IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/CES (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/104912 ((     0.04 ))s
 IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/CIS/FIT/LIN (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/80 ((     0.03 ))s
 IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/CIS/FIT/NLN (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/80 ((     0.03 ))s
-IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/EMS (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/92 ((     0.02 ))s
-IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/LAS/FIBER (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/940 ((     0.02 ))s
-IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/LAS/LIN (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/72 ((     0.02 ))s
-IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/LAS/NLN (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/76 ((     0.02 ))s
-IOVDbFolder          INFO Folder /TILE/OFL02/NOISE/SAMPLE (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/641536 ((     0.10 ))s
-IOVDbFolder          INFO Folder /TILE/OFL02/STATUS/ADC (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/43176 ((     0.87 ))s
-IOVDbFolder          INFO Folder /TILE/OFL02/TIME/CHANNELOFFSET/PHY (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/96 ((     0.88 ))s
-IOVDbFolder          INFO Folder /TILE/ONL01/STATUS/ADC (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/76 ((     0.05 ))s
+IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/EMS (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/92 ((     0.03 ))s
+IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/LAS/FIBER (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/940 ((     0.03 ))s
+IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/LAS/LIN (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/72 ((     0.03 ))s
+IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/LAS/NLN (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/76 ((     0.04 ))s
+IOVDbFolder          INFO Folder /TILE/OFL02/NOISE/SAMPLE (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/641536 ((     0.04 ))s
+IOVDbFolder          INFO Folder /TILE/OFL02/STATUS/ADC (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/43176 ((     0.03 ))s
+IOVDbFolder          INFO Folder /TILE/OFL02/TIME/CHANNELOFFSET/PHY (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/96 ((     0.03 ))s
+IOVDbFolder          INFO Folder /TILE/ONL01/STATUS/ADC (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/76 ((     0.01 ))s
 IOVDbFolder          INFO Folder /LAR/LArCellPositionShift (PoolRef) db-read 1/1 objs/chan/bytes 1/1/195 ((     0.02 ))s
-IOVDbSvc             INFO  bytes in ((      2.14 ))s
+IOVDbSvc             INFO  bytes in ((      0.40 ))s
 IOVDbSvc             INFO Connection sqlite://;schema=mycool.db;dbname=OFLP200 : nConnect: 0 nFolders: 0 ReadTime: ((     0.00 ))s
-IOVDbSvc             INFO Connection COOLOFL_LAR/OFLP200 : nConnect: 2 nFolders: 2 ReadTime: ((     0.05 ))s
-IOVDbSvc             INFO Connection COOLOFL_TILE/OFLP200 : nConnect: 2 nFolders: 11 ReadTime: ((     2.09 ))s
+IOVDbSvc             INFO Connection COOLOFL_LAR/OFLP200 : nConnect: 2 nFolders: 2 ReadTime: ((     0.07 ))s
+IOVDbSvc             INFO Connection COOLOFL_TILE/OFLP200 : nConnect: 2 nFolders: 11 ReadTime: ((     0.33 ))s
 AthDictLoaderSvc     INFO in finalize...
 ToolSvc              INFO Removing all tools created by ToolSvc
-ToolSvc.ByteStr...   INFO in finalize()
 ToolSvc.TileROD...   INFO Finalizing
+ToolSvc.ByteStr...   INFO in finalize()
 *****Chrono*****     INFO ****************************************************************************************************
 *****Chrono*****     INFO  The Final CPU consumption ( Chrono ) Table (ordered)
 *****Chrono*****     INFO ****************************************************************************************************
-cObjR_ALL            INFO Time User   : Tot=  340 [ms] Ave/Min/Max=  170(+-  160)/   10/  330 [ms] #=  2
-cObj_ALL             INFO Time User   : Tot=  370 [ms] Ave/Min/Max= 28.5(+- 90.3)/    0/  340 [ms] #= 13
-ChronoStatSvc        INFO Time User   : Tot= 4.08  [s]                                             #=  1
+cObjR_ALL            INFO Time User   : Tot=  300 [ms] Ave/Min/Max=  150(+-  150)/    0/  300 [ms] #=  2
+cObj_ALL             INFO Time User   : Tot=  330 [ms] Ave/Min/Max= 25.4(+- 82.3)/    0/  310 [ms] #= 13
+ChronoStatSvc        INFO Time User   : Tot= 3.24  [s]                                             #=  1
 *****Chrono*****     INFO ****************************************************************************************************
 ChronoStatSvc.f...   INFO  Service finalized successfully 
 ApplicationMgr       INFO Application Manager Finalized successfully
 ApplicationMgr       INFO Application Manager Terminated successfully
 Py:Athena            INFO leaving with code 0: "successful run"
-Wed Aug  7 22:21:14 CEST 2019
+Fri Nov 29 11:11:45 CET 2019
 Preloading tcmalloc_minimal.so
 Py:Athena            INFO including file "AthenaCommon/Preparation.py"
-Py:Athena            INFO using release [WorkDir-22.0.3] [x86_64-centos7-gcc8-opt] [test.TileRecUtils-20190807/f9360ea601f] -- built on [2019-08-07T2151]
+Py:Athena            INFO using release [WorkDir-22.0.9] [x86_64-centos7-gcc8-opt] [tilecal-12bit/82699bf159] -- built on [2019-11-29T1101]
 Py:Athena            INFO including file "AthenaCommon/Atlas.UnixStandardJob.py"
 Py:Athena            INFO executing ROOT6Setup
 Py:Athena            INFO configuring AthenaHive with [4] concurrent threads and [4] concurrent events
 Py:AlgScheduler      INFO setting up AvalancheSchedulerSvc/AvalancheSchedulerSvc with 4 threads
 Py:Athena            INFO including file "AthenaCommon/Execution.py"
 Py:Athena            INFO including file "TileByteStream/TileLaserObjByteStreamCnv_test.py"
-SetGeometryVersion.py obtained major release version 22
+Py:Athena            INFO SetGeometryVersion.py obtained major release version 22
 Py:Athena            INFO including file "IdDictDetDescrCnv/IdDictDetDescrCnv_joboptions.py"
-Py:ConfigurableDb    INFO Read module info for 5518 configurables from 5 genConfDb files
+Py:ConfigurableDb    INFO Read module info for 5635 configurables from 11 genConfDb files
 Py:ConfigurableDb    INFO No duplicates have been found: that's good !
-EventInfoMgtInit: Got release version  Athena-22.0.3
+EventInfoMgtInit: Got release version  Athena-22.0.9
 Py:IOVDbSvc.CondDB    INFO Setting up conditions DB access to instance OFLP200
 Py:Athena            INFO including file "TileConditions/TileConditions_jobOptions.py"
 Py:TileInfoConf.     INFO Adding TileCablingSvc to ServiceMgr
@@ -670,250 +670,250 @@ Py:TileInfoConf.     INFO Changing default TileCondToolEmscale configuration to
 Py:TileInfoConf.     INFO Changing default TileCondToolNoiseSample configuration to COOL source
 Py:TileInfoConf.     INFO Changing default TileCondToolTiming configuration to COOL source
 Py:TileConditions_jobOptions.py    INFO Adjusting TileInfo to return cell noise for Opt.Filter without iterations
+Py:TileConditions_jobOptions.py    INFO Setting 10-bit ADC configuration
+Py:TileInfoConf.     INFO Setting 10-bit Tile ADC
 Py:Athena            INFO including file "AthenaCommon/runbatch.py"
 ApplicationMgr       INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0
 ApplicationMgr       INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0
 MessageSvc           INFO Activating in a separate thread
 ApplicationMgr    SUCCESS 
 ====================================================================================================================================
-                                                   Welcome to ApplicationMgr (GaudiCoreSvc v32r0)
-                                          running on lxplus725.cern.ch on Wed Aug  7 22:21:23 2019
+                                                   Welcome to ApplicationMgr (GaudiCoreSvc v32r2)
+                                          running on pcpraha5 on Fri Nov 29 11:11:51 2019
 ====================================================================================================================================
 ApplicationMgr       INFO Application Manager Configured successfully
-ApplicationMgr                                     INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0
-AthDictLoaderSvc                                   INFO in initialize...
-AthDictLoaderSvc                                   INFO acquired Dso-registry
-ClassIDSvc                                         INFO  getRegistryEntries: read 7717 CLIDRegistry entries for module ALL
-CoreDumpSvc                                        INFO install f-a-t-a-l handler... (flag = -1)
-CoreDumpSvc                                        INFO Handling signals: 11(Segmentation fault) 7(Bus error) 4(Illegal instruction) 8(Floating point exception) 
-MetaDataSvc                                        INFO Initializing MetaDataSvc - package version AthenaServices-00-00-00
-AthenaPoolCnvSvc                                   INFO Initializing AthenaPoolCnvSvc - package version AthenaPoolCnvSvc-00-00-00
-PoolSvc                                            INFO io_register[PoolSvc](xmlcatalog_file:PoolFileCatalog.xml) [ok]
-PoolSvc                                            INFO Set connectionsvc retry/timeout/IDLE timeout to  'ConnectionRetrialPeriod':300/ 'ConnectionRetrialTimeOut':3600/ 'ConnectionTimeOut':5 seconds with connection cleanup disabled
-PoolSvc                                            INFO Frontier compression level set to 5
-DBReplicaSvc                                       INFO Frontier server at (serverurl=http://atlasfrontier-local.cern.ch:8000/atlr)(serverurl=http://atlasfrontier-ai.cern.ch:8000/atlr)(serverurl=http://lcgft-atlas.gridpp.rl.ac.uk:3128/frontierATLAS)(serverurl=http://ccfrontier.in2p3.fr:23128/ccin2p3-AtlasFrontier)(proxyurl=http://ca-proxy.cern.ch:3128)(proxyurl=http://ca-proxy-meyrin.cern.ch:3128)(proxyurl=http://ca-proxy-wigner.cern.ch:3128)(proxyurl=http://atlasbpfrontier.cern.ch:3127)(proxyurl=http://atlasbpfrontier.fnal.gov:3127) will be considered for COOL data
-DBReplicaSvc                                       INFO Read replica configuration from /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-06T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/dbreplica.config
-DBReplicaSvc                                       INFO Total of 10 servers found for host lxplus725.cern.ch [ATLF ATLAS_COOLPROD atlas_dd ATLAS_CONFIG INT8R INTR ATONR_COOL ATONR_CONF DEVDB11 ATLF ]
-PoolSvc                                            INFO Successfully setup replica sorting algorithm
-PoolSvc                                            INFO Setting up APR FileCatalog and Streams
-PoolSvc                                         WARNING Unable to locate catalog for prfile:poolcond/PoolCat_oflcond.xml check your ATLAS_POOLCOND_PATH and DATAPATH variables
-PoolSvc                                         WARNING Unable to locate catalog for apcfile:poolcond/PoolCat_oflcond.xml check your ATLAS_POOLCOND_PATH and DATAPATH variables
-PoolSvc                                            INFO Resolved path (via ATLAS_POOLCOND_PATH) is /cvmfs/atlas-condb.cern.ch/repo/conditions/poolcond/PoolFileCatalog.xml
-PoolSvc                                            INFO POOL WriteCatalog is xmlcatalog_file:PoolFileCatalog.xml
-DbSession                                          INFO     Open     DbSession    
-Domain[ROOT_All]                                   INFO >   Access   DbDomain     READ      [ROOT_All] 
-ToolSvc.ByteStreamMetadataTool                     INFO Initializing ToolSvc.ByteStreamMetadataTool - package version ByteStreamCnvSvc-00-00-00
-MetaDataSvc                                        INFO Found MetaDataTools = PublicToolHandleArray(['IOVDbMetaDataTool','ByteStreamMetadataTool'])
-IOVDbSvc                                           INFO Opened read transaction for POOL PersistencySvc
-IOVDbSvc                                           INFO Only 5 POOL conditions files will be open at once
-IOVDbSvc                                           INFO Cache alignment will be done in 3 slices
-IOVDbSvc                                           INFO Global tag: OFLCOND-RUN12-SDR-35 set from joboptions
-IOVDbFolder                                        INFO Read from meta data only for folder /TagInfo
-IOVDbSvc                                           INFO Initialised with 3 connections and 14 folders
-IOVDbSvc                                           INFO Service IOVDbSvc initialised successfully
-ByteStreamAddressProviderSvc                       INFO Initializing ByteStreamAddressProviderSvc - package version ByteStreamCnvSvcBase-00-00-00
-ByteStreamAddressProviderSvc                       INFO initialized 
-ByteStreamAddressProviderSvc                       INFO -- Will fill Store with id =  0
-IOVDbSvc                                           INFO preLoadAddresses: Removing folder /TagInfo. It should only be in the file meta data and was not found.
-IOVDbSvc                                           INFO Opening COOL connection for COOLOFL_LAR/OFLP200
-ClassIDSvc                                         INFO  getRegistryEntries: read 3223 CLIDRegistry entries for module ALL
-IOVSvc                                             INFO No IOVSvcTool associated with store "StoreGateSvc"
-IOVSvc.IOVSvcTool                                  INFO IOVRanges will be checked at every Event
-IOVDbSvc                                           INFO Opening COOL connection for COOLOFL_TILE/OFLP200
-IOVDbSvc                                           INFO Disconnecting from COOLOFL_LAR/OFLP200
-IOVDbSvc                                           INFO Disconnecting from COOLOFL_TILE/OFLP200
-IOVDbSvc                                           INFO Added taginfo remove for /LAR/Align
-IOVDbSvc                                           INFO Added taginfo remove for /TILE/OFL02/CALIB/CES
-IOVDbSvc                                           INFO Added taginfo remove for /TILE/OFL02/CALIB/CIS/FIT/LIN
-IOVDbSvc                                           INFO Added taginfo remove for /TILE/OFL02/CALIB/CIS/FIT/NLN
-IOVDbSvc                                           INFO Added taginfo remove for /TILE/OFL02/CALIB/EMS
-IOVDbSvc                                           INFO Added taginfo remove for /TILE/OFL02/CALIB/LAS/FIBER
-IOVDbSvc                                           INFO Added taginfo remove for /TILE/OFL02/CALIB/LAS/LIN
-IOVDbSvc                                           INFO Added taginfo remove for /TILE/OFL02/CALIB/LAS/NLN
-IOVDbSvc                                           INFO Added taginfo remove for /TILE/OFL02/NOISE/SAMPLE
-IOVDbSvc                                           INFO Added taginfo remove for /TILE/OFL02/STATUS/ADC
-IOVDbSvc                                           INFO Added taginfo remove for /TILE/OFL02/TIME/CHANNELOFFSET/PHY
-IOVDbSvc                                           INFO Added taginfo remove for /TILE/ONL01/STATUS/ADC
-IOVDbSvc                                           INFO Added taginfo remove for /LAR/LArCellPositionShift
-ClassIDSvc                                         INFO  getRegistryEntries: read 17 CLIDRegistry entries for module ALL
-DetDescrCnvSvc                                     INFO  initializing 
-DetDescrCnvSvc                                     INFO Found DetectorStore service
-DetDescrCnvSvc                                     INFO  filling proxies for detector managers 
-DetDescrCnvSvc                                     INFO  filling address for CaloTTMgr with CLID 117659265 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for CaloMgr with CLID 4548337 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for CaloSuperCellMgr with CLID 241807251 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for CaloIdManager with CLID 125856940 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for LArIdManager with CLID 79554919 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for IdDict with CLID 2411 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for AtlasID with CLID 164875623 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for PixelID with CLID 2516 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for SCT_ID with CLID 2517 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for TRT_ID with CLID 2518 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for SiliconID with CLID 129452393 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for LArEM_ID with CLID 163583365 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for LArEM_SuperCell_ID with CLID 99488227 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for LArHEC_ID with CLID 3870484 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for LArHEC_SuperCell_ID with CLID 254277678 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for LArFCAL_ID with CLID 45738051 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for LArFCAL_SuperCell_ID with CLID 12829437 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for LArMiniFCAL_ID with CLID 79264204 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for LArOnlineID with CLID 158698068 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for TTOnlineID with CLID 38321944 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for LArOnline_SuperCellID with CLID 115600394 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for LArHVLineID with CLID 27863673 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for LArElectrodeID with CLID 80757351 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for TileID with CLID 2901 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for Tile_SuperCell_ID with CLID 49557789 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for TileHWID with CLID 2902 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for TileTBID with CLID 2903 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for MDTIDHELPER with CLID 4170 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for CSCIDHELPER with CLID 4171 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for RPCIDHELPER with CLID 4172 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for TGCIDHELPER with CLID 4173 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for STGCIDHELPER with CLID 4174 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for MMIDHELPER with CLID 4175 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for CaloLVL1_ID with CLID 108133391 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for CaloCell_ID with CLID 123500438 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for CaloCell_SuperCell_ID with CLID 128365736 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for CaloDM_ID with CLID 167756483 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for ZdcID with CLID 190591643 and storage type 68 to detector store 
-GeoModelSvc::RDBMaterialManager                 WARNING  Getting PixTBMatComponents with default tag
-GeoModelSvc::RDBMaterialManager                 WARNING  Getting PixTBMaterials with default tag
-GeoModelSvc::RDBMaterialManager                 WARNING  Getting InDetMatComponents with default tag
-GeoModelSvc::RDBMaterialManager                 WARNING  Getting InDetMaterials with default tag
-EventPersistencySvc                                INFO Added successfully Conversion service:DetDescrCnvSvc
-LArElectrodeIDDetDescrCnv                          INFO in createObj: creating a LArElectrodeID helper object in the detector store
-IdDictDetDescrCnv                                  INFO in initialize
-IdDictDetDescrCnv                                  INFO in createObj: creating a IdDictManager object in the detector store
-IdDictDetDescrCnv                                  INFO IdDictName:  IdDictParser/ATLAS_IDS.xml
-IdDictDetDescrCnv                                  INFO Reading InnerDetector    IdDict file InDetIdDictFiles/IdDictInnerDetector_IBL3D25-03.xml
-IdDictDetDescrCnv                                  INFO Reading LArCalorimeter   IdDict file IdDictParser/IdDictLArCalorimeter_DC3-05-Comm-01.xml
-IdDictDetDescrCnv                                  INFO Reading TileCalorimeter  IdDict file IdDictParser/IdDictTileCalorimeter.xml
-IdDictDetDescrCnv                                  INFO Reading Calorimeter      IdDict file IdDictParser/IdDictCalorimeter_L1Onl.xml
-IdDictDetDescrCnv                                  INFO Reading MuonSpectrometer IdDict file IdDictParser/IdDictMuonSpectrometer_R.03.xml
-IdDictDetDescrCnv                                  INFO Reading ForwardDetectors IdDict file IdDictParser/IdDictForwardDetectors_2010.xml
-IdDictDetDescrCnv                                  INFO Found id dicts:
-IdDictDetDescrCnv                                  INFO Using dictionary tag: null
-IdDictDetDescrCnv                                  INFO Dictionary ATLAS                version default              DetDescr tag (using default) file 
-IdDictDetDescrCnv                                  INFO Dictionary Calorimeter          version default              DetDescr tag CaloIdentifier-LVL1-02 file IdDictParser/IdDictCalorimeter_L1Onl.xml
-IdDictDetDescrCnv                                  INFO Dictionary ForwardDetectors     version default              DetDescr tag ForDetIdentifier-01       file IdDictParser/IdDictForwardDetectors_2010.xml
-IdDictDetDescrCnv                                  INFO Dictionary InnerDetector        version IBL-DBM              DetDescr tag InDetIdentifier-IBL3D25-02 file InDetIdDictFiles/IdDictInnerDetector_IBL3D25-03.xml
-IdDictDetDescrCnv                                  INFO Dictionary LArCalorimeter       version fullAtlas            DetDescr tag LArIdentifier-DC3-05-Comm file IdDictParser/IdDictLArCalorimeter_DC3-05-Comm-01.xml
-IdDictDetDescrCnv                                  INFO Dictionary LArElectrode         version fullAtlas            DetDescr tag (using default) file 
-IdDictDetDescrCnv                                  INFO Dictionary LArHighVoltage       version fullAtlas            DetDescr tag (using default) file 
-IdDictDetDescrCnv                                  INFO Dictionary MuonSpectrometer     version R.03                 DetDescr tag MuonIdentifier-08         file IdDictParser/IdDictMuonSpectrometer_R.03.xml
-IdDictDetDescrCnv                                  INFO Dictionary TileCalorimeter      version fullAtlasAndTestBeam DetDescr tag TileIdentifier-00         file IdDictParser/IdDictTileCalorimeter.xml
-LArElectrodeID                                     INFO  => initialize_from_dictionary()
-AtlasDetectorID                                    INFO initialize_from_dictionary - OK
-AtlasDetectorID                                    INFO initialize_from_dictionary - OK
-LArHVLineIDDetDescrCnv                             INFO in createObj: creating a LArHVLineID helper object in the detector store
-LArHVLineID                                        INFO  => initialize_from_dictionary()
-AtlasDetectorID                                    INFO initialize_from_dictionary - OK
-AtlasDetectorID                                    INFO initialize_from_dictionary - OK
-LArHVLineID                                        INFO  => initialize_from_dictionary(dict_mgr) =0
-LArHVLineID                                        INFO Register_dict_tag of LArHighVoltage is OK
-LArHVLineID                                        INFO setDictVersion of LArHighVoltage is OK
-LArHVLineID                                        INFO [initLevelsFromDict] m_dict OK ... 
-LArHVLineID                                        INFO [initialize_from_dictionary] >  HV line range -> 11/1/48:79/0:15 | 11/1/148:179/0:15 | 11/1/80:93/0:7 | 11/1/180:193/0:7 | 11/1/200:231/0:15 | 11/1/232:263/0:15 | 11/1/296,297,306,307/0:15 | 11/1/299,304,305,308,309/0:15 | 11/1/264:279/0:15 | 11/1/280:295/0:15 | 11/1/0:47/0:15 | 11/1/320:322/0:15 | 11/1/100:147/0:15 | 11/1/324,325/0:15 | 11/1/312:315/0:15 | 11/1/316:319/0:15 | 11/1/300:303/0:15 | 11/1/310,311/0:15 | 11/1/323/0:15 | 11/1/326,327/0:15 | 11/1/94:99/0:15 | 11/1/194:199/0:15
-LArHVLineID                                        INFO [init_hashes()] > Hvline_size= 5008
-GeoModelSvc.LArDetectorToolNV                      INFO Keys for LAr are ATLAS-R2-2016-01-00-01  ATLAS
-GeoModelSvc.LArDetectorToolNV                      INFO Building LAr version LAr-Revised-17-01 while ATLAS version is ATLAS-R2-2016-01-00-01
-GeoModelSvc.LArDetectorToolNV                      INFO LAr Geometry Options:
-GeoModelSvc.LArDetectorToolNV                      INFO   Sagging           = false
-GeoModelSvc.LArDetectorToolNV                      INFO   Barrel            = ON
-GeoModelSvc.LArDetectorToolNV                      INFO   Endcap            = ON
-BarrelConstruction                                 INFO Getting primary numbers for ATLAS, ATLAS-R2-2016-01-00-01
-BarrelConstruction                                 INFO   Makes detailed absorber sandwich  ? 1 1
-BarrelConstruction                                 INFO   Use sagging in geometry  ? 0
-EMECConstruction                                   INFO multi-layered version of absorbers activated, parameter value is 1
-EMECConstruction                                   INFO activating LAr::EMEC::Pos::InnerWheel
-EMECConstruction                                   INFO activating LAr::EMEC::Pos::OuterWheel
-ClassIDSvc                                         INFO  getRegistryEntries: read 2925 CLIDRegistry entries for module ALL
-CaloIDHelper_IDDetDescrCnv                         INFO in createObj: creating a TileTBID helper object in the detector store
-TileTBID                                           INFO initialize_from_dictionary 
-AtlasDetectorID                                    INFO initialize_from_dictionary - OK
-EndcapDMConstruction                               INFO Start building EC electronics geometry
-EMECConstruction                                   INFO multi-layered version of absorbers activated, parameter value is 1
-EMECConstruction                                   INFO activating LAr::EMEC::Neg::InnerWheel
-EMECConstruction                                   INFO activating LAr::EMEC::Neg::OuterWheel
-EndcapDMConstruction                               INFO Start building EC electronics geometry
-GeoModelSvc                                        INFO GeoModelSvc.LArDetectorToolNV	 SZ= 25368Kb 	 Time = 0.53S
-GeoModelSvc.TileDetectorTool                       INFO  Entering TileDetectorTool::create()
-TileDddbManager                                    INFO m_tag = ATLAS-R2-2016-01-00-01
-TileDddbManager                                    INFO n_tiglob = 5
-TileDddbManager                                    INFO n_timod = 320
-TileDddbManager                                    INFO n_cuts = 9
-TileDddbManager                                    INFO n_saddle = 1
-TileDddbManager                                    INFO n_tilb = 21
-TileDddbManager                                    INFO n_tileSwitches = 1
-CaloIDHelper_IDDetDescrCnv                         INFO in createObj: creating a TileID helper object in the detector store
-AtlasDetectorID                                    INFO initialize_from_dictionary - OK
-TileNeighbour                                      INFO Reading file  /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-06T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/TileNeighbour_reduced.txt
-TileHWIDDetDescrCnv                                INFO in createObj: creating a TileHWID helper object in the detector store
-TileHWID                                           INFO initialize_from_dictionary 
-AtlasDetectorID                                    INFO initialize_from_dictionary - OK
-ClassIDSvc                                         INFO  getRegistryEntries: read 55 CLIDRegistry entries for module ALL
-CaloIDHelper_IDDetDescrCnv                         INFO in createObj: creating a CaloCell_ID helper object in the detector store
-CaloIDHelper_IDDetDescrCnv                         INFO in createObj: creating a LArEM_ID helper object in the detector store
-AtlasDetectorID                                    INFO initialize_from_dictionary - OK
-CaloIDHelper_IDDetDescrCnv                         INFO in createObj: creating a LArHEC_ID helper object in the detector store
-AtlasDetectorID                                    INFO initialize_from_dictionary - OK
-CaloIDHelper_IDDetDescrCnv                         INFO in createObj: creating a LArFCAL_ID helper object in the detector store
-AtlasDetectorID                                    INFO initialize_from_dictionary - OK
-LArFCAL_Base_ID                                    INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-06T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/FCal2DNeighbors-April2011.txt
-LArFCAL_Base_ID                                    INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-06T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/FCal3DNeighborsNext-April2011.txt
-LArFCAL_Base_ID                                    INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-06T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/FCal3DNeighborsPrev-April2011.txt
-CaloIDHelper_IDDetDescrCnv                         INFO in createObj: creating a LArMiniFCAL_ID helper object in the detector store
-AtlasDetectorID                                    INFO initialize_from_dictionary - OK
-LArMiniFCAL_ID                                     INFO  initialize_from_dict - LArCalorimeter dictionary does NOT contain miniFCAL description. Unable to initialize LArMiniFCAL_ID.
-AtlasDetectorID                                    INFO initialize_from_dictionary - OK
-GeoModelSvc.TileDetectorTool                       INFO  U-shape parameter from database is: 1
-GeoModelSvc.TileDetectorTool                       INFO  Glue parameter from database is: 1
-GeoModelSvc.TileDetectorTool                       INFO  Cs Tube parameter from database is: 0
-GeoModelSvc.TileDetectorTool                       INFO  Entering TileAtlasFactory::create()
-GeoModelSvc.TileDetectorTool                       INFO  Tile Geometry with Saddle supports, starting from TileCal-CSC-02 xxx
-GeoModelSvc.TileDetectorTool                       INFO  => New BFingerLengthPos 430.5
-GeoModelSvc.TileDetectorTool                       INFO  => New BFingerLengthNeg 420.5
-GeoModelSvc.TileDetectorTool                       INFO  Positioning barrel with translation 0
-GeoModelSvc.TileDetectorTool                       INFO  Positioning positive barrel finger with translation 3035.25
-GeoModelSvc.TileDetectorTool                       INFO  Positioning negative barrel finger with translation -3030.25
-GeoModelSvc.TileDetectorTool                       INFO  Positioning positive ext.barrel with translation 4854.75
-GeoModelSvc.TileDetectorTool                       INFO  Positioning positive ext.barrel finger with translation ztrans= 6338.5
-GeoModelSvc.TileDetectorTool                       INFO  Positioning positive ext.barrel saddle with translation ztrans= 6192.5
-GeoModelSvc.TileDetectorTool                       INFO  Positive ITC envelope parameters: PLUG1  Rmin= 3438.85 Rmax= 4250 dzITC1= 154.5
-GeoModelSvc.TileDetectorTool                       INFO                                    PLUG2  Rmin= 2981 Rmax= 3440 dzITC2= 47.425
-GeoModelSvc.TileDetectorTool                       INFO  Positioning positive ITC with translation 3405
-GeoModelSvc.TileDetectorTool                       INFO  Positioning positive Gap with translation 3552
-GeoModelSvc.TileDetectorTool                       INFO  Positioning positive Crack with translation 3536
-GeoModelSvc.TileDetectorTool                       INFO  Positioning negative ext.barrel with translation ztrans -4854.75
-GeoModelSvc.TileDetectorTool                       INFO  Positioning negative ext.barrel finger with translation ztrans= -6338.5
-GeoModelSvc.TileDetectorTool                       INFO  Positioning negative ext.barrel saddle with translation ztrans= -6192.5
-GeoModelSvc.TileDetectorTool                       INFO  Negative ITC envelope parameters: PLUG1  Rmin= 3438.85 Rmax= 4250 dzITC1= 154.5
-GeoModelSvc.TileDetectorTool                       INFO                                    PLUG2  Rmin= 2981 Rmax= 3440 dzITC2= 47.425
-GeoModelSvc.TileDetectorTool                       INFO  Positioning negative ITC with translation -3405
-GeoModelSvc.TileDetectorTool                       INFO  Positioning negative Gap with translation -3552
-GeoModelSvc.TileDetectorTool                       INFO  Positioning negative Crack with translation -3536
-GeoModelSvc.TileDetectorTool                       INFO  Global positioning of barrel with rotation (0,0,0)) and translation (0,0,0) Gaudi::Units::cm
-GeoModelSvc.TileDetectorTool                       INFO  Global positioning of positive ext.barrel with rotation (0,0,0)) and translation (0,0,0) Gaudi::Units::cm
-GeoModelSvc.TileDetectorTool                       INFO  Global positioning of negative ext.barrel with rotation (0,0,0)) and translation (0,0,1) Gaudi::Units::cm
-TileDetDescrManager                                INFO Entering create_elements()
-GeoModelSvc                                        INFO GeoModelSvc.TileDetectorTool	 SZ= 3576Kb 	 Time = 0.17S
-ClassIDSvc                                         INFO  getRegistryEntries: read 66 CLIDRegistry entries for module ALL
-TileInfoLoader                                     INFO Changing TTL1 calib from 4.1 to 6.9
-TileInfoLoader                                     INFO Changing TTL1 noise sigma from 2.5 to 2.8
-CaloIDHelper_IDDetDescrCnv                         INFO in createObj: creating a CaloLVL1_ID helper object in the detector store
-CaloLVL1_ID                                        INFO initialize_from_dictionary
-AtlasDetectorID                                    INFO initialize_from_dictionary - OK
-TileCablingSvc                                     INFO RUN2 ATLAS geometry flag detected for geometry: ATLAS-R2-2016-01-00-01
-TileCablingSvc                                     INFO Cabling for RUN2a (2018) ATLAS geometry is set via jobOptions 
-TileCablingSvc                                     INFO Setting Cabling type to 5
-AthenaHiveEventLoopMgr                             INFO Initializing AthenaHiveEventLoopMgr - package version AthenaServices-00-00-00
-ClassIDSvc                                  0      INFO  getRegistryEntries: read 4840 CLIDRegistry entries for module ALL
-PyComponentMgr                              0      INFO Initializing PyComponentMgr...
-Finalizer                                   0      INFO Initializing Finalizer...
-ClassIDSvc                                  0      INFO  getRegistryEntries: read 53 CLIDRegistry entries for module ALL
-CondInputLoader                             0      INFO Initializing CondInputLoader...
-CondInputLoader                             0      INFO Adding base classes:
+ApplicationMgr                                      INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0
+AthDictLoaderSvc                                    INFO in initialize...
+AthDictLoaderSvc                                    INFO acquired Dso-registry
+ClassIDSvc                                          INFO  getRegistryEntries: read 7790 CLIDRegistry entries for module ALL
+CoreDumpSvc                                         INFO install f-a-t-a-l handler... (flag = -1)
+CoreDumpSvc                                         INFO Handling signals: 11(Segmentation fault) 7(Bus error) 4(Illegal instruction) 8(Floating point exception) 
+MetaDataSvc                                         INFO Initializing MetaDataSvc - package version AthenaServices-00-00-00
+AthenaPoolCnvSvc                                    INFO Initializing AthenaPoolCnvSvc - package version AthenaPoolCnvSvc-00-00-00
+PoolSvc                                             INFO io_register[PoolSvc](xmlcatalog_file:PoolFileCatalog.xml) [ok]
+PoolSvc                                             INFO Set connectionsvc retry/timeout/IDLE timeout to  'ConnectionRetrialPeriod':300/ 'ConnectionRetrialTimeOut':3600/ 'ConnectionTimeOut':5 seconds with connection cleanup disabled
+PoolSvc                                             INFO Frontier compression level set to 5
+DBReplicaSvc                                        INFO Frontier server at (serverurl=http://atlasfrontier-local.cern.ch:8000/atlr)(serverurl=http://atlasfrontier-ai.cern.ch:8000/atlr)(serverurl=http://lcgft-atlas.gridpp.rl.ac.uk:3128/frontierATLAS)(serverurl=http://ccfrontier.in2p3.fr:23128/ccin2p3-AtlasFrontier)(proxyurl=http://ca-proxy.cern.ch:3128)(proxyurl=http://ca-proxy-meyrin.cern.ch:3128)(proxyurl=http://ca-proxy-wigner.cern.ch:3128)(proxyurl=http://atlasbpfrontier.cern.ch:3127)(proxyurl=http://atlasbpfrontier.fnal.gov:3127) will be considered for COOL data
+DBReplicaSvc                                        INFO Read replica configuration from /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/dbreplica.config
+DBReplicaSvc                                        INFO Total of 10 servers found for host pcpraha5.dyndns.cern.ch [ATLF ATLAS_COOLPROD atlas_dd ATLAS_CONFIG INT8R INTR ATONR_COOL ATONR_CONF DEVDB11 ATLF ]
+PoolSvc                                             INFO Successfully setup replica sorting algorithm
+PoolSvc                                             INFO Setting up APR FileCatalog and Streams
+PoolSvc                                          WARNING Unable to locate catalog for prfile:poolcond/PoolCat_oflcond.xml check your ATLAS_POOLCOND_PATH and DATAPATH variables
+PoolSvc                                          WARNING Unable to locate catalog for apcfile:poolcond/PoolCat_oflcond.xml check your ATLAS_POOLCOND_PATH and DATAPATH variables
+PoolSvc                                             INFO Resolved path (via ATLAS_POOLCOND_PATH) is /cvmfs/atlas-condb.cern.ch/repo/conditions/poolcond/PoolFileCatalog.xml
+PoolSvc                                             INFO POOL WriteCatalog is xmlcatalog_file:PoolFileCatalog.xml
+DbSession                                           INFO     Open     DbSession    
+Domain[ROOT_All]                                    INFO >   Access   DbDomain     READ      [ROOT_All] 
+ToolSvc.ByteStreamMetadataTool                      INFO Initializing ToolSvc.ByteStreamMetadataTool - package version ByteStreamCnvSvc-00-00-00
+MetaDataSvc                                         INFO Found MetaDataTools = PublicToolHandleArray(['IOVDbMetaDataTool','ByteStreamMetadataTool'])
+IOVDbSvc                                            INFO Opened read transaction for POOL PersistencySvc
+IOVDbSvc                                            INFO Only 5 POOL conditions files will be open at once
+IOVDbSvc                                            INFO Cache alignment will be done in 3 slices
+IOVDbSvc                                            INFO Global tag: OFLCOND-RUN12-SDR-35 set from joboptions
+IOVDbFolder                                         INFO Read from meta data only for folder /TagInfo
+IOVDbSvc                                            INFO Initialised with 3 connections and 14 folders
+IOVDbSvc                                            INFO Service IOVDbSvc initialised successfully
+ByteStreamAddressProviderSvc                        INFO Initializing ByteStreamAddressProviderSvc - package version ByteStreamCnvSvcBase-00-00-00
+ByteStreamAddressProviderSvc                        INFO initialized 
+ByteStreamAddressProviderSvc                        INFO -- Will fill Store with id =  0
+IOVDbSvc                                            INFO preLoadAddresses: Removing folder /TagInfo. It should only be in the file meta data and was not found.
+IOVDbSvc                                            INFO Opening COOL connection for COOLOFL_LAR/OFLP200
+ClassIDSvc                                          INFO  getRegistryEntries: read 3291 CLIDRegistry entries for module ALL
+IOVSvc                                              INFO No IOVSvcTool associated with store "StoreGateSvc"
+IOVSvc.IOVSvcTool                                   INFO IOVRanges will be checked at every Event
+IOVDbSvc                                            INFO Opening COOL connection for COOLOFL_TILE/OFLP200
+IOVDbSvc                                            INFO Disconnecting from COOLOFL_LAR/OFLP200
+IOVDbSvc                                            INFO Disconnecting from COOLOFL_TILE/OFLP200
+IOVDbSvc                                            INFO Added taginfo remove for /LAR/Align
+IOVDbSvc                                            INFO Added taginfo remove for /TILE/OFL02/CALIB/CES
+IOVDbSvc                                            INFO Added taginfo remove for /TILE/OFL02/CALIB/CIS/FIT/LIN
+IOVDbSvc                                            INFO Added taginfo remove for /TILE/OFL02/CALIB/CIS/FIT/NLN
+IOVDbSvc                                            INFO Added taginfo remove for /TILE/OFL02/CALIB/EMS
+IOVDbSvc                                            INFO Added taginfo remove for /TILE/OFL02/CALIB/LAS/FIBER
+IOVDbSvc                                            INFO Added taginfo remove for /TILE/OFL02/CALIB/LAS/LIN
+IOVDbSvc                                            INFO Added taginfo remove for /TILE/OFL02/CALIB/LAS/NLN
+IOVDbSvc                                            INFO Added taginfo remove for /TILE/OFL02/NOISE/SAMPLE
+IOVDbSvc                                            INFO Added taginfo remove for /TILE/OFL02/STATUS/ADC
+IOVDbSvc                                            INFO Added taginfo remove for /TILE/OFL02/TIME/CHANNELOFFSET/PHY
+IOVDbSvc                                            INFO Added taginfo remove for /TILE/ONL01/STATUS/ADC
+IOVDbSvc                                            INFO Added taginfo remove for /LAR/LArCellPositionShift
+ClassIDSvc                                          INFO  getRegistryEntries: read 24 CLIDRegistry entries for module ALL
+DetDescrCnvSvc                                      INFO  initializing 
+DetDescrCnvSvc                                      INFO Found DetectorStore service
+DetDescrCnvSvc                                      INFO  filling proxies for detector managers 
+DetDescrCnvSvc                                      INFO  filling address for CaloTTMgr with CLID 117659265 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for CaloMgr with CLID 4548337 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for CaloSuperCellMgr with CLID 241807251 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for CaloIdManager with CLID 125856940 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for LArIdManager with CLID 79554919 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for IdDict with CLID 2411 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for AtlasID with CLID 164875623 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for PixelID with CLID 2516 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for SCT_ID with CLID 2517 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for TRT_ID with CLID 2518 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for SiliconID with CLID 129452393 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for LArEM_ID with CLID 163583365 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for LArEM_SuperCell_ID with CLID 99488227 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for LArHEC_ID with CLID 3870484 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for LArHEC_SuperCell_ID with CLID 254277678 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for LArFCAL_ID with CLID 45738051 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for LArFCAL_SuperCell_ID with CLID 12829437 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for LArMiniFCAL_ID with CLID 79264204 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for LArOnlineID with CLID 158698068 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for TTOnlineID with CLID 38321944 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for LArOnline_SuperCellID with CLID 115600394 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for LArHVLineID with CLID 27863673 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for LArElectrodeID with CLID 80757351 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for TileID with CLID 2901 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for Tile_SuperCell_ID with CLID 49557789 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for TileHWID with CLID 2902 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for TileTBID with CLID 2903 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for MDTIDHELPER with CLID 4170 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for CSCIDHELPER with CLID 4171 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for RPCIDHELPER with CLID 4172 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for TGCIDHELPER with CLID 4173 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for CaloLVL1_ID with CLID 108133391 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for CaloCell_ID with CLID 123500438 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for CaloCell_SuperCell_ID with CLID 128365736 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for CaloDM_ID with CLID 167756483 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for ZdcID with CLID 190591643 and storage type 68 to detector store 
+GeoModelSvc::RDBMaterialManager                  WARNING  Getting PixTBMatComponents with default tag
+GeoModelSvc::RDBMaterialManager                  WARNING  Getting PixTBMaterials with default tag
+GeoModelSvc::RDBMaterialManager                  WARNING  Getting InDetMatComponents with default tag
+GeoModelSvc::RDBMaterialManager                  WARNING  Getting InDetMaterials with default tag
+EventPersistencySvc                                 INFO Added successfully Conversion service:DetDescrCnvSvc
+LArElectrodeIDDetDescrCnv                           INFO in createObj: creating a LArElectrodeID helper object in the detector store
+IdDictDetDescrCnv                                   INFO in initialize
+IdDictDetDescrCnv                                   INFO in createObj: creating a IdDictManager object in the detector store
+IdDictDetDescrCnv                                   INFO IdDictName:  IdDictParser/ATLAS_IDS.xml
+IdDictDetDescrCnv                                   INFO Reading InnerDetector    IdDict file InDetIdDictFiles/IdDictInnerDetector_IBL3D25-03.xml
+IdDictDetDescrCnv                                   INFO Reading LArCalorimeter   IdDict file IdDictParser/IdDictLArCalorimeter_DC3-05-Comm-01.xml
+IdDictDetDescrCnv                                   INFO Reading TileCalorimeter  IdDict file IdDictParser/IdDictTileCalorimeter.xml
+IdDictDetDescrCnv                                   INFO Reading Calorimeter      IdDict file IdDictParser/IdDictCalorimeter_L1Onl.xml
+IdDictDetDescrCnv                                   INFO Reading MuonSpectrometer IdDict file IdDictParser/IdDictMuonSpectrometer_R.03.xml
+IdDictDetDescrCnv                                   INFO Reading ForwardDetectors IdDict file IdDictParser/IdDictForwardDetectors_2010.xml
+IdDictDetDescrCnv                                   INFO Found id dicts:
+IdDictDetDescrCnv                                   INFO Using dictionary tag: null
+IdDictDetDescrCnv                                   INFO Dictionary ATLAS                version default              DetDescr tag (using default) file 
+IdDictDetDescrCnv                                   INFO Dictionary Calorimeter          version default              DetDescr tag CaloIdentifier-LVL1-02 file IdDictParser/IdDictCalorimeter_L1Onl.xml
+IdDictDetDescrCnv                                   INFO Dictionary ForwardDetectors     version default              DetDescr tag ForDetIdentifier-01       file IdDictParser/IdDictForwardDetectors_2010.xml
+IdDictDetDescrCnv                                   INFO Dictionary InnerDetector        version IBL-DBM              DetDescr tag InDetIdentifier-IBL3D25-02 file InDetIdDictFiles/IdDictInnerDetector_IBL3D25-03.xml
+IdDictDetDescrCnv                                   INFO Dictionary LArCalorimeter       version fullAtlas            DetDescr tag LArIdentifier-DC3-05-Comm file IdDictParser/IdDictLArCalorimeter_DC3-05-Comm-01.xml
+IdDictDetDescrCnv                                   INFO Dictionary LArElectrode         version fullAtlas            DetDescr tag (using default) file 
+IdDictDetDescrCnv                                   INFO Dictionary LArHighVoltage       version fullAtlas            DetDescr tag (using default) file 
+IdDictDetDescrCnv                                   INFO Dictionary MuonSpectrometer     version R.03                 DetDescr tag MuonIdentifier-08         file IdDictParser/IdDictMuonSpectrometer_R.03.xml
+IdDictDetDescrCnv                                   INFO Dictionary TileCalorimeter      version fullAtlasAndTestBeam DetDescr tag TileIdentifier-00         file IdDictParser/IdDictTileCalorimeter.xml
+LArElectrodeID                                      INFO  => initialize_from_dictionary()
+AtlasDetectorID                                     INFO initialize_from_dictionary - OK
+AtlasDetectorID                                     INFO initialize_from_dictionary - OK
+LArHVLineIDDetDescrCnv                              INFO in createObj: creating a LArHVLineID helper object in the detector store
+LArHVLineID                                         INFO  => initialize_from_dictionary()
+AtlasDetectorID                                     INFO initialize_from_dictionary - OK
+AtlasDetectorID                                     INFO initialize_from_dictionary - OK
+LArHVLineID                                         INFO  => initialize_from_dictionary(dict_mgr) =0
+LArHVLineID                                         INFO Register_dict_tag of LArHighVoltage is OK
+LArHVLineID                                         INFO setDictVersion of LArHighVoltage is OK
+LArHVLineID                                         INFO [initLevelsFromDict] m_dict OK ... 
+LArHVLineID                                         INFO [initialize_from_dictionary] >  HV line range -> 11/1/48:79/0:15 | 11/1/148:179/0:15 | 11/1/80:93/0:7 | 11/1/180:193/0:7 | 11/1/200:231/0:15 | 11/1/232:263/0:15 | 11/1/296,297,306,307/0:15 | 11/1/299,304,305,308,309/0:15 | 11/1/264:279/0:15 | 11/1/280:295/0:15 | 11/1/0:47/0:15 | 11/1/320:322/0:15 | 11/1/100:147/0:15 | 11/1/324,325/0:15 | 11/1/312:315/0:15 | 11/1/316:319/0:15 | 11/1/300:303/0:15 | 11/1/310,311/0:15 | 11/1/323/0:15 | 11/1/326,327/0:15 | 11/1/94:99/0:15 | 11/1/194:199/0:15
+LArHVLineID                                         INFO [init_hashes()] > Hvline_size= 5008
+GeoModelSvc.LArDetectorToolNV                       INFO Keys for LAr are ATLAS-R2-2016-01-00-01  ATLAS
+GeoModelSvc.LArDetectorToolNV                       INFO Building LAr version LAr-Revised-17-01 while ATLAS version is ATLAS-R2-2016-01-00-01
+GeoModelSvc.LArDetectorToolNV                       INFO LAr Geometry Options:
+GeoModelSvc.LArDetectorToolNV                       INFO   Sagging           = false
+GeoModelSvc.LArDetectorToolNV                       INFO   Barrel            = ON
+GeoModelSvc.LArDetectorToolNV                       INFO   Endcap            = ON
+BarrelConstruction                                  INFO Getting primary numbers for ATLAS, ATLAS-R2-2016-01-00-01
+BarrelConstruction                                  INFO   Makes detailed absorber sandwich  ? 1 1
+BarrelConstruction                                  INFO   Use sagging in geometry  ? 0
+EMECConstruction                                    INFO multi-layered version of absorbers activated, parameter value is 1
+EMECConstruction                                    INFO activating LAr::EMEC::Pos::InnerWheel
+EMECConstruction                                    INFO activating LAr::EMEC::Pos::OuterWheel
+ClassIDSvc                                          INFO  getRegistryEntries: read 2925 CLIDRegistry entries for module ALL
+CaloIDHelper_IDDetDescrCnv                          INFO in createObj: creating a TileTBID helper object in the detector store
+TileTBID                                            INFO initialize_from_dictionary 
+AtlasDetectorID                                     INFO initialize_from_dictionary - OK
+EndcapDMConstruction                                INFO Start building EC electronics geometry
+EMECConstruction                                    INFO multi-layered version of absorbers activated, parameter value is 1
+EMECConstruction                                    INFO activating LAr::EMEC::Neg::InnerWheel
+EMECConstruction                                    INFO activating LAr::EMEC::Neg::OuterWheel
+EndcapDMConstruction                                INFO Start building EC electronics geometry
+GeoModelSvc                                         INFO GeoModelSvc.LArDetectorToolNV	 SZ= 24344Kb 	 Time = 0.52S
+GeoModelSvc.TileDetectorTool                        INFO  Entering TileDetectorTool::create()
+TileDddbManager                                     INFO m_tag = ATLAS-R2-2016-01-00-01
+TileDddbManager                                     INFO n_tiglob = 5
+TileDddbManager                                     INFO n_timod = 320
+TileDddbManager                                     INFO n_cuts = 9
+TileDddbManager                                     INFO n_saddle = 1
+TileDddbManager                                     INFO n_tilb = 21
+TileDddbManager                                     INFO n_tileSwitches = 1
+CaloIDHelper_IDDetDescrCnv                          INFO in createObj: creating a TileID helper object in the detector store
+AtlasDetectorID                                     INFO initialize_from_dictionary - OK
+TileNeighbour                                       INFO Reading file  /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/TileNeighbour_reduced.txt
+TileHWIDDetDescrCnv                                 INFO in createObj: creating a TileHWID helper object in the detector store
+TileHWID                                            INFO initialize_from_dictionary 
+AtlasDetectorID                                     INFO initialize_from_dictionary - OK
+ClassIDSvc                                          INFO  getRegistryEntries: read 55 CLIDRegistry entries for module ALL
+CaloIDHelper_IDDetDescrCnv                          INFO in createObj: creating a CaloCell_ID helper object in the detector store
+CaloIDHelper_IDDetDescrCnv                          INFO in createObj: creating a LArEM_ID helper object in the detector store
+AtlasDetectorID                                     INFO initialize_from_dictionary - OK
+CaloIDHelper_IDDetDescrCnv                          INFO in createObj: creating a LArHEC_ID helper object in the detector store
+AtlasDetectorID                                     INFO initialize_from_dictionary - OK
+CaloIDHelper_IDDetDescrCnv                          INFO in createObj: creating a LArFCAL_ID helper object in the detector store
+AtlasDetectorID                                     INFO initialize_from_dictionary - OK
+LArFCAL_Base_ID                                     INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/FCal2DNeighbors-April2011.txt
+LArFCAL_Base_ID                                     INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/FCal3DNeighborsNext-April2011.txt
+LArFCAL_Base_ID                                     INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/FCal3DNeighborsPrev-April2011.txt
+CaloIDHelper_IDDetDescrCnv                          INFO in createObj: creating a LArMiniFCAL_ID helper object in the detector store
+AtlasDetectorID                                     INFO initialize_from_dictionary - OK
+LArMiniFCAL_ID                                      INFO  initialize_from_dict - LArCalorimeter dictionary does NOT contain miniFCAL description. Unable to initialize LArMiniFCAL_ID.
+AtlasDetectorID                                     INFO initialize_from_dictionary - OK
+GeoModelSvc.TileDetectorTool                        INFO  U-shape parameter from database is: 1
+GeoModelSvc.TileDetectorTool                        INFO  Glue parameter from database is: 1
+GeoModelSvc.TileDetectorTool                        INFO  Cs Tube parameter from database is: 0
+GeoModelSvc.TileDetectorTool                        INFO  Entering TileAtlasFactory::create()
+GeoModelSvc.TileDetectorTool                        INFO  Tile Geometry with Saddle supports, starting from TileCal-CSC-02 xxx
+GeoModelSvc.TileDetectorTool                        INFO  => New BFingerLengthPos 430.5
+GeoModelSvc.TileDetectorTool                        INFO  => New BFingerLengthNeg 420.5
+GeoModelSvc.TileDetectorTool                        INFO  Positioning barrel with translation 0
+GeoModelSvc.TileDetectorTool                        INFO  Positioning positive barrel finger with translation 3035.25
+GeoModelSvc.TileDetectorTool                        INFO  Positioning negative barrel finger with translation -3030.25
+GeoModelSvc.TileDetectorTool                        INFO  Positioning positive ext.barrel with translation 4854.75
+GeoModelSvc.TileDetectorTool                        INFO  Positioning positive ext.barrel finger with translation ztrans= 6338.5
+GeoModelSvc.TileDetectorTool                        INFO  Positioning positive ext.barrel saddle with translation ztrans= 6192.5
+GeoModelSvc.TileDetectorTool                        INFO  Positive ITC envelope parameters: PLUG1  Rmin= 3438.85 Rmax= 4250 dzITC1= 154.5
+GeoModelSvc.TileDetectorTool                        INFO                                    PLUG2  Rmin= 2981 Rmax= 3440 dzITC2= 47.425
+GeoModelSvc.TileDetectorTool                        INFO  Positioning positive ITC with translation 3405
+GeoModelSvc.TileDetectorTool                        INFO  Positioning positive Gap with translation 3552
+GeoModelSvc.TileDetectorTool                        INFO  Positioning positive Crack with translation 3536
+GeoModelSvc.TileDetectorTool                        INFO  Positioning negative ext.barrel with translation ztrans -4854.75
+GeoModelSvc.TileDetectorTool                        INFO  Positioning negative ext.barrel finger with translation ztrans= -6338.5
+GeoModelSvc.TileDetectorTool                        INFO  Positioning negative ext.barrel saddle with translation ztrans= -6192.5
+GeoModelSvc.TileDetectorTool                        INFO  Negative ITC envelope parameters: PLUG1  Rmin= 3438.85 Rmax= 4250 dzITC1= 154.5
+GeoModelSvc.TileDetectorTool                        INFO                                    PLUG2  Rmin= 2981 Rmax= 3440 dzITC2= 47.425
+GeoModelSvc.TileDetectorTool                        INFO  Positioning negative ITC with translation -3405
+GeoModelSvc.TileDetectorTool                        INFO  Positioning negative Gap with translation -3552
+GeoModelSvc.TileDetectorTool                        INFO  Positioning negative Crack with translation -3536
+GeoModelSvc.TileDetectorTool                        INFO  Global positioning of barrel with rotation (0,0,0)) and translation (0,0,0) Gaudi::Units::cm
+GeoModelSvc.TileDetectorTool                        INFO  Global positioning of positive ext.barrel with rotation (0,0,0)) and translation (0,0,0) Gaudi::Units::cm
+GeoModelSvc.TileDetectorTool                        INFO  Global positioning of negative ext.barrel with rotation (0,0,0)) and translation (0,0,1) Gaudi::Units::cm
+TileDetDescrManager                                 INFO Entering create_elements()
+GeoModelSvc                                         INFO GeoModelSvc.TileDetectorTool	 SZ= 4600Kb 	 Time = 0.12S
+ClassIDSvc                                          INFO  getRegistryEntries: read 66 CLIDRegistry entries for module ALL
+TileInfoLoader                                      INFO Changing TTL1 calib from 4.1 to 6.9
+TileInfoLoader                                      INFO Changing TTL1 noise sigma from 2.5 to 2.8
+CaloIDHelper_IDDetDescrCnv                          INFO in createObj: creating a CaloLVL1_ID helper object in the detector store
+CaloLVL1_ID                                         INFO initialize_from_dictionary
+AtlasDetectorID                                     INFO initialize_from_dictionary - OK
+TileCablingSvc                                      INFO RUN2 ATLAS geometry flag detected for geometry: ATLAS-R2-2016-01-00-01
+TileCablingSvc                                      INFO Cabling for RUN2a (2018) ATLAS geometry is set via jobOptions 
+TileCablingSvc                                      INFO Setting Cabling type to 5
+AthenaHiveEventLoopMgr                              INFO Initializing AthenaHiveEventLoopMgr - package version AthenaServices-00-00-00
+ClassIDSvc                                     0    INFO  getRegistryEntries: read 4851 CLIDRegistry entries for module ALL
+PyComponentMgr                                 0    INFO Initializing PyComponentMgr...
+Finalizer                                      0    INFO Initializing Finalizer...
+ClassIDSvc                                     0    INFO  getRegistryEntries: read 53 CLIDRegistry entries for module ALL
+CondInputLoader                                0    INFO Initializing CondInputLoader...
+CondInputLoader                                0    INFO Adding base classes:
   +  ( 'CondAttrListCollection' , 'ConditionStore+/TILE/OFL02/CALIB/CES' )   ->
   +  ( 'CondAttrListCollection' , 'ConditionStore+/TILE/OFL02/CALIB/CIS/FIT/LIN' )   ->
   +  ( 'CondAttrListCollection' , 'ConditionStore+/TILE/OFL02/CALIB/CIS/FIT/NLN' )   ->
@@ -925,7 +925,7 @@ CondInputLoader                             0      INFO Adding base classes:
   +  ( 'CondAttrListCollection' , 'ConditionStore+/TILE/OFL02/STATUS/ADC' )   ->
   +  ( 'CondAttrListCollection' , 'ConditionStore+/TILE/OFL02/TIME/CHANNELOFFSET/PHY' )   ->
   +  ( 'CondAttrListCollection' , 'ConditionStore+/TILE/ONL01/STATUS/ADC' )   ->
-CondInputLoader                             0      INFO Will create WriteCondHandle dependencies for the following DataObjects:
+CondInputLoader                                0    INFO Will create WriteCondHandle dependencies for the following DataObjects:
     +  ( 'CondAttrListCollection' , 'ConditionStore+/TILE/OFL02/CALIB/CES' ) 
     +  ( 'CondAttrListCollection' , 'ConditionStore+/TILE/OFL02/CALIB/CIS/FIT/LIN' ) 
     +  ( 'CondAttrListCollection' , 'ConditionStore+/TILE/OFL02/CALIB/CIS/FIT/NLN' ) 
@@ -937,354 +937,354 @@ CondInputLoader                             0      INFO Will create WriteCondHan
     +  ( 'CondAttrListCollection' , 'ConditionStore+/TILE/OFL02/STATUS/ADC' ) 
     +  ( 'CondAttrListCollection' , 'ConditionStore+/TILE/OFL02/TIME/CHANNELOFFSET/PHY' ) 
     +  ( 'CondAttrListCollection' , 'ConditionStore+/TILE/ONL01/STATUS/ADC' ) 
-TileBadChannelsCondAlg.TileCondProxyC...    0      INFO Creating TileCondProxyCool(TileBadChannelsCondAlg.TileCondProxyCool_OnlBch) for folder: "/TILE/ONL01/STATUS/ADC"
-TileBadChannelsCondAlg.TileCondProxyC...    0      INFO Creating TileCondProxyCool(TileBadChannelsCondAlg.TileCondProxyCool_OflBch) for folder: "/TILE/OFL02/STATUS/ADC"
-TileBadChannelsCondAlg                      0      INFO ProxyOnlBch and ProxyOflBch will be used for bad channel status
-TileEMScaleCondAlg.TileCondProxyCool_...    0      INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OflCisLin) for folder: "/TILE/OFL02/CALIB/CIS/FIT/LIN"
-TileEMScaleCondAlg.TileCondProxyCool_...    0      INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OflCisNln) for folder: "/TILE/OFL02/CALIB/CIS/FIT/NLN"
-TileEMScaleCondAlg.TileCondProxyCool_...    0      INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OflLasLin) for folder: "/TILE/OFL02/CALIB/LAS/LIN"
-TileEMScaleCondAlg.TileCondProxyCool_...    0      INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OflLasNln) for folder: "/TILE/OFL02/CALIB/LAS/NLN"
-TileEMScaleCondAlg.TileCondProxyCool_...    0      INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OflLasFib) for folder: "/TILE/OFL02/CALIB/LAS/FIBER"
-TileEMScaleCondAlg                          0      INFO ProxyOflLasFib is set up and can be used
-TileEMScaleCondAlg.TileCondProxyCool_...    0      INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OflCes) for folder: "/TILE/OFL02/CALIB/CES"
-TileEMScaleCondAlg.TileCondProxyCool_...    0      INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OflEms) for folder: "/TILE/OFL02/CALIB/EMS"
-TileEMScaleCondAlg                          0      INFO Undoing online calibration is not requested, since OnlCacheUnit= 'OnlCacheUnit':Invalid
-TileEMScaleCondAlg.TileCondProxyCool_...    0      INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OnlCis) for folder: "/TILE/OFL02/CALIB/CIS/FIT/LIN"
-TileEMScaleCondAlg.TileCondProxyCool_...    0      INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OnlLas) for folder: "/TILE/OFL02/CALIB/LAS/LIN"
-TileEMScaleCondAlg.TileCondProxyCool_...    0      INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OnlCes) for folder: "/TILE/OFL02/CALIB/CES"
-TileEMScaleCondAlg.TileCondProxyCool_...    0      INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OnlEms) for folder: "/TILE/OFL02/CALIB/EMS"
-TileSampleNoiseCondAlg.TileCondProxyC...    0      INFO Creating TileCondProxyCool(TileSampleNoiseCondAlg.TileCondProxyCool_NoiseSample) for folder: "/TILE/OFL02/NOISE/SAMPLE"
-TileTimingCondAlg.TileCondProxyCool_A...    0      INFO Creating TileCondProxyCool(TileTimingCondAlg.TileCondProxyCool_AdcOffset) for folder: "/TILE/OFL02/TIME/CHANNELOFFSET/PHY"
-ThreadPoolSvc                               0      INFO no thread init tools attached
-AvalancheSchedulerSvc                       0      INFO Activating scheduler in a separate thread
-AvalancheSchedulerSvc                       0      INFO Found 12 algorithms
-AvalancheSchedulerSvc                       0      INFO Will attribute the following unmet INPUT dependencies to "SGInputLoader/SGInputLoader" Algorithm
+TileBadChannelsCondAlg.TileCondProxyC...       0    INFO Creating TileCondProxyCool(TileBadChannelsCondAlg.TileCondProxyCool_OnlBch) for folder: "/TILE/ONL01/STATUS/ADC"
+TileBadChannelsCondAlg.TileCondProxyC...       0    INFO Creating TileCondProxyCool(TileBadChannelsCondAlg.TileCondProxyCool_OflBch) for folder: "/TILE/OFL02/STATUS/ADC"
+TileBadChannelsCondAlg                         0    INFO ProxyOnlBch and ProxyOflBch will be used for bad channel status
+TileEMScaleCondAlg.TileCondProxyCool_...       0    INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OflCisLin) for folder: "/TILE/OFL02/CALIB/CIS/FIT/LIN"
+TileEMScaleCondAlg.TileCondProxyCool_...       0    INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OflCisNln) for folder: "/TILE/OFL02/CALIB/CIS/FIT/NLN"
+TileEMScaleCondAlg.TileCondProxyCool_...       0    INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OflLasLin) for folder: "/TILE/OFL02/CALIB/LAS/LIN"
+TileEMScaleCondAlg.TileCondProxyCool_...       0    INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OflLasNln) for folder: "/TILE/OFL02/CALIB/LAS/NLN"
+TileEMScaleCondAlg.TileCondProxyCool_...       0    INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OflLasFib) for folder: "/TILE/OFL02/CALIB/LAS/FIBER"
+TileEMScaleCondAlg                             0    INFO ProxyOflLasFib is set up and can be used
+TileEMScaleCondAlg.TileCondProxyCool_...       0    INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OflCes) for folder: "/TILE/OFL02/CALIB/CES"
+TileEMScaleCondAlg.TileCondProxyCool_...       0    INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OflEms) for folder: "/TILE/OFL02/CALIB/EMS"
+TileEMScaleCondAlg                             0    INFO Undoing online calibration is not requested, since OnlCacheUnit= 'OnlCacheUnit':Invalid
+TileEMScaleCondAlg.TileCondProxyCool_...       0    INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OnlCis) for folder: "/TILE/OFL02/CALIB/CIS/FIT/LIN"
+TileEMScaleCondAlg.TileCondProxyCool_...       0    INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OnlLas) for folder: "/TILE/OFL02/CALIB/LAS/LIN"
+TileEMScaleCondAlg.TileCondProxyCool_...       0    INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OnlCes) for folder: "/TILE/OFL02/CALIB/CES"
+TileEMScaleCondAlg.TileCondProxyCool_...       0    INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OnlEms) for folder: "/TILE/OFL02/CALIB/EMS"
+TileSampleNoiseCondAlg.TileCondProxyC...       0    INFO Creating TileCondProxyCool(TileSampleNoiseCondAlg.TileCondProxyCool_NoiseSample) for folder: "/TILE/OFL02/NOISE/SAMPLE"
+TileTimingCondAlg.TileCondProxyCool_A...       0    INFO Creating TileCondProxyCool(TileTimingCondAlg.TileCondProxyCool_AdcOffset) for folder: "/TILE/OFL02/TIME/CHANNELOFFSET/PHY"
+ThreadPoolSvc                                  0    INFO no thread init tools attached
+AvalancheSchedulerSvc                          0    INFO Activating scheduler in a separate thread
+AvalancheSchedulerSvc                          0    INFO Found 12 algorithms
+AvalancheSchedulerSvc                          0    INFO Will attribute the following unmet INPUT dependencies to "SGInputLoader/SGInputLoader" Algorithm
    o  ( 'TileLaserObject' , 'StoreGateSvc+TileLaserObj' )     required by Algorithm: 
        * TileLaserObjectDumper
-PrecedenceSvc                               0      INFO Assembling CF and DF task precedence rules
-PrecedenceRulesGraph                        0      INFO CondSvc found. DF precedence rules will be augmented with 'Conditions'
-PrecedenceSvc                               0      INFO PrecedenceSvc initialized successfully
-AvalancheSchedulerSvc                       0      INFO Concurrency level information:
-AvalancheSchedulerSvc                       0      INFO  o Number of events in flight: 4
-AvalancheSchedulerSvc                       0      INFO  o TBB thread pool size:  'ThreadPoolSize':4
-HistogramPersistencySvc                     0   WARNING Histograms saving not required.
-EventSelector                               0      INFO Initializing EventSelector - package version ByteStreamCnvSvc-00-00-00
-ByteStreamInputSvc                          0      INFO Initializing ByteStreamInputSvc - package version ByteStreamCnvSvc-00-00-00
-ROBDataProviderSvc                          0      INFO Initializing ROBDataProviderSvc - package version ByteStreamCnvSvcBase-00-00-00
-ROBDataProviderSvc                          0      INFO  ---> Filter out empty ROB fragments                               =  'filterEmptyROB':False
-ROBDataProviderSvc                          0      INFO  ---> Filter out specific ROBs by Status Code: # ROBs = 0
-ROBDataProviderSvc                          0      INFO  ---> Filter out Sub Detector ROBs by Status Code: # Sub Detectors = 0
-EventSelector                               0      INFO reinitialization...
-AthenaHiveEventLoopMgr                      0      INFO Setup EventSelector service EventSelector
-ApplicationMgr                              0      INFO Application Manager Initialized successfully
-PoolSvc                                     0      INFO Enabled implicit multithreading in ROOT via PersistencySvc to: 4
-CondInputLoader                             0      INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/CALIB/CES'
-CondInputLoader                             0      INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/CALIB/CIS/FIT/LIN'
-CondInputLoader                             0      INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/CALIB/CIS/FIT/NLN'
-CondInputLoader                             0      INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/CALIB/EMS'
-CondInputLoader                             0      INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/CALIB/LAS/FIBER'
-CondInputLoader                             0      INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/CALIB/LAS/LIN'
-CondInputLoader                             0      INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/CALIB/LAS/NLN'
-CondInputLoader                             0      INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/NOISE/SAMPLE'
-CondInputLoader                             0      INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/STATUS/ADC'
-CondInputLoader                             0      INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/TIME/CHANNELOFFSET/PHY'
-CondInputLoader                             0      INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/ONL01/STATUS/ADC'
-ByteStreamInputSvc                          0      INFO Picked valid file: /cvmfs/atlas-nightlies.cern.ch/repo/data/data-art/TileByteStream/TileByteStream-02-00-00/data18_tilecomm.00363899.calibration_tile.daq.RAW._lb0000._TileREB-ROS._0005-200ev.data
-ApplicationMgr                              0      INFO Application Manager Started successfully
-AthenaHiveEventLoopMgr                      0      INFO Starting loop on events
-EventPersistencySvc                     0   0      INFO Added successfully Conversion service:AthenaPoolCnvSvc
-EventPersistencySvc                     0   0      INFO Added successfully Conversion service:TagInfoMgr
-EventPersistencySvc                     0   0      INFO Added successfully Conversion service:ByteStreamCnvSvc
-EventInfoByteStreamAuxCnv               0   0      INFO IsSimulation : 0
-EventInfoByteStreamAuxCnv               0   0      INFO IsTestbeam : 0
-EventInfoByteStreamAuxCnv               0   0      INFO IsCalibration : 0
-AthenaHiveEventLoopMgr                  0   0      INFO   ===>>>  start of run 363899    <<<===
-IOVDbSvc                                0   0      INFO Opening COOL connection for COOLOFL_LAR/OFLP200
-IOVDbFolder                             0   0      INFO HVS tag OFLCOND-RUN12-SDR-35 resolved to LARAlign-IOVDEP-00 for folder /LAR/Align
-IOVDbFolder                             0   0      INFO HVS tag OFLCOND-RUN12-SDR-35 resolved to LArCellPositionShift-ideal for folder /LAR/LArCellPositionShift
-IOVDbSvc                                0   0      INFO Disconnecting from COOLOFL_LAR/OFLP200
-Domain[ROOT_All]                        0   0      INFO ->  Access   DbDatabase   READ      [ROOT_All] 06C9EAE8-6F5B-E011-BAAA-003048F0E7AC
-Domain[ROOT_All]                        0   0      INFO                           /cvmfs/atlas-condb.cern.ch/repo/conditions/cond09/cond09_mc.000029.gen.COND/cond09_mc.000029.gen.COND._0002.pool.root
-RootDatabase.open                       0   0      INFO /cvmfs/atlas-condb.cern.ch/repo/conditions/cond09/cond09_mc.000029.gen.COND/cond09_mc.000029.gen.COND._0002.pool.root File version:52200
-CaloMgrDetDescrCnv                      0   0      INFO in createObj: creating a Calo Detector Manager object in the detector store
-CaloIdMgrDetDescrCnv                    0   0      INFO in createObj: creating a CaloDescrManager object in the detector store
-ClassIDSvc                              0   0      INFO  getRegistryEntries: read 195 CLIDRegistry entries for module ALL
-CaloIDHelper_IDDetDescrCnv              0   0      INFO in createObj: creating a CaloDM_ID helper object in the detector store
-CaloDM_ID                               0   0      INFO initialize_from_dictionary
-AtlasDetectorID                         0   0      INFO initialize_from_dictionary - OK
-CaloIDHelper_IDDetDescrCnv              0   0      INFO in createObj: creating a TTOnlineID helper object in the detector store
-TTOnlineID                              0   0      INFO initialize_from_dictionary
-AtlasDetectorID                         0   0      INFO initialize_from_dictionary - OK
-CaloIDHelper_IDDetDescrCnv              0   0      INFO in createObj: creating a CaloCell_SuperCell_ID helper object in the detector store
-CaloIDHelper_IDDetDescrCnv              0   0      INFO in createObj: creating a LArEM_SuperCell_ID helper object in the detector store
-AtlasDetectorID                         0   0      INFO initialize_from_dictionary - OK
-CaloIDHelper_IDDetDescrCnv              0   0      INFO in createObj: creating a LArHEC_SuperCell_ID helper object in the detector store
-AtlasDetectorID                         0   0      INFO initialize_from_dictionary - OK
-CaloIDHelper_IDDetDescrCnv              0   0      INFO in createObj: creating a LArFCAL_SuperCell_ID helper object in the detector store
-AtlasDetectorID                         0   0      INFO initialize_from_dictionary - OK
-LArFCAL_Base_ID                         0   0      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-06T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/FCalSuperCells2DNeighborsNew-April2014.txt
-LArFCAL_Base_ID                         0   0      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-06T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/FCalSuperCells3DNeighborsNextNew-April2014.txt
-LArFCAL_Base_ID                         0   0      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-06T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/FCalSuperCells3DNeighborsPrevNew-April2014.txt
-CaloIDHelper_IDDetDescrCnv              0   0      INFO in createObj: creating a Tile_SuperCell_ID helper object in the detector store
-AtlasDetectorID                         0   0      INFO initialize_from_dictionary - OK
-TileNeighbour                           0   0      INFO Reading file  /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-06T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/TileSuperCellNeighbour.txt
-AtlasDetectorID                         0   0      INFO initialize_from_dictionary - OK
-CaloIdMgrDetDescrCnv                    0   0      INFO  Finished 
-CaloIdMgrDetDescrCnv                    0   0      INFO Initializing CaloIdMgr from values in CaloIdMgrDetDescrCnv 
-Domain[ROOT_All]                        0   0      INFO ->  Access   DbDatabase   READ      [ROOT_All] 8667C6F2-1559-DE11-A611-000423D9A21A
-Domain[ROOT_All]                        0   0      INFO                           /cvmfs/atlas-condb.cern.ch/repo/conditions/cond08/cond08_mc.000003.gen.COND/cond08_mc.000003.gen.COND._0064.pool.root
-RootDatabase.open                       0   0      INFO /cvmfs/atlas-condb.cern.ch/repo/conditions/cond08/cond08_mc.000003.gen.COND/cond08_mc.000003.gen.COND._0064.pool.root File version:52200
-AthenaHiveEventLoopMgr                  0   0      INFO   ===>>>  start processing event #18124, run #363899 on slot 0,  0 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  1   1      INFO   ===>>>  start processing event #18125, run #363899 on slot 1,  0 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  2   2      INFO   ===>>>  start processing event #18126, run #363899 on slot 2,  0 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  3   3      INFO   ===>>>  start processing event #18127, run #363899 on slot 3,  0 events processed so far  <<<===
-ClassIDSvc                              0   0      INFO  getRegistryEntries: read 672 CLIDRegistry entries for module ALL
-ClassIDSvc                              0   0      INFO  getRegistryEntries: read 1776 CLIDRegistry entries for module ALL
-ClassIDSvc                              0   0      INFO  getRegistryEntries: read 90 CLIDRegistry entries for module ALL
-ToolSvc.TileROD_Decoder.TileL2Builder   0   0      INFO TileL2Builder initialization completed
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18125, run #363899 on slot 1,  1 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  4   1      INFO   ===>>>  start processing event #18128, run #363899 on slot 1,  1 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18124, run #363899 on slot 0,  2 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18127, run #363899 on slot 3,  3 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18126, run #363899 on slot 2,  4 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  5   0      INFO   ===>>>  start processing event #18129, run #363899 on slot 0,  4 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  6   2      INFO   ===>>>  start processing event #18130, run #363899 on slot 2,  4 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  7   3      INFO   ===>>>  start processing event #18131, run #363899 on slot 3,  4 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18128, run #363899 on slot 1,  5 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  8   1      INFO   ===>>>  start processing event #18132, run #363899 on slot 1,  5 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18129, run #363899 on slot 0,  6 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18130, run #363899 on slot 2,  7 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18131, run #363899 on slot 3,  8 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  9   0      INFO   ===>>>  start processing event #18133, run #363899 on slot 0,  8 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  10  2      INFO   ===>>>  start processing event #18134, run #363899 on slot 2,  8 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  11  3      INFO   ===>>>  start processing event #18135, run #363899 on slot 3,  8 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18132, run #363899 on slot 1,  9 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  12  1      INFO   ===>>>  start processing event #18136, run #363899 on slot 1,  9 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18133, run #363899 on slot 0,  10 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  13  0      INFO   ===>>>  start processing event #18137, run #363899 on slot 0,  10 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18134, run #363899 on slot 2,  11 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18135, run #363899 on slot 3,  12 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18136, run #363899 on slot 1,  13 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  14  1      INFO   ===>>>  start processing event #18138, run #363899 on slot 1,  13 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  15  2      INFO   ===>>>  start processing event #18139, run #363899 on slot 2,  13 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  16  3      INFO   ===>>>  start processing event #18140, run #363899 on slot 3,  13 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18137, run #363899 on slot 0,  14 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  17  0      INFO   ===>>>  start processing event #18141, run #363899 on slot 0,  14 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18138, run #363899 on slot 1,  15 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  18  1      INFO   ===>>>  start processing event #18142, run #363899 on slot 1,  15 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18140, run #363899 on slot 3,  16 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18139, run #363899 on slot 2,  17 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  19  2      INFO   ===>>>  start processing event #18143, run #363899 on slot 2,  17 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  20  3      INFO   ===>>>  start processing event #18144, run #363899 on slot 3,  17 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18141, run #363899 on slot 0,  18 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18142, run #363899 on slot 1,  19 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  21  0      INFO   ===>>>  start processing event #18145, run #363899 on slot 0,  19 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  22  1      INFO   ===>>>  start processing event #18146, run #363899 on slot 1,  19 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18143, run #363899 on slot 2,  20 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18144, run #363899 on slot 3,  21 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  23  2      INFO   ===>>>  start processing event #18147, run #363899 on slot 2,  21 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  24  3      INFO   ===>>>  start processing event #18148, run #363899 on slot 3,  21 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18145, run #363899 on slot 0,  22 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18146, run #363899 on slot 1,  23 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  25  0      INFO   ===>>>  start processing event #18149, run #363899 on slot 0,  23 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  26  1      INFO   ===>>>  start processing event #18150, run #363899 on slot 1,  23 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18147, run #363899 on slot 2,  24 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18148, run #363899 on slot 3,  25 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  27  2      INFO   ===>>>  start processing event #18151, run #363899 on slot 2,  25 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  28  3      INFO   ===>>>  start processing event #18152, run #363899 on slot 3,  25 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18149, run #363899 on slot 0,  26 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18150, run #363899 on slot 1,  27 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  29  0      INFO   ===>>>  start processing event #18153, run #363899 on slot 0,  27 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  30  1      INFO   ===>>>  start processing event #18154, run #363899 on slot 1,  27 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18151, run #363899 on slot 2,  28 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18152, run #363899 on slot 3,  29 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  31  2      INFO   ===>>>  start processing event #18155, run #363899 on slot 2,  29 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  32  3      INFO   ===>>>  start processing event #18156, run #363899 on slot 3,  29 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18153, run #363899 on slot 0,  30 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  33  0      INFO   ===>>>  start processing event #18157, run #363899 on slot 0,  30 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18154, run #363899 on slot 1,  31 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  34  1      INFO   ===>>>  start processing event #18158, run #363899 on slot 1,  31 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18155, run #363899 on slot 2,  32 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18156, run #363899 on slot 3,  33 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  35  2      INFO   ===>>>  start processing event #18159, run #363899 on slot 2,  33 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  36  3      INFO   ===>>>  start processing event #18160, run #363899 on slot 3,  33 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18157, run #363899 on slot 0,  34 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18158, run #363899 on slot 1,  35 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  37  0      INFO   ===>>>  start processing event #18161, run #363899 on slot 0,  35 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  38  1      INFO   ===>>>  start processing event #18162, run #363899 on slot 1,  35 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18159, run #363899 on slot 2,  36 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18160, run #363899 on slot 3,  37 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  39  2      INFO   ===>>>  start processing event #18163, run #363899 on slot 2,  37 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  40  3      INFO   ===>>>  start processing event #18164, run #363899 on slot 3,  37 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18161, run #363899 on slot 0,  38 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18162, run #363899 on slot 1,  39 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  41  0      INFO   ===>>>  start processing event #18165, run #363899 on slot 0,  39 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  42  1      INFO   ===>>>  start processing event #18166, run #363899 on slot 1,  39 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18163, run #363899 on slot 2,  40 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18164, run #363899 on slot 3,  41 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  43  2      INFO   ===>>>  start processing event #18167, run #363899 on slot 2,  41 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  44  3      INFO   ===>>>  start processing event #18168, run #363899 on slot 3,  41 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18165, run #363899 on slot 0,  42 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18166, run #363899 on slot 1,  43 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  45  0      INFO   ===>>>  start processing event #18169, run #363899 on slot 0,  43 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  46  1      INFO   ===>>>  start processing event #18170, run #363899 on slot 1,  43 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18168, run #363899 on slot 3,  44 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18167, run #363899 on slot 2,  45 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  47  2      INFO   ===>>>  start processing event #18171, run #363899 on slot 2,  45 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  48  3      INFO   ===>>>  start processing event #18172, run #363899 on slot 3,  45 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18169, run #363899 on slot 0,  46 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  49  0      INFO   ===>>>  start processing event #18173, run #363899 on slot 0,  46 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18170, run #363899 on slot 1,  47 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  50  1      INFO   ===>>>  start processing event #18174, run #363899 on slot 1,  47 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18171, run #363899 on slot 2,  48 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18172, run #363899 on slot 3,  49 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  51  2      INFO   ===>>>  start processing event #18175, run #363899 on slot 2,  49 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  52  3      INFO   ===>>>  start processing event #18176, run #363899 on slot 3,  49 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18173, run #363899 on slot 0,  50 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18174, run #363899 on slot 1,  51 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  53  0      INFO   ===>>>  start processing event #18177, run #363899 on slot 0,  51 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  54  1      INFO   ===>>>  start processing event #18178, run #363899 on slot 1,  51 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18175, run #363899 on slot 2,  52 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18176, run #363899 on slot 3,  53 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  55  2      INFO   ===>>>  start processing event #18179, run #363899 on slot 2,  53 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  56  3      INFO   ===>>>  start processing event #18180, run #363899 on slot 3,  53 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18177, run #363899 on slot 0,  54 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18178, run #363899 on slot 1,  55 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  57  0      INFO   ===>>>  start processing event #18181, run #363899 on slot 0,  55 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  58  1      INFO   ===>>>  start processing event #18182, run #363899 on slot 1,  55 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18179, run #363899 on slot 2,  56 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  59  2      INFO   ===>>>  start processing event #18183, run #363899 on slot 2,  56 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18180, run #363899 on slot 3,  57 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18181, run #363899 on slot 0,  58 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  60  0      INFO   ===>>>  start processing event #18184, run #363899 on slot 0,  58 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  61  3      INFO   ===>>>  start processing event #18185, run #363899 on slot 3,  58 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18182, run #363899 on slot 1,  59 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18183, run #363899 on slot 2,  60 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  62  1      INFO   ===>>>  start processing event #18186, run #363899 on slot 1,  60 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  63  2      INFO   ===>>>  start processing event #18187, run #363899 on slot 2,  60 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18184, run #363899 on slot 0,  61 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18185, run #363899 on slot 3,  62 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  64  0      INFO   ===>>>  start processing event #18188, run #363899 on slot 0,  62 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  65  3      INFO   ===>>>  start processing event #18189, run #363899 on slot 3,  62 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18186, run #363899 on slot 1,  63 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18187, run #363899 on slot 2,  64 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  66  1      INFO   ===>>>  start processing event #18190, run #363899 on slot 1,  64 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  67  2      INFO   ===>>>  start processing event #18191, run #363899 on slot 2,  64 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18188, run #363899 on slot 0,  65 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18189, run #363899 on slot 3,  66 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  68  0      INFO   ===>>>  start processing event #18192, run #363899 on slot 0,  66 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  69  3      INFO   ===>>>  start processing event #18193, run #363899 on slot 3,  66 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18190, run #363899 on slot 1,  67 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18191, run #363899 on slot 2,  68 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  70  1      INFO   ===>>>  start processing event #18194, run #363899 on slot 1,  68 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  71  2      INFO   ===>>>  start processing event #18195, run #363899 on slot 2,  68 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18192, run #363899 on slot 0,  69 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18193, run #363899 on slot 3,  70 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  72  0      INFO   ===>>>  start processing event #18196, run #363899 on slot 0,  70 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  73  3      INFO   ===>>>  start processing event #18197, run #363899 on slot 3,  70 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18194, run #363899 on slot 1,  71 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18195, run #363899 on slot 2,  72 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  74  1      INFO   ===>>>  start processing event #18198, run #363899 on slot 1,  72 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  75  2      INFO   ===>>>  start processing event #18199, run #363899 on slot 2,  72 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18196, run #363899 on slot 0,  73 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  76  0      INFO   ===>>>  start processing event #18200, run #363899 on slot 0,  73 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18197, run #363899 on slot 3,  74 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18198, run #363899 on slot 1,  75 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  77  1      INFO   ===>>>  start processing event #18201, run #363899 on slot 1,  75 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  78  3      INFO   ===>>>  start processing event #18202, run #363899 on slot 3,  75 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18199, run #363899 on slot 2,  76 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18200, run #363899 on slot 0,  77 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  79  0      INFO   ===>>>  start processing event #18203, run #363899 on slot 0,  77 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  80  2      INFO   ===>>>  start processing event #18204, run #363899 on slot 2,  77 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18201, run #363899 on slot 1,  78 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18202, run #363899 on slot 3,  79 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  81  1      INFO   ===>>>  start processing event #18205, run #363899 on slot 1,  79 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  82  3      INFO   ===>>>  start processing event #18206, run #363899 on slot 3,  79 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18203, run #363899 on slot 0,  80 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18204, run #363899 on slot 2,  81 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  83  0      INFO   ===>>>  start processing event #18207, run #363899 on slot 0,  81 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  84  2      INFO   ===>>>  start processing event #18208, run #363899 on slot 2,  81 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18205, run #363899 on slot 1,  82 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  85  1      INFO   ===>>>  start processing event #18209, run #363899 on slot 1,  82 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18206, run #363899 on slot 3,  83 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  86  3      INFO   ===>>>  start processing event #18210, run #363899 on slot 3,  83 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18207, run #363899 on slot 0,  84 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18208, run #363899 on slot 2,  85 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  87  0      INFO   ===>>>  start processing event #18211, run #363899 on slot 0,  85 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  88  2      INFO   ===>>>  start processing event #18212, run #363899 on slot 2,  85 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18209, run #363899 on slot 1,  86 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  89  1      INFO   ===>>>  start processing event #18213, run #363899 on slot 1,  86 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18210, run #363899 on slot 3,  87 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18211, run #363899 on slot 0,  88 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18212, run #363899 on slot 2,  89 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  90  0      INFO   ===>>>  start processing event #18214, run #363899 on slot 0,  89 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  91  2      INFO   ===>>>  start processing event #18215, run #363899 on slot 2,  89 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  92  3      INFO   ===>>>  start processing event #18216, run #363899 on slot 3,  89 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18213, run #363899 on slot 1,  90 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  93  1      INFO   ===>>>  start processing event #18217, run #363899 on slot 1,  90 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18214, run #363899 on slot 0,  91 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  94  0      INFO   ===>>>  start processing event #18218, run #363899 on slot 0,  91 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18215, run #363899 on slot 2,  92 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18216, run #363899 on slot 3,  93 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18217, run #363899 on slot 1,  94 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  95  1      INFO   ===>>>  start processing event #18219, run #363899 on slot 1,  94 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  96  2      INFO   ===>>>  start processing event #18220, run #363899 on slot 2,  94 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  97  3      INFO   ===>>>  start processing event #18221, run #363899 on slot 3,  94 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18218, run #363899 on slot 0,  95 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  98  0      INFO   ===>>>  start processing event #18222, run #363899 on slot 0,  95 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18219, run #363899 on slot 1,  96 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  99  1      INFO   ===>>>  start processing event #18223, run #363899 on slot 1,  96 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18220, run #363899 on slot 2,  97 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18221, run #363899 on slot 3,  98 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18222, run #363899 on slot 0,  99 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18223, run #363899 on slot 1,  100 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO ---> Loop Finished (seconds): 1.30897
-/cvmfs/atlas-condb.cern.ch/repo/condi...           INFO Database being retired...
-Domain[ROOT_All]                                   INFO ->  Deaccess DbDatabase   READ      [ROOT_All] 06C9EAE8-6F5B-E011-BAAA-003048F0E7AC
-/cvmfs/atlas-condb.cern.ch/repo/condi...           INFO Database being retired...
-Domain[ROOT_All]                                   INFO ->  Deaccess DbDatabase   READ      [ROOT_All] 8667C6F2-1559-DE11-A611-000423D9A21A
-Domain[ROOT_All]                                   INFO >   Deaccess DbDomain     READ      [ROOT_All] 
-ApplicationMgr                                     INFO Application Manager Stopped successfully
-IncidentProcAlg1                                   INFO Finalize
-SGInputLoader                                      INFO Finalizing SGInputLoader...
-Finalizer                                          INFO Finalizing Finalizer...
+PrecedenceSvc                                  0    INFO Assembling CF and DF task precedence rules
+PrecedenceRulesGraph                           0    INFO CondSvc found. DF precedence rules will be augmented with 'Conditions'
+PrecedenceSvc                                  0    INFO PrecedenceSvc initialized successfully
+AvalancheSchedulerSvc                          0    INFO Concurrency level information:
+AvalancheSchedulerSvc                          0    INFO  o Number of events in flight: 4
+AvalancheSchedulerSvc                          0    INFO  o TBB thread pool size:  'ThreadPoolSize':4
+HistogramPersistencySvc                        0 WARNING Histograms saving not required.
+EventSelector                                  0    INFO Initializing EventSelector - package version ByteStreamCnvSvc-00-00-00
+ByteStreamInputSvc                             0    INFO Initializing ByteStreamInputSvc - package version ByteStreamCnvSvc-00-00-00
+ROBDataProviderSvc                             0    INFO Initializing ROBDataProviderSvc - package version ByteStreamCnvSvcBase-00-00-00
+ROBDataProviderSvc                             0    INFO  ---> Filter out empty ROB fragments                               =  'filterEmptyROB':False
+ROBDataProviderSvc                             0    INFO  ---> Filter out specific ROBs by Status Code: # ROBs = 0
+ROBDataProviderSvc                             0    INFO  ---> Filter out Sub Detector ROBs by Status Code: # Sub Detectors = 0
+EventSelector                                  0    INFO reinitialization...
+AthenaHiveEventLoopMgr                         0    INFO Setup EventSelector service EventSelector
+ApplicationMgr                                 0    INFO Application Manager Initialized successfully
+PoolSvc                                        0    INFO Enabled implicit multithreading in ROOT via PersistencySvc to: 4
+CondInputLoader                                0    INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/CALIB/CES'
+CondInputLoader                                0    INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/CALIB/CIS/FIT/LIN'
+CondInputLoader                                0    INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/CALIB/CIS/FIT/NLN'
+CondInputLoader                                0    INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/CALIB/EMS'
+CondInputLoader                                0    INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/CALIB/LAS/FIBER'
+CondInputLoader                                0    INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/CALIB/LAS/LIN'
+CondInputLoader                                0    INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/CALIB/LAS/NLN'
+CondInputLoader                                0    INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/NOISE/SAMPLE'
+CondInputLoader                                0    INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/STATUS/ADC'
+CondInputLoader                                0    INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/TIME/CHANNELOFFSET/PHY'
+CondInputLoader                                0    INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/ONL01/STATUS/ADC'
+ByteStreamInputSvc                             0    INFO Picked valid file: /cvmfs/atlas-nightlies.cern.ch/repo/data/data-art/TileByteStream/TileByteStream-02-00-00/data18_tilecomm.00363899.calibration_tile.daq.RAW._lb0000._TileREB-ROS._0005-200ev.data
+ApplicationMgr                                 0    INFO Application Manager Started successfully
+AthenaHiveEventLoopMgr                         0    INFO Starting loop on events
+EventPersistencySvc                        0   0    INFO Added successfully Conversion service:AthenaPoolCnvSvc
+EventPersistencySvc                        0   0    INFO Added successfully Conversion service:TagInfoMgr
+EventPersistencySvc                        0   0    INFO Added successfully Conversion service:ByteStreamCnvSvc
+EventInfoByteStreamAuxCnv                  0   0    INFO IsSimulation : 0
+EventInfoByteStreamAuxCnv                  0   0    INFO IsTestbeam : 0
+EventInfoByteStreamAuxCnv                  0   0    INFO IsCalibration : 0
+AthenaHiveEventLoopMgr                     0   0    INFO   ===>>>  start of run 363899    <<<===
+IOVDbSvc                                   0   0    INFO Opening COOL connection for COOLOFL_LAR/OFLP200
+IOVDbFolder                                0   0    INFO HVS tag OFLCOND-RUN12-SDR-35 resolved to LARAlign-IOVDEP-00 for folder /LAR/Align
+IOVDbFolder                                0   0    INFO HVS tag OFLCOND-RUN12-SDR-35 resolved to LArCellPositionShift-ideal for folder /LAR/LArCellPositionShift
+IOVDbSvc                                   0   0    INFO Disconnecting from COOLOFL_LAR/OFLP200
+Domain[ROOT_All]                           0   0    INFO ->  Access   DbDatabase   READ      [ROOT_All] 06C9EAE8-6F5B-E011-BAAA-003048F0E7AC
+Domain[ROOT_All]                           0   0    INFO                           /cvmfs/atlas-condb.cern.ch/repo/conditions/cond09/cond09_mc.000029.gen.COND/cond09_mc.000029.gen.COND._0002.pool.root
+RootDatabase.open                          0   0    INFO /cvmfs/atlas-condb.cern.ch/repo/conditions/cond09/cond09_mc.000029.gen.COND/cond09_mc.000029.gen.COND._0002.pool.root File version:52200
+CaloMgrDetDescrCnv                         0   0    INFO in createObj: creating a Calo Detector Manager object in the detector store
+CaloIdMgrDetDescrCnv                       0   0    INFO in createObj: creating a CaloDescrManager object in the detector store
+ClassIDSvc                                 0   0    INFO  getRegistryEntries: read 198 CLIDRegistry entries for module ALL
+CaloIDHelper_IDDetDescrCnv                 0   0    INFO in createObj: creating a CaloDM_ID helper object in the detector store
+CaloDM_ID                                  0   0    INFO initialize_from_dictionary
+AtlasDetectorID                            0   0    INFO initialize_from_dictionary - OK
+CaloIDHelper_IDDetDescrCnv                 0   0    INFO in createObj: creating a TTOnlineID helper object in the detector store
+TTOnlineID                                 0   0    INFO initialize_from_dictionary
+AtlasDetectorID                            0   0    INFO initialize_from_dictionary - OK
+CaloIDHelper_IDDetDescrCnv                 0   0    INFO in createObj: creating a CaloCell_SuperCell_ID helper object in the detector store
+CaloIDHelper_IDDetDescrCnv                 0   0    INFO in createObj: creating a LArEM_SuperCell_ID helper object in the detector store
+AtlasDetectorID                            0   0    INFO initialize_from_dictionary - OK
+CaloIDHelper_IDDetDescrCnv                 0   0    INFO in createObj: creating a LArHEC_SuperCell_ID helper object in the detector store
+AtlasDetectorID                            0   0    INFO initialize_from_dictionary - OK
+CaloIDHelper_IDDetDescrCnv                 0   0    INFO in createObj: creating a LArFCAL_SuperCell_ID helper object in the detector store
+AtlasDetectorID                            0   0    INFO initialize_from_dictionary - OK
+LArFCAL_Base_ID                            0   0    INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/FCalSuperCells2DNeighborsNew-April2014.txt
+LArFCAL_Base_ID                            0   0    INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/FCalSuperCells3DNeighborsNextNew-April2014.txt
+LArFCAL_Base_ID                            0   0    INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/FCalSuperCells3DNeighborsPrevNew-April2014.txt
+CaloIDHelper_IDDetDescrCnv                 0   0    INFO in createObj: creating a Tile_SuperCell_ID helper object in the detector store
+AtlasDetectorID                            0   0    INFO initialize_from_dictionary - OK
+TileNeighbour                              0   0    INFO Reading file  /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/TileSuperCellNeighbour.txt
+AtlasDetectorID                            0   0    INFO initialize_from_dictionary - OK
+CaloIdMgrDetDescrCnv                       0   0    INFO  Finished 
+CaloIdMgrDetDescrCnv                       0   0    INFO Initializing CaloIdMgr from values in CaloIdMgrDetDescrCnv 
+Domain[ROOT_All]                           0   0    INFO ->  Access   DbDatabase   READ      [ROOT_All] 8667C6F2-1559-DE11-A611-000423D9A21A
+Domain[ROOT_All]                           0   0    INFO                           /cvmfs/atlas-condb.cern.ch/repo/conditions/cond08/cond08_mc.000003.gen.COND/cond08_mc.000003.gen.COND._0064.pool.root
+RootDatabase.open                          0   0    INFO /cvmfs/atlas-condb.cern.ch/repo/conditions/cond08/cond08_mc.000003.gen.COND/cond08_mc.000003.gen.COND._0064.pool.root File version:52200
+AthenaHiveEventLoopMgr                     0   0    INFO   ===>>>  start processing event #18124, run #363899 on slot 0,  0 events processed so far  <<<===
+AthenaHiveEventLoopMgr                     1   1    INFO   ===>>>  start processing event #18125, run #363899 on slot 1,  0 events processed so far  <<<===
+AthenaHiveEventLoopMgr                     2   2    INFO   ===>>>  start processing event #18126, run #363899 on slot 2,  0 events processed so far  <<<===
+AthenaHiveEventLoopMgr                     3   3    INFO   ===>>>  start processing event #18127, run #363899 on slot 3,  0 events processed so far  <<<===
+ClassIDSvc                                 0   0    INFO  getRegistryEntries: read 470 CLIDRegistry entries for module ALL
+ClassIDSvc                                 1   1    INFO  getRegistryEntries: read 1795 CLIDRegistry entries for module ALL
+ClassIDSvc                                 1   1    INFO  getRegistryEntries: read 91 CLIDRegistry entries for module ALL
+ToolSvc.TileROD_Decoder.TileL2Builder      1   1    INFO TileL2Builder initialization completed
+AthenaHiveEventLoopMgr                     1   1    INFO   ===>>>  done processing event #18125, run #363899 on slot 1,  1 events processed so far  <<<===
+AthenaHiveEventLoopMgr                     4   1    INFO   ===>>>  start processing event #18128, run #363899 on slot 1,  1 events processed so far  <<<===
+AthenaHiveEventLoopMgr                     2   2    INFO   ===>>>  done processing event #18126, run #363899 on slot 2,  2 events processed so far  <<<===
+AthenaHiveEventLoopMgr                     3   3    INFO   ===>>>  done processing event #18127, run #363899 on slot 3,  3 events processed so far  <<<===
+AthenaHiveEventLoopMgr                     0   0    INFO   ===>>>  done processing event #18124, run #363899 on slot 0,  4 events processed so far  <<<===
+AthenaHiveEventLoopMgr                     5   0    INFO   ===>>>  start processing event #18129, run #363899 on slot 0,  4 events processed so far  <<<===
+AthenaHiveEventLoopMgr                     6   2    INFO   ===>>>  start processing event #18130, run #363899 on slot 2,  4 events processed so far  <<<===
+AthenaHiveEventLoopMgr                     7   3    INFO   ===>>>  start processing event #18131, run #363899 on slot 3,  4 events processed so far  <<<===
+AthenaHiveEventLoopMgr                     4   1    INFO   ===>>>  done processing event #18128, run #363899 on slot 1,  5 events processed so far  <<<===
+AthenaHiveEventLoopMgr                     8   1    INFO   ===>>>  start processing event #18132, run #363899 on slot 1,  5 events processed so far  <<<===
+AthenaHiveEventLoopMgr                     5   0    INFO   ===>>>  done processing event #18129, run #363899 on slot 0,  6 events processed so far  <<<===
+AthenaHiveEventLoopMgr                     9   0    INFO   ===>>>  start processing event #18133, run #363899 on slot 0,  6 events processed so far  <<<===
+AthenaHiveEventLoopMgr                     6   2    INFO   ===>>>  done processing event #18130, run #363899 on slot 2,  7 events processed so far  <<<===
+AthenaHiveEventLoopMgr                     7   3    INFO   ===>>>  done processing event #18131, run #363899 on slot 3,  8 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    10   2    INFO   ===>>>  start processing event #18134, run #363899 on slot 2,  8 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    11   3    INFO   ===>>>  start processing event #18135, run #363899 on slot 3,  8 events processed so far  <<<===
+AthenaHiveEventLoopMgr                     8   1    INFO   ===>>>  done processing event #18132, run #363899 on slot 1,  9 events processed so far  <<<===
+AthenaHiveEventLoopMgr                     9   0    INFO   ===>>>  done processing event #18133, run #363899 on slot 0,  10 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    12   0    INFO   ===>>>  start processing event #18136, run #363899 on slot 0,  10 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    13   1    INFO   ===>>>  start processing event #18137, run #363899 on slot 1,  10 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    10   2    INFO   ===>>>  done processing event #18134, run #363899 on slot 2,  11 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    11   3    INFO   ===>>>  done processing event #18135, run #363899 on slot 3,  12 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    14   2    INFO   ===>>>  start processing event #18138, run #363899 on slot 2,  12 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    15   3    INFO   ===>>>  start processing event #18139, run #363899 on slot 3,  12 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    12   0    INFO   ===>>>  done processing event #18136, run #363899 on slot 0,  13 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    13   1    INFO   ===>>>  done processing event #18137, run #363899 on slot 1,  14 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    16   0    INFO   ===>>>  start processing event #18140, run #363899 on slot 0,  14 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    17   1    INFO   ===>>>  start processing event #18141, run #363899 on slot 1,  14 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    14   2    INFO   ===>>>  done processing event #18138, run #363899 on slot 2,  15 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    18   2    INFO   ===>>>  start processing event #18142, run #363899 on slot 2,  15 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    15   3    INFO   ===>>>  done processing event #18139, run #363899 on slot 3,  16 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    16   0    INFO   ===>>>  done processing event #18140, run #363899 on slot 0,  17 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    19   0    INFO   ===>>>  start processing event #18143, run #363899 on slot 0,  17 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    20   3    INFO   ===>>>  start processing event #18144, run #363899 on slot 3,  17 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    17   1    INFO   ===>>>  done processing event #18141, run #363899 on slot 1,  18 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    18   2    INFO   ===>>>  done processing event #18142, run #363899 on slot 2,  19 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    21   1    INFO   ===>>>  start processing event #18145, run #363899 on slot 1,  19 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    22   2    INFO   ===>>>  start processing event #18146, run #363899 on slot 2,  19 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    19   0    INFO   ===>>>  done processing event #18143, run #363899 on slot 0,  20 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    20   3    INFO   ===>>>  done processing event #18144, run #363899 on slot 3,  21 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    23   0    INFO   ===>>>  start processing event #18147, run #363899 on slot 0,  21 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    24   3    INFO   ===>>>  start processing event #18148, run #363899 on slot 3,  21 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    21   1    INFO   ===>>>  done processing event #18145, run #363899 on slot 1,  22 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    22   2    INFO   ===>>>  done processing event #18146, run #363899 on slot 2,  23 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    25   1    INFO   ===>>>  start processing event #18149, run #363899 on slot 1,  23 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    26   2    INFO   ===>>>  start processing event #18150, run #363899 on slot 2,  23 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    23   0    INFO   ===>>>  done processing event #18147, run #363899 on slot 0,  24 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    24   3    INFO   ===>>>  done processing event #18148, run #363899 on slot 3,  25 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    27   0    INFO   ===>>>  start processing event #18151, run #363899 on slot 0,  25 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    28   3    INFO   ===>>>  start processing event #18152, run #363899 on slot 3,  25 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    25   1    INFO   ===>>>  done processing event #18149, run #363899 on slot 1,  26 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    26   2    INFO   ===>>>  done processing event #18150, run #363899 on slot 2,  27 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    29   1    INFO   ===>>>  start processing event #18153, run #363899 on slot 1,  27 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    30   2    INFO   ===>>>  start processing event #18154, run #363899 on slot 2,  27 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    27   0    INFO   ===>>>  done processing event #18151, run #363899 on slot 0,  28 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    28   3    INFO   ===>>>  done processing event #18152, run #363899 on slot 3,  29 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    31   0    INFO   ===>>>  start processing event #18155, run #363899 on slot 0,  29 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    32   3    INFO   ===>>>  start processing event #18156, run #363899 on slot 3,  29 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    29   1    INFO   ===>>>  done processing event #18153, run #363899 on slot 1,  30 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    30   2    INFO   ===>>>  done processing event #18154, run #363899 on slot 2,  31 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    33   1    INFO   ===>>>  start processing event #18157, run #363899 on slot 1,  31 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    34   2    INFO   ===>>>  start processing event #18158, run #363899 on slot 2,  31 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    31   0    INFO   ===>>>  done processing event #18155, run #363899 on slot 0,  32 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    32   3    INFO   ===>>>  done processing event #18156, run #363899 on slot 3,  33 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    35   0    INFO   ===>>>  start processing event #18159, run #363899 on slot 0,  33 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    36   3    INFO   ===>>>  start processing event #18160, run #363899 on slot 3,  33 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    33   1    INFO   ===>>>  done processing event #18157, run #363899 on slot 1,  34 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    34   2    INFO   ===>>>  done processing event #18158, run #363899 on slot 2,  35 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    37   1    INFO   ===>>>  start processing event #18161, run #363899 on slot 1,  35 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    38   2    INFO   ===>>>  start processing event #18162, run #363899 on slot 2,  35 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    35   0    INFO   ===>>>  done processing event #18159, run #363899 on slot 0,  36 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    36   3    INFO   ===>>>  done processing event #18160, run #363899 on slot 3,  37 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    39   0    INFO   ===>>>  start processing event #18163, run #363899 on slot 0,  37 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    40   3    INFO   ===>>>  start processing event #18164, run #363899 on slot 3,  37 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    37   1    INFO   ===>>>  done processing event #18161, run #363899 on slot 1,  38 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    38   2    INFO   ===>>>  done processing event #18162, run #363899 on slot 2,  39 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    41   1    INFO   ===>>>  start processing event #18165, run #363899 on slot 1,  39 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    42   2    INFO   ===>>>  start processing event #18166, run #363899 on slot 2,  39 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    39   0    INFO   ===>>>  done processing event #18163, run #363899 on slot 0,  40 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    40   3    INFO   ===>>>  done processing event #18164, run #363899 on slot 3,  41 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    43   0    INFO   ===>>>  start processing event #18167, run #363899 on slot 0,  41 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    44   3    INFO   ===>>>  start processing event #18168, run #363899 on slot 3,  41 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    41   1    INFO   ===>>>  done processing event #18165, run #363899 on slot 1,  42 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    42   2    INFO   ===>>>  done processing event #18166, run #363899 on slot 2,  43 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    45   1    INFO   ===>>>  start processing event #18169, run #363899 on slot 1,  43 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    46   2    INFO   ===>>>  start processing event #18170, run #363899 on slot 2,  43 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    43   0    INFO   ===>>>  done processing event #18167, run #363899 on slot 0,  44 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    44   3    INFO   ===>>>  done processing event #18168, run #363899 on slot 3,  45 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    47   0    INFO   ===>>>  start processing event #18171, run #363899 on slot 0,  45 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    48   3    INFO   ===>>>  start processing event #18172, run #363899 on slot 3,  45 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    45   1    INFO   ===>>>  done processing event #18169, run #363899 on slot 1,  46 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    46   2    INFO   ===>>>  done processing event #18170, run #363899 on slot 2,  47 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    49   1    INFO   ===>>>  start processing event #18173, run #363899 on slot 1,  47 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    50   2    INFO   ===>>>  start processing event #18174, run #363899 on slot 2,  47 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    47   0    INFO   ===>>>  done processing event #18171, run #363899 on slot 0,  48 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    48   3    INFO   ===>>>  done processing event #18172, run #363899 on slot 3,  49 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    51   0    INFO   ===>>>  start processing event #18175, run #363899 on slot 0,  49 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    52   3    INFO   ===>>>  start processing event #18176, run #363899 on slot 3,  49 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    49   1    INFO   ===>>>  done processing event #18173, run #363899 on slot 1,  50 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    50   2    INFO   ===>>>  done processing event #18174, run #363899 on slot 2,  51 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    53   1    INFO   ===>>>  start processing event #18177, run #363899 on slot 1,  51 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    54   2    INFO   ===>>>  start processing event #18178, run #363899 on slot 2,  51 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    51   0    INFO   ===>>>  done processing event #18175, run #363899 on slot 0,  52 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    52   3    INFO   ===>>>  done processing event #18176, run #363899 on slot 3,  53 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    55   0    INFO   ===>>>  start processing event #18179, run #363899 on slot 0,  53 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    56   3    INFO   ===>>>  start processing event #18180, run #363899 on slot 3,  53 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    53   1    INFO   ===>>>  done processing event #18177, run #363899 on slot 1,  54 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    54   2    INFO   ===>>>  done processing event #18178, run #363899 on slot 2,  55 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    57   1    INFO   ===>>>  start processing event #18181, run #363899 on slot 1,  55 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    58   2    INFO   ===>>>  start processing event #18182, run #363899 on slot 2,  55 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    55   0    INFO   ===>>>  done processing event #18179, run #363899 on slot 0,  56 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    56   3    INFO   ===>>>  done processing event #18180, run #363899 on slot 3,  57 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    59   0    INFO   ===>>>  start processing event #18183, run #363899 on slot 0,  57 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    60   3    INFO   ===>>>  start processing event #18184, run #363899 on slot 3,  57 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    57   1    INFO   ===>>>  done processing event #18181, run #363899 on slot 1,  58 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    58   2    INFO   ===>>>  done processing event #18182, run #363899 on slot 2,  59 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    61   1    INFO   ===>>>  start processing event #18185, run #363899 on slot 1,  59 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    62   2    INFO   ===>>>  start processing event #18186, run #363899 on slot 2,  59 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    59   0    INFO   ===>>>  done processing event #18183, run #363899 on slot 0,  60 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    60   3    INFO   ===>>>  done processing event #18184, run #363899 on slot 3,  61 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    63   0    INFO   ===>>>  start processing event #18187, run #363899 on slot 0,  61 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    64   3    INFO   ===>>>  start processing event #18188, run #363899 on slot 3,  61 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    61   1    INFO   ===>>>  done processing event #18185, run #363899 on slot 1,  62 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    62   2    INFO   ===>>>  done processing event #18186, run #363899 on slot 2,  63 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    65   1    INFO   ===>>>  start processing event #18189, run #363899 on slot 1,  63 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    66   2    INFO   ===>>>  start processing event #18190, run #363899 on slot 2,  63 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    63   0    INFO   ===>>>  done processing event #18187, run #363899 on slot 0,  64 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    64   3    INFO   ===>>>  done processing event #18188, run #363899 on slot 3,  65 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    67   0    INFO   ===>>>  start processing event #18191, run #363899 on slot 0,  65 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    68   3    INFO   ===>>>  start processing event #18192, run #363899 on slot 3,  65 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    65   1    INFO   ===>>>  done processing event #18189, run #363899 on slot 1,  66 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    66   2    INFO   ===>>>  done processing event #18190, run #363899 on slot 2,  67 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    69   1    INFO   ===>>>  start processing event #18193, run #363899 on slot 1,  67 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    70   2    INFO   ===>>>  start processing event #18194, run #363899 on slot 2,  67 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    67   0    INFO   ===>>>  done processing event #18191, run #363899 on slot 0,  68 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    68   3    INFO   ===>>>  done processing event #18192, run #363899 on slot 3,  69 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    71   0    INFO   ===>>>  start processing event #18195, run #363899 on slot 0,  69 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    72   3    INFO   ===>>>  start processing event #18196, run #363899 on slot 3,  69 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    69   1    INFO   ===>>>  done processing event #18193, run #363899 on slot 1,  70 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    70   2    INFO   ===>>>  done processing event #18194, run #363899 on slot 2,  71 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    73   1    INFO   ===>>>  start processing event #18197, run #363899 on slot 1,  71 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    74   2    INFO   ===>>>  start processing event #18198, run #363899 on slot 2,  71 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    71   0    INFO   ===>>>  done processing event #18195, run #363899 on slot 0,  72 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    72   3    INFO   ===>>>  done processing event #18196, run #363899 on slot 3,  73 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    75   0    INFO   ===>>>  start processing event #18199, run #363899 on slot 0,  73 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    76   3    INFO   ===>>>  start processing event #18200, run #363899 on slot 3,  73 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    73   1    INFO   ===>>>  done processing event #18197, run #363899 on slot 1,  74 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    74   2    INFO   ===>>>  done processing event #18198, run #363899 on slot 2,  75 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    77   1    INFO   ===>>>  start processing event #18201, run #363899 on slot 1,  75 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    78   2    INFO   ===>>>  start processing event #18202, run #363899 on slot 2,  75 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    75   0    INFO   ===>>>  done processing event #18199, run #363899 on slot 0,  76 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    76   3    INFO   ===>>>  done processing event #18200, run #363899 on slot 3,  77 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    79   0    INFO   ===>>>  start processing event #18203, run #363899 on slot 0,  77 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    80   3    INFO   ===>>>  start processing event #18204, run #363899 on slot 3,  77 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    77   1    INFO   ===>>>  done processing event #18201, run #363899 on slot 1,  78 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    78   2    INFO   ===>>>  done processing event #18202, run #363899 on slot 2,  79 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    81   1    INFO   ===>>>  start processing event #18205, run #363899 on slot 1,  79 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    82   2    INFO   ===>>>  start processing event #18206, run #363899 on slot 2,  79 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    79   0    INFO   ===>>>  done processing event #18203, run #363899 on slot 0,  80 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    80   3    INFO   ===>>>  done processing event #18204, run #363899 on slot 3,  81 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    83   0    INFO   ===>>>  start processing event #18207, run #363899 on slot 0,  81 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    84   3    INFO   ===>>>  start processing event #18208, run #363899 on slot 3,  81 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    81   1    INFO   ===>>>  done processing event #18205, run #363899 on slot 1,  82 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    85   1    INFO   ===>>>  start processing event #18209, run #363899 on slot 1,  82 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    82   2    INFO   ===>>>  done processing event #18206, run #363899 on slot 2,  83 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    86   2    INFO   ===>>>  start processing event #18210, run #363899 on slot 2,  83 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    83   0    INFO   ===>>>  done processing event #18207, run #363899 on slot 0,  84 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    84   3    INFO   ===>>>  done processing event #18208, run #363899 on slot 3,  85 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    87   0    INFO   ===>>>  start processing event #18211, run #363899 on slot 0,  85 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    88   3    INFO   ===>>>  start processing event #18212, run #363899 on slot 3,  85 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    85   1    INFO   ===>>>  done processing event #18209, run #363899 on slot 1,  86 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    86   2    INFO   ===>>>  done processing event #18210, run #363899 on slot 2,  87 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    89   1    INFO   ===>>>  start processing event #18213, run #363899 on slot 1,  87 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    90   2    INFO   ===>>>  start processing event #18214, run #363899 on slot 2,  87 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    87   0    INFO   ===>>>  done processing event #18211, run #363899 on slot 0,  88 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    91   0    INFO   ===>>>  start processing event #18215, run #363899 on slot 0,  88 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    88   3    INFO   ===>>>  done processing event #18212, run #363899 on slot 3,  89 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    92   3    INFO   ===>>>  start processing event #18216, run #363899 on slot 3,  89 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    89   1    INFO   ===>>>  done processing event #18213, run #363899 on slot 1,  90 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    90   2    INFO   ===>>>  done processing event #18214, run #363899 on slot 2,  91 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    93   1    INFO   ===>>>  start processing event #18217, run #363899 on slot 1,  91 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    94   2    INFO   ===>>>  start processing event #18218, run #363899 on slot 2,  91 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    91   0    INFO   ===>>>  done processing event #18215, run #363899 on slot 0,  92 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    95   0    INFO   ===>>>  start processing event #18219, run #363899 on slot 0,  92 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    92   3    INFO   ===>>>  done processing event #18216, run #363899 on slot 3,  93 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    96   3    INFO   ===>>>  start processing event #18220, run #363899 on slot 3,  93 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    93   1    INFO   ===>>>  done processing event #18217, run #363899 on slot 1,  94 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    97   1    INFO   ===>>>  start processing event #18221, run #363899 on slot 1,  94 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    94   2    INFO   ===>>>  done processing event #18218, run #363899 on slot 2,  95 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    98   2    INFO   ===>>>  start processing event #18222, run #363899 on slot 2,  95 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    95   0    INFO   ===>>>  done processing event #18219, run #363899 on slot 0,  96 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    99   0    INFO   ===>>>  start processing event #18223, run #363899 on slot 0,  96 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    96   3    INFO   ===>>>  done processing event #18220, run #363899 on slot 3,  97 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    97   1    INFO   ===>>>  done processing event #18221, run #363899 on slot 1,  98 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    98   2    INFO   ===>>>  done processing event #18222, run #363899 on slot 2,  99 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    99   0    INFO   ===>>>  done processing event #18223, run #363899 on slot 0,  100 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    99   0    INFO ---> Loop Finished (seconds): 0.821119
+/cvmfs/atlas-condb.cern.ch/repo/condi...            INFO Database being retired...
+Domain[ROOT_All]                                    INFO ->  Deaccess DbDatabase   READ      [ROOT_All] 06C9EAE8-6F5B-E011-BAAA-003048F0E7AC
+/cvmfs/atlas-condb.cern.ch/repo/condi...            INFO Database being retired...
+Domain[ROOT_All]                                    INFO ->  Deaccess DbDatabase   READ      [ROOT_All] 8667C6F2-1559-DE11-A611-000423D9A21A
+Domain[ROOT_All]                                    INFO >   Deaccess DbDomain     READ      [ROOT_All] 
+ApplicationMgr                                      INFO Application Manager Stopped successfully
+IncidentProcAlg1                                    INFO Finalize
+SGInputLoader                                       INFO Finalizing SGInputLoader...
+Finalizer                                           INFO Finalizing Finalizer...
 Finalize: compared 10 dumps
-CondInputLoader                                    INFO Finalizing CondInputLoader...
-IncidentProcAlg2                                   INFO Finalize
-AvalancheSchedulerSvc                              INFO Joining Scheduler thread
-PyComponentMgr                                     INFO Finalizing PyComponentMgr...
-EventDataSvc                                       INFO Finalizing EventDataSvc - package version StoreGate-00-00-00
-IdDictDetDescrCnv                                  INFO in finalize
-IOVDbFolder                                        INFO Folder /LAR/Align (PoolRef) db-read 1/1 objs/chan/bytes 1/1/170 ((     0.04 ))s
-IOVDbFolder                                        INFO Folder /TILE/OFL02/CALIB/CES (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
-IOVDbFolder                                        INFO Folder /TILE/OFL02/CALIB/CIS/FIT/LIN (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
-IOVDbFolder                                        INFO Folder /TILE/OFL02/CALIB/CIS/FIT/NLN (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
-IOVDbFolder                                        INFO Folder /TILE/OFL02/CALIB/EMS (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
-IOVDbFolder                                        INFO Folder /TILE/OFL02/CALIB/LAS/FIBER (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
-IOVDbFolder                                        INFO Folder /TILE/OFL02/CALIB/LAS/LIN (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
-IOVDbFolder                                        INFO Folder /TILE/OFL02/CALIB/LAS/NLN (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
-IOVDbFolder                                        INFO Folder /TILE/OFL02/NOISE/SAMPLE (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
-IOVDbFolder                                        INFO Folder /TILE/OFL02/STATUS/ADC (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
-IOVDbFolder                                        INFO Folder /TILE/OFL02/TIME/CHANNELOFFSET/PHY (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
-IOVDbFolder                                        INFO Folder /TILE/ONL01/STATUS/ADC (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
-IOVDbFolder                                        INFO Folder /LAR/LArCellPositionShift (PoolRef) db-read 1/1 objs/chan/bytes 1/1/195 ((     0.02 ))s
-IOVDbSvc                                           INFO  bytes in ((      0.06 ))s
-IOVDbSvc                                           INFO Connection sqlite://;schema=mycool.db;dbname=OFLP200 : nConnect: 0 nFolders: 0 ReadTime: ((     0.00 ))s
-IOVDbSvc                                           INFO Connection COOLOFL_LAR/OFLP200 : nConnect: 2 nFolders: 2 ReadTime: ((     0.06 ))s
-IOVDbSvc                                           INFO Connection COOLOFL_TILE/OFLP200 : nConnect: 1 nFolders: 11 ReadTime: ((     0.00 ))s
-AthDictLoaderSvc                                   INFO in finalize...
-ToolSvc                                            INFO Removing all tools created by ToolSvc
-ToolSvc.ByteStreamMetadataTool                     INFO in finalize()
-ToolSvc.TileROD_Decoder.TileL2Builder              INFO Finalizing
-*****Chrono*****                                   INFO ****************************************************************************************************
-*****Chrono*****                                   INFO WARNING: MT job; statistics are unreliable
-*****Chrono*****                                   INFO  The Final CPU consumption ( Chrono ) Table (ordered)
-*****Chrono*****                                   INFO ****************************************************************************************************
-cObjR_ALL                                          INFO Time User   : Tot=  350 [ms] Ave/Min/Max=  175(+-  165)/   10/  340 [ms] #=  2
-cObj_ALL                                           INFO Time User   : Tot=  390 [ms] Ave/Min/Max=  195(+-  165)/   30/  360 [ms] #=  2
-ChronoStatSvc                                      INFO Time User   : Tot= 2.64  [s]                                             #=  1
-*****Chrono*****                                   INFO ****************************************************************************************************
-ChronoStatSvc.finalize()                           INFO  Service finalized successfully 
-ApplicationMgr                                     INFO Application Manager Finalized successfully
-ApplicationMgr                                     INFO Application Manager Terminated successfully
+CondInputLoader                                     INFO Finalizing CondInputLoader...
+IncidentProcAlg2                                    INFO Finalize
+AvalancheSchedulerSvc                               INFO Joining Scheduler thread
+PyComponentMgr                                      INFO Finalizing PyComponentMgr...
+EventDataSvc                                        INFO Finalizing EventDataSvc - package version StoreGate-00-00-00
+IdDictDetDescrCnv                                   INFO in finalize
+IOVDbFolder                                         INFO Folder /LAR/Align (PoolRef) db-read 1/1 objs/chan/bytes 1/1/170 ((     0.04 ))s
+IOVDbFolder                                         INFO Folder /TILE/OFL02/CALIB/CES (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
+IOVDbFolder                                         INFO Folder /TILE/OFL02/CALIB/CIS/FIT/LIN (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
+IOVDbFolder                                         INFO Folder /TILE/OFL02/CALIB/CIS/FIT/NLN (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
+IOVDbFolder                                         INFO Folder /TILE/OFL02/CALIB/EMS (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
+IOVDbFolder                                         INFO Folder /TILE/OFL02/CALIB/LAS/FIBER (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
+IOVDbFolder                                         INFO Folder /TILE/OFL02/CALIB/LAS/LIN (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
+IOVDbFolder                                         INFO Folder /TILE/OFL02/CALIB/LAS/NLN (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
+IOVDbFolder                                         INFO Folder /TILE/OFL02/NOISE/SAMPLE (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
+IOVDbFolder                                         INFO Folder /TILE/OFL02/STATUS/ADC (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
+IOVDbFolder                                         INFO Folder /TILE/OFL02/TIME/CHANNELOFFSET/PHY (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
+IOVDbFolder                                         INFO Folder /TILE/ONL01/STATUS/ADC (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
+IOVDbFolder                                         INFO Folder /LAR/LArCellPositionShift (PoolRef) db-read 1/1 objs/chan/bytes 1/1/195 ((     0.02 ))s
+IOVDbSvc                                            INFO  bytes in ((      0.06 ))s
+IOVDbSvc                                            INFO Connection sqlite://;schema=mycool.db;dbname=OFLP200 : nConnect: 0 nFolders: 0 ReadTime: ((     0.00 ))s
+IOVDbSvc                                            INFO Connection COOLOFL_LAR/OFLP200 : nConnect: 2 nFolders: 2 ReadTime: ((     0.06 ))s
+IOVDbSvc                                            INFO Connection COOLOFL_TILE/OFLP200 : nConnect: 1 nFolders: 11 ReadTime: ((     0.00 ))s
+AthDictLoaderSvc                                    INFO in finalize...
+ToolSvc                                             INFO Removing all tools created by ToolSvc
+ToolSvc.TileROD_Decoder.TileL2Builder               INFO Finalizing
+ToolSvc.ByteStreamMetadataTool                      INFO in finalize()
+*****Chrono*****                                    INFO ****************************************************************************************************
+*****Chrono*****                                    INFO WARNING: MT job; statistics are unreliable
+*****Chrono*****                                    INFO  The Final CPU consumption ( Chrono ) Table (ordered)
+*****Chrono*****                                    INFO ****************************************************************************************************
+cObjR_ALL                                           INFO Time User   : Tot=  300 [ms] Ave/Min/Max=  150(+-  150)/    0/  300 [ms] #=  2
+cObj_ALL                                            INFO Time User   : Tot=  330 [ms] Ave/Min/Max=  165(+-  145)/   20/  310 [ms] #=  2
+ChronoStatSvc                                       INFO Time User   : Tot= 2.25  [s]                                             #=  1
+*****Chrono*****                                    INFO ****************************************************************************************************
+ChronoStatSvc.finalize()                            INFO  Service finalized successfully 
+ApplicationMgr                                      INFO Application Manager Finalized successfully
+ApplicationMgr                                      INFO Application Manager Terminated successfully
 Py:Athena            INFO leaving with code 0: "successful run"
diff --git a/TileCalorimeter/TileSvc/TileByteStream/share/TileMuRcvContByteStreamCnv_test.ref b/TileCalorimeter/TileSvc/TileByteStream/share/TileMuRcvContByteStreamCnv_test.ref
index 16754e259f7..fa85dc1e422 100644
--- a/TileCalorimeter/TileSvc/TileByteStream/share/TileMuRcvContByteStreamCnv_test.ref
+++ b/TileCalorimeter/TileSvc/TileByteStream/share/TileMuRcvContByteStreamCnv_test.ref
@@ -1,16 +1,16 @@
-Wed Aug  7 22:11:46 CEST 2019
+Fri Nov 29 11:11:58 CET 2019
 Preloading tcmalloc_minimal.so
 Py:Athena            INFO including file "AthenaCommon/Preparation.py"
-Py:Athena            INFO using release [WorkDir-22.0.3] [x86_64-centos7-gcc8-opt] [test.TileRecUtils-20190807/f9360ea601f] -- built on [2019-08-07T2151]
+Py:Athena            INFO using release [WorkDir-22.0.9] [x86_64-centos7-gcc8-opt] [tilecal-12bit/82699bf159] -- built on [2019-11-29T1101]
 Py:Athena            INFO including file "AthenaCommon/Atlas.UnixStandardJob.py"
 Py:Athena            INFO executing ROOT6Setup
 Py:Athena            INFO including file "AthenaCommon/Execution.py"
 Py:Athena            INFO including file "TileByteStream/TileMuRcvContByteStreamCnv_test.py"
-SetGeometryVersion.py obtained major release version 22
+Py:Athena            INFO SetGeometryVersion.py obtained major release version 22
 Py:Athena            INFO including file "IdDictDetDescrCnv/IdDictDetDescrCnv_joboptions.py"
-Py:ConfigurableDb    INFO Read module info for 5518 configurables from 5 genConfDb files
+Py:ConfigurableDb    INFO Read module info for 5635 configurables from 11 genConfDb files
 Py:ConfigurableDb    INFO No duplicates have been found: that's good !
-EventInfoMgtInit: Got release version  Athena-22.0.3
+EventInfoMgtInit: Got release version  Athena-22.0.9
 Py:IOVDbSvc.CondDB    INFO Setting up conditions DB access to instance OFLP200
 Py:Athena            INFO including file "TileConditions/TileConditions_jobOptions.py"
 Py:TileInfoConf.     INFO Adding TileCablingSvc to ServiceMgr
@@ -22,20 +22,22 @@ Py:TileInfoConf.     INFO Changing default TileCondToolEmscale configuration to
 Py:TileInfoConf.     INFO Changing default TileCondToolNoiseSample configuration to COOL source
 Py:TileInfoConf.     INFO Changing default TileCondToolTiming configuration to COOL source
 Py:TileConditions_jobOptions.py    INFO Adjusting TileInfo to return cell noise for Opt.Filter without iterations
+Py:TileConditions_jobOptions.py    INFO Setting 10-bit ADC configuration
+Py:TileInfoConf.     INFO Setting 10-bit Tile ADC
 Py:Athena            INFO including file "AthenaCommon/runbatch.py"
 ApplicationMgr       INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0
 ApplicationMgr       INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0
 ApplicationMgr    SUCCESS 
 ====================================================================================================================================
-                                                   Welcome to ApplicationMgr (GaudiCoreSvc v32r0)
-                                          running on lxplus725.cern.ch on Wed Aug  7 22:11:58 2019
+                                                   Welcome to ApplicationMgr (GaudiCoreSvc v32r2)
+                                          running on pcpraha5 on Fri Nov 29 11:12:04 2019
 ====================================================================================================================================
 ApplicationMgr       INFO Application Manager Configured successfully
 ApplicationMgr       INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0
 StatusCodeSvc        INFO initialize
 AthDictLoaderSvc     INFO in initialize...
 AthDictLoaderSvc     INFO acquired Dso-registry
-ClassIDSvc           INFO  getRegistryEntries: read 7079 CLIDRegistry entries for module ALL
+ClassIDSvc           INFO  getRegistryEntries: read 7151 CLIDRegistry entries for module ALL
 CoreDumpSvc          INFO install f-a-t-a-l handler... (flag = -1)
 CoreDumpSvc          INFO Handling signals: 11(Segmentation fault) 7(Bus error) 4(Illegal instruction) 8(Floating point exception) 
 MetaDataSvc          INFO Initializing MetaDataSvc - package version AthenaServices-00-00-00
@@ -44,8 +46,8 @@ PoolSvc              INFO io_register[PoolSvc](xmlcatalog_file:PoolFileCatalog.x
 PoolSvc              INFO Set connectionsvc retry/timeout/IDLE timeout to  'ConnectionRetrialPeriod':300/ 'ConnectionRetrialTimeOut':3600/ 'ConnectionTimeOut':5 seconds with connection cleanup disabled
 PoolSvc              INFO Frontier compression level set to 5
 DBReplicaSvc         INFO Frontier server at (serverurl=http://atlasfrontier-local.cern.ch:8000/atlr)(serverurl=http://atlasfrontier-ai.cern.ch:8000/atlr)(serverurl=http://lcgft-atlas.gridpp.rl.ac.uk:3128/frontierATLAS)(serverurl=http://ccfrontier.in2p3.fr:23128/ccin2p3-AtlasFrontier)(proxyurl=http://ca-proxy.cern.ch:3128)(proxyurl=http://ca-proxy-meyrin.cern.ch:3128)(proxyurl=http://ca-proxy-wigner.cern.ch:3128)(proxyurl=http://atlasbpfrontier.cern.ch:3127)(proxyurl=http://atlasbpfrontier.fnal.gov:3127) will be considered for COOL data
-DBReplicaSvc         INFO Read replica configuration from /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-06T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/dbreplica.config
-DBReplicaSvc         INFO Total of 10 servers found for host lxplus725.cern.ch [ATLF ATLAS_COOLPROD atlas_dd ATLAS_CONFIG INT8R INTR ATONR_COOL ATONR_CONF DEVDB11 ATLF ]
+DBReplicaSvc         INFO Read replica configuration from /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/dbreplica.config
+DBReplicaSvc         INFO Total of 10 servers found for host pcpraha5.dyndns.cern.ch [ATLF ATLAS_COOLPROD atlas_dd ATLAS_CONFIG INT8R INTR ATONR_COOL ATONR_CONF DEVDB11 ATLF ]
 PoolSvc              INFO Successfully setup replica sorting algorithm
 PoolSvc              INFO Setting up APR FileCatalog and Streams
 PoolSvc           WARNING Unable to locate catalog for prfile:poolcond/PoolCat_oflcond.xml check your ATLAS_POOLCOND_PATH and DATAPATH variables
@@ -68,7 +70,7 @@ ByteStreamAddre...   INFO initialized
 ByteStreamAddre...   INFO -- Will fill Store with id =  0
 IOVDbSvc             INFO preLoadAddresses: Removing folder /TagInfo. It should only be in the file meta data and was not found.
 IOVDbSvc             INFO Opening COOL connection for COOLOFL_LAR/OFLP200
-ClassIDSvc           INFO  getRegistryEntries: read 3223 CLIDRegistry entries for module ALL
+ClassIDSvc           INFO  getRegistryEntries: read 3291 CLIDRegistry entries for module ALL
 IOVSvc               INFO No IOVSvcTool associated with store "StoreGateSvc"
 IOVSvc.IOVSvcTool    INFO IOVRanges will be checked at every Event
 IOVDbSvc             INFO Opening COOL connection for COOLOFL_TILE/OFLP200
@@ -87,8 +89,8 @@ IOVDbSvc             INFO Added taginfo remove for /TILE/OFL02/STATUS/ADC
 IOVDbSvc             INFO Added taginfo remove for /TILE/OFL02/TIME/CHANNELOFFSET/PHY
 IOVDbSvc             INFO Added taginfo remove for /TILE/ONL01/STATUS/ADC
 IOVDbSvc             INFO Added taginfo remove for /LAR/LArCellPositionShift
-ClassIDSvc           INFO  getRegistryEntries: read 831 CLIDRegistry entries for module ALL
-ClassIDSvc           INFO  getRegistryEntries: read 17 CLIDRegistry entries for module ALL
+ClassIDSvc           INFO  getRegistryEntries: read 863 CLIDRegistry entries for module ALL
+ClassIDSvc           INFO  getRegistryEntries: read 18 CLIDRegistry entries for module ALL
 DetDescrCnvSvc       INFO  initializing 
 DetDescrCnvSvc       INFO Found DetectorStore service
 DetDescrCnvSvc       INFO  filling proxies for detector managers 
@@ -123,8 +125,6 @@ DetDescrCnvSvc       INFO  filling address for MDTIDHELPER with CLID 4170 and st
 DetDescrCnvSvc       INFO  filling address for CSCIDHELPER with CLID 4171 and storage type 68 to detector store 
 DetDescrCnvSvc       INFO  filling address for RPCIDHELPER with CLID 4172 and storage type 68 to detector store 
 DetDescrCnvSvc       INFO  filling address for TGCIDHELPER with CLID 4173 and storage type 68 to detector store 
-DetDescrCnvSvc       INFO  filling address for STGCIDHELPER with CLID 4174 and storage type 68 to detector store 
-DetDescrCnvSvc       INFO  filling address for MMIDHELPER with CLID 4175 and storage type 68 to detector store 
 DetDescrCnvSvc       INFO  filling address for CaloLVL1_ID with CLID 108133391 and storage type 68 to detector store 
 DetDescrCnvSvc       INFO  filling address for CaloCell_ID with CLID 123500438 and storage type 68 to detector store 
 DetDescrCnvSvc       INFO  filling address for CaloCell_SuperCell_ID with CLID 128365736 and storage type 68 to detector store 
@@ -190,7 +190,7 @@ EMECConstruction     INFO multi-layered version of absorbers activated, paramete
 EMECConstruction     INFO activating LAr::EMEC::Neg::InnerWheel
 EMECConstruction     INFO activating LAr::EMEC::Neg::OuterWheel
 EndcapDMConstru...   INFO Start building EC electronics geometry
-GeoModelSvc          INFO GeoModelSvc.LArDetectorToolNV	 SZ= 25368Kb 	 Time = 0.54S
+GeoModelSvc          INFO GeoModelSvc.LArDetectorToolNV	 SZ= 25368Kb 	 Time = 0.44S
 GeoModelSvc.Til...   INFO  Entering TileDetectorTool::create()
 TileDddbManager      INFO m_tag = ATLAS-R2-2016-01-00-01
 TileDddbManager      INFO n_tiglob = 5
@@ -201,7 +201,7 @@ TileDddbManager      INFO n_tilb = 21
 TileDddbManager      INFO n_tileSwitches = 1
 CaloIDHelper_ID...   INFO in createObj: creating a TileID helper object in the detector store
 AtlasDetectorID      INFO initialize_from_dictionary - OK
-TileNeighbour        INFO Reading file  /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-06T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/TileNeighbour_reduced.txt
+TileNeighbour        INFO Reading file  /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/TileNeighbour_reduced.txt
 TileHWIDDetDesc...   INFO in createObj: creating a TileHWID helper object in the detector store
 TileHWID             INFO initialize_from_dictionary 
 AtlasDetectorID      INFO initialize_from_dictionary - OK
@@ -213,9 +213,9 @@ CaloIDHelper_ID...   INFO in createObj: creating a LArHEC_ID helper object in th
 AtlasDetectorID      INFO initialize_from_dictionary - OK
 CaloIDHelper_ID...   INFO in createObj: creating a LArFCAL_ID helper object in the detector store
 AtlasDetectorID      INFO initialize_from_dictionary - OK
-LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-06T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/FCal2DNeighbors-April2011.txt
-LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-06T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/FCal3DNeighborsNext-April2011.txt
-LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-06T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/FCal3DNeighborsPrev-April2011.txt
+LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/FCal2DNeighbors-April2011.txt
+LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/FCal3DNeighborsNext-April2011.txt
+LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/FCal3DNeighborsPrev-April2011.txt
 CaloIDHelper_ID...   INFO in createObj: creating a LArMiniFCAL_ID helper object in the detector store
 AtlasDetectorID      INFO initialize_from_dictionary - OK
 LArMiniFCAL_ID       INFO  initialize_from_dict - LArCalorimeter dictionary does NOT contain miniFCAL description. Unable to initialize LArMiniFCAL_ID.
@@ -250,7 +250,7 @@ GeoModelSvc.Til...   INFO  Global positioning of barrel with rotation (0,0,0)) a
 GeoModelSvc.Til...   INFO  Global positioning of positive ext.barrel with rotation (0,0,0)) and translation (0,0,0) Gaudi::Units::cm
 GeoModelSvc.Til...   INFO  Global positioning of negative ext.barrel with rotation (0,0,0)) and translation (0,0,1) Gaudi::Units::cm
 TileDetDescrMan...   INFO Entering create_elements()
-GeoModelSvc          INFO GeoModelSvc.TileDetectorTool	 SZ= 3576Kb 	 Time = 0.17S
+GeoModelSvc          INFO GeoModelSvc.TileDetectorTool	 SZ= 3576Kb 	 Time = 0.13S
 ClassIDSvc           INFO  getRegistryEntries: read 66 CLIDRegistry entries for module ALL
 TileInfoLoader       INFO Changing TTL1 calib from 4.1 to 6.9
 TileInfoLoader       INFO Changing TTL1 noise sigma from 2.5 to 2.8
@@ -305,7 +305,7 @@ TileEMScaleCond...   INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCond
 TileEMScaleCond...   INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OnlEms) for folder: "/TILE/OFL02/CALIB/EMS"
 TileSampleNoise...   INFO Creating TileCondProxyCool(TileSampleNoiseCondAlg.TileCondProxyCool_NoiseSample) for folder: "/TILE/OFL02/NOISE/SAMPLE"
 TileTimingCondA...   INFO Creating TileCondProxyCool(TileTimingCondAlg.TileCondProxyCool_AdcOffset) for folder: "/TILE/OFL02/TIME/CHANNELOFFSET/PHY"
-ClassIDSvc           INFO  getRegistryEntries: read 3927 CLIDRegistry entries for module ALL
+ClassIDSvc           INFO  getRegistryEntries: read 3915 CLIDRegistry entries for module ALL
 PyComponentMgr       INFO Initializing PyComponentMgr...
 Finalizer            INFO Initializing Finalizer...
 HistogramPersis...WARNING Histograms saving not required.
@@ -318,8 +318,8 @@ ROBDataProviderSvc   INFO  ---> Filter out Sub Detector ROBs by Status Code: # S
 EventSelector        INFO reinitialization...
 AthenaEventLoopMgr   INFO Setup EventSelector service EventSelector
 ApplicationMgr       INFO Application Manager Initialized successfully
-ByteStreamInputSvc   INFO Picked valid file: /cvmfs/atlas-nightlies.cern.ch/repo/data/data-art/TileByteStream/TileByteStream-02-00-00/data18_tilecomm.00363899.calibration_tile.daq.RAW._lb0000._TileREB-ROS._0005-200ev.data
 ClassIDSvc           INFO  getRegistryEntries: read 425 CLIDRegistry entries for module ALL
+ByteStreamInputSvc   INFO Picked valid file: /cvmfs/atlas-nightlies.cern.ch/repo/data/data-art/TileByteStream/TileByteStream-02-00-00/data18_tilecomm.00363899.calibration_tile.daq.RAW._lb0000._TileREB-ROS._0005-200ev.data
 CondInputLoader      INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/CALIB/CES'
 CondInputLoader      INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/CALIB/CIS/FIT/LIN'
 CondInputLoader      INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/CALIB/CIS/FIT/NLN'
@@ -348,7 +348,7 @@ Domain[ROOT_All]     INFO                           /cvmfs/atlas-condb.cern.ch/r
 RootDatabase.open    INFO /cvmfs/atlas-condb.cern.ch/repo/conditions/cond09/cond09_mc.000029.gen.COND/cond09_mc.000029.gen.COND._0002.pool.root File version:52200
 CaloMgrDetDescrCnv   INFO in createObj: creating a Calo Detector Manager object in the detector store
 CaloIdMgrDetDes...   INFO in createObj: creating a CaloDescrManager object in the detector store
-ClassIDSvc           INFO  getRegistryEntries: read 195 CLIDRegistry entries for module ALL
+ClassIDSvc           INFO  getRegistryEntries: read 198 CLIDRegistry entries for module ALL
 CaloIDHelper_ID...   INFO in createObj: creating a CaloDM_ID helper object in the detector store
 CaloDM_ID            INFO initialize_from_dictionary
 AtlasDetectorID      INFO initialize_from_dictionary - OK
@@ -362,12 +362,12 @@ CaloIDHelper_ID...   INFO in createObj: creating a LArHEC_SuperCell_ID helper ob
 AtlasDetectorID      INFO initialize_from_dictionary - OK
 CaloIDHelper_ID...   INFO in createObj: creating a LArFCAL_SuperCell_ID helper object in the detector store
 AtlasDetectorID      INFO initialize_from_dictionary - OK
-LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-06T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/FCalSuperCells2DNeighborsNew-April2014.txt
-LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-06T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/FCalSuperCells3DNeighborsNextNew-April2014.txt
-LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-06T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/FCalSuperCells3DNeighborsPrevNew-April2014.txt
+LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/FCalSuperCells2DNeighborsNew-April2014.txt
+LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/FCalSuperCells3DNeighborsNextNew-April2014.txt
+LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/FCalSuperCells3DNeighborsPrevNew-April2014.txt
 CaloIDHelper_ID...   INFO in createObj: creating a Tile_SuperCell_ID helper object in the detector store
 AtlasDetectorID      INFO initialize_from_dictionary - OK
-TileNeighbour        INFO Reading file  /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-06T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/TileSuperCellNeighbour.txt
+TileNeighbour        INFO Reading file  /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/TileSuperCellNeighbour.txt
 AtlasDetectorID      INFO initialize_from_dictionary - OK
 CaloIdMgrDetDes...   INFO  Finished 
 CaloIdMgrDetDes...   INFO Initializing CaloIdMgr from values in CaloIdMgrDetDescrCnv 
@@ -398,8 +398,8 @@ TileBadChannels...   INFO TileBchStatus::isNoGainL1() is defined by: ADC dead; N
 TileBadChannels...   INFO TileBchStatus::isBadTiming() is defined by: Bad timing; 
 TileBadChannels...   INFO TileBchStatus::isWrongBCID() is defined by: Wrong BCID; Online wrong BCID; 
 TileBadChannels...   INFO No drawer trips probabilities found in DB
-ClassIDSvc           INFO  getRegistryEntries: read 2448 CLIDRegistry entries for module ALL
-ClassIDSvc           INFO  getRegistryEntries: read 90 CLIDRegistry entries for module ALL
+ClassIDSvc           INFO  getRegistryEntries: read 2265 CLIDRegistry entries for module ALL
+ClassIDSvc           INFO  getRegistryEntries: read 91 CLIDRegistry entries for module ALL
 ToolSvc.TileROD...   INFO TileL2Builder initialization completed
 ToolSvc.TileMuR...   INFO Initializing TileMuRcvContByteStreamTool
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #18124, run #363899 1 events processed so far  <<<===
@@ -614,54 +614,54 @@ Finalize: compared 10 dumps
 IncidentProcAlg2     INFO Finalize
 PyComponentMgr       INFO Finalizing PyComponentMgr...
 IdDictDetDescrCnv    INFO in finalize
-IOVDbFolder          INFO Folder /LAR/Align (PoolRef) db-read 1/1 objs/chan/bytes 1/1/170 ((     0.64 ))s
-IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/CES (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/104912 ((     0.79 ))s
-IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/CIS/FIT/LIN (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/80 ((     0.64 ))s
-IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/CIS/FIT/NLN (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/80 ((     1.02 ))s
-IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/EMS (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/92 ((     0.60 ))s
-IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/LAS/FIBER (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/940 ((     0.85 ))s
-IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/LAS/LIN (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/72 ((     0.67 ))s
-IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/LAS/NLN (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/76 ((     0.64 ))s
-IOVDbFolder          INFO Folder /TILE/OFL02/NOISE/SAMPLE (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/641536 ((     0.67 ))s
+IOVDbFolder          INFO Folder /LAR/Align (PoolRef) db-read 1/1 objs/chan/bytes 1/1/170 ((     0.03 ))s
+IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/CES (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/104912 ((     0.05 ))s
+IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/CIS/FIT/LIN (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/80 ((     0.04 ))s
+IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/CIS/FIT/NLN (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/80 ((     0.04 ))s
+IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/EMS (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/92 ((     0.04 ))s
+IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/LAS/FIBER (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/940 ((     0.04 ))s
+IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/LAS/LIN (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/72 ((     0.03 ))s
+IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/LAS/NLN (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/76 ((     0.04 ))s
+IOVDbFolder          INFO Folder /TILE/OFL02/NOISE/SAMPLE (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/641536 ((     0.04 ))s
 IOVDbFolder          INFO Folder /TILE/OFL02/STATUS/ADC (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/43176 ((     0.03 ))s
 IOVDbFolder          INFO Folder /TILE/OFL02/TIME/CHANNELOFFSET/PHY (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/96 ((     0.03 ))s
-IOVDbFolder          INFO Folder /TILE/ONL01/STATUS/ADC (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/76 ((     0.00 ))s
-IOVDbFolder          INFO Folder /LAR/LArCellPositionShift (PoolRef) db-read 1/1 objs/chan/bytes 1/1/195 ((     0.46 ))s
-IOVDbSvc             INFO  bytes in ((      7.04 ))s
+IOVDbFolder          INFO Folder /TILE/ONL01/STATUS/ADC (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/76 ((     0.01 ))s
+IOVDbFolder          INFO Folder /LAR/LArCellPositionShift (PoolRef) db-read 1/1 objs/chan/bytes 1/1/195 ((     0.02 ))s
+IOVDbSvc             INFO  bytes in ((      0.44 ))s
 IOVDbSvc             INFO Connection sqlite://;schema=mycool.db;dbname=OFLP200 : nConnect: 0 nFolders: 0 ReadTime: ((     0.00 ))s
-IOVDbSvc             INFO Connection COOLOFL_LAR/OFLP200 : nConnect: 2 nFolders: 2 ReadTime: ((     1.10 ))s
-IOVDbSvc             INFO Connection COOLOFL_TILE/OFLP200 : nConnect: 2 nFolders: 11 ReadTime: ((     5.94 ))s
+IOVDbSvc             INFO Connection COOLOFL_LAR/OFLP200 : nConnect: 2 nFolders: 2 ReadTime: ((     0.05 ))s
+IOVDbSvc             INFO Connection COOLOFL_TILE/OFLP200 : nConnect: 2 nFolders: 11 ReadTime: ((     0.39 ))s
 AthDictLoaderSvc     INFO in finalize...
 ToolSvc              INFO Removing all tools created by ToolSvc
-ToolSvc.ByteStr...   INFO in finalize()
 ToolSvc.TileMuR...   INFO Finalizing TileMuRcvContByteStreamTool successfuly
 ToolSvc.TileROD...   INFO Finalizing
+ToolSvc.ByteStr...   INFO in finalize()
 *****Chrono*****     INFO ****************************************************************************************************
 *****Chrono*****     INFO  The Final CPU consumption ( Chrono ) Table (ordered)
 *****Chrono*****     INFO ****************************************************************************************************
-cObjR_ALL            INFO Time User   : Tot=  350 [ms] Ave/Min/Max=  175(+-  165)/   10/  340 [ms] #=  2
-cObj_ALL             INFO Time User   : Tot=  390 [ms] Ave/Min/Max=   30(+- 95.6)/    0/  360 [ms] #= 13
-ChronoStatSvc        INFO Time User   : Tot=  4.1  [s]                                             #=  1
+cObjR_ALL            INFO Time User   : Tot=  280 [ms] Ave/Min/Max=  140(+-  140)/    0/  280 [ms] #=  2
+cObj_ALL             INFO Time User   : Tot=  310 [ms] Ave/Min/Max= 23.8(+-   77)/    0/  290 [ms] #= 13
+ChronoStatSvc        INFO Time User   : Tot= 3.13  [s]                                             #=  1
 *****Chrono*****     INFO ****************************************************************************************************
 ChronoStatSvc.f...   INFO  Service finalized successfully 
 ApplicationMgr       INFO Application Manager Finalized successfully
 ApplicationMgr       INFO Application Manager Terminated successfully
 Py:Athena            INFO leaving with code 0: "successful run"
-Wed Aug  7 22:12:24 CEST 2019
+Fri Nov 29 11:12:10 CET 2019
 Preloading tcmalloc_minimal.so
 Py:Athena            INFO including file "AthenaCommon/Preparation.py"
-Py:Athena            INFO using release [WorkDir-22.0.3] [x86_64-centos7-gcc8-opt] [test.TileRecUtils-20190807/f9360ea601f] -- built on [2019-08-07T2151]
+Py:Athena            INFO using release [WorkDir-22.0.9] [x86_64-centos7-gcc8-opt] [tilecal-12bit/82699bf159] -- built on [2019-11-29T1101]
 Py:Athena            INFO including file "AthenaCommon/Atlas.UnixStandardJob.py"
 Py:Athena            INFO executing ROOT6Setup
 Py:Athena            INFO configuring AthenaHive with [4] concurrent threads and [4] concurrent events
 Py:AlgScheduler      INFO setting up AvalancheSchedulerSvc/AvalancheSchedulerSvc with 4 threads
 Py:Athena            INFO including file "AthenaCommon/Execution.py"
 Py:Athena            INFO including file "TileByteStream/TileMuRcvContByteStreamCnv_test.py"
-SetGeometryVersion.py obtained major release version 22
+Py:Athena            INFO SetGeometryVersion.py obtained major release version 22
 Py:Athena            INFO including file "IdDictDetDescrCnv/IdDictDetDescrCnv_joboptions.py"
-Py:ConfigurableDb    INFO Read module info for 5518 configurables from 5 genConfDb files
+Py:ConfigurableDb    INFO Read module info for 5635 configurables from 11 genConfDb files
 Py:ConfigurableDb    INFO No duplicates have been found: that's good !
-EventInfoMgtInit: Got release version  Athena-22.0.3
+EventInfoMgtInit: Got release version  Athena-22.0.9
 Py:IOVDbSvc.CondDB    INFO Setting up conditions DB access to instance OFLP200
 Py:Athena            INFO including file "TileConditions/TileConditions_jobOptions.py"
 Py:TileInfoConf.     INFO Adding TileCablingSvc to ServiceMgr
@@ -673,251 +673,251 @@ Py:TileInfoConf.     INFO Changing default TileCondToolEmscale configuration to
 Py:TileInfoConf.     INFO Changing default TileCondToolNoiseSample configuration to COOL source
 Py:TileInfoConf.     INFO Changing default TileCondToolTiming configuration to COOL source
 Py:TileConditions_jobOptions.py    INFO Adjusting TileInfo to return cell noise for Opt.Filter without iterations
+Py:TileConditions_jobOptions.py    INFO Setting 10-bit ADC configuration
+Py:TileInfoConf.     INFO Setting 10-bit Tile ADC
 Py:Athena            INFO including file "AthenaCommon/runbatch.py"
 ApplicationMgr       INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0
 ApplicationMgr       INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0
 MessageSvc           INFO Activating in a separate thread
 ApplicationMgr    SUCCESS 
 ====================================================================================================================================
-                                                   Welcome to ApplicationMgr (GaudiCoreSvc v32r0)
-                                          running on lxplus725.cern.ch on Wed Aug  7 22:12:36 2019
+                                                   Welcome to ApplicationMgr (GaudiCoreSvc v32r2)
+                                          running on pcpraha5 on Fri Nov 29 11:12:16 2019
 ====================================================================================================================================
 ApplicationMgr       INFO Application Manager Configured successfully
-ApplicationMgr                                     INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0
-AthDictLoaderSvc                                   INFO in initialize...
-AthDictLoaderSvc                                   INFO acquired Dso-registry
-ClassIDSvc                                         INFO  getRegistryEntries: read 7717 CLIDRegistry entries for module ALL
-CoreDumpSvc                                        INFO install f-a-t-a-l handler... (flag = -1)
-CoreDumpSvc                                        INFO Handling signals: 11(Segmentation fault) 7(Bus error) 4(Illegal instruction) 8(Floating point exception) 
-MetaDataSvc                                        INFO Initializing MetaDataSvc - package version AthenaServices-00-00-00
-AthenaPoolCnvSvc                                   INFO Initializing AthenaPoolCnvSvc - package version AthenaPoolCnvSvc-00-00-00
-PoolSvc                                            INFO io_register[PoolSvc](xmlcatalog_file:PoolFileCatalog.xml) [ok]
-PoolSvc                                            INFO Set connectionsvc retry/timeout/IDLE timeout to  'ConnectionRetrialPeriod':300/ 'ConnectionRetrialTimeOut':3600/ 'ConnectionTimeOut':5 seconds with connection cleanup disabled
-PoolSvc                                            INFO Frontier compression level set to 5
-DBReplicaSvc                                       INFO Frontier server at (serverurl=http://atlasfrontier-local.cern.ch:8000/atlr)(serverurl=http://atlasfrontier-ai.cern.ch:8000/atlr)(serverurl=http://lcgft-atlas.gridpp.rl.ac.uk:3128/frontierATLAS)(serverurl=http://ccfrontier.in2p3.fr:23128/ccin2p3-AtlasFrontier)(proxyurl=http://ca-proxy.cern.ch:3128)(proxyurl=http://ca-proxy-meyrin.cern.ch:3128)(proxyurl=http://ca-proxy-wigner.cern.ch:3128)(proxyurl=http://atlasbpfrontier.cern.ch:3127)(proxyurl=http://atlasbpfrontier.fnal.gov:3127) will be considered for COOL data
-DBReplicaSvc                                       INFO Read replica configuration from /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-06T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/dbreplica.config
-DBReplicaSvc                                       INFO Total of 10 servers found for host lxplus725.cern.ch [ATLF ATLAS_COOLPROD atlas_dd ATLAS_CONFIG INT8R INTR ATONR_COOL ATONR_CONF DEVDB11 ATLF ]
-PoolSvc                                            INFO Successfully setup replica sorting algorithm
-PoolSvc                                            INFO Setting up APR FileCatalog and Streams
-PoolSvc                                         WARNING Unable to locate catalog for prfile:poolcond/PoolCat_oflcond.xml check your ATLAS_POOLCOND_PATH and DATAPATH variables
-PoolSvc                                         WARNING Unable to locate catalog for apcfile:poolcond/PoolCat_oflcond.xml check your ATLAS_POOLCOND_PATH and DATAPATH variables
-PoolSvc                                            INFO Resolved path (via ATLAS_POOLCOND_PATH) is /cvmfs/atlas-condb.cern.ch/repo/conditions/poolcond/PoolFileCatalog.xml
-PoolSvc                                            INFO POOL WriteCatalog is xmlcatalog_file:PoolFileCatalog.xml
-DbSession                                          INFO     Open     DbSession    
-Domain[ROOT_All]                                   INFO >   Access   DbDomain     READ      [ROOT_All] 
-ToolSvc.ByteStreamMetadataTool                     INFO Initializing ToolSvc.ByteStreamMetadataTool - package version ByteStreamCnvSvc-00-00-00
-MetaDataSvc                                        INFO Found MetaDataTools = PublicToolHandleArray(['IOVDbMetaDataTool','ByteStreamMetadataTool'])
-IOVDbSvc                                           INFO Opened read transaction for POOL PersistencySvc
-IOVDbSvc                                           INFO Only 5 POOL conditions files will be open at once
-IOVDbSvc                                           INFO Cache alignment will be done in 3 slices
-IOVDbSvc                                           INFO Global tag: OFLCOND-RUN12-SDR-35 set from joboptions
-IOVDbFolder                                        INFO Read from meta data only for folder /TagInfo
-IOVDbSvc                                           INFO Initialised with 3 connections and 14 folders
-IOVDbSvc                                           INFO Service IOVDbSvc initialised successfully
-ByteStreamAddressProviderSvc                       INFO Initializing ByteStreamAddressProviderSvc - package version ByteStreamCnvSvcBase-00-00-00
-ByteStreamAddressProviderSvc                       INFO initialized 
-ByteStreamAddressProviderSvc                       INFO -- Will fill Store with id =  0
-IOVDbSvc                                           INFO preLoadAddresses: Removing folder /TagInfo. It should only be in the file meta data and was not found.
-IOVDbSvc                                           INFO Opening COOL connection for COOLOFL_LAR/OFLP200
-ClassIDSvc                                         INFO  getRegistryEntries: read 3223 CLIDRegistry entries for module ALL
-IOVSvc                                             INFO No IOVSvcTool associated with store "StoreGateSvc"
-IOVSvc.IOVSvcTool                                  INFO IOVRanges will be checked at every Event
-IOVDbSvc                                           INFO Opening COOL connection for COOLOFL_TILE/OFLP200
-IOVDbSvc                                           INFO Disconnecting from COOLOFL_LAR/OFLP200
-IOVDbSvc                                           INFO Disconnecting from COOLOFL_TILE/OFLP200
-IOVDbSvc                                           INFO Added taginfo remove for /LAR/Align
-IOVDbSvc                                           INFO Added taginfo remove for /TILE/OFL02/CALIB/CES
-IOVDbSvc                                           INFO Added taginfo remove for /TILE/OFL02/CALIB/CIS/FIT/LIN
-IOVDbSvc                                           INFO Added taginfo remove for /TILE/OFL02/CALIB/CIS/FIT/NLN
-IOVDbSvc                                           INFO Added taginfo remove for /TILE/OFL02/CALIB/EMS
-IOVDbSvc                                           INFO Added taginfo remove for /TILE/OFL02/CALIB/LAS/FIBER
-IOVDbSvc                                           INFO Added taginfo remove for /TILE/OFL02/CALIB/LAS/LIN
-IOVDbSvc                                           INFO Added taginfo remove for /TILE/OFL02/CALIB/LAS/NLN
-IOVDbSvc                                           INFO Added taginfo remove for /TILE/OFL02/NOISE/SAMPLE
-IOVDbSvc                                           INFO Added taginfo remove for /TILE/OFL02/STATUS/ADC
-IOVDbSvc                                           INFO Added taginfo remove for /TILE/OFL02/TIME/CHANNELOFFSET/PHY
-IOVDbSvc                                           INFO Added taginfo remove for /TILE/ONL01/STATUS/ADC
-IOVDbSvc                                           INFO Added taginfo remove for /LAR/LArCellPositionShift
-ClassIDSvc                                         INFO  getRegistryEntries: read 769 CLIDRegistry entries for module ALL
-ClassIDSvc                                         INFO  getRegistryEntries: read 17 CLIDRegistry entries for module ALL
-DetDescrCnvSvc                                     INFO  initializing 
-DetDescrCnvSvc                                     INFO Found DetectorStore service
-DetDescrCnvSvc                                     INFO  filling proxies for detector managers 
-DetDescrCnvSvc                                     INFO  filling address for CaloTTMgr with CLID 117659265 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for CaloMgr with CLID 4548337 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for CaloSuperCellMgr with CLID 241807251 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for CaloIdManager with CLID 125856940 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for LArIdManager with CLID 79554919 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for IdDict with CLID 2411 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for AtlasID with CLID 164875623 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for PixelID with CLID 2516 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for SCT_ID with CLID 2517 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for TRT_ID with CLID 2518 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for SiliconID with CLID 129452393 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for LArEM_ID with CLID 163583365 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for LArEM_SuperCell_ID with CLID 99488227 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for LArHEC_ID with CLID 3870484 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for LArHEC_SuperCell_ID with CLID 254277678 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for LArFCAL_ID with CLID 45738051 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for LArFCAL_SuperCell_ID with CLID 12829437 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for LArMiniFCAL_ID with CLID 79264204 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for LArOnlineID with CLID 158698068 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for TTOnlineID with CLID 38321944 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for LArOnline_SuperCellID with CLID 115600394 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for LArHVLineID with CLID 27863673 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for LArElectrodeID with CLID 80757351 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for TileID with CLID 2901 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for Tile_SuperCell_ID with CLID 49557789 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for TileHWID with CLID 2902 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for TileTBID with CLID 2903 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for MDTIDHELPER with CLID 4170 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for CSCIDHELPER with CLID 4171 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for RPCIDHELPER with CLID 4172 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for TGCIDHELPER with CLID 4173 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for STGCIDHELPER with CLID 4174 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for MMIDHELPER with CLID 4175 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for CaloLVL1_ID with CLID 108133391 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for CaloCell_ID with CLID 123500438 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for CaloCell_SuperCell_ID with CLID 128365736 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for CaloDM_ID with CLID 167756483 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for ZdcID with CLID 190591643 and storage type 68 to detector store 
-GeoModelSvc::RDBMaterialManager                 WARNING  Getting PixTBMatComponents with default tag
-GeoModelSvc::RDBMaterialManager                 WARNING  Getting PixTBMaterials with default tag
-GeoModelSvc::RDBMaterialManager                 WARNING  Getting InDetMatComponents with default tag
-GeoModelSvc::RDBMaterialManager                 WARNING  Getting InDetMaterials with default tag
-EventPersistencySvc                                INFO Added successfully Conversion service:DetDescrCnvSvc
-LArElectrodeIDDetDescrCnv                          INFO in createObj: creating a LArElectrodeID helper object in the detector store
-IdDictDetDescrCnv                                  INFO in initialize
-IdDictDetDescrCnv                                  INFO in createObj: creating a IdDictManager object in the detector store
-IdDictDetDescrCnv                                  INFO IdDictName:  IdDictParser/ATLAS_IDS.xml
-IdDictDetDescrCnv                                  INFO Reading InnerDetector    IdDict file InDetIdDictFiles/IdDictInnerDetector_IBL3D25-03.xml
-IdDictDetDescrCnv                                  INFO Reading LArCalorimeter   IdDict file IdDictParser/IdDictLArCalorimeter_DC3-05-Comm-01.xml
-IdDictDetDescrCnv                                  INFO Reading TileCalorimeter  IdDict file IdDictParser/IdDictTileCalorimeter.xml
-IdDictDetDescrCnv                                  INFO Reading Calorimeter      IdDict file IdDictParser/IdDictCalorimeter_L1Onl.xml
-IdDictDetDescrCnv                                  INFO Reading MuonSpectrometer IdDict file IdDictParser/IdDictMuonSpectrometer_R.03.xml
-IdDictDetDescrCnv                                  INFO Reading ForwardDetectors IdDict file IdDictParser/IdDictForwardDetectors_2010.xml
-IdDictDetDescrCnv                                  INFO Found id dicts:
-IdDictDetDescrCnv                                  INFO Using dictionary tag: null
-IdDictDetDescrCnv                                  INFO Dictionary ATLAS                version default              DetDescr tag (using default) file 
-IdDictDetDescrCnv                                  INFO Dictionary Calorimeter          version default              DetDescr tag CaloIdentifier-LVL1-02 file IdDictParser/IdDictCalorimeter_L1Onl.xml
-IdDictDetDescrCnv                                  INFO Dictionary ForwardDetectors     version default              DetDescr tag ForDetIdentifier-01       file IdDictParser/IdDictForwardDetectors_2010.xml
-IdDictDetDescrCnv                                  INFO Dictionary InnerDetector        version IBL-DBM              DetDescr tag InDetIdentifier-IBL3D25-02 file InDetIdDictFiles/IdDictInnerDetector_IBL3D25-03.xml
-IdDictDetDescrCnv                                  INFO Dictionary LArCalorimeter       version fullAtlas            DetDescr tag LArIdentifier-DC3-05-Comm file IdDictParser/IdDictLArCalorimeter_DC3-05-Comm-01.xml
-IdDictDetDescrCnv                                  INFO Dictionary LArElectrode         version fullAtlas            DetDescr tag (using default) file 
-IdDictDetDescrCnv                                  INFO Dictionary LArHighVoltage       version fullAtlas            DetDescr tag (using default) file 
-IdDictDetDescrCnv                                  INFO Dictionary MuonSpectrometer     version R.03                 DetDescr tag MuonIdentifier-08         file IdDictParser/IdDictMuonSpectrometer_R.03.xml
-IdDictDetDescrCnv                                  INFO Dictionary TileCalorimeter      version fullAtlasAndTestBeam DetDescr tag TileIdentifier-00         file IdDictParser/IdDictTileCalorimeter.xml
-LArElectrodeID                                     INFO  => initialize_from_dictionary()
-AtlasDetectorID                                    INFO initialize_from_dictionary - OK
-AtlasDetectorID                                    INFO initialize_from_dictionary - OK
-LArHVLineIDDetDescrCnv                             INFO in createObj: creating a LArHVLineID helper object in the detector store
-LArHVLineID                                        INFO  => initialize_from_dictionary()
-AtlasDetectorID                                    INFO initialize_from_dictionary - OK
-AtlasDetectorID                                    INFO initialize_from_dictionary - OK
-LArHVLineID                                        INFO  => initialize_from_dictionary(dict_mgr) =0
-LArHVLineID                                        INFO Register_dict_tag of LArHighVoltage is OK
-LArHVLineID                                        INFO setDictVersion of LArHighVoltage is OK
-LArHVLineID                                        INFO [initLevelsFromDict] m_dict OK ... 
-LArHVLineID                                        INFO [initialize_from_dictionary] >  HV line range -> 11/1/48:79/0:15 | 11/1/148:179/0:15 | 11/1/80:93/0:7 | 11/1/180:193/0:7 | 11/1/200:231/0:15 | 11/1/232:263/0:15 | 11/1/296,297,306,307/0:15 | 11/1/299,304,305,308,309/0:15 | 11/1/264:279/0:15 | 11/1/280:295/0:15 | 11/1/0:47/0:15 | 11/1/320:322/0:15 | 11/1/100:147/0:15 | 11/1/324,325/0:15 | 11/1/312:315/0:15 | 11/1/316:319/0:15 | 11/1/300:303/0:15 | 11/1/310,311/0:15 | 11/1/323/0:15 | 11/1/326,327/0:15 | 11/1/94:99/0:15 | 11/1/194:199/0:15
-LArHVLineID                                        INFO [init_hashes()] > Hvline_size= 5008
-GeoModelSvc.LArDetectorToolNV                      INFO Keys for LAr are ATLAS-R2-2016-01-00-01  ATLAS
-GeoModelSvc.LArDetectorToolNV                      INFO Building LAr version LAr-Revised-17-01 while ATLAS version is ATLAS-R2-2016-01-00-01
-GeoModelSvc.LArDetectorToolNV                      INFO LAr Geometry Options:
-GeoModelSvc.LArDetectorToolNV                      INFO   Sagging           = false
-GeoModelSvc.LArDetectorToolNV                      INFO   Barrel            = ON
-GeoModelSvc.LArDetectorToolNV                      INFO   Endcap            = ON
-BarrelConstruction                                 INFO Getting primary numbers for ATLAS, ATLAS-R2-2016-01-00-01
-BarrelConstruction                                 INFO   Makes detailed absorber sandwich  ? 1 1
-BarrelConstruction                                 INFO   Use sagging in geometry  ? 0
-EMECConstruction                                   INFO multi-layered version of absorbers activated, parameter value is 1
-EMECConstruction                                   INFO activating LAr::EMEC::Pos::InnerWheel
-EMECConstruction                                   INFO activating LAr::EMEC::Pos::OuterWheel
-ClassIDSvc                                         INFO  getRegistryEntries: read 2901 CLIDRegistry entries for module ALL
-CaloIDHelper_IDDetDescrCnv                         INFO in createObj: creating a TileTBID helper object in the detector store
-TileTBID                                           INFO initialize_from_dictionary 
-AtlasDetectorID                                    INFO initialize_from_dictionary - OK
-EndcapDMConstruction                               INFO Start building EC electronics geometry
-EMECConstruction                                   INFO multi-layered version of absorbers activated, parameter value is 1
-EMECConstruction                                   INFO activating LAr::EMEC::Neg::InnerWheel
-EMECConstruction                                   INFO activating LAr::EMEC::Neg::OuterWheel
-EndcapDMConstruction                               INFO Start building EC electronics geometry
-GeoModelSvc                                        INFO GeoModelSvc.LArDetectorToolNV	 SZ= 25368Kb 	 Time = 0.53S
-GeoModelSvc.TileDetectorTool                       INFO  Entering TileDetectorTool::create()
-TileDddbManager                                    INFO m_tag = ATLAS-R2-2016-01-00-01
-TileDddbManager                                    INFO n_tiglob = 5
-TileDddbManager                                    INFO n_timod = 320
-TileDddbManager                                    INFO n_cuts = 9
-TileDddbManager                                    INFO n_saddle = 1
-TileDddbManager                                    INFO n_tilb = 21
-TileDddbManager                                    INFO n_tileSwitches = 1
-CaloIDHelper_IDDetDescrCnv                         INFO in createObj: creating a TileID helper object in the detector store
-AtlasDetectorID                                    INFO initialize_from_dictionary - OK
-TileNeighbour                                      INFO Reading file  /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-06T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/TileNeighbour_reduced.txt
-TileHWIDDetDescrCnv                                INFO in createObj: creating a TileHWID helper object in the detector store
-TileHWID                                           INFO initialize_from_dictionary 
-AtlasDetectorID                                    INFO initialize_from_dictionary - OK
-ClassIDSvc                                         INFO  getRegistryEntries: read 55 CLIDRegistry entries for module ALL
-CaloIDHelper_IDDetDescrCnv                         INFO in createObj: creating a CaloCell_ID helper object in the detector store
-CaloIDHelper_IDDetDescrCnv                         INFO in createObj: creating a LArEM_ID helper object in the detector store
-AtlasDetectorID                                    INFO initialize_from_dictionary - OK
-CaloIDHelper_IDDetDescrCnv                         INFO in createObj: creating a LArHEC_ID helper object in the detector store
-AtlasDetectorID                                    INFO initialize_from_dictionary - OK
-CaloIDHelper_IDDetDescrCnv                         INFO in createObj: creating a LArFCAL_ID helper object in the detector store
-AtlasDetectorID                                    INFO initialize_from_dictionary - OK
-LArFCAL_Base_ID                                    INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-06T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/FCal2DNeighbors-April2011.txt
-LArFCAL_Base_ID                                    INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-06T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/FCal3DNeighborsNext-April2011.txt
-LArFCAL_Base_ID                                    INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-06T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/FCal3DNeighborsPrev-April2011.txt
-CaloIDHelper_IDDetDescrCnv                         INFO in createObj: creating a LArMiniFCAL_ID helper object in the detector store
-AtlasDetectorID                                    INFO initialize_from_dictionary - OK
-LArMiniFCAL_ID                                     INFO  initialize_from_dict - LArCalorimeter dictionary does NOT contain miniFCAL description. Unable to initialize LArMiniFCAL_ID.
-AtlasDetectorID                                    INFO initialize_from_dictionary - OK
-GeoModelSvc.TileDetectorTool                       INFO  U-shape parameter from database is: 1
-GeoModelSvc.TileDetectorTool                       INFO  Glue parameter from database is: 1
-GeoModelSvc.TileDetectorTool                       INFO  Cs Tube parameter from database is: 0
-GeoModelSvc.TileDetectorTool                       INFO  Entering TileAtlasFactory::create()
-GeoModelSvc.TileDetectorTool                       INFO  Tile Geometry with Saddle supports, starting from TileCal-CSC-02 xxx
-GeoModelSvc.TileDetectorTool                       INFO  => New BFingerLengthPos 430.5
-GeoModelSvc.TileDetectorTool                       INFO  => New BFingerLengthNeg 420.5
-GeoModelSvc.TileDetectorTool                       INFO  Positioning barrel with translation 0
-GeoModelSvc.TileDetectorTool                       INFO  Positioning positive barrel finger with translation 3035.25
-GeoModelSvc.TileDetectorTool                       INFO  Positioning negative barrel finger with translation -3030.25
-GeoModelSvc.TileDetectorTool                       INFO  Positioning positive ext.barrel with translation 4854.75
-GeoModelSvc.TileDetectorTool                       INFO  Positioning positive ext.barrel finger with translation ztrans= 6338.5
-GeoModelSvc.TileDetectorTool                       INFO  Positioning positive ext.barrel saddle with translation ztrans= 6192.5
-GeoModelSvc.TileDetectorTool                       INFO  Positive ITC envelope parameters: PLUG1  Rmin= 3438.85 Rmax= 4250 dzITC1= 154.5
-GeoModelSvc.TileDetectorTool                       INFO                                    PLUG2  Rmin= 2981 Rmax= 3440 dzITC2= 47.425
-GeoModelSvc.TileDetectorTool                       INFO  Positioning positive ITC with translation 3405
-GeoModelSvc.TileDetectorTool                       INFO  Positioning positive Gap with translation 3552
-GeoModelSvc.TileDetectorTool                       INFO  Positioning positive Crack with translation 3536
-GeoModelSvc.TileDetectorTool                       INFO  Positioning negative ext.barrel with translation ztrans -4854.75
-GeoModelSvc.TileDetectorTool                       INFO  Positioning negative ext.barrel finger with translation ztrans= -6338.5
-GeoModelSvc.TileDetectorTool                       INFO  Positioning negative ext.barrel saddle with translation ztrans= -6192.5
-GeoModelSvc.TileDetectorTool                       INFO  Negative ITC envelope parameters: PLUG1  Rmin= 3438.85 Rmax= 4250 dzITC1= 154.5
-GeoModelSvc.TileDetectorTool                       INFO                                    PLUG2  Rmin= 2981 Rmax= 3440 dzITC2= 47.425
-GeoModelSvc.TileDetectorTool                       INFO  Positioning negative ITC with translation -3405
-GeoModelSvc.TileDetectorTool                       INFO  Positioning negative Gap with translation -3552
-GeoModelSvc.TileDetectorTool                       INFO  Positioning negative Crack with translation -3536
-GeoModelSvc.TileDetectorTool                       INFO  Global positioning of barrel with rotation (0,0,0)) and translation (0,0,0) Gaudi::Units::cm
-GeoModelSvc.TileDetectorTool                       INFO  Global positioning of positive ext.barrel with rotation (0,0,0)) and translation (0,0,0) Gaudi::Units::cm
-GeoModelSvc.TileDetectorTool                       INFO  Global positioning of negative ext.barrel with rotation (0,0,0)) and translation (0,0,1) Gaudi::Units::cm
-TileDetDescrManager                                INFO Entering create_elements()
-GeoModelSvc                                        INFO GeoModelSvc.TileDetectorTool	 SZ= 2552Kb 	 Time = 0.15S
-ClassIDSvc                                         INFO  getRegistryEntries: read 66 CLIDRegistry entries for module ALL
-TileInfoLoader                                     INFO Changing TTL1 calib from 4.1 to 6.9
-TileInfoLoader                                     INFO Changing TTL1 noise sigma from 2.5 to 2.8
-CaloIDHelper_IDDetDescrCnv                         INFO in createObj: creating a CaloLVL1_ID helper object in the detector store
-CaloLVL1_ID                                        INFO initialize_from_dictionary
-AtlasDetectorID                                    INFO initialize_from_dictionary - OK
-TileCablingSvc                                     INFO RUN2 ATLAS geometry flag detected for geometry: ATLAS-R2-2016-01-00-01
-TileCablingSvc                                     INFO Cabling for RUN2a (2018) ATLAS geometry is set via jobOptions 
-TileCablingSvc                                     INFO Setting Cabling type to 5
-AthenaHiveEventLoopMgr                             INFO Initializing AthenaHiveEventLoopMgr - package version AthenaServices-00-00-00
-ClassIDSvc                                  0      INFO  getRegistryEntries: read 4192 CLIDRegistry entries for module ALL
-PyComponentMgr                              0      INFO Initializing PyComponentMgr...
-Finalizer                                   0      INFO Initializing Finalizer...
-ClassIDSvc                                  0      INFO  getRegistryEntries: read 53 CLIDRegistry entries for module ALL
-CondInputLoader                             0      INFO Initializing CondInputLoader...
-CondInputLoader                             0      INFO Adding base classes:
+ApplicationMgr                                      INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0
+AthDictLoaderSvc                                    INFO in initialize...
+AthDictLoaderSvc                                    INFO acquired Dso-registry
+ClassIDSvc                                          INFO  getRegistryEntries: read 7790 CLIDRegistry entries for module ALL
+CoreDumpSvc                                         INFO install f-a-t-a-l handler... (flag = -1)
+CoreDumpSvc                                         INFO Handling signals: 11(Segmentation fault) 7(Bus error) 4(Illegal instruction) 8(Floating point exception) 
+MetaDataSvc                                         INFO Initializing MetaDataSvc - package version AthenaServices-00-00-00
+AthenaPoolCnvSvc                                    INFO Initializing AthenaPoolCnvSvc - package version AthenaPoolCnvSvc-00-00-00
+PoolSvc                                             INFO io_register[PoolSvc](xmlcatalog_file:PoolFileCatalog.xml) [ok]
+PoolSvc                                             INFO Set connectionsvc retry/timeout/IDLE timeout to  'ConnectionRetrialPeriod':300/ 'ConnectionRetrialTimeOut':3600/ 'ConnectionTimeOut':5 seconds with connection cleanup disabled
+PoolSvc                                             INFO Frontier compression level set to 5
+DBReplicaSvc                                        INFO Frontier server at (serverurl=http://atlasfrontier-local.cern.ch:8000/atlr)(serverurl=http://atlasfrontier-ai.cern.ch:8000/atlr)(serverurl=http://lcgft-atlas.gridpp.rl.ac.uk:3128/frontierATLAS)(serverurl=http://ccfrontier.in2p3.fr:23128/ccin2p3-AtlasFrontier)(proxyurl=http://ca-proxy.cern.ch:3128)(proxyurl=http://ca-proxy-meyrin.cern.ch:3128)(proxyurl=http://ca-proxy-wigner.cern.ch:3128)(proxyurl=http://atlasbpfrontier.cern.ch:3127)(proxyurl=http://atlasbpfrontier.fnal.gov:3127) will be considered for COOL data
+DBReplicaSvc                                        INFO Read replica configuration from /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/dbreplica.config
+DBReplicaSvc                                        INFO Total of 10 servers found for host pcpraha5.dyndns.cern.ch [ATLF ATLAS_COOLPROD atlas_dd ATLAS_CONFIG INT8R INTR ATONR_COOL ATONR_CONF DEVDB11 ATLF ]
+PoolSvc                                             INFO Successfully setup replica sorting algorithm
+PoolSvc                                             INFO Setting up APR FileCatalog and Streams
+PoolSvc                                          WARNING Unable to locate catalog for prfile:poolcond/PoolCat_oflcond.xml check your ATLAS_POOLCOND_PATH and DATAPATH variables
+PoolSvc                                          WARNING Unable to locate catalog for apcfile:poolcond/PoolCat_oflcond.xml check your ATLAS_POOLCOND_PATH and DATAPATH variables
+PoolSvc                                             INFO Resolved path (via ATLAS_POOLCOND_PATH) is /cvmfs/atlas-condb.cern.ch/repo/conditions/poolcond/PoolFileCatalog.xml
+PoolSvc                                             INFO POOL WriteCatalog is xmlcatalog_file:PoolFileCatalog.xml
+DbSession                                           INFO     Open     DbSession    
+Domain[ROOT_All]                                    INFO >   Access   DbDomain     READ      [ROOT_All] 
+ToolSvc.ByteStreamMetadataTool                      INFO Initializing ToolSvc.ByteStreamMetadataTool - package version ByteStreamCnvSvc-00-00-00
+MetaDataSvc                                         INFO Found MetaDataTools = PublicToolHandleArray(['IOVDbMetaDataTool','ByteStreamMetadataTool'])
+IOVDbSvc                                            INFO Opened read transaction for POOL PersistencySvc
+IOVDbSvc                                            INFO Only 5 POOL conditions files will be open at once
+IOVDbSvc                                            INFO Cache alignment will be done in 3 slices
+IOVDbSvc                                            INFO Global tag: OFLCOND-RUN12-SDR-35 set from joboptions
+IOVDbFolder                                         INFO Read from meta data only for folder /TagInfo
+IOVDbSvc                                            INFO Initialised with 3 connections and 14 folders
+IOVDbSvc                                            INFO Service IOVDbSvc initialised successfully
+ByteStreamAddressProviderSvc                        INFO Initializing ByteStreamAddressProviderSvc - package version ByteStreamCnvSvcBase-00-00-00
+ByteStreamAddressProviderSvc                        INFO initialized 
+ByteStreamAddressProviderSvc                        INFO -- Will fill Store with id =  0
+IOVDbSvc                                            INFO preLoadAddresses: Removing folder /TagInfo. It should only be in the file meta data and was not found.
+IOVDbSvc                                            INFO Opening COOL connection for COOLOFL_LAR/OFLP200
+ClassIDSvc                                          INFO  getRegistryEntries: read 3291 CLIDRegistry entries for module ALL
+IOVSvc                                              INFO No IOVSvcTool associated with store "StoreGateSvc"
+IOVSvc.IOVSvcTool                                   INFO IOVRanges will be checked at every Event
+IOVDbSvc                                            INFO Opening COOL connection for COOLOFL_TILE/OFLP200
+IOVDbSvc                                            INFO Disconnecting from COOLOFL_LAR/OFLP200
+IOVDbSvc                                            INFO Disconnecting from COOLOFL_TILE/OFLP200
+IOVDbSvc                                            INFO Added taginfo remove for /LAR/Align
+IOVDbSvc                                            INFO Added taginfo remove for /TILE/OFL02/CALIB/CES
+IOVDbSvc                                            INFO Added taginfo remove for /TILE/OFL02/CALIB/CIS/FIT/LIN
+IOVDbSvc                                            INFO Added taginfo remove for /TILE/OFL02/CALIB/CIS/FIT/NLN
+IOVDbSvc                                            INFO Added taginfo remove for /TILE/OFL02/CALIB/EMS
+IOVDbSvc                                            INFO Added taginfo remove for /TILE/OFL02/CALIB/LAS/FIBER
+IOVDbSvc                                            INFO Added taginfo remove for /TILE/OFL02/CALIB/LAS/LIN
+IOVDbSvc                                            INFO Added taginfo remove for /TILE/OFL02/CALIB/LAS/NLN
+IOVDbSvc                                            INFO Added taginfo remove for /TILE/OFL02/NOISE/SAMPLE
+IOVDbSvc                                            INFO Added taginfo remove for /TILE/OFL02/STATUS/ADC
+IOVDbSvc                                            INFO Added taginfo remove for /TILE/OFL02/TIME/CHANNELOFFSET/PHY
+IOVDbSvc                                            INFO Added taginfo remove for /TILE/ONL01/STATUS/ADC
+IOVDbSvc                                            INFO Added taginfo remove for /LAR/LArCellPositionShift
+ClassIDSvc                                          INFO  getRegistryEntries: read 800 CLIDRegistry entries for module ALL
+ClassIDSvc                                          INFO  getRegistryEntries: read 18 CLIDRegistry entries for module ALL
+DetDescrCnvSvc                                      INFO  initializing 
+DetDescrCnvSvc                                      INFO Found DetectorStore service
+DetDescrCnvSvc                                      INFO  filling proxies for detector managers 
+DetDescrCnvSvc                                      INFO  filling address for CaloTTMgr with CLID 117659265 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for CaloMgr with CLID 4548337 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for CaloSuperCellMgr with CLID 241807251 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for CaloIdManager with CLID 125856940 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for LArIdManager with CLID 79554919 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for IdDict with CLID 2411 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for AtlasID with CLID 164875623 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for PixelID with CLID 2516 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for SCT_ID with CLID 2517 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for TRT_ID with CLID 2518 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for SiliconID with CLID 129452393 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for LArEM_ID with CLID 163583365 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for LArEM_SuperCell_ID with CLID 99488227 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for LArHEC_ID with CLID 3870484 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for LArHEC_SuperCell_ID with CLID 254277678 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for LArFCAL_ID with CLID 45738051 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for LArFCAL_SuperCell_ID with CLID 12829437 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for LArMiniFCAL_ID with CLID 79264204 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for LArOnlineID with CLID 158698068 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for TTOnlineID with CLID 38321944 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for LArOnline_SuperCellID with CLID 115600394 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for LArHVLineID with CLID 27863673 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for LArElectrodeID with CLID 80757351 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for TileID with CLID 2901 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for Tile_SuperCell_ID with CLID 49557789 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for TileHWID with CLID 2902 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for TileTBID with CLID 2903 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for MDTIDHELPER with CLID 4170 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for CSCIDHELPER with CLID 4171 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for RPCIDHELPER with CLID 4172 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for TGCIDHELPER with CLID 4173 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for CaloLVL1_ID with CLID 108133391 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for CaloCell_ID with CLID 123500438 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for CaloCell_SuperCell_ID with CLID 128365736 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for CaloDM_ID with CLID 167756483 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for ZdcID with CLID 190591643 and storage type 68 to detector store 
+GeoModelSvc::RDBMaterialManager                  WARNING  Getting PixTBMatComponents with default tag
+GeoModelSvc::RDBMaterialManager                  WARNING  Getting PixTBMaterials with default tag
+GeoModelSvc::RDBMaterialManager                  WARNING  Getting InDetMatComponents with default tag
+GeoModelSvc::RDBMaterialManager                  WARNING  Getting InDetMaterials with default tag
+EventPersistencySvc                                 INFO Added successfully Conversion service:DetDescrCnvSvc
+LArElectrodeIDDetDescrCnv                           INFO in createObj: creating a LArElectrodeID helper object in the detector store
+IdDictDetDescrCnv                                   INFO in initialize
+IdDictDetDescrCnv                                   INFO in createObj: creating a IdDictManager object in the detector store
+IdDictDetDescrCnv                                   INFO IdDictName:  IdDictParser/ATLAS_IDS.xml
+IdDictDetDescrCnv                                   INFO Reading InnerDetector    IdDict file InDetIdDictFiles/IdDictInnerDetector_IBL3D25-03.xml
+IdDictDetDescrCnv                                   INFO Reading LArCalorimeter   IdDict file IdDictParser/IdDictLArCalorimeter_DC3-05-Comm-01.xml
+IdDictDetDescrCnv                                   INFO Reading TileCalorimeter  IdDict file IdDictParser/IdDictTileCalorimeter.xml
+IdDictDetDescrCnv                                   INFO Reading Calorimeter      IdDict file IdDictParser/IdDictCalorimeter_L1Onl.xml
+IdDictDetDescrCnv                                   INFO Reading MuonSpectrometer IdDict file IdDictParser/IdDictMuonSpectrometer_R.03.xml
+IdDictDetDescrCnv                                   INFO Reading ForwardDetectors IdDict file IdDictParser/IdDictForwardDetectors_2010.xml
+IdDictDetDescrCnv                                   INFO Found id dicts:
+IdDictDetDescrCnv                                   INFO Using dictionary tag: null
+IdDictDetDescrCnv                                   INFO Dictionary ATLAS                version default              DetDescr tag (using default) file 
+IdDictDetDescrCnv                                   INFO Dictionary Calorimeter          version default              DetDescr tag CaloIdentifier-LVL1-02 file IdDictParser/IdDictCalorimeter_L1Onl.xml
+IdDictDetDescrCnv                                   INFO Dictionary ForwardDetectors     version default              DetDescr tag ForDetIdentifier-01       file IdDictParser/IdDictForwardDetectors_2010.xml
+IdDictDetDescrCnv                                   INFO Dictionary InnerDetector        version IBL-DBM              DetDescr tag InDetIdentifier-IBL3D25-02 file InDetIdDictFiles/IdDictInnerDetector_IBL3D25-03.xml
+IdDictDetDescrCnv                                   INFO Dictionary LArCalorimeter       version fullAtlas            DetDescr tag LArIdentifier-DC3-05-Comm file IdDictParser/IdDictLArCalorimeter_DC3-05-Comm-01.xml
+IdDictDetDescrCnv                                   INFO Dictionary LArElectrode         version fullAtlas            DetDescr tag (using default) file 
+IdDictDetDescrCnv                                   INFO Dictionary LArHighVoltage       version fullAtlas            DetDescr tag (using default) file 
+IdDictDetDescrCnv                                   INFO Dictionary MuonSpectrometer     version R.03                 DetDescr tag MuonIdentifier-08         file IdDictParser/IdDictMuonSpectrometer_R.03.xml
+IdDictDetDescrCnv                                   INFO Dictionary TileCalorimeter      version fullAtlasAndTestBeam DetDescr tag TileIdentifier-00         file IdDictParser/IdDictTileCalorimeter.xml
+LArElectrodeID                                      INFO  => initialize_from_dictionary()
+AtlasDetectorID                                     INFO initialize_from_dictionary - OK
+AtlasDetectorID                                     INFO initialize_from_dictionary - OK
+LArHVLineIDDetDescrCnv                              INFO in createObj: creating a LArHVLineID helper object in the detector store
+LArHVLineID                                         INFO  => initialize_from_dictionary()
+AtlasDetectorID                                     INFO initialize_from_dictionary - OK
+AtlasDetectorID                                     INFO initialize_from_dictionary - OK
+LArHVLineID                                         INFO  => initialize_from_dictionary(dict_mgr) =0
+LArHVLineID                                         INFO Register_dict_tag of LArHighVoltage is OK
+LArHVLineID                                         INFO setDictVersion of LArHighVoltage is OK
+LArHVLineID                                         INFO [initLevelsFromDict] m_dict OK ... 
+LArHVLineID                                         INFO [initialize_from_dictionary] >  HV line range -> 11/1/48:79/0:15 | 11/1/148:179/0:15 | 11/1/80:93/0:7 | 11/1/180:193/0:7 | 11/1/200:231/0:15 | 11/1/232:263/0:15 | 11/1/296,297,306,307/0:15 | 11/1/299,304,305,308,309/0:15 | 11/1/264:279/0:15 | 11/1/280:295/0:15 | 11/1/0:47/0:15 | 11/1/320:322/0:15 | 11/1/100:147/0:15 | 11/1/324,325/0:15 | 11/1/312:315/0:15 | 11/1/316:319/0:15 | 11/1/300:303/0:15 | 11/1/310,311/0:15 | 11/1/323/0:15 | 11/1/326,327/0:15 | 11/1/94:99/0:15 | 11/1/194:199/0:15
+LArHVLineID                                         INFO [init_hashes()] > Hvline_size= 5008
+GeoModelSvc.LArDetectorToolNV                       INFO Keys for LAr are ATLAS-R2-2016-01-00-01  ATLAS
+GeoModelSvc.LArDetectorToolNV                       INFO Building LAr version LAr-Revised-17-01 while ATLAS version is ATLAS-R2-2016-01-00-01
+GeoModelSvc.LArDetectorToolNV                       INFO LAr Geometry Options:
+GeoModelSvc.LArDetectorToolNV                       INFO   Sagging           = false
+GeoModelSvc.LArDetectorToolNV                       INFO   Barrel            = ON
+GeoModelSvc.LArDetectorToolNV                       INFO   Endcap            = ON
+BarrelConstruction                                  INFO Getting primary numbers for ATLAS, ATLAS-R2-2016-01-00-01
+BarrelConstruction                                  INFO   Makes detailed absorber sandwich  ? 1 1
+BarrelConstruction                                  INFO   Use sagging in geometry  ? 0
+EMECConstruction                                    INFO multi-layered version of absorbers activated, parameter value is 1
+EMECConstruction                                    INFO activating LAr::EMEC::Pos::InnerWheel
+EMECConstruction                                    INFO activating LAr::EMEC::Pos::OuterWheel
+ClassIDSvc                                          INFO  getRegistryEntries: read 2901 CLIDRegistry entries for module ALL
+CaloIDHelper_IDDetDescrCnv                          INFO in createObj: creating a TileTBID helper object in the detector store
+TileTBID                                            INFO initialize_from_dictionary 
+AtlasDetectorID                                     INFO initialize_from_dictionary - OK
+EndcapDMConstruction                                INFO Start building EC electronics geometry
+EMECConstruction                                    INFO multi-layered version of absorbers activated, parameter value is 1
+EMECConstruction                                    INFO activating LAr::EMEC::Neg::InnerWheel
+EMECConstruction                                    INFO activating LAr::EMEC::Neg::OuterWheel
+EndcapDMConstruction                                INFO Start building EC electronics geometry
+GeoModelSvc                                         INFO GeoModelSvc.LArDetectorToolNV	 SZ= 25368Kb 	 Time = 0.53S
+GeoModelSvc.TileDetectorTool                        INFO  Entering TileDetectorTool::create()
+TileDddbManager                                     INFO m_tag = ATLAS-R2-2016-01-00-01
+TileDddbManager                                     INFO n_tiglob = 5
+TileDddbManager                                     INFO n_timod = 320
+TileDddbManager                                     INFO n_cuts = 9
+TileDddbManager                                     INFO n_saddle = 1
+TileDddbManager                                     INFO n_tilb = 21
+TileDddbManager                                     INFO n_tileSwitches = 1
+CaloIDHelper_IDDetDescrCnv                          INFO in createObj: creating a TileID helper object in the detector store
+AtlasDetectorID                                     INFO initialize_from_dictionary - OK
+TileNeighbour                                       INFO Reading file  /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/TileNeighbour_reduced.txt
+TileHWIDDetDescrCnv                                 INFO in createObj: creating a TileHWID helper object in the detector store
+TileHWID                                            INFO initialize_from_dictionary 
+AtlasDetectorID                                     INFO initialize_from_dictionary - OK
+ClassIDSvc                                          INFO  getRegistryEntries: read 55 CLIDRegistry entries for module ALL
+CaloIDHelper_IDDetDescrCnv                          INFO in createObj: creating a CaloCell_ID helper object in the detector store
+CaloIDHelper_IDDetDescrCnv                          INFO in createObj: creating a LArEM_ID helper object in the detector store
+AtlasDetectorID                                     INFO initialize_from_dictionary - OK
+CaloIDHelper_IDDetDescrCnv                          INFO in createObj: creating a LArHEC_ID helper object in the detector store
+AtlasDetectorID                                     INFO initialize_from_dictionary - OK
+CaloIDHelper_IDDetDescrCnv                          INFO in createObj: creating a LArFCAL_ID helper object in the detector store
+AtlasDetectorID                                     INFO initialize_from_dictionary - OK
+LArFCAL_Base_ID                                     INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/FCal2DNeighbors-April2011.txt
+LArFCAL_Base_ID                                     INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/FCal3DNeighborsNext-April2011.txt
+LArFCAL_Base_ID                                     INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/FCal3DNeighborsPrev-April2011.txt
+CaloIDHelper_IDDetDescrCnv                          INFO in createObj: creating a LArMiniFCAL_ID helper object in the detector store
+AtlasDetectorID                                     INFO initialize_from_dictionary - OK
+LArMiniFCAL_ID                                      INFO  initialize_from_dict - LArCalorimeter dictionary does NOT contain miniFCAL description. Unable to initialize LArMiniFCAL_ID.
+AtlasDetectorID                                     INFO initialize_from_dictionary - OK
+GeoModelSvc.TileDetectorTool                        INFO  U-shape parameter from database is: 1
+GeoModelSvc.TileDetectorTool                        INFO  Glue parameter from database is: 1
+GeoModelSvc.TileDetectorTool                        INFO  Cs Tube parameter from database is: 0
+GeoModelSvc.TileDetectorTool                        INFO  Entering TileAtlasFactory::create()
+GeoModelSvc.TileDetectorTool                        INFO  Tile Geometry with Saddle supports, starting from TileCal-CSC-02 xxx
+GeoModelSvc.TileDetectorTool                        INFO  => New BFingerLengthPos 430.5
+GeoModelSvc.TileDetectorTool                        INFO  => New BFingerLengthNeg 420.5
+GeoModelSvc.TileDetectorTool                        INFO  Positioning barrel with translation 0
+GeoModelSvc.TileDetectorTool                        INFO  Positioning positive barrel finger with translation 3035.25
+GeoModelSvc.TileDetectorTool                        INFO  Positioning negative barrel finger with translation -3030.25
+GeoModelSvc.TileDetectorTool                        INFO  Positioning positive ext.barrel with translation 4854.75
+GeoModelSvc.TileDetectorTool                        INFO  Positioning positive ext.barrel finger with translation ztrans= 6338.5
+GeoModelSvc.TileDetectorTool                        INFO  Positioning positive ext.barrel saddle with translation ztrans= 6192.5
+GeoModelSvc.TileDetectorTool                        INFO  Positive ITC envelope parameters: PLUG1  Rmin= 3438.85 Rmax= 4250 dzITC1= 154.5
+GeoModelSvc.TileDetectorTool                        INFO                                    PLUG2  Rmin= 2981 Rmax= 3440 dzITC2= 47.425
+GeoModelSvc.TileDetectorTool                        INFO  Positioning positive ITC with translation 3405
+GeoModelSvc.TileDetectorTool                        INFO  Positioning positive Gap with translation 3552
+GeoModelSvc.TileDetectorTool                        INFO  Positioning positive Crack with translation 3536
+GeoModelSvc.TileDetectorTool                        INFO  Positioning negative ext.barrel with translation ztrans -4854.75
+GeoModelSvc.TileDetectorTool                        INFO  Positioning negative ext.barrel finger with translation ztrans= -6338.5
+GeoModelSvc.TileDetectorTool                        INFO  Positioning negative ext.barrel saddle with translation ztrans= -6192.5
+GeoModelSvc.TileDetectorTool                        INFO  Negative ITC envelope parameters: PLUG1  Rmin= 3438.85 Rmax= 4250 dzITC1= 154.5
+GeoModelSvc.TileDetectorTool                        INFO                                    PLUG2  Rmin= 2981 Rmax= 3440 dzITC2= 47.425
+GeoModelSvc.TileDetectorTool                        INFO  Positioning negative ITC with translation -3405
+GeoModelSvc.TileDetectorTool                        INFO  Positioning negative Gap with translation -3552
+GeoModelSvc.TileDetectorTool                        INFO  Positioning negative Crack with translation -3536
+GeoModelSvc.TileDetectorTool                        INFO  Global positioning of barrel with rotation (0,0,0)) and translation (0,0,0) Gaudi::Units::cm
+GeoModelSvc.TileDetectorTool                        INFO  Global positioning of positive ext.barrel with rotation (0,0,0)) and translation (0,0,0) Gaudi::Units::cm
+GeoModelSvc.TileDetectorTool                        INFO  Global positioning of negative ext.barrel with rotation (0,0,0)) and translation (0,0,1) Gaudi::Units::cm
+TileDetDescrManager                                 INFO Entering create_elements()
+GeoModelSvc                                         INFO GeoModelSvc.TileDetectorTool	 SZ= 3576Kb 	 Time = 0.14S
+ClassIDSvc                                          INFO  getRegistryEntries: read 66 CLIDRegistry entries for module ALL
+TileInfoLoader                                      INFO Changing TTL1 calib from 4.1 to 6.9
+TileInfoLoader                                      INFO Changing TTL1 noise sigma from 2.5 to 2.8
+CaloIDHelper_IDDetDescrCnv                          INFO in createObj: creating a CaloLVL1_ID helper object in the detector store
+CaloLVL1_ID                                         INFO initialize_from_dictionary
+AtlasDetectorID                                     INFO initialize_from_dictionary - OK
+TileCablingSvc                                      INFO RUN2 ATLAS geometry flag detected for geometry: ATLAS-R2-2016-01-00-01
+TileCablingSvc                                      INFO Cabling for RUN2a (2018) ATLAS geometry is set via jobOptions 
+TileCablingSvc                                      INFO Setting Cabling type to 5
+AthenaHiveEventLoopMgr                              INFO Initializing AthenaHiveEventLoopMgr - package version AthenaServices-00-00-00
+ClassIDSvc                                     0    INFO  getRegistryEntries: read 4180 CLIDRegistry entries for module ALL
+PyComponentMgr                                 0    INFO Initializing PyComponentMgr...
+Finalizer                                      0    INFO Initializing Finalizer...
+ClassIDSvc                                     0    INFO  getRegistryEntries: read 53 CLIDRegistry entries for module ALL
+CondInputLoader                                0    INFO Initializing CondInputLoader...
+CondInputLoader                                0    INFO Adding base classes:
   +  ( 'CondAttrListCollection' , 'ConditionStore+/TILE/OFL02/CALIB/CES' )   ->
   +  ( 'CondAttrListCollection' , 'ConditionStore+/TILE/OFL02/CALIB/CIS/FIT/LIN' )   ->
   +  ( 'CondAttrListCollection' , 'ConditionStore+/TILE/OFL02/CALIB/CIS/FIT/NLN' )   ->
@@ -929,7 +929,7 @@ CondInputLoader                             0      INFO Adding base classes:
   +  ( 'CondAttrListCollection' , 'ConditionStore+/TILE/OFL02/STATUS/ADC' )   ->
   +  ( 'CondAttrListCollection' , 'ConditionStore+/TILE/OFL02/TIME/CHANNELOFFSET/PHY' )   ->
   +  ( 'CondAttrListCollection' , 'ConditionStore+/TILE/ONL01/STATUS/ADC' )   ->
-CondInputLoader                             0      INFO Will create WriteCondHandle dependencies for the following DataObjects:
+CondInputLoader                                0    INFO Will create WriteCondHandle dependencies for the following DataObjects:
     +  ( 'CondAttrListCollection' , 'ConditionStore+/TILE/OFL02/CALIB/CES' ) 
     +  ( 'CondAttrListCollection' , 'ConditionStore+/TILE/OFL02/CALIB/CIS/FIT/LIN' ) 
     +  ( 'CondAttrListCollection' , 'ConditionStore+/TILE/OFL02/CALIB/CIS/FIT/NLN' ) 
@@ -941,356 +941,356 @@ CondInputLoader                             0      INFO Will create WriteCondHan
     +  ( 'CondAttrListCollection' , 'ConditionStore+/TILE/OFL02/STATUS/ADC' ) 
     +  ( 'CondAttrListCollection' , 'ConditionStore+/TILE/OFL02/TIME/CHANNELOFFSET/PHY' ) 
     +  ( 'CondAttrListCollection' , 'ConditionStore+/TILE/ONL01/STATUS/ADC' ) 
-TileBadChannelsCondAlg.TileCondProxyC...    0      INFO Creating TileCondProxyCool(TileBadChannelsCondAlg.TileCondProxyCool_OnlBch) for folder: "/TILE/ONL01/STATUS/ADC"
-TileBadChannelsCondAlg.TileCondProxyC...    0      INFO Creating TileCondProxyCool(TileBadChannelsCondAlg.TileCondProxyCool_OflBch) for folder: "/TILE/OFL02/STATUS/ADC"
-TileBadChannelsCondAlg                      0      INFO ProxyOnlBch and ProxyOflBch will be used for bad channel status
-TileEMScaleCondAlg.TileCondProxyCool_...    0      INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OflCisLin) for folder: "/TILE/OFL02/CALIB/CIS/FIT/LIN"
-TileEMScaleCondAlg.TileCondProxyCool_...    0      INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OflCisNln) for folder: "/TILE/OFL02/CALIB/CIS/FIT/NLN"
-TileEMScaleCondAlg.TileCondProxyCool_...    0      INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OflLasLin) for folder: "/TILE/OFL02/CALIB/LAS/LIN"
-TileEMScaleCondAlg.TileCondProxyCool_...    0      INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OflLasNln) for folder: "/TILE/OFL02/CALIB/LAS/NLN"
-TileEMScaleCondAlg.TileCondProxyCool_...    0      INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OflLasFib) for folder: "/TILE/OFL02/CALIB/LAS/FIBER"
-TileEMScaleCondAlg                          0      INFO ProxyOflLasFib is set up and can be used
-TileEMScaleCondAlg.TileCondProxyCool_...    0      INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OflCes) for folder: "/TILE/OFL02/CALIB/CES"
-TileEMScaleCondAlg.TileCondProxyCool_...    0      INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OflEms) for folder: "/TILE/OFL02/CALIB/EMS"
-TileEMScaleCondAlg                          0      INFO Undoing online calibration is not requested, since OnlCacheUnit= 'OnlCacheUnit':Invalid
-TileEMScaleCondAlg.TileCondProxyCool_...    0      INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OnlCis) for folder: "/TILE/OFL02/CALIB/CIS/FIT/LIN"
-TileEMScaleCondAlg.TileCondProxyCool_...    0      INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OnlLas) for folder: "/TILE/OFL02/CALIB/LAS/LIN"
-TileEMScaleCondAlg.TileCondProxyCool_...    0      INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OnlCes) for folder: "/TILE/OFL02/CALIB/CES"
-TileEMScaleCondAlg.TileCondProxyCool_...    0      INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OnlEms) for folder: "/TILE/OFL02/CALIB/EMS"
-TileSampleNoiseCondAlg.TileCondProxyC...    0      INFO Creating TileCondProxyCool(TileSampleNoiseCondAlg.TileCondProxyCool_NoiseSample) for folder: "/TILE/OFL02/NOISE/SAMPLE"
-TileTimingCondAlg.TileCondProxyCool_A...    0      INFO Creating TileCondProxyCool(TileTimingCondAlg.TileCondProxyCool_AdcOffset) for folder: "/TILE/OFL02/TIME/CHANNELOFFSET/PHY"
-ThreadPoolSvc                               0      INFO no thread init tools attached
-AvalancheSchedulerSvc                       0      INFO Activating scheduler in a separate thread
-AvalancheSchedulerSvc                       0      INFO Found 12 algorithms
-AvalancheSchedulerSvc                       0      INFO Will attribute the following unmet INPUT dependencies to "SGInputLoader/SGInputLoader" Algorithm
+TileBadChannelsCondAlg.TileCondProxyC...       0    INFO Creating TileCondProxyCool(TileBadChannelsCondAlg.TileCondProxyCool_OnlBch) for folder: "/TILE/ONL01/STATUS/ADC"
+TileBadChannelsCondAlg.TileCondProxyC...       0    INFO Creating TileCondProxyCool(TileBadChannelsCondAlg.TileCondProxyCool_OflBch) for folder: "/TILE/OFL02/STATUS/ADC"
+TileBadChannelsCondAlg                         0    INFO ProxyOnlBch and ProxyOflBch will be used for bad channel status
+TileEMScaleCondAlg.TileCondProxyCool_...       0    INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OflCisLin) for folder: "/TILE/OFL02/CALIB/CIS/FIT/LIN"
+TileEMScaleCondAlg.TileCondProxyCool_...       0    INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OflCisNln) for folder: "/TILE/OFL02/CALIB/CIS/FIT/NLN"
+TileEMScaleCondAlg.TileCondProxyCool_...       0    INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OflLasLin) for folder: "/TILE/OFL02/CALIB/LAS/LIN"
+TileEMScaleCondAlg.TileCondProxyCool_...       0    INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OflLasNln) for folder: "/TILE/OFL02/CALIB/LAS/NLN"
+TileEMScaleCondAlg.TileCondProxyCool_...       0    INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OflLasFib) for folder: "/TILE/OFL02/CALIB/LAS/FIBER"
+TileEMScaleCondAlg                             0    INFO ProxyOflLasFib is set up and can be used
+TileEMScaleCondAlg.TileCondProxyCool_...       0    INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OflCes) for folder: "/TILE/OFL02/CALIB/CES"
+TileEMScaleCondAlg.TileCondProxyCool_...       0    INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OflEms) for folder: "/TILE/OFL02/CALIB/EMS"
+TileEMScaleCondAlg                             0    INFO Undoing online calibration is not requested, since OnlCacheUnit= 'OnlCacheUnit':Invalid
+TileEMScaleCondAlg.TileCondProxyCool_...       0    INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OnlCis) for folder: "/TILE/OFL02/CALIB/CIS/FIT/LIN"
+TileEMScaleCondAlg.TileCondProxyCool_...       0    INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OnlLas) for folder: "/TILE/OFL02/CALIB/LAS/LIN"
+TileEMScaleCondAlg.TileCondProxyCool_...       0    INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OnlCes) for folder: "/TILE/OFL02/CALIB/CES"
+TileEMScaleCondAlg.TileCondProxyCool_...       0    INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OnlEms) for folder: "/TILE/OFL02/CALIB/EMS"
+TileSampleNoiseCondAlg.TileCondProxyC...       0    INFO Creating TileCondProxyCool(TileSampleNoiseCondAlg.TileCondProxyCool_NoiseSample) for folder: "/TILE/OFL02/NOISE/SAMPLE"
+TileTimingCondAlg.TileCondProxyCool_A...       0    INFO Creating TileCondProxyCool(TileTimingCondAlg.TileCondProxyCool_AdcOffset) for folder: "/TILE/OFL02/TIME/CHANNELOFFSET/PHY"
+ThreadPoolSvc                                  0    INFO no thread init tools attached
+AvalancheSchedulerSvc                          0    INFO Activating scheduler in a separate thread
+AvalancheSchedulerSvc                          0    INFO Found 12 algorithms
+AvalancheSchedulerSvc                          0    INFO Will attribute the following unmet INPUT dependencies to "SGInputLoader/SGInputLoader" Algorithm
    o  ( 'TileMuonReceiverContainer' , 'StoreGateSvc+TileMuRcvCnt' )     required by Algorithm: 
        * TileMuonReceiverDumper
-PrecedenceSvc                               0      INFO Assembling CF and DF task precedence rules
-PrecedenceRulesGraph                        0      INFO CondSvc found. DF precedence rules will be augmented with 'Conditions'
-PrecedenceSvc                               0      INFO PrecedenceSvc initialized successfully
-AvalancheSchedulerSvc                       0      INFO Concurrency level information:
-AvalancheSchedulerSvc                       0      INFO  o Number of events in flight: 4
-AvalancheSchedulerSvc                       0      INFO  o TBB thread pool size:  'ThreadPoolSize':4
-HistogramPersistencySvc                     0   WARNING Histograms saving not required.
-EventSelector                               0      INFO Initializing EventSelector - package version ByteStreamCnvSvc-00-00-00
-ByteStreamInputSvc                          0      INFO Initializing ByteStreamInputSvc - package version ByteStreamCnvSvc-00-00-00
-ROBDataProviderSvc                          0      INFO Initializing ROBDataProviderSvc - package version ByteStreamCnvSvcBase-00-00-00
-ROBDataProviderSvc                          0      INFO  ---> Filter out empty ROB fragments                               =  'filterEmptyROB':False
-ROBDataProviderSvc                          0      INFO  ---> Filter out specific ROBs by Status Code: # ROBs = 0
-ROBDataProviderSvc                          0      INFO  ---> Filter out Sub Detector ROBs by Status Code: # Sub Detectors = 0
-EventSelector                               0      INFO reinitialization...
-AthenaHiveEventLoopMgr                      0      INFO Setup EventSelector service EventSelector
-ApplicationMgr                              0      INFO Application Manager Initialized successfully
-PoolSvc                                     0      INFO Enabled implicit multithreading in ROOT via PersistencySvc to: 4
-CondInputLoader                             0      INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/CALIB/CES'
-CondInputLoader                             0      INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/CALIB/CIS/FIT/LIN'
-CondInputLoader                             0      INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/CALIB/CIS/FIT/NLN'
-CondInputLoader                             0      INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/CALIB/EMS'
-CondInputLoader                             0      INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/CALIB/LAS/FIBER'
-CondInputLoader                             0      INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/CALIB/LAS/LIN'
-CondInputLoader                             0      INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/CALIB/LAS/NLN'
-CondInputLoader                             0      INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/NOISE/SAMPLE'
-CondInputLoader                             0      INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/STATUS/ADC'
-CondInputLoader                             0      INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/TIME/CHANNELOFFSET/PHY'
-CondInputLoader                             0      INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/ONL01/STATUS/ADC'
-ByteStreamInputSvc                          0      INFO Picked valid file: /cvmfs/atlas-nightlies.cern.ch/repo/data/data-art/TileByteStream/TileByteStream-02-00-00/data18_tilecomm.00363899.calibration_tile.daq.RAW._lb0000._TileREB-ROS._0005-200ev.data
-ApplicationMgr                              0      INFO Application Manager Started successfully
-AthenaHiveEventLoopMgr                      0      INFO Starting loop on events
-EventPersistencySvc                     0   0      INFO Added successfully Conversion service:AthenaPoolCnvSvc
-EventPersistencySvc                     0   0      INFO Added successfully Conversion service:TagInfoMgr
-EventPersistencySvc                     0   0      INFO Added successfully Conversion service:ByteStreamCnvSvc
-EventInfoByteStreamAuxCnv               0   0      INFO IsSimulation : 0
-EventInfoByteStreamAuxCnv               0   0      INFO IsTestbeam : 0
-EventInfoByteStreamAuxCnv               0   0      INFO IsCalibration : 0
-AthenaHiveEventLoopMgr                  0   0      INFO   ===>>>  start of run 363899    <<<===
-IOVDbSvc                                0   0      INFO Opening COOL connection for COOLOFL_LAR/OFLP200
-IOVDbFolder                             0   0      INFO HVS tag OFLCOND-RUN12-SDR-35 resolved to LARAlign-IOVDEP-00 for folder /LAR/Align
-IOVDbFolder                             0   0      INFO HVS tag OFLCOND-RUN12-SDR-35 resolved to LArCellPositionShift-ideal for folder /LAR/LArCellPositionShift
-IOVDbSvc                                0   0      INFO Disconnecting from COOLOFL_LAR/OFLP200
-Domain[ROOT_All]                        0   0      INFO ->  Access   DbDatabase   READ      [ROOT_All] 06C9EAE8-6F5B-E011-BAAA-003048F0E7AC
-Domain[ROOT_All]                        0   0      INFO                           /cvmfs/atlas-condb.cern.ch/repo/conditions/cond09/cond09_mc.000029.gen.COND/cond09_mc.000029.gen.COND._0002.pool.root
-RootDatabase.open                       0   0      INFO /cvmfs/atlas-condb.cern.ch/repo/conditions/cond09/cond09_mc.000029.gen.COND/cond09_mc.000029.gen.COND._0002.pool.root File version:52200
-CaloMgrDetDescrCnv                      0   0      INFO in createObj: creating a Calo Detector Manager object in the detector store
-CaloIdMgrDetDescrCnv                    0   0      INFO in createObj: creating a CaloDescrManager object in the detector store
-ClassIDSvc                              0   0      INFO  getRegistryEntries: read 195 CLIDRegistry entries for module ALL
-CaloIDHelper_IDDetDescrCnv              0   0      INFO in createObj: creating a CaloDM_ID helper object in the detector store
-CaloDM_ID                               0   0      INFO initialize_from_dictionary
-AtlasDetectorID                         0   0      INFO initialize_from_dictionary - OK
-CaloIDHelper_IDDetDescrCnv              0   0      INFO in createObj: creating a TTOnlineID helper object in the detector store
-TTOnlineID                              0   0      INFO initialize_from_dictionary
-AtlasDetectorID                         0   0      INFO initialize_from_dictionary - OK
-CaloIDHelper_IDDetDescrCnv              0   0      INFO in createObj: creating a CaloCell_SuperCell_ID helper object in the detector store
-CaloIDHelper_IDDetDescrCnv              0   0      INFO in createObj: creating a LArEM_SuperCell_ID helper object in the detector store
-AtlasDetectorID                         0   0      INFO initialize_from_dictionary - OK
-CaloIDHelper_IDDetDescrCnv              0   0      INFO in createObj: creating a LArHEC_SuperCell_ID helper object in the detector store
-AtlasDetectorID                         0   0      INFO initialize_from_dictionary - OK
-CaloIDHelper_IDDetDescrCnv              0   0      INFO in createObj: creating a LArFCAL_SuperCell_ID helper object in the detector store
-AtlasDetectorID                         0   0      INFO initialize_from_dictionary - OK
-LArFCAL_Base_ID                         0   0      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-06T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/FCalSuperCells2DNeighborsNew-April2014.txt
-LArFCAL_Base_ID                         0   0      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-06T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/FCalSuperCells3DNeighborsNextNew-April2014.txt
-LArFCAL_Base_ID                         0   0      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-06T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/FCalSuperCells3DNeighborsPrevNew-April2014.txt
-CaloIDHelper_IDDetDescrCnv              0   0      INFO in createObj: creating a Tile_SuperCell_ID helper object in the detector store
-AtlasDetectorID                         0   0      INFO initialize_from_dictionary - OK
-TileNeighbour                           0   0      INFO Reading file  /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-06T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/TileSuperCellNeighbour.txt
-AtlasDetectorID                         0   0      INFO initialize_from_dictionary - OK
-CaloIdMgrDetDescrCnv                    0   0      INFO  Finished 
-CaloIdMgrDetDescrCnv                    0   0      INFO Initializing CaloIdMgr from values in CaloIdMgrDetDescrCnv 
-Domain[ROOT_All]                        0   0      INFO ->  Access   DbDatabase   READ      [ROOT_All] 8667C6F2-1559-DE11-A611-000423D9A21A
-Domain[ROOT_All]                        0   0      INFO                           /cvmfs/atlas-condb.cern.ch/repo/conditions/cond08/cond08_mc.000003.gen.COND/cond08_mc.000003.gen.COND._0064.pool.root
-RootDatabase.open                       0   0      INFO /cvmfs/atlas-condb.cern.ch/repo/conditions/cond08/cond08_mc.000003.gen.COND/cond08_mc.000003.gen.COND._0064.pool.root File version:52200
-AthenaHiveEventLoopMgr                  0   0      INFO   ===>>>  start processing event #18124, run #363899 on slot 0,  0 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  1   1      INFO   ===>>>  start processing event #18125, run #363899 on slot 1,  0 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  2   2      INFO   ===>>>  start processing event #18126, run #363899 on slot 2,  0 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  3   3      INFO   ===>>>  start processing event #18127, run #363899 on slot 3,  0 events processed so far  <<<===
-ClassIDSvc                              0   0      INFO  getRegistryEntries: read 672 CLIDRegistry entries for module ALL
-ClassIDSvc                              1   1      INFO  getRegistryEntries: read 1776 CLIDRegistry entries for module ALL
-ClassIDSvc                              1   1      INFO  getRegistryEntries: read 90 CLIDRegistry entries for module ALL
-ToolSvc.TileROD_Decoder.TileL2Builder   1   1      INFO TileL2Builder initialization completed
-ToolSvc.TileMuRcvContByteStreamTool     1   1      INFO Initializing TileMuRcvContByteStreamTool
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18124, run #363899 on slot 0,  1 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18125, run #363899 on slot 1,  2 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  4   0      INFO   ===>>>  start processing event #18128, run #363899 on slot 0,  2 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  5   1      INFO   ===>>>  start processing event #18129, run #363899 on slot 1,  2 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18126, run #363899 on slot 2,  3 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18127, run #363899 on slot 3,  4 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  6   2      INFO   ===>>>  start processing event #18130, run #363899 on slot 2,  4 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  7   3      INFO   ===>>>  start processing event #18131, run #363899 on slot 3,  4 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18128, run #363899 on slot 0,  5 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  8   0      INFO   ===>>>  start processing event #18132, run #363899 on slot 0,  5 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18129, run #363899 on slot 1,  6 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  9   1      INFO   ===>>>  start processing event #18133, run #363899 on slot 1,  6 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18130, run #363899 on slot 2,  7 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18131, run #363899 on slot 3,  8 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  10  2      INFO   ===>>>  start processing event #18134, run #363899 on slot 2,  8 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  11  3      INFO   ===>>>  start processing event #18135, run #363899 on slot 3,  8 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18132, run #363899 on slot 0,  9 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  12  0      INFO   ===>>>  start processing event #18136, run #363899 on slot 0,  9 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18133, run #363899 on slot 1,  10 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  13  1      INFO   ===>>>  start processing event #18137, run #363899 on slot 1,  10 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18134, run #363899 on slot 2,  11 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  14  2      INFO   ===>>>  start processing event #18138, run #363899 on slot 2,  11 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18135, run #363899 on slot 3,  12 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18136, run #363899 on slot 0,  13 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  15  0      INFO   ===>>>  start processing event #18139, run #363899 on slot 0,  13 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  16  3      INFO   ===>>>  start processing event #18140, run #363899 on slot 3,  13 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18137, run #363899 on slot 1,  14 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  17  1      INFO   ===>>>  start processing event #18141, run #363899 on slot 1,  14 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18138, run #363899 on slot 2,  15 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  18  2      INFO   ===>>>  start processing event #18142, run #363899 on slot 2,  15 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18139, run #363899 on slot 0,  16 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  19  0      INFO   ===>>>  start processing event #18143, run #363899 on slot 0,  16 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18140, run #363899 on slot 3,  17 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  20  3      INFO   ===>>>  start processing event #18144, run #363899 on slot 3,  17 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18141, run #363899 on slot 1,  18 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  21  1      INFO   ===>>>  start processing event #18145, run #363899 on slot 1,  18 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18142, run #363899 on slot 2,  19 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  22  2      INFO   ===>>>  start processing event #18146, run #363899 on slot 2,  19 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18143, run #363899 on slot 0,  20 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  23  0      INFO   ===>>>  start processing event #18147, run #363899 on slot 0,  20 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18144, run #363899 on slot 3,  21 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  24  3      INFO   ===>>>  start processing event #18148, run #363899 on slot 3,  21 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18145, run #363899 on slot 1,  22 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  25  1      INFO   ===>>>  start processing event #18149, run #363899 on slot 1,  22 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18146, run #363899 on slot 2,  23 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18147, run #363899 on slot 0,  24 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  26  0      INFO   ===>>>  start processing event #18150, run #363899 on slot 0,  24 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  27  2      INFO   ===>>>  start processing event #18151, run #363899 on slot 2,  24 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18148, run #363899 on slot 3,  25 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  28  3      INFO   ===>>>  start processing event #18152, run #363899 on slot 3,  25 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18149, run #363899 on slot 1,  26 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  29  1      INFO   ===>>>  start processing event #18153, run #363899 on slot 1,  26 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18150, run #363899 on slot 0,  27 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  30  0      INFO   ===>>>  start processing event #18154, run #363899 on slot 0,  27 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18151, run #363899 on slot 2,  28 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  31  2      INFO   ===>>>  start processing event #18155, run #363899 on slot 2,  28 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18152, run #363899 on slot 3,  29 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  32  3      INFO   ===>>>  start processing event #18156, run #363899 on slot 3,  29 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18153, run #363899 on slot 1,  30 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  33  1      INFO   ===>>>  start processing event #18157, run #363899 on slot 1,  30 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18154, run #363899 on slot 0,  31 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  34  0      INFO   ===>>>  start processing event #18158, run #363899 on slot 0,  31 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18155, run #363899 on slot 2,  32 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  35  2      INFO   ===>>>  start processing event #18159, run #363899 on slot 2,  32 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18156, run #363899 on slot 3,  33 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  36  3      INFO   ===>>>  start processing event #18160, run #363899 on slot 3,  33 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18157, run #363899 on slot 1,  34 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  37  1      INFO   ===>>>  start processing event #18161, run #363899 on slot 1,  34 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18158, run #363899 on slot 0,  35 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  38  0      INFO   ===>>>  start processing event #18162, run #363899 on slot 0,  35 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18159, run #363899 on slot 2,  36 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  39  2      INFO   ===>>>  start processing event #18163, run #363899 on slot 2,  36 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18160, run #363899 on slot 3,  37 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  40  3      INFO   ===>>>  start processing event #18164, run #363899 on slot 3,  37 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18161, run #363899 on slot 1,  38 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  41  1      INFO   ===>>>  start processing event #18165, run #363899 on slot 1,  38 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18162, run #363899 on slot 0,  39 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  42  0      INFO   ===>>>  start processing event #18166, run #363899 on slot 0,  39 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18163, run #363899 on slot 2,  40 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  43  2      INFO   ===>>>  start processing event #18167, run #363899 on slot 2,  40 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18164, run #363899 on slot 3,  41 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  44  3      INFO   ===>>>  start processing event #18168, run #363899 on slot 3,  41 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18165, run #363899 on slot 1,  42 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  45  1      INFO   ===>>>  start processing event #18169, run #363899 on slot 1,  42 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18166, run #363899 on slot 0,  43 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  46  0      INFO   ===>>>  start processing event #18170, run #363899 on slot 0,  43 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18167, run #363899 on slot 2,  44 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  47  2      INFO   ===>>>  start processing event #18171, run #363899 on slot 2,  44 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18168, run #363899 on slot 3,  45 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  48  3      INFO   ===>>>  start processing event #18172, run #363899 on slot 3,  45 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18169, run #363899 on slot 1,  46 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18170, run #363899 on slot 0,  47 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  49  0      INFO   ===>>>  start processing event #18173, run #363899 on slot 0,  47 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  50  1      INFO   ===>>>  start processing event #18174, run #363899 on slot 1,  47 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18171, run #363899 on slot 2,  48 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  51  2      INFO   ===>>>  start processing event #18175, run #363899 on slot 2,  48 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18172, run #363899 on slot 3,  49 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  52  3      INFO   ===>>>  start processing event #18176, run #363899 on slot 3,  49 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18173, run #363899 on slot 0,  50 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  53  0      INFO   ===>>>  start processing event #18177, run #363899 on slot 0,  50 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18174, run #363899 on slot 1,  51 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18175, run #363899 on slot 2,  52 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  54  1      INFO   ===>>>  start processing event #18178, run #363899 on slot 1,  52 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  55  2      INFO   ===>>>  start processing event #18179, run #363899 on slot 2,  52 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18176, run #363899 on slot 3,  53 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  56  3      INFO   ===>>>  start processing event #18180, run #363899 on slot 3,  53 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18177, run #363899 on slot 0,  54 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  57  0      INFO   ===>>>  start processing event #18181, run #363899 on slot 0,  54 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18178, run #363899 on slot 1,  55 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  58  1      INFO   ===>>>  start processing event #18182, run #363899 on slot 1,  55 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18179, run #363899 on slot 2,  56 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18180, run #363899 on slot 3,  57 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  59  2      INFO   ===>>>  start processing event #18183, run #363899 on slot 2,  57 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  60  3      INFO   ===>>>  start processing event #18184, run #363899 on slot 3,  57 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18181, run #363899 on slot 0,  58 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  61  0      INFO   ===>>>  start processing event #18185, run #363899 on slot 0,  58 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18182, run #363899 on slot 1,  59 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  62  1      INFO   ===>>>  start processing event #18186, run #363899 on slot 1,  59 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18183, run #363899 on slot 2,  60 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  63  2      INFO   ===>>>  start processing event #18187, run #363899 on slot 2,  60 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18184, run #363899 on slot 3,  61 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18185, run #363899 on slot 0,  62 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  64  0      INFO   ===>>>  start processing event #18188, run #363899 on slot 0,  62 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  65  3      INFO   ===>>>  start processing event #18189, run #363899 on slot 3,  62 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18186, run #363899 on slot 1,  63 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  66  1      INFO   ===>>>  start processing event #18190, run #363899 on slot 1,  63 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18187, run #363899 on slot 2,  64 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  67  2      INFO   ===>>>  start processing event #18191, run #363899 on slot 2,  64 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18188, run #363899 on slot 0,  65 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  68  0      INFO   ===>>>  start processing event #18192, run #363899 on slot 0,  65 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18189, run #363899 on slot 3,  66 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18190, run #363899 on slot 1,  67 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  69  1      INFO   ===>>>  start processing event #18193, run #363899 on slot 1,  67 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  70  3      INFO   ===>>>  start processing event #18194, run #363899 on slot 3,  67 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18191, run #363899 on slot 2,  68 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  71  2      INFO   ===>>>  start processing event #18195, run #363899 on slot 2,  68 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18192, run #363899 on slot 0,  69 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  72  0      INFO   ===>>>  start processing event #18196, run #363899 on slot 0,  69 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18194, run #363899 on slot 3,  70 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  73  3      INFO   ===>>>  start processing event #18197, run #363899 on slot 3,  70 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18193, run #363899 on slot 1,  71 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18195, run #363899 on slot 2,  72 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  74  1      INFO   ===>>>  start processing event #18198, run #363899 on slot 1,  72 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  75  2      INFO   ===>>>  start processing event #18199, run #363899 on slot 2,  72 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18196, run #363899 on slot 0,  73 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  76  0      INFO   ===>>>  start processing event #18200, run #363899 on slot 0,  73 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18197, run #363899 on slot 3,  74 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  77  3      INFO   ===>>>  start processing event #18201, run #363899 on slot 3,  74 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18198, run #363899 on slot 1,  75 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  78  1      INFO   ===>>>  start processing event #18202, run #363899 on slot 1,  75 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18199, run #363899 on slot 2,  76 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  79  2      INFO   ===>>>  start processing event #18203, run #363899 on slot 2,  76 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18200, run #363899 on slot 0,  77 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  80  0      INFO   ===>>>  start processing event #18204, run #363899 on slot 0,  77 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18201, run #363899 on slot 3,  78 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  81  3      INFO   ===>>>  start processing event #18205, run #363899 on slot 3,  78 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18203, run #363899 on slot 2,  79 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  82  2      INFO   ===>>>  start processing event #18206, run #363899 on slot 2,  79 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18202, run #363899 on slot 1,  80 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  83  1      INFO   ===>>>  start processing event #18207, run #363899 on slot 1,  80 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18204, run #363899 on slot 0,  81 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  84  0      INFO   ===>>>  start processing event #18208, run #363899 on slot 0,  81 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18205, run #363899 on slot 3,  82 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18206, run #363899 on slot 2,  83 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  85  2      INFO   ===>>>  start processing event #18209, run #363899 on slot 2,  83 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  86  3      INFO   ===>>>  start processing event #18210, run #363899 on slot 3,  83 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18207, run #363899 on slot 1,  84 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  87  1      INFO   ===>>>  start processing event #18211, run #363899 on slot 1,  84 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18208, run #363899 on slot 0,  85 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  88  0      INFO   ===>>>  start processing event #18212, run #363899 on slot 0,  85 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18209, run #363899 on slot 2,  86 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  89  2      INFO   ===>>>  start processing event #18213, run #363899 on slot 2,  86 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18210, run #363899 on slot 3,  87 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  90  3      INFO   ===>>>  start processing event #18214, run #363899 on slot 3,  87 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18211, run #363899 on slot 1,  88 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  91  1      INFO   ===>>>  start processing event #18215, run #363899 on slot 1,  88 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18212, run #363899 on slot 0,  89 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  92  0      INFO   ===>>>  start processing event #18216, run #363899 on slot 0,  89 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18213, run #363899 on slot 2,  90 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18214, run #363899 on slot 3,  91 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  93  2      INFO   ===>>>  start processing event #18217, run #363899 on slot 2,  91 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  94  3      INFO   ===>>>  start processing event #18218, run #363899 on slot 3,  91 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18215, run #363899 on slot 1,  92 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  95  1      INFO   ===>>>  start processing event #18219, run #363899 on slot 1,  92 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18216, run #363899 on slot 0,  93 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  96  0      INFO   ===>>>  start processing event #18220, run #363899 on slot 0,  93 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18217, run #363899 on slot 2,  94 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  97  2      INFO   ===>>>  start processing event #18221, run #363899 on slot 2,  94 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18218, run #363899 on slot 3,  95 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  98  3      INFO   ===>>>  start processing event #18222, run #363899 on slot 3,  95 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18219, run #363899 on slot 1,  96 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18220, run #363899 on slot 0,  97 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  99  0      INFO   ===>>>  start processing event #18223, run #363899 on slot 0,  97 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18221, run #363899 on slot 2,  98 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18222, run #363899 on slot 3,  99 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #18223, run #363899 on slot 0,  100 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO ---> Loop Finished (seconds): 2.69111
-/cvmfs/atlas-condb.cern.ch/repo/condi...           INFO Database being retired...
-Domain[ROOT_All]                                   INFO ->  Deaccess DbDatabase   READ      [ROOT_All] 8667C6F2-1559-DE11-A611-000423D9A21A
-/cvmfs/atlas-condb.cern.ch/repo/condi...           INFO Database being retired...
-Domain[ROOT_All]                                   INFO ->  Deaccess DbDatabase   READ      [ROOT_All] 06C9EAE8-6F5B-E011-BAAA-003048F0E7AC
-Domain[ROOT_All]                                   INFO >   Deaccess DbDomain     READ      [ROOT_All] 
-ApplicationMgr                                     INFO Application Manager Stopped successfully
-IncidentProcAlg1                                   INFO Finalize
-SGInputLoader                                      INFO Finalizing SGInputLoader...
-Finalizer                                          INFO Finalizing Finalizer...
+PrecedenceSvc                                  0    INFO Assembling CF and DF task precedence rules
+PrecedenceRulesGraph                           0    INFO CondSvc found. DF precedence rules will be augmented with 'Conditions'
+PrecedenceSvc                                  0    INFO PrecedenceSvc initialized successfully
+AvalancheSchedulerSvc                          0    INFO Concurrency level information:
+AvalancheSchedulerSvc                          0    INFO  o Number of events in flight: 4
+AvalancheSchedulerSvc                          0    INFO  o TBB thread pool size:  'ThreadPoolSize':4
+HistogramPersistencySvc                        0 WARNING Histograms saving not required.
+EventSelector                                  0    INFO Initializing EventSelector - package version ByteStreamCnvSvc-00-00-00
+ByteStreamInputSvc                             0    INFO Initializing ByteStreamInputSvc - package version ByteStreamCnvSvc-00-00-00
+ROBDataProviderSvc                             0    INFO Initializing ROBDataProviderSvc - package version ByteStreamCnvSvcBase-00-00-00
+ROBDataProviderSvc                             0    INFO  ---> Filter out empty ROB fragments                               =  'filterEmptyROB':False
+ROBDataProviderSvc                             0    INFO  ---> Filter out specific ROBs by Status Code: # ROBs = 0
+ROBDataProviderSvc                             0    INFO  ---> Filter out Sub Detector ROBs by Status Code: # Sub Detectors = 0
+EventSelector                                  0    INFO reinitialization...
+AthenaHiveEventLoopMgr                         0    INFO Setup EventSelector service EventSelector
+ApplicationMgr                                 0    INFO Application Manager Initialized successfully
+PoolSvc                                        0    INFO Enabled implicit multithreading in ROOT via PersistencySvc to: 4
+CondInputLoader                                0    INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/CALIB/CES'
+CondInputLoader                                0    INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/CALIB/CIS/FIT/LIN'
+CondInputLoader                                0    INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/CALIB/CIS/FIT/NLN'
+CondInputLoader                                0    INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/CALIB/EMS'
+CondInputLoader                                0    INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/CALIB/LAS/FIBER'
+CondInputLoader                                0    INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/CALIB/LAS/LIN'
+CondInputLoader                                0    INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/CALIB/LAS/NLN'
+CondInputLoader                                0    INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/NOISE/SAMPLE'
+CondInputLoader                                0    INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/STATUS/ADC'
+CondInputLoader                                0    INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/TIME/CHANNELOFFSET/PHY'
+CondInputLoader                                0    INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/ONL01/STATUS/ADC'
+ByteStreamInputSvc                             0    INFO Picked valid file: /cvmfs/atlas-nightlies.cern.ch/repo/data/data-art/TileByteStream/TileByteStream-02-00-00/data18_tilecomm.00363899.calibration_tile.daq.RAW._lb0000._TileREB-ROS._0005-200ev.data
+ApplicationMgr                                 0    INFO Application Manager Started successfully
+AthenaHiveEventLoopMgr                         0    INFO Starting loop on events
+EventPersistencySvc                        0   0    INFO Added successfully Conversion service:AthenaPoolCnvSvc
+EventPersistencySvc                        0   0    INFO Added successfully Conversion service:TagInfoMgr
+EventPersistencySvc                        0   0    INFO Added successfully Conversion service:ByteStreamCnvSvc
+EventInfoByteStreamAuxCnv                  0   0    INFO IsSimulation : 0
+EventInfoByteStreamAuxCnv                  0   0    INFO IsTestbeam : 0
+EventInfoByteStreamAuxCnv                  0   0    INFO IsCalibration : 0
+AthenaHiveEventLoopMgr                     0   0    INFO   ===>>>  start of run 363899    <<<===
+IOVDbSvc                                   0   0    INFO Opening COOL connection for COOLOFL_LAR/OFLP200
+IOVDbFolder                                0   0    INFO HVS tag OFLCOND-RUN12-SDR-35 resolved to LARAlign-IOVDEP-00 for folder /LAR/Align
+IOVDbFolder                                0   0    INFO HVS tag OFLCOND-RUN12-SDR-35 resolved to LArCellPositionShift-ideal for folder /LAR/LArCellPositionShift
+IOVDbSvc                                   0   0    INFO Disconnecting from COOLOFL_LAR/OFLP200
+Domain[ROOT_All]                           0   0    INFO ->  Access   DbDatabase   READ      [ROOT_All] 06C9EAE8-6F5B-E011-BAAA-003048F0E7AC
+Domain[ROOT_All]                           0   0    INFO                           /cvmfs/atlas-condb.cern.ch/repo/conditions/cond09/cond09_mc.000029.gen.COND/cond09_mc.000029.gen.COND._0002.pool.root
+RootDatabase.open                          0   0    INFO /cvmfs/atlas-condb.cern.ch/repo/conditions/cond09/cond09_mc.000029.gen.COND/cond09_mc.000029.gen.COND._0002.pool.root File version:52200
+CaloMgrDetDescrCnv                         0   0    INFO in createObj: creating a Calo Detector Manager object in the detector store
+CaloIdMgrDetDescrCnv                       0   0    INFO in createObj: creating a CaloDescrManager object in the detector store
+ClassIDSvc                                 0   0    INFO  getRegistryEntries: read 198 CLIDRegistry entries for module ALL
+CaloIDHelper_IDDetDescrCnv                 0   0    INFO in createObj: creating a CaloDM_ID helper object in the detector store
+CaloDM_ID                                  0   0    INFO initialize_from_dictionary
+AtlasDetectorID                            0   0    INFO initialize_from_dictionary - OK
+CaloIDHelper_IDDetDescrCnv                 0   0    INFO in createObj: creating a TTOnlineID helper object in the detector store
+TTOnlineID                                 0   0    INFO initialize_from_dictionary
+AtlasDetectorID                            0   0    INFO initialize_from_dictionary - OK
+CaloIDHelper_IDDetDescrCnv                 0   0    INFO in createObj: creating a CaloCell_SuperCell_ID helper object in the detector store
+CaloIDHelper_IDDetDescrCnv                 0   0    INFO in createObj: creating a LArEM_SuperCell_ID helper object in the detector store
+AtlasDetectorID                            0   0    INFO initialize_from_dictionary - OK
+CaloIDHelper_IDDetDescrCnv                 0   0    INFO in createObj: creating a LArHEC_SuperCell_ID helper object in the detector store
+AtlasDetectorID                            0   0    INFO initialize_from_dictionary - OK
+CaloIDHelper_IDDetDescrCnv                 0   0    INFO in createObj: creating a LArFCAL_SuperCell_ID helper object in the detector store
+AtlasDetectorID                            0   0    INFO initialize_from_dictionary - OK
+LArFCAL_Base_ID                            0   0    INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/FCalSuperCells2DNeighborsNew-April2014.txt
+LArFCAL_Base_ID                            0   0    INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/FCalSuperCells3DNeighborsNextNew-April2014.txt
+LArFCAL_Base_ID                            0   0    INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/FCalSuperCells3DNeighborsPrevNew-April2014.txt
+CaloIDHelper_IDDetDescrCnv                 0   0    INFO in createObj: creating a Tile_SuperCell_ID helper object in the detector store
+AtlasDetectorID                            0   0    INFO initialize_from_dictionary - OK
+TileNeighbour                              0   0    INFO Reading file  /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/TileSuperCellNeighbour.txt
+AtlasDetectorID                            0   0    INFO initialize_from_dictionary - OK
+CaloIdMgrDetDescrCnv                       0   0    INFO  Finished 
+CaloIdMgrDetDescrCnv                       0   0    INFO Initializing CaloIdMgr from values in CaloIdMgrDetDescrCnv 
+Domain[ROOT_All]                           0   0    INFO ->  Access   DbDatabase   READ      [ROOT_All] 8667C6F2-1559-DE11-A611-000423D9A21A
+Domain[ROOT_All]                           0   0    INFO                           /cvmfs/atlas-condb.cern.ch/repo/conditions/cond08/cond08_mc.000003.gen.COND/cond08_mc.000003.gen.COND._0064.pool.root
+RootDatabase.open                          0   0    INFO /cvmfs/atlas-condb.cern.ch/repo/conditions/cond08/cond08_mc.000003.gen.COND/cond08_mc.000003.gen.COND._0064.pool.root File version:52200
+AthenaHiveEventLoopMgr                     0   0    INFO   ===>>>  start processing event #18124, run #363899 on slot 0,  0 events processed so far  <<<===
+AthenaHiveEventLoopMgr                     1   1    INFO   ===>>>  start processing event #18125, run #363899 on slot 1,  0 events processed so far  <<<===
+AthenaHiveEventLoopMgr                     2   2    INFO   ===>>>  start processing event #18126, run #363899 on slot 2,  0 events processed so far  <<<===
+AthenaHiveEventLoopMgr                     3   3    INFO   ===>>>  start processing event #18127, run #363899 on slot 3,  0 events processed so far  <<<===
+ClassIDSvc                                 0   0    INFO  getRegistryEntries: read 470 CLIDRegistry entries for module ALL
+ClassIDSvc                                 1   1    INFO  getRegistryEntries: read 1795 CLIDRegistry entries for module ALL
+ClassIDSvc                                 1   1    INFO  getRegistryEntries: read 91 CLIDRegistry entries for module ALL
+ToolSvc.TileROD_Decoder.TileL2Builder      1   1    INFO TileL2Builder initialization completed
+ToolSvc.TileMuRcvContByteStreamTool        1   1    INFO Initializing TileMuRcvContByteStreamTool
+AthenaHiveEventLoopMgr                     1   1    INFO   ===>>>  done processing event #18125, run #363899 on slot 1,  1 events processed so far  <<<===
+AthenaHiveEventLoopMgr                     0   0    INFO   ===>>>  done processing event #18124, run #363899 on slot 0,  2 events processed so far  <<<===
+AthenaHiveEventLoopMgr                     4   0    INFO   ===>>>  start processing event #18128, run #363899 on slot 0,  2 events processed so far  <<<===
+AthenaHiveEventLoopMgr                     5   1    INFO   ===>>>  start processing event #18129, run #363899 on slot 1,  2 events processed so far  <<<===
+AthenaHiveEventLoopMgr                     2   2    INFO   ===>>>  done processing event #18126, run #363899 on slot 2,  3 events processed so far  <<<===
+AthenaHiveEventLoopMgr                     3   3    INFO   ===>>>  done processing event #18127, run #363899 on slot 3,  4 events processed so far  <<<===
+AthenaHiveEventLoopMgr                     6   2    INFO   ===>>>  start processing event #18130, run #363899 on slot 2,  4 events processed so far  <<<===
+AthenaHiveEventLoopMgr                     7   3    INFO   ===>>>  start processing event #18131, run #363899 on slot 3,  4 events processed so far  <<<===
+AthenaHiveEventLoopMgr                     4   0    INFO   ===>>>  done processing event #18128, run #363899 on slot 0,  5 events processed so far  <<<===
+AthenaHiveEventLoopMgr                     5   1    INFO   ===>>>  done processing event #18129, run #363899 on slot 1,  6 events processed so far  <<<===
+AthenaHiveEventLoopMgr                     8   0    INFO   ===>>>  start processing event #18132, run #363899 on slot 0,  6 events processed so far  <<<===
+AthenaHiveEventLoopMgr                     9   1    INFO   ===>>>  start processing event #18133, run #363899 on slot 1,  6 events processed so far  <<<===
+AthenaHiveEventLoopMgr                     6   2    INFO   ===>>>  done processing event #18130, run #363899 on slot 2,  7 events processed so far  <<<===
+AthenaHiveEventLoopMgr                     7   3    INFO   ===>>>  done processing event #18131, run #363899 on slot 3,  8 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    10   2    INFO   ===>>>  start processing event #18134, run #363899 on slot 2,  8 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    11   3    INFO   ===>>>  start processing event #18135, run #363899 on slot 3,  8 events processed so far  <<<===
+AthenaHiveEventLoopMgr                     8   0    INFO   ===>>>  done processing event #18132, run #363899 on slot 0,  9 events processed so far  <<<===
+AthenaHiveEventLoopMgr                     9   1    INFO   ===>>>  done processing event #18133, run #363899 on slot 1,  10 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    12   0    INFO   ===>>>  start processing event #18136, run #363899 on slot 0,  10 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    13   1    INFO   ===>>>  start processing event #18137, run #363899 on slot 1,  10 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    10   2    INFO   ===>>>  done processing event #18134, run #363899 on slot 2,  11 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    11   3    INFO   ===>>>  done processing event #18135, run #363899 on slot 3,  12 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    14   2    INFO   ===>>>  start processing event #18138, run #363899 on slot 2,  12 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    15   3    INFO   ===>>>  start processing event #18139, run #363899 on slot 3,  12 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    12   0    INFO   ===>>>  done processing event #18136, run #363899 on slot 0,  13 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    13   1    INFO   ===>>>  done processing event #18137, run #363899 on slot 1,  14 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    16   0    INFO   ===>>>  start processing event #18140, run #363899 on slot 0,  14 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    17   1    INFO   ===>>>  start processing event #18141, run #363899 on slot 1,  14 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    14   2    INFO   ===>>>  done processing event #18138, run #363899 on slot 2,  15 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    15   3    INFO   ===>>>  done processing event #18139, run #363899 on slot 3,  16 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    18   2    INFO   ===>>>  start processing event #18142, run #363899 on slot 2,  16 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    19   3    INFO   ===>>>  start processing event #18143, run #363899 on slot 3,  16 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    16   0    INFO   ===>>>  done processing event #18140, run #363899 on slot 0,  17 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    17   1    INFO   ===>>>  done processing event #18141, run #363899 on slot 1,  18 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    20   0    INFO   ===>>>  start processing event #18144, run #363899 on slot 0,  18 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    21   1    INFO   ===>>>  start processing event #18145, run #363899 on slot 1,  18 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    18   2    INFO   ===>>>  done processing event #18142, run #363899 on slot 2,  19 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    19   3    INFO   ===>>>  done processing event #18143, run #363899 on slot 3,  20 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    22   2    INFO   ===>>>  start processing event #18146, run #363899 on slot 2,  20 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    23   3    INFO   ===>>>  start processing event #18147, run #363899 on slot 3,  20 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    20   0    INFO   ===>>>  done processing event #18144, run #363899 on slot 0,  21 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    21   1    INFO   ===>>>  done processing event #18145, run #363899 on slot 1,  22 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    24   0    INFO   ===>>>  start processing event #18148, run #363899 on slot 0,  22 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    25   1    INFO   ===>>>  start processing event #18149, run #363899 on slot 1,  22 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    22   2    INFO   ===>>>  done processing event #18146, run #363899 on slot 2,  23 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    23   3    INFO   ===>>>  done processing event #18147, run #363899 on slot 3,  24 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    26   2    INFO   ===>>>  start processing event #18150, run #363899 on slot 2,  24 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    27   3    INFO   ===>>>  start processing event #18151, run #363899 on slot 3,  24 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    24   0    INFO   ===>>>  done processing event #18148, run #363899 on slot 0,  25 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    25   1    INFO   ===>>>  done processing event #18149, run #363899 on slot 1,  26 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    28   0    INFO   ===>>>  start processing event #18152, run #363899 on slot 0,  26 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    29   1    INFO   ===>>>  start processing event #18153, run #363899 on slot 1,  26 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    26   2    INFO   ===>>>  done processing event #18150, run #363899 on slot 2,  27 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    27   3    INFO   ===>>>  done processing event #18151, run #363899 on slot 3,  28 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    30   2    INFO   ===>>>  start processing event #18154, run #363899 on slot 2,  28 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    31   3    INFO   ===>>>  start processing event #18155, run #363899 on slot 3,  28 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    28   0    INFO   ===>>>  done processing event #18152, run #363899 on slot 0,  29 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    29   1    INFO   ===>>>  done processing event #18153, run #363899 on slot 1,  30 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    32   0    INFO   ===>>>  start processing event #18156, run #363899 on slot 0,  30 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    33   1    INFO   ===>>>  start processing event #18157, run #363899 on slot 1,  30 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    30   2    INFO   ===>>>  done processing event #18154, run #363899 on slot 2,  31 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    31   3    INFO   ===>>>  done processing event #18155, run #363899 on slot 3,  32 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    34   2    INFO   ===>>>  start processing event #18158, run #363899 on slot 2,  32 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    35   3    INFO   ===>>>  start processing event #18159, run #363899 on slot 3,  32 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    32   0    INFO   ===>>>  done processing event #18156, run #363899 on slot 0,  33 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    33   1    INFO   ===>>>  done processing event #18157, run #363899 on slot 1,  34 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    36   0    INFO   ===>>>  start processing event #18160, run #363899 on slot 0,  34 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    37   1    INFO   ===>>>  start processing event #18161, run #363899 on slot 1,  34 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    34   2    INFO   ===>>>  done processing event #18158, run #363899 on slot 2,  35 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    35   3    INFO   ===>>>  done processing event #18159, run #363899 on slot 3,  36 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    38   2    INFO   ===>>>  start processing event #18162, run #363899 on slot 2,  36 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    39   3    INFO   ===>>>  start processing event #18163, run #363899 on slot 3,  36 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    36   0    INFO   ===>>>  done processing event #18160, run #363899 on slot 0,  37 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    37   1    INFO   ===>>>  done processing event #18161, run #363899 on slot 1,  38 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    40   0    INFO   ===>>>  start processing event #18164, run #363899 on slot 0,  38 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    41   1    INFO   ===>>>  start processing event #18165, run #363899 on slot 1,  38 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    38   2    INFO   ===>>>  done processing event #18162, run #363899 on slot 2,  39 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    39   3    INFO   ===>>>  done processing event #18163, run #363899 on slot 3,  40 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    42   2    INFO   ===>>>  start processing event #18166, run #363899 on slot 2,  40 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    43   3    INFO   ===>>>  start processing event #18167, run #363899 on slot 3,  40 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    40   0    INFO   ===>>>  done processing event #18164, run #363899 on slot 0,  41 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    41   1    INFO   ===>>>  done processing event #18165, run #363899 on slot 1,  42 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    44   0    INFO   ===>>>  start processing event #18168, run #363899 on slot 0,  42 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    45   1    INFO   ===>>>  start processing event #18169, run #363899 on slot 1,  42 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    42   2    INFO   ===>>>  done processing event #18166, run #363899 on slot 2,  43 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    43   3    INFO   ===>>>  done processing event #18167, run #363899 on slot 3,  44 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    46   2    INFO   ===>>>  start processing event #18170, run #363899 on slot 2,  44 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    47   3    INFO   ===>>>  start processing event #18171, run #363899 on slot 3,  44 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    44   0    INFO   ===>>>  done processing event #18168, run #363899 on slot 0,  45 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    45   1    INFO   ===>>>  done processing event #18169, run #363899 on slot 1,  46 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    48   0    INFO   ===>>>  start processing event #18172, run #363899 on slot 0,  46 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    49   1    INFO   ===>>>  start processing event #18173, run #363899 on slot 1,  46 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    46   2    INFO   ===>>>  done processing event #18170, run #363899 on slot 2,  47 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    47   3    INFO   ===>>>  done processing event #18171, run #363899 on slot 3,  48 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    50   2    INFO   ===>>>  start processing event #18174, run #363899 on slot 2,  48 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    51   3    INFO   ===>>>  start processing event #18175, run #363899 on slot 3,  48 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    48   0    INFO   ===>>>  done processing event #18172, run #363899 on slot 0,  49 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    49   1    INFO   ===>>>  done processing event #18173, run #363899 on slot 1,  50 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    52   0    INFO   ===>>>  start processing event #18176, run #363899 on slot 0,  50 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    53   1    INFO   ===>>>  start processing event #18177, run #363899 on slot 1,  50 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    50   2    INFO   ===>>>  done processing event #18174, run #363899 on slot 2,  51 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    51   3    INFO   ===>>>  done processing event #18175, run #363899 on slot 3,  52 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    54   2    INFO   ===>>>  start processing event #18178, run #363899 on slot 2,  52 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    55   3    INFO   ===>>>  start processing event #18179, run #363899 on slot 3,  52 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    52   0    INFO   ===>>>  done processing event #18176, run #363899 on slot 0,  53 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    53   1    INFO   ===>>>  done processing event #18177, run #363899 on slot 1,  54 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    56   0    INFO   ===>>>  start processing event #18180, run #363899 on slot 0,  54 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    57   1    INFO   ===>>>  start processing event #18181, run #363899 on slot 1,  54 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    54   2    INFO   ===>>>  done processing event #18178, run #363899 on slot 2,  55 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    55   3    INFO   ===>>>  done processing event #18179, run #363899 on slot 3,  56 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    58   2    INFO   ===>>>  start processing event #18182, run #363899 on slot 2,  56 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    59   3    INFO   ===>>>  start processing event #18183, run #363899 on slot 3,  56 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    56   0    INFO   ===>>>  done processing event #18180, run #363899 on slot 0,  57 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    57   1    INFO   ===>>>  done processing event #18181, run #363899 on slot 1,  58 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    60   0    INFO   ===>>>  start processing event #18184, run #363899 on slot 0,  58 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    61   1    INFO   ===>>>  start processing event #18185, run #363899 on slot 1,  58 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    58   2    INFO   ===>>>  done processing event #18182, run #363899 on slot 2,  59 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    59   3    INFO   ===>>>  done processing event #18183, run #363899 on slot 3,  60 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    62   2    INFO   ===>>>  start processing event #18186, run #363899 on slot 2,  60 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    63   3    INFO   ===>>>  start processing event #18187, run #363899 on slot 3,  60 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    60   0    INFO   ===>>>  done processing event #18184, run #363899 on slot 0,  61 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    61   1    INFO   ===>>>  done processing event #18185, run #363899 on slot 1,  62 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    64   0    INFO   ===>>>  start processing event #18188, run #363899 on slot 0,  62 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    65   1    INFO   ===>>>  start processing event #18189, run #363899 on slot 1,  62 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    62   2    INFO   ===>>>  done processing event #18186, run #363899 on slot 2,  63 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    63   3    INFO   ===>>>  done processing event #18187, run #363899 on slot 3,  64 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    66   2    INFO   ===>>>  start processing event #18190, run #363899 on slot 2,  64 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    67   3    INFO   ===>>>  start processing event #18191, run #363899 on slot 3,  64 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    64   0    INFO   ===>>>  done processing event #18188, run #363899 on slot 0,  65 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    65   1    INFO   ===>>>  done processing event #18189, run #363899 on slot 1,  66 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    68   0    INFO   ===>>>  start processing event #18192, run #363899 on slot 0,  66 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    69   1    INFO   ===>>>  start processing event #18193, run #363899 on slot 1,  66 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    66   2    INFO   ===>>>  done processing event #18190, run #363899 on slot 2,  67 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    67   3    INFO   ===>>>  done processing event #18191, run #363899 on slot 3,  68 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    70   2    INFO   ===>>>  start processing event #18194, run #363899 on slot 2,  68 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    71   3    INFO   ===>>>  start processing event #18195, run #363899 on slot 3,  68 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    68   0    INFO   ===>>>  done processing event #18192, run #363899 on slot 0,  69 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    69   1    INFO   ===>>>  done processing event #18193, run #363899 on slot 1,  70 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    72   0    INFO   ===>>>  start processing event #18196, run #363899 on slot 0,  70 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    73   1    INFO   ===>>>  start processing event #18197, run #363899 on slot 1,  70 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    70   2    INFO   ===>>>  done processing event #18194, run #363899 on slot 2,  71 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    71   3    INFO   ===>>>  done processing event #18195, run #363899 on slot 3,  72 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    74   2    INFO   ===>>>  start processing event #18198, run #363899 on slot 2,  72 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    75   3    INFO   ===>>>  start processing event #18199, run #363899 on slot 3,  72 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    72   0    INFO   ===>>>  done processing event #18196, run #363899 on slot 0,  73 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    73   1    INFO   ===>>>  done processing event #18197, run #363899 on slot 1,  74 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    76   0    INFO   ===>>>  start processing event #18200, run #363899 on slot 0,  74 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    77   1    INFO   ===>>>  start processing event #18201, run #363899 on slot 1,  74 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    74   2    INFO   ===>>>  done processing event #18198, run #363899 on slot 2,  75 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    75   3    INFO   ===>>>  done processing event #18199, run #363899 on slot 3,  76 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    78   2    INFO   ===>>>  start processing event #18202, run #363899 on slot 2,  76 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    79   3    INFO   ===>>>  start processing event #18203, run #363899 on slot 3,  76 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    76   0    INFO   ===>>>  done processing event #18200, run #363899 on slot 0,  77 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    77   1    INFO   ===>>>  done processing event #18201, run #363899 on slot 1,  78 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    80   0    INFO   ===>>>  start processing event #18204, run #363899 on slot 0,  78 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    81   1    INFO   ===>>>  start processing event #18205, run #363899 on slot 1,  78 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    78   2    INFO   ===>>>  done processing event #18202, run #363899 on slot 2,  79 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    79   3    INFO   ===>>>  done processing event #18203, run #363899 on slot 3,  80 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    82   2    INFO   ===>>>  start processing event #18206, run #363899 on slot 2,  80 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    83   3    INFO   ===>>>  start processing event #18207, run #363899 on slot 3,  80 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    80   0    INFO   ===>>>  done processing event #18204, run #363899 on slot 0,  81 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    81   1    INFO   ===>>>  done processing event #18205, run #363899 on slot 1,  82 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    84   0    INFO   ===>>>  start processing event #18208, run #363899 on slot 0,  82 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    85   1    INFO   ===>>>  start processing event #18209, run #363899 on slot 1,  82 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    82   2    INFO   ===>>>  done processing event #18206, run #363899 on slot 2,  83 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    83   3    INFO   ===>>>  done processing event #18207, run #363899 on slot 3,  84 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    86   2    INFO   ===>>>  start processing event #18210, run #363899 on slot 2,  84 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    87   3    INFO   ===>>>  start processing event #18211, run #363899 on slot 3,  84 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    84   0    INFO   ===>>>  done processing event #18208, run #363899 on slot 0,  85 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    85   1    INFO   ===>>>  done processing event #18209, run #363899 on slot 1,  86 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    88   0    INFO   ===>>>  start processing event #18212, run #363899 on slot 0,  86 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    89   1    INFO   ===>>>  start processing event #18213, run #363899 on slot 1,  86 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    86   2    INFO   ===>>>  done processing event #18210, run #363899 on slot 2,  87 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    87   3    INFO   ===>>>  done processing event #18211, run #363899 on slot 3,  88 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    90   2    INFO   ===>>>  start processing event #18214, run #363899 on slot 2,  88 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    91   3    INFO   ===>>>  start processing event #18215, run #363899 on slot 3,  88 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    88   0    INFO   ===>>>  done processing event #18212, run #363899 on slot 0,  89 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    89   1    INFO   ===>>>  done processing event #18213, run #363899 on slot 1,  90 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    92   0    INFO   ===>>>  start processing event #18216, run #363899 on slot 0,  90 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    93   1    INFO   ===>>>  start processing event #18217, run #363899 on slot 1,  90 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    90   2    INFO   ===>>>  done processing event #18214, run #363899 on slot 2,  91 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    91   3    INFO   ===>>>  done processing event #18215, run #363899 on slot 3,  92 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    94   2    INFO   ===>>>  start processing event #18218, run #363899 on slot 2,  92 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    95   3    INFO   ===>>>  start processing event #18219, run #363899 on slot 3,  92 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    92   0    INFO   ===>>>  done processing event #18216, run #363899 on slot 0,  93 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    93   1    INFO   ===>>>  done processing event #18217, run #363899 on slot 1,  94 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    96   0    INFO   ===>>>  start processing event #18220, run #363899 on slot 0,  94 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    97   1    INFO   ===>>>  start processing event #18221, run #363899 on slot 1,  94 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    94   2    INFO   ===>>>  done processing event #18218, run #363899 on slot 2,  95 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    95   3    INFO   ===>>>  done processing event #18219, run #363899 on slot 3,  96 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    98   2    INFO   ===>>>  start processing event #18222, run #363899 on slot 2,  96 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    99   3    INFO   ===>>>  start processing event #18223, run #363899 on slot 3,  96 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    96   0    INFO   ===>>>  done processing event #18220, run #363899 on slot 0,  97 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    97   1    INFO   ===>>>  done processing event #18221, run #363899 on slot 1,  98 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    98   2    INFO   ===>>>  done processing event #18222, run #363899 on slot 2,  99 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    99   3    INFO   ===>>>  done processing event #18223, run #363899 on slot 3,  100 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    99   3    INFO ---> Loop Finished (seconds): 0.947698
+/cvmfs/atlas-condb.cern.ch/repo/condi...            INFO Database being retired...
+Domain[ROOT_All]                                    INFO ->  Deaccess DbDatabase   READ      [ROOT_All] 06C9EAE8-6F5B-E011-BAAA-003048F0E7AC
+/cvmfs/atlas-condb.cern.ch/repo/condi...            INFO Database being retired...
+Domain[ROOT_All]                                    INFO ->  Deaccess DbDatabase   READ      [ROOT_All] 8667C6F2-1559-DE11-A611-000423D9A21A
+Domain[ROOT_All]                                    INFO >   Deaccess DbDomain     READ      [ROOT_All] 
+ApplicationMgr                                      INFO Application Manager Stopped successfully
+IncidentProcAlg1                                    INFO Finalize
+SGInputLoader                                       INFO Finalizing SGInputLoader...
+Finalizer                                           INFO Finalizing Finalizer...
 Finalize: compared 10 dumps
-CondInputLoader                                    INFO Finalizing CondInputLoader...
-IncidentProcAlg2                                   INFO Finalize
-AvalancheSchedulerSvc                              INFO Joining Scheduler thread
-PyComponentMgr                                     INFO Finalizing PyComponentMgr...
-EventDataSvc                                       INFO Finalizing EventDataSvc - package version StoreGate-00-00-00
-IdDictDetDescrCnv                                  INFO in finalize
-IOVDbFolder                                        INFO Folder /LAR/Align (PoolRef) db-read 1/1 objs/chan/bytes 1/1/170 ((     0.74 ))s
-IOVDbFolder                                        INFO Folder /TILE/OFL02/CALIB/CES (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
-IOVDbFolder                                        INFO Folder /TILE/OFL02/CALIB/CIS/FIT/LIN (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
-IOVDbFolder                                        INFO Folder /TILE/OFL02/CALIB/CIS/FIT/NLN (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
-IOVDbFolder                                        INFO Folder /TILE/OFL02/CALIB/EMS (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
-IOVDbFolder                                        INFO Folder /TILE/OFL02/CALIB/LAS/FIBER (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
-IOVDbFolder                                        INFO Folder /TILE/OFL02/CALIB/LAS/LIN (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
-IOVDbFolder                                        INFO Folder /TILE/OFL02/CALIB/LAS/NLN (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
-IOVDbFolder                                        INFO Folder /TILE/OFL02/NOISE/SAMPLE (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
-IOVDbFolder                                        INFO Folder /TILE/OFL02/STATUS/ADC (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
-IOVDbFolder                                        INFO Folder /TILE/OFL02/TIME/CHANNELOFFSET/PHY (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
-IOVDbFolder                                        INFO Folder /TILE/ONL01/STATUS/ADC (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
-IOVDbFolder                                        INFO Folder /LAR/LArCellPositionShift (PoolRef) db-read 1/1 objs/chan/bytes 1/1/195 ((     0.40 ))s
-IOVDbSvc                                           INFO  bytes in ((      1.14 ))s
-IOVDbSvc                                           INFO Connection sqlite://;schema=mycool.db;dbname=OFLP200 : nConnect: 0 nFolders: 0 ReadTime: ((     0.00 ))s
-IOVDbSvc                                           INFO Connection COOLOFL_LAR/OFLP200 : nConnect: 2 nFolders: 2 ReadTime: ((     1.14 ))s
-IOVDbSvc                                           INFO Connection COOLOFL_TILE/OFLP200 : nConnect: 1 nFolders: 11 ReadTime: ((     0.00 ))s
-AthDictLoaderSvc                                   INFO in finalize...
-ToolSvc                                            INFO Removing all tools created by ToolSvc
-ToolSvc.ByteStreamMetadataTool                     INFO in finalize()
-ToolSvc.TileMuRcvContByteStreamTool                INFO Finalizing TileMuRcvContByteStreamTool successfuly
-ToolSvc.TileROD_Decoder.TileL2Builder              INFO Finalizing
-*****Chrono*****                                   INFO ****************************************************************************************************
-*****Chrono*****                                   INFO WARNING: MT job; statistics are unreliable
-*****Chrono*****                                   INFO  The Final CPU consumption ( Chrono ) Table (ordered)
-*****Chrono*****                                   INFO ****************************************************************************************************
-cObjR_ALL                                          INFO Time User   : Tot=  360 [ms] Ave/Min/Max=  180(+-  170)/   10/  350 [ms] #=  2
-cObj_ALL                                           INFO Time User   : Tot=  400 [ms] Ave/Min/Max=  200(+-  170)/   30/  370 [ms] #=  2
-ChronoStatSvc                                      INFO Time User   : Tot= 2.65  [s]                                             #=  1
-*****Chrono*****                                   INFO ****************************************************************************************************
-ChronoStatSvc.finalize()                           INFO  Service finalized successfully 
-ApplicationMgr                                     INFO Application Manager Finalized successfully
-ApplicationMgr                                     INFO Application Manager Terminated successfully
+CondInputLoader                                     INFO Finalizing CondInputLoader...
+IncidentProcAlg2                                    INFO Finalize
+AvalancheSchedulerSvc                               INFO Joining Scheduler thread
+PyComponentMgr                                      INFO Finalizing PyComponentMgr...
+EventDataSvc                                        INFO Finalizing EventDataSvc - package version StoreGate-00-00-00
+IdDictDetDescrCnv                                   INFO in finalize
+IOVDbFolder                                         INFO Folder /LAR/Align (PoolRef) db-read 1/1 objs/chan/bytes 1/1/170 ((     0.04 ))s
+IOVDbFolder                                         INFO Folder /TILE/OFL02/CALIB/CES (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
+IOVDbFolder                                         INFO Folder /TILE/OFL02/CALIB/CIS/FIT/LIN (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
+IOVDbFolder                                         INFO Folder /TILE/OFL02/CALIB/CIS/FIT/NLN (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
+IOVDbFolder                                         INFO Folder /TILE/OFL02/CALIB/EMS (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
+IOVDbFolder                                         INFO Folder /TILE/OFL02/CALIB/LAS/FIBER (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
+IOVDbFolder                                         INFO Folder /TILE/OFL02/CALIB/LAS/LIN (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
+IOVDbFolder                                         INFO Folder /TILE/OFL02/CALIB/LAS/NLN (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
+IOVDbFolder                                         INFO Folder /TILE/OFL02/NOISE/SAMPLE (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
+IOVDbFolder                                         INFO Folder /TILE/OFL02/STATUS/ADC (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
+IOVDbFolder                                         INFO Folder /TILE/OFL02/TIME/CHANNELOFFSET/PHY (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
+IOVDbFolder                                         INFO Folder /TILE/ONL01/STATUS/ADC (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
+IOVDbFolder                                         INFO Folder /LAR/LArCellPositionShift (PoolRef) db-read 1/1 objs/chan/bytes 1/1/195 ((     0.02 ))s
+IOVDbSvc                                            INFO  bytes in ((      0.06 ))s
+IOVDbSvc                                            INFO Connection sqlite://;schema=mycool.db;dbname=OFLP200 : nConnect: 0 nFolders: 0 ReadTime: ((     0.00 ))s
+IOVDbSvc                                            INFO Connection COOLOFL_LAR/OFLP200 : nConnect: 2 nFolders: 2 ReadTime: ((     0.06 ))s
+IOVDbSvc                                            INFO Connection COOLOFL_TILE/OFLP200 : nConnect: 1 nFolders: 11 ReadTime: ((     0.00 ))s
+AthDictLoaderSvc                                    INFO in finalize...
+ToolSvc                                             INFO Removing all tools created by ToolSvc
+ToolSvc.TileMuRcvContByteStreamTool                 INFO Finalizing TileMuRcvContByteStreamTool successfuly
+ToolSvc.TileROD_Decoder.TileL2Builder               INFO Finalizing
+ToolSvc.ByteStreamMetadataTool                      INFO in finalize()
+*****Chrono*****                                    INFO ****************************************************************************************************
+*****Chrono*****                                    INFO WARNING: MT job; statistics are unreliable
+*****Chrono*****                                    INFO  The Final CPU consumption ( Chrono ) Table (ordered)
+*****Chrono*****                                    INFO ****************************************************************************************************
+cObjR_ALL                                           INFO Time User   : Tot=  300 [ms] Ave/Min/Max=  150(+-  150)/    0/  300 [ms] #=  2
+cObj_ALL                                            INFO Time User   : Tot=  340 [ms] Ave/Min/Max=  170(+-  150)/   20/  320 [ms] #=  2
+ChronoStatSvc                                       INFO Time User   : Tot= 2.45  [s]                                             #=  1
+*****Chrono*****                                    INFO ****************************************************************************************************
+ChronoStatSvc.finalize()                            INFO  Service finalized successfully 
+ApplicationMgr                                      INFO Application Manager Finalized successfully
+ApplicationMgr                                      INFO Application Manager Terminated successfully
 Py:Athena            INFO leaving with code 0: "successful run"
diff --git a/TileCalorimeter/TileSvc/TileByteStream/share/TileRawChannelContByteStreamCnv_test.ref b/TileCalorimeter/TileSvc/TileByteStream/share/TileRawChannelContByteStreamCnv_test.ref
index 9f0a701fe1e..acf21f97661 100644
--- a/TileCalorimeter/TileSvc/TileByteStream/share/TileRawChannelContByteStreamCnv_test.ref
+++ b/TileCalorimeter/TileSvc/TileByteStream/share/TileRawChannelContByteStreamCnv_test.ref
@@ -1,16 +1,16 @@
-Wed Aug  7 22:10:19 CEST 2019
+Fri Nov 29 11:09:56 CET 2019
 Preloading tcmalloc_minimal.so
 Py:Athena            INFO including file "AthenaCommon/Preparation.py"
-Py:Athena            INFO using release [WorkDir-22.0.3] [x86_64-centos7-gcc8-opt] [test.TileRecUtils-20190807/f9360ea601f] -- built on [2019-08-07T2151]
+Py:Athena            INFO using release [WorkDir-22.0.9] [x86_64-centos7-gcc8-opt] [tilecal-12bit/82699bf159] -- built on [2019-11-29T1101]
 Py:Athena            INFO including file "AthenaCommon/Atlas.UnixStandardJob.py"
 Py:Athena            INFO executing ROOT6Setup
 Py:Athena            INFO including file "AthenaCommon/Execution.py"
 Py:Athena            INFO including file "TileByteStream/TileRawChannelContByteStreamCnv_test.py"
-SetGeometryVersion.py obtained major release version 22
+Py:Athena            INFO SetGeometryVersion.py obtained major release version 22
 Py:Athena            INFO including file "IdDictDetDescrCnv/IdDictDetDescrCnv_joboptions.py"
-Py:ConfigurableDb    INFO Read module info for 5518 configurables from 5 genConfDb files
+Py:ConfigurableDb    INFO Read module info for 5635 configurables from 11 genConfDb files
 Py:ConfigurableDb    INFO No duplicates have been found: that's good !
-EventInfoMgtInit: Got release version  Athena-22.0.3
+EventInfoMgtInit: Got release version  Athena-22.0.9
 Py:IOVDbSvc.CondDB    INFO Setting up conditions DB access to instance OFLP200
 Py:Athena            INFO including file "TileConditions/TileConditions_jobOptions.py"
 Py:TileInfoConf.     INFO Adding TileCablingSvc to ServiceMgr
@@ -22,20 +22,22 @@ Py:TileInfoConf.     INFO Changing default TileCondToolEmscale configuration to
 Py:TileInfoConf.     INFO Changing default TileCondToolNoiseSample configuration to COOL source
 Py:TileInfoConf.     INFO Changing default TileCondToolTiming configuration to COOL source
 Py:TileConditions_jobOptions.py    INFO Adjusting TileInfo to return cell noise for Opt.Filter without iterations
+Py:TileConditions_jobOptions.py    INFO Setting 10-bit ADC configuration
+Py:TileInfoConf.     INFO Setting 10-bit Tile ADC
 Py:Athena            INFO including file "AthenaCommon/runbatch.py"
 ApplicationMgr       INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0
 ApplicationMgr       INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0
 ApplicationMgr    SUCCESS 
 ====================================================================================================================================
-                                                   Welcome to ApplicationMgr (GaudiCoreSvc v32r0)
-                                          running on lxplus725.cern.ch on Wed Aug  7 22:10:33 2019
+                                                   Welcome to ApplicationMgr (GaudiCoreSvc v32r2)
+                                          running on pcpraha5 on Fri Nov 29 11:10:02 2019
 ====================================================================================================================================
 ApplicationMgr       INFO Application Manager Configured successfully
 ApplicationMgr       INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0
 StatusCodeSvc        INFO initialize
 AthDictLoaderSvc     INFO in initialize...
 AthDictLoaderSvc     INFO acquired Dso-registry
-ClassIDSvc           INFO  getRegistryEntries: read 7079 CLIDRegistry entries for module ALL
+ClassIDSvc           INFO  getRegistryEntries: read 7151 CLIDRegistry entries for module ALL
 CoreDumpSvc          INFO install f-a-t-a-l handler... (flag = -1)
 CoreDumpSvc          INFO Handling signals: 11(Segmentation fault) 7(Bus error) 4(Illegal instruction) 8(Floating point exception) 
 MetaDataSvc          INFO Initializing MetaDataSvc - package version AthenaServices-00-00-00
@@ -44,8 +46,8 @@ PoolSvc              INFO io_register[PoolSvc](xmlcatalog_file:PoolFileCatalog.x
 PoolSvc              INFO Set connectionsvc retry/timeout/IDLE timeout to  'ConnectionRetrialPeriod':300/ 'ConnectionRetrialTimeOut':3600/ 'ConnectionTimeOut':5 seconds with connection cleanup disabled
 PoolSvc              INFO Frontier compression level set to 5
 DBReplicaSvc         INFO Frontier server at (serverurl=http://atlasfrontier-local.cern.ch:8000/atlr)(serverurl=http://atlasfrontier-ai.cern.ch:8000/atlr)(serverurl=http://lcgft-atlas.gridpp.rl.ac.uk:3128/frontierATLAS)(serverurl=http://ccfrontier.in2p3.fr:23128/ccin2p3-AtlasFrontier)(proxyurl=http://ca-proxy.cern.ch:3128)(proxyurl=http://ca-proxy-meyrin.cern.ch:3128)(proxyurl=http://ca-proxy-wigner.cern.ch:3128)(proxyurl=http://atlasbpfrontier.cern.ch:3127)(proxyurl=http://atlasbpfrontier.fnal.gov:3127) will be considered for COOL data
-DBReplicaSvc         INFO Read replica configuration from /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-06T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/dbreplica.config
-DBReplicaSvc         INFO Total of 10 servers found for host lxplus725.cern.ch [ATLF ATLAS_COOLPROD atlas_dd ATLAS_CONFIG INT8R INTR ATONR_COOL ATONR_CONF DEVDB11 ATLF ]
+DBReplicaSvc         INFO Read replica configuration from /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/dbreplica.config
+DBReplicaSvc         INFO Total of 10 servers found for host pcpraha5.dyndns.cern.ch [ATLF ATLAS_COOLPROD atlas_dd ATLAS_CONFIG INT8R INTR ATONR_COOL ATONR_CONF DEVDB11 ATLF ]
 PoolSvc              INFO Successfully setup replica sorting algorithm
 PoolSvc              INFO Setting up APR FileCatalog and Streams
 PoolSvc           WARNING Unable to locate catalog for prfile:poolcond/PoolCat_oflcond.xml check your ATLAS_POOLCOND_PATH and DATAPATH variables
@@ -68,8 +70,8 @@ ByteStreamAddre...   INFO initialized
 ByteStreamAddre...   INFO -- Will fill Store with id =  0
 IOVDbSvc             INFO preLoadAddresses: Removing folder /TagInfo. It should only be in the file meta data and was not found.
 IOVDbSvc             INFO Opening COOL connection for COOLOFL_LAR/OFLP200
-ClassIDSvc           INFO  getRegistryEntries: read 3223 CLIDRegistry entries for module ALL
-ClassIDSvc           INFO  getRegistryEntries: read 831 CLIDRegistry entries for module ALL
+ClassIDSvc           INFO  getRegistryEntries: read 3291 CLIDRegistry entries for module ALL
+ClassIDSvc           INFO  getRegistryEntries: read 863 CLIDRegistry entries for module ALL
 IOVSvc               INFO No IOVSvcTool associated with store "StoreGateSvc"
 IOVSvc.IOVSvcTool    INFO IOVRanges will be checked at every Event
 IOVDbSvc             INFO Opening COOL connection for COOLOFL_TILE/OFLP200
@@ -88,7 +90,7 @@ IOVDbSvc             INFO Added taginfo remove for /TILE/OFL02/STATUS/ADC
 IOVDbSvc             INFO Added taginfo remove for /TILE/OFL02/TIME/CHANNELOFFSET/PHY
 IOVDbSvc             INFO Added taginfo remove for /TILE/ONL01/STATUS/ADC
 IOVDbSvc             INFO Added taginfo remove for /LAR/LArCellPositionShift
-ClassIDSvc           INFO  getRegistryEntries: read 17 CLIDRegistry entries for module ALL
+ClassIDSvc           INFO  getRegistryEntries: read 18 CLIDRegistry entries for module ALL
 DetDescrCnvSvc       INFO  initializing 
 DetDescrCnvSvc       INFO Found DetectorStore service
 DetDescrCnvSvc       INFO  filling proxies for detector managers 
@@ -123,8 +125,6 @@ DetDescrCnvSvc       INFO  filling address for MDTIDHELPER with CLID 4170 and st
 DetDescrCnvSvc       INFO  filling address for CSCIDHELPER with CLID 4171 and storage type 68 to detector store 
 DetDescrCnvSvc       INFO  filling address for RPCIDHELPER with CLID 4172 and storage type 68 to detector store 
 DetDescrCnvSvc       INFO  filling address for TGCIDHELPER with CLID 4173 and storage type 68 to detector store 
-DetDescrCnvSvc       INFO  filling address for STGCIDHELPER with CLID 4174 and storage type 68 to detector store 
-DetDescrCnvSvc       INFO  filling address for MMIDHELPER with CLID 4175 and storage type 68 to detector store 
 DetDescrCnvSvc       INFO  filling address for CaloLVL1_ID with CLID 108133391 and storage type 68 to detector store 
 DetDescrCnvSvc       INFO  filling address for CaloCell_ID with CLID 123500438 and storage type 68 to detector store 
 DetDescrCnvSvc       INFO  filling address for CaloCell_SuperCell_ID with CLID 128365736 and storage type 68 to detector store 
@@ -190,7 +190,7 @@ EMECConstruction     INFO multi-layered version of absorbers activated, paramete
 EMECConstruction     INFO activating LAr::EMEC::Neg::InnerWheel
 EMECConstruction     INFO activating LAr::EMEC::Neg::OuterWheel
 EndcapDMConstru...   INFO Start building EC electronics geometry
-GeoModelSvc          INFO GeoModelSvc.LArDetectorToolNV	 SZ= 25368Kb 	 Time = 0.55S
+GeoModelSvc          INFO GeoModelSvc.LArDetectorToolNV	 SZ= 25368Kb 	 Time = 0.51S
 GeoModelSvc.Til...   INFO  Entering TileDetectorTool::create()
 TileDddbManager      INFO m_tag = ATLAS-R2-2016-01-00-01
 TileDddbManager      INFO n_tiglob = 5
@@ -201,7 +201,7 @@ TileDddbManager      INFO n_tilb = 21
 TileDddbManager      INFO n_tileSwitches = 1
 CaloIDHelper_ID...   INFO in createObj: creating a TileID helper object in the detector store
 AtlasDetectorID      INFO initialize_from_dictionary - OK
-TileNeighbour        INFO Reading file  /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-06T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/TileNeighbour_reduced.txt
+TileNeighbour        INFO Reading file  /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/TileNeighbour_reduced.txt
 TileHWIDDetDesc...   INFO in createObj: creating a TileHWID helper object in the detector store
 TileHWID             INFO initialize_from_dictionary 
 AtlasDetectorID      INFO initialize_from_dictionary - OK
@@ -213,9 +213,9 @@ CaloIDHelper_ID...   INFO in createObj: creating a LArHEC_ID helper object in th
 AtlasDetectorID      INFO initialize_from_dictionary - OK
 CaloIDHelper_ID...   INFO in createObj: creating a LArFCAL_ID helper object in the detector store
 AtlasDetectorID      INFO initialize_from_dictionary - OK
-LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-06T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/FCal2DNeighbors-April2011.txt
-LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-06T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/FCal3DNeighborsNext-April2011.txt
-LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-06T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/FCal3DNeighborsPrev-April2011.txt
+LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/FCal2DNeighbors-April2011.txt
+LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/FCal3DNeighborsNext-April2011.txt
+LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/FCal3DNeighborsPrev-April2011.txt
 CaloIDHelper_ID...   INFO in createObj: creating a LArMiniFCAL_ID helper object in the detector store
 AtlasDetectorID      INFO initialize_from_dictionary - OK
 LArMiniFCAL_ID       INFO  initialize_from_dict - LArCalorimeter dictionary does NOT contain miniFCAL description. Unable to initialize LArMiniFCAL_ID.
@@ -250,7 +250,7 @@ GeoModelSvc.Til...   INFO  Global positioning of barrel with rotation (0,0,0)) a
 GeoModelSvc.Til...   INFO  Global positioning of positive ext.barrel with rotation (0,0,0)) and translation (0,0,0) Gaudi::Units::cm
 GeoModelSvc.Til...   INFO  Global positioning of negative ext.barrel with rotation (0,0,0)) and translation (0,0,1) Gaudi::Units::cm
 TileDetDescrMan...   INFO Entering create_elements()
-GeoModelSvc          INFO GeoModelSvc.TileDetectorTool	 SZ= 3576Kb 	 Time = 0.17S
+GeoModelSvc          INFO GeoModelSvc.TileDetectorTool	 SZ= 3576Kb 	 Time = 0.19S
 ClassIDSvc           INFO  getRegistryEntries: read 66 CLIDRegistry entries for module ALL
 TileInfoLoader       INFO Changing TTL1 calib from 4.1 to 6.9
 TileInfoLoader       INFO Changing TTL1 noise sigma from 2.5 to 2.8
@@ -305,7 +305,7 @@ TileEMScaleCond...   INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCond
 TileEMScaleCond...   INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OnlEms) for folder: "/TILE/OFL02/CALIB/EMS"
 TileSampleNoise...   INFO Creating TileCondProxyCool(TileSampleNoiseCondAlg.TileCondProxyCool_NoiseSample) for folder: "/TILE/OFL02/NOISE/SAMPLE"
 TileTimingCondA...   INFO Creating TileCondProxyCool(TileTimingCondAlg.TileCondProxyCool_AdcOffset) for folder: "/TILE/OFL02/TIME/CHANNELOFFSET/PHY"
-ClassIDSvc           INFO  getRegistryEntries: read 3927 CLIDRegistry entries for module ALL
+ClassIDSvc           INFO  getRegistryEntries: read 3915 CLIDRegistry entries for module ALL
 PyComponentMgr       INFO Initializing PyComponentMgr...
 Finalizer            INFO Initializing Finalizer...
 HistogramPersis...WARNING Histograms saving not required.
@@ -318,8 +318,8 @@ ROBDataProviderSvc   INFO  ---> Filter out Sub Detector ROBs by Status Code: # S
 EventSelector        INFO reinitialization...
 AthenaEventLoopMgr   INFO Setup EventSelector service EventSelector
 ApplicationMgr       INFO Application Manager Initialized successfully
-ByteStreamInputSvc   INFO Picked valid file: /cvmfs/atlas-nightlies.cern.ch/repo/data/data-art/Tier0ChainTests/data12_8TeV.00204073.physics_JetTauEtmiss.merge.RAW._lb0144._SFO-5._0001.1
 ClassIDSvc           INFO  getRegistryEntries: read 425 CLIDRegistry entries for module ALL
+ByteStreamInputSvc   INFO Picked valid file: /cvmfs/atlas-nightlies.cern.ch/repo/data/data-art/Tier0ChainTests/data12_8TeV.00204073.physics_JetTauEtmiss.merge.RAW._lb0144._SFO-5._0001.1
 CondInputLoader      INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/CALIB/CES'
 CondInputLoader      INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/CALIB/CIS/FIT/LIN'
 CondInputLoader      INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/CALIB/CIS/FIT/NLN'
@@ -348,7 +348,7 @@ Domain[ROOT_All]     INFO                           /cvmfs/atlas-condb.cern.ch/r
 RootDatabase.open    INFO /cvmfs/atlas-condb.cern.ch/repo/conditions/cond09/cond09_mc.000029.gen.COND/cond09_mc.000029.gen.COND._0002.pool.root File version:52200
 CaloMgrDetDescrCnv   INFO in createObj: creating a Calo Detector Manager object in the detector store
 CaloIdMgrDetDes...   INFO in createObj: creating a CaloDescrManager object in the detector store
-ClassIDSvc           INFO  getRegistryEntries: read 195 CLIDRegistry entries for module ALL
+ClassIDSvc           INFO  getRegistryEntries: read 198 CLIDRegistry entries for module ALL
 CaloIDHelper_ID...   INFO in createObj: creating a CaloDM_ID helper object in the detector store
 CaloDM_ID            INFO initialize_from_dictionary
 AtlasDetectorID      INFO initialize_from_dictionary - OK
@@ -362,12 +362,12 @@ CaloIDHelper_ID...   INFO in createObj: creating a LArHEC_SuperCell_ID helper ob
 AtlasDetectorID      INFO initialize_from_dictionary - OK
 CaloIDHelper_ID...   INFO in createObj: creating a LArFCAL_SuperCell_ID helper object in the detector store
 AtlasDetectorID      INFO initialize_from_dictionary - OK
-LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-06T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/FCalSuperCells2DNeighborsNew-April2014.txt
-LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-06T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/FCalSuperCells3DNeighborsNextNew-April2014.txt
-LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-06T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/FCalSuperCells3DNeighborsPrevNew-April2014.txt
+LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/FCalSuperCells2DNeighborsNew-April2014.txt
+LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/FCalSuperCells3DNeighborsNextNew-April2014.txt
+LArFCAL_Base_ID      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/FCalSuperCells3DNeighborsPrevNew-April2014.txt
 CaloIDHelper_ID...   INFO in createObj: creating a Tile_SuperCell_ID helper object in the detector store
 AtlasDetectorID      INFO initialize_from_dictionary - OK
-TileNeighbour        INFO Reading file  /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-06T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/TileSuperCellNeighbour.txt
+TileNeighbour        INFO Reading file  /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/TileSuperCellNeighbour.txt
 AtlasDetectorID      INFO initialize_from_dictionary - OK
 CaloIdMgrDetDes...   INFO  Finished 
 CaloIdMgrDetDes...   INFO Initializing CaloIdMgr from values in CaloIdMgrDetDescrCnv 
@@ -398,8 +398,8 @@ TileBadChannels...   INFO TileBchStatus::isNoGainL1() is defined by: ADC dead; N
 TileBadChannels...   INFO TileBchStatus::isBadTiming() is defined by: Bad timing; Online bad timing; 
 TileBadChannels...   INFO TileBchStatus::isWrongBCID() is defined by: Wrong BCID; Online wrong BCID; 
 TileBadChannels...   INFO No drawer trips probabilities found in DB
-ClassIDSvc           INFO  getRegistryEntries: read 2448 CLIDRegistry entries for module ALL
-ClassIDSvc           INFO  getRegistryEntries: read 90 CLIDRegistry entries for module ALL
+ClassIDSvc           INFO  getRegistryEntries: read 2265 CLIDRegistry entries for module ALL
+ClassIDSvc           INFO  getRegistryEntries: read 91 CLIDRegistry entries for module ALL
 ToolSvc.TileROD...   INFO TileL2Builder initialization completed
 ToolSvc.TileRaw...   INFO Initializing TileRawChannelContByteStreamTool
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #1129572, run #204073 1 events processed so far  <<<===
@@ -614,54 +614,54 @@ Finalize: compared 20 dumps
 IncidentProcAlg2     INFO Finalize
 PyComponentMgr       INFO Finalizing PyComponentMgr...
 IdDictDetDescrCnv    INFO in finalize
-IOVDbFolder          INFO Folder /LAR/Align (PoolRef) db-read 1/1 objs/chan/bytes 1/1/170 ((     0.86 ))s
-IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/CES (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/103344 ((     2.26 ))s
-IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/CIS/FIT/LIN (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/80 ((     0.72 ))s
-IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/CIS/FIT/NLN (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/80 ((     0.72 ))s
-IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/EMS (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/92 ((     0.60 ))s
-IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/LAS/FIBER (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/940 ((     0.63 ))s
-IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/LAS/LIN (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/72 ((     0.59 ))s
-IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/LAS/NLN (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/76 ((     0.66 ))s
-IOVDbFolder          INFO Folder /TILE/OFL02/NOISE/SAMPLE (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/641504 ((     0.82 ))s
+IOVDbFolder          INFO Folder /LAR/Align (PoolRef) db-read 1/1 objs/chan/bytes 1/1/170 ((     0.05 ))s
+IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/CES (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/103344 ((     0.05 ))s
+IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/CIS/FIT/LIN (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/80 ((     0.04 ))s
+IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/CIS/FIT/NLN (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/80 ((     0.03 ))s
+IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/EMS (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/92 ((     0.03 ))s
+IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/LAS/FIBER (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/940 ((     0.03 ))s
+IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/LAS/LIN (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/72 ((     0.04 ))s
+IOVDbFolder          INFO Folder /TILE/OFL02/CALIB/LAS/NLN (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/76 ((     0.03 ))s
+IOVDbFolder          INFO Folder /TILE/OFL02/NOISE/SAMPLE (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/641504 ((     0.05 ))s
 IOVDbFolder          INFO Folder /TILE/OFL02/STATUS/ADC (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/93060 ((     0.03 ))s
 IOVDbFolder          INFO Folder /TILE/OFL02/TIME/CHANNELOFFSET/PHY (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/96 ((     0.03 ))s
-IOVDbFolder          INFO Folder /TILE/ONL01/STATUS/ADC (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/76 ((     0.00 ))s
-IOVDbFolder          INFO Folder /LAR/LArCellPositionShift (PoolRef) db-read 1/1 objs/chan/bytes 1/1/195 ((     0.51 ))s
-IOVDbSvc             INFO  bytes in ((      8.43 ))s
+IOVDbFolder          INFO Folder /TILE/ONL01/STATUS/ADC (AttrListColl) db-read 1/1 objs/chan/bytes 277/277/76 ((     0.01 ))s
+IOVDbFolder          INFO Folder /LAR/LArCellPositionShift (PoolRef) db-read 1/1 objs/chan/bytes 1/1/195 ((     0.03 ))s
+IOVDbSvc             INFO  bytes in ((      0.46 ))s
 IOVDbSvc             INFO Connection sqlite://;schema=mycool.db;dbname=OFLP200 : nConnect: 0 nFolders: 0 ReadTime: ((     0.00 ))s
-IOVDbSvc             INFO Connection COOLOFL_LAR/OFLP200 : nConnect: 2 nFolders: 2 ReadTime: ((     1.37 ))s
-IOVDbSvc             INFO Connection COOLOFL_TILE/OFLP200 : nConnect: 2 nFolders: 11 ReadTime: ((     7.06 ))s
+IOVDbSvc             INFO Connection COOLOFL_LAR/OFLP200 : nConnect: 2 nFolders: 2 ReadTime: ((     0.07 ))s
+IOVDbSvc             INFO Connection COOLOFL_TILE/OFLP200 : nConnect: 2 nFolders: 11 ReadTime: ((     0.39 ))s
 AthDictLoaderSvc     INFO in finalize...
 ToolSvc              INFO Removing all tools created by ToolSvc
-ToolSvc.ByteStr...   INFO in finalize()
 ToolSvc.TileRaw...   INFO Finalizing TileRawChannelContByteStreamTool successfuly
 ToolSvc.TileROD...   INFO Finalizing
+ToolSvc.ByteStr...   INFO in finalize()
 *****Chrono*****     INFO ****************************************************************************************************
 *****Chrono*****     INFO  The Final CPU consumption ( Chrono ) Table (ordered)
 *****Chrono*****     INFO ****************************************************************************************************
-cObjR_ALL            INFO Time User   : Tot=  340 [ms] Ave/Min/Max=  170(+-  160)/   10/  330 [ms] #=  2
-cObj_ALL             INFO Time User   : Tot=  370 [ms] Ave/Min/Max= 28.5(+- 90.3)/    0/  340 [ms] #= 13
-ChronoStatSvc        INFO Time User   : Tot= 11.6  [s]                                             #=  1
+cObjR_ALL            INFO Time User   : Tot=  290 [ms] Ave/Min/Max=  145(+-  145)/    0/  290 [ms] #=  2
+cObj_ALL             INFO Time User   : Tot=  320 [ms] Ave/Min/Max= 24.6(+- 79.7)/    0/  300 [ms] #= 13
+ChronoStatSvc        INFO Time User   : Tot= 9.95  [s]                                             #=  1
 *****Chrono*****     INFO ****************************************************************************************************
 ChronoStatSvc.f...   INFO  Service finalized successfully 
 ApplicationMgr       INFO Application Manager Finalized successfully
 ApplicationMgr       INFO Application Manager Terminated successfully
 Py:Athena            INFO leaving with code 0: "successful run"
-Wed Aug  7 22:11:09 CEST 2019
+Fri Nov 29 11:10:15 CET 2019
 Preloading tcmalloc_minimal.so
 Py:Athena            INFO including file "AthenaCommon/Preparation.py"
-Py:Athena            INFO using release [WorkDir-22.0.3] [x86_64-centos7-gcc8-opt] [test.TileRecUtils-20190807/f9360ea601f] -- built on [2019-08-07T2151]
+Py:Athena            INFO using release [WorkDir-22.0.9] [x86_64-centos7-gcc8-opt] [tilecal-12bit/82699bf159] -- built on [2019-11-29T1101]
 Py:Athena            INFO including file "AthenaCommon/Atlas.UnixStandardJob.py"
 Py:Athena            INFO executing ROOT6Setup
 Py:Athena            INFO configuring AthenaHive with [4] concurrent threads and [4] concurrent events
 Py:AlgScheduler      INFO setting up AvalancheSchedulerSvc/AvalancheSchedulerSvc with 4 threads
 Py:Athena            INFO including file "AthenaCommon/Execution.py"
 Py:Athena            INFO including file "TileByteStream/TileRawChannelContByteStreamCnv_test.py"
-SetGeometryVersion.py obtained major release version 22
+Py:Athena            INFO SetGeometryVersion.py obtained major release version 22
 Py:Athena            INFO including file "IdDictDetDescrCnv/IdDictDetDescrCnv_joboptions.py"
-Py:ConfigurableDb    INFO Read module info for 5518 configurables from 5 genConfDb files
+Py:ConfigurableDb    INFO Read module info for 5635 configurables from 11 genConfDb files
 Py:ConfigurableDb    INFO No duplicates have been found: that's good !
-EventInfoMgtInit: Got release version  Athena-22.0.3
+EventInfoMgtInit: Got release version  Athena-22.0.9
 Py:IOVDbSvc.CondDB    INFO Setting up conditions DB access to instance OFLP200
 Py:Athena            INFO including file "TileConditions/TileConditions_jobOptions.py"
 Py:TileInfoConf.     INFO Adding TileCablingSvc to ServiceMgr
@@ -673,251 +673,251 @@ Py:TileInfoConf.     INFO Changing default TileCondToolEmscale configuration to
 Py:TileInfoConf.     INFO Changing default TileCondToolNoiseSample configuration to COOL source
 Py:TileInfoConf.     INFO Changing default TileCondToolTiming configuration to COOL source
 Py:TileConditions_jobOptions.py    INFO Adjusting TileInfo to return cell noise for Opt.Filter without iterations
+Py:TileConditions_jobOptions.py    INFO Setting 10-bit ADC configuration
+Py:TileInfoConf.     INFO Setting 10-bit Tile ADC
 Py:Athena            INFO including file "AthenaCommon/runbatch.py"
 ApplicationMgr       INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0
 ApplicationMgr       INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0
 MessageSvc           INFO Activating in a separate thread
 ApplicationMgr    SUCCESS 
 ====================================================================================================================================
-                                                   Welcome to ApplicationMgr (GaudiCoreSvc v32r0)
-                                          running on lxplus725.cern.ch on Wed Aug  7 22:11:20 2019
+                                                   Welcome to ApplicationMgr (GaudiCoreSvc v32r2)
+                                          running on pcpraha5 on Fri Nov 29 11:10:21 2019
 ====================================================================================================================================
 ApplicationMgr       INFO Application Manager Configured successfully
-ApplicationMgr                                     INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0
-AthDictLoaderSvc                                   INFO in initialize...
-AthDictLoaderSvc                                   INFO acquired Dso-registry
-ClassIDSvc                                         INFO  getRegistryEntries: read 7717 CLIDRegistry entries for module ALL
-CoreDumpSvc                                        INFO install f-a-t-a-l handler... (flag = -1)
-CoreDumpSvc                                        INFO Handling signals: 11(Segmentation fault) 7(Bus error) 4(Illegal instruction) 8(Floating point exception) 
-MetaDataSvc                                        INFO Initializing MetaDataSvc - package version AthenaServices-00-00-00
-AthenaPoolCnvSvc                                   INFO Initializing AthenaPoolCnvSvc - package version AthenaPoolCnvSvc-00-00-00
-PoolSvc                                            INFO io_register[PoolSvc](xmlcatalog_file:PoolFileCatalog.xml) [ok]
-PoolSvc                                            INFO Set connectionsvc retry/timeout/IDLE timeout to  'ConnectionRetrialPeriod':300/ 'ConnectionRetrialTimeOut':3600/ 'ConnectionTimeOut':5 seconds with connection cleanup disabled
-PoolSvc                                            INFO Frontier compression level set to 5
-DBReplicaSvc                                       INFO Frontier server at (serverurl=http://atlasfrontier-local.cern.ch:8000/atlr)(serverurl=http://atlasfrontier-ai.cern.ch:8000/atlr)(serverurl=http://lcgft-atlas.gridpp.rl.ac.uk:3128/frontierATLAS)(serverurl=http://ccfrontier.in2p3.fr:23128/ccin2p3-AtlasFrontier)(proxyurl=http://ca-proxy.cern.ch:3128)(proxyurl=http://ca-proxy-meyrin.cern.ch:3128)(proxyurl=http://ca-proxy-wigner.cern.ch:3128)(proxyurl=http://atlasbpfrontier.cern.ch:3127)(proxyurl=http://atlasbpfrontier.fnal.gov:3127) will be considered for COOL data
-DBReplicaSvc                                       INFO Read replica configuration from /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-06T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/dbreplica.config
-DBReplicaSvc                                       INFO Total of 10 servers found for host lxplus725.cern.ch [ATLF ATLAS_COOLPROD atlas_dd ATLAS_CONFIG INT8R INTR ATONR_COOL ATONR_CONF DEVDB11 ATLF ]
-PoolSvc                                            INFO Successfully setup replica sorting algorithm
-PoolSvc                                            INFO Setting up APR FileCatalog and Streams
-PoolSvc                                         WARNING Unable to locate catalog for prfile:poolcond/PoolCat_oflcond.xml check your ATLAS_POOLCOND_PATH and DATAPATH variables
-PoolSvc                                         WARNING Unable to locate catalog for apcfile:poolcond/PoolCat_oflcond.xml check your ATLAS_POOLCOND_PATH and DATAPATH variables
-PoolSvc                                            INFO Resolved path (via ATLAS_POOLCOND_PATH) is /cvmfs/atlas-condb.cern.ch/repo/conditions/poolcond/PoolFileCatalog.xml
-PoolSvc                                            INFO POOL WriteCatalog is xmlcatalog_file:PoolFileCatalog.xml
-DbSession                                          INFO     Open     DbSession    
-Domain[ROOT_All]                                   INFO >   Access   DbDomain     READ      [ROOT_All] 
-ToolSvc.ByteStreamMetadataTool                     INFO Initializing ToolSvc.ByteStreamMetadataTool - package version ByteStreamCnvSvc-00-00-00
-MetaDataSvc                                        INFO Found MetaDataTools = PublicToolHandleArray(['IOVDbMetaDataTool','ByteStreamMetadataTool'])
-IOVDbSvc                                           INFO Opened read transaction for POOL PersistencySvc
-IOVDbSvc                                           INFO Only 5 POOL conditions files will be open at once
-IOVDbSvc                                           INFO Cache alignment will be done in 3 slices
-IOVDbSvc                                           INFO Global tag: OFLCOND-RUN12-SDR-35 set from joboptions
-IOVDbFolder                                        INFO Read from meta data only for folder /TagInfo
-IOVDbSvc                                           INFO Initialised with 3 connections and 14 folders
-IOVDbSvc                                           INFO Service IOVDbSvc initialised successfully
-ByteStreamAddressProviderSvc                       INFO Initializing ByteStreamAddressProviderSvc - package version ByteStreamCnvSvcBase-00-00-00
-ByteStreamAddressProviderSvc                       INFO initialized 
-ByteStreamAddressProviderSvc                       INFO -- Will fill Store with id =  0
-IOVDbSvc                                           INFO preLoadAddresses: Removing folder /TagInfo. It should only be in the file meta data and was not found.
-IOVDbSvc                                           INFO Opening COOL connection for COOLOFL_LAR/OFLP200
-ClassIDSvc                                         INFO  getRegistryEntries: read 3223 CLIDRegistry entries for module ALL
-ClassIDSvc                                         INFO  getRegistryEntries: read 769 CLIDRegistry entries for module ALL
-IOVSvc                                             INFO No IOVSvcTool associated with store "StoreGateSvc"
-IOVSvc.IOVSvcTool                                  INFO IOVRanges will be checked at every Event
-IOVDbSvc                                           INFO Opening COOL connection for COOLOFL_TILE/OFLP200
-IOVDbSvc                                           INFO Disconnecting from COOLOFL_LAR/OFLP200
-IOVDbSvc                                           INFO Disconnecting from COOLOFL_TILE/OFLP200
-IOVDbSvc                                           INFO Added taginfo remove for /LAR/Align
-IOVDbSvc                                           INFO Added taginfo remove for /TILE/OFL02/CALIB/CES
-IOVDbSvc                                           INFO Added taginfo remove for /TILE/OFL02/CALIB/CIS/FIT/LIN
-IOVDbSvc                                           INFO Added taginfo remove for /TILE/OFL02/CALIB/CIS/FIT/NLN
-IOVDbSvc                                           INFO Added taginfo remove for /TILE/OFL02/CALIB/EMS
-IOVDbSvc                                           INFO Added taginfo remove for /TILE/OFL02/CALIB/LAS/FIBER
-IOVDbSvc                                           INFO Added taginfo remove for /TILE/OFL02/CALIB/LAS/LIN
-IOVDbSvc                                           INFO Added taginfo remove for /TILE/OFL02/CALIB/LAS/NLN
-IOVDbSvc                                           INFO Added taginfo remove for /TILE/OFL02/NOISE/SAMPLE
-IOVDbSvc                                           INFO Added taginfo remove for /TILE/OFL02/STATUS/ADC
-IOVDbSvc                                           INFO Added taginfo remove for /TILE/OFL02/TIME/CHANNELOFFSET/PHY
-IOVDbSvc                                           INFO Added taginfo remove for /TILE/ONL01/STATUS/ADC
-IOVDbSvc                                           INFO Added taginfo remove for /LAR/LArCellPositionShift
-ClassIDSvc                                         INFO  getRegistryEntries: read 17 CLIDRegistry entries for module ALL
-DetDescrCnvSvc                                     INFO  initializing 
-DetDescrCnvSvc                                     INFO Found DetectorStore service
-DetDescrCnvSvc                                     INFO  filling proxies for detector managers 
-DetDescrCnvSvc                                     INFO  filling address for CaloTTMgr with CLID 117659265 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for CaloMgr with CLID 4548337 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for CaloSuperCellMgr with CLID 241807251 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for CaloIdManager with CLID 125856940 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for LArIdManager with CLID 79554919 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for IdDict with CLID 2411 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for AtlasID with CLID 164875623 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for PixelID with CLID 2516 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for SCT_ID with CLID 2517 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for TRT_ID with CLID 2518 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for SiliconID with CLID 129452393 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for LArEM_ID with CLID 163583365 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for LArEM_SuperCell_ID with CLID 99488227 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for LArHEC_ID with CLID 3870484 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for LArHEC_SuperCell_ID with CLID 254277678 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for LArFCAL_ID with CLID 45738051 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for LArFCAL_SuperCell_ID with CLID 12829437 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for LArMiniFCAL_ID with CLID 79264204 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for LArOnlineID with CLID 158698068 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for TTOnlineID with CLID 38321944 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for LArOnline_SuperCellID with CLID 115600394 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for LArHVLineID with CLID 27863673 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for LArElectrodeID with CLID 80757351 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for TileID with CLID 2901 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for Tile_SuperCell_ID with CLID 49557789 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for TileHWID with CLID 2902 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for TileTBID with CLID 2903 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for MDTIDHELPER with CLID 4170 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for CSCIDHELPER with CLID 4171 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for RPCIDHELPER with CLID 4172 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for TGCIDHELPER with CLID 4173 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for STGCIDHELPER with CLID 4174 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for MMIDHELPER with CLID 4175 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for CaloLVL1_ID with CLID 108133391 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for CaloCell_ID with CLID 123500438 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for CaloCell_SuperCell_ID with CLID 128365736 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for CaloDM_ID with CLID 167756483 and storage type 68 to detector store 
-DetDescrCnvSvc                                     INFO  filling address for ZdcID with CLID 190591643 and storage type 68 to detector store 
-GeoModelSvc::RDBMaterialManager                 WARNING  Getting PixTBMatComponents with default tag
-GeoModelSvc::RDBMaterialManager                 WARNING  Getting PixTBMaterials with default tag
-GeoModelSvc::RDBMaterialManager                 WARNING  Getting InDetMatComponents with default tag
-GeoModelSvc::RDBMaterialManager                 WARNING  Getting InDetMaterials with default tag
-EventPersistencySvc                                INFO Added successfully Conversion service:DetDescrCnvSvc
-LArElectrodeIDDetDescrCnv                          INFO in createObj: creating a LArElectrodeID helper object in the detector store
-IdDictDetDescrCnv                                  INFO in initialize
-IdDictDetDescrCnv                                  INFO in createObj: creating a IdDictManager object in the detector store
-IdDictDetDescrCnv                                  INFO IdDictName:  IdDictParser/ATLAS_IDS.xml
-IdDictDetDescrCnv                                  INFO Reading InnerDetector    IdDict file InDetIdDictFiles/IdDictInnerDetector_IBL3D25-03.xml
-IdDictDetDescrCnv                                  INFO Reading LArCalorimeter   IdDict file IdDictParser/IdDictLArCalorimeter_DC3-05-Comm-01.xml
-IdDictDetDescrCnv                                  INFO Reading TileCalorimeter  IdDict file IdDictParser/IdDictTileCalorimeter.xml
-IdDictDetDescrCnv                                  INFO Reading Calorimeter      IdDict file IdDictParser/IdDictCalorimeter_L1Onl.xml
-IdDictDetDescrCnv                                  INFO Reading MuonSpectrometer IdDict file IdDictParser/IdDictMuonSpectrometer_R.03.xml
-IdDictDetDescrCnv                                  INFO Reading ForwardDetectors IdDict file IdDictParser/IdDictForwardDetectors_2010.xml
-IdDictDetDescrCnv                                  INFO Found id dicts:
-IdDictDetDescrCnv                                  INFO Using dictionary tag: null
-IdDictDetDescrCnv                                  INFO Dictionary ATLAS                version default              DetDescr tag (using default) file 
-IdDictDetDescrCnv                                  INFO Dictionary Calorimeter          version default              DetDescr tag CaloIdentifier-LVL1-02 file IdDictParser/IdDictCalorimeter_L1Onl.xml
-IdDictDetDescrCnv                                  INFO Dictionary ForwardDetectors     version default              DetDescr tag ForDetIdentifier-01       file IdDictParser/IdDictForwardDetectors_2010.xml
-IdDictDetDescrCnv                                  INFO Dictionary InnerDetector        version IBL-DBM              DetDescr tag InDetIdentifier-IBL3D25-02 file InDetIdDictFiles/IdDictInnerDetector_IBL3D25-03.xml
-IdDictDetDescrCnv                                  INFO Dictionary LArCalorimeter       version fullAtlas            DetDescr tag LArIdentifier-DC3-05-Comm file IdDictParser/IdDictLArCalorimeter_DC3-05-Comm-01.xml
-IdDictDetDescrCnv                                  INFO Dictionary LArElectrode         version fullAtlas            DetDescr tag (using default) file 
-IdDictDetDescrCnv                                  INFO Dictionary LArHighVoltage       version fullAtlas            DetDescr tag (using default) file 
-IdDictDetDescrCnv                                  INFO Dictionary MuonSpectrometer     version R.03                 DetDescr tag MuonIdentifier-08         file IdDictParser/IdDictMuonSpectrometer_R.03.xml
-IdDictDetDescrCnv                                  INFO Dictionary TileCalorimeter      version fullAtlasAndTestBeam DetDescr tag TileIdentifier-00         file IdDictParser/IdDictTileCalorimeter.xml
-LArElectrodeID                                     INFO  => initialize_from_dictionary()
-AtlasDetectorID                                    INFO initialize_from_dictionary - OK
-AtlasDetectorID                                    INFO initialize_from_dictionary - OK
-LArHVLineIDDetDescrCnv                             INFO in createObj: creating a LArHVLineID helper object in the detector store
-LArHVLineID                                        INFO  => initialize_from_dictionary()
-AtlasDetectorID                                    INFO initialize_from_dictionary - OK
-AtlasDetectorID                                    INFO initialize_from_dictionary - OK
-LArHVLineID                                        INFO  => initialize_from_dictionary(dict_mgr) =0
-LArHVLineID                                        INFO Register_dict_tag of LArHighVoltage is OK
-LArHVLineID                                        INFO setDictVersion of LArHighVoltage is OK
-LArHVLineID                                        INFO [initLevelsFromDict] m_dict OK ... 
-LArHVLineID                                        INFO [initialize_from_dictionary] >  HV line range -> 11/1/48:79/0:15 | 11/1/148:179/0:15 | 11/1/80:93/0:7 | 11/1/180:193/0:7 | 11/1/200:231/0:15 | 11/1/232:263/0:15 | 11/1/296,297,306,307/0:15 | 11/1/299,304,305,308,309/0:15 | 11/1/264:279/0:15 | 11/1/280:295/0:15 | 11/1/0:47/0:15 | 11/1/320:322/0:15 | 11/1/100:147/0:15 | 11/1/324,325/0:15 | 11/1/312:315/0:15 | 11/1/316:319/0:15 | 11/1/300:303/0:15 | 11/1/310,311/0:15 | 11/1/323/0:15 | 11/1/326,327/0:15 | 11/1/94:99/0:15 | 11/1/194:199/0:15
-LArHVLineID                                        INFO [init_hashes()] > Hvline_size= 5008
-GeoModelSvc.LArDetectorToolNV                      INFO Keys for LAr are ATLAS-R2-2016-01-00-01  ATLAS
-GeoModelSvc.LArDetectorToolNV                      INFO Building LAr version LAr-Revised-17-01 while ATLAS version is ATLAS-R2-2016-01-00-01
-GeoModelSvc.LArDetectorToolNV                      INFO LAr Geometry Options:
-GeoModelSvc.LArDetectorToolNV                      INFO   Sagging           = false
-GeoModelSvc.LArDetectorToolNV                      INFO   Barrel            = ON
-GeoModelSvc.LArDetectorToolNV                      INFO   Endcap            = ON
-BarrelConstruction                                 INFO Getting primary numbers for ATLAS, ATLAS-R2-2016-01-00-01
-BarrelConstruction                                 INFO   Makes detailed absorber sandwich  ? 1 1
-BarrelConstruction                                 INFO   Use sagging in geometry  ? 0
-EMECConstruction                                   INFO multi-layered version of absorbers activated, parameter value is 1
-EMECConstruction                                   INFO activating LAr::EMEC::Pos::InnerWheel
-EMECConstruction                                   INFO activating LAr::EMEC::Pos::OuterWheel
-ClassIDSvc                                         INFO  getRegistryEntries: read 2901 CLIDRegistry entries for module ALL
-CaloIDHelper_IDDetDescrCnv                         INFO in createObj: creating a TileTBID helper object in the detector store
-TileTBID                                           INFO initialize_from_dictionary 
-AtlasDetectorID                                    INFO initialize_from_dictionary - OK
-EndcapDMConstruction                               INFO Start building EC electronics geometry
-EMECConstruction                                   INFO multi-layered version of absorbers activated, parameter value is 1
-EMECConstruction                                   INFO activating LAr::EMEC::Neg::InnerWheel
-EMECConstruction                                   INFO activating LAr::EMEC::Neg::OuterWheel
-EndcapDMConstruction                               INFO Start building EC electronics geometry
-GeoModelSvc                                        INFO GeoModelSvc.LArDetectorToolNV	 SZ= 25368Kb 	 Time = 0.55S
-GeoModelSvc.TileDetectorTool                       INFO  Entering TileDetectorTool::create()
-TileDddbManager                                    INFO m_tag = ATLAS-R2-2016-01-00-01
-TileDddbManager                                    INFO n_tiglob = 5
-TileDddbManager                                    INFO n_timod = 320
-TileDddbManager                                    INFO n_cuts = 9
-TileDddbManager                                    INFO n_saddle = 1
-TileDddbManager                                    INFO n_tilb = 21
-TileDddbManager                                    INFO n_tileSwitches = 1
-CaloIDHelper_IDDetDescrCnv                         INFO in createObj: creating a TileID helper object in the detector store
-AtlasDetectorID                                    INFO initialize_from_dictionary - OK
-TileNeighbour                                      INFO Reading file  /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-06T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/TileNeighbour_reduced.txt
-TileHWIDDetDescrCnv                                INFO in createObj: creating a TileHWID helper object in the detector store
-TileHWID                                           INFO initialize_from_dictionary 
-AtlasDetectorID                                    INFO initialize_from_dictionary - OK
-ClassIDSvc                                         INFO  getRegistryEntries: read 55 CLIDRegistry entries for module ALL
-CaloIDHelper_IDDetDescrCnv                         INFO in createObj: creating a CaloCell_ID helper object in the detector store
-CaloIDHelper_IDDetDescrCnv                         INFO in createObj: creating a LArEM_ID helper object in the detector store
-AtlasDetectorID                                    INFO initialize_from_dictionary - OK
-CaloIDHelper_IDDetDescrCnv                         INFO in createObj: creating a LArHEC_ID helper object in the detector store
-AtlasDetectorID                                    INFO initialize_from_dictionary - OK
-CaloIDHelper_IDDetDescrCnv                         INFO in createObj: creating a LArFCAL_ID helper object in the detector store
-AtlasDetectorID                                    INFO initialize_from_dictionary - OK
-LArFCAL_Base_ID                                    INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-06T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/FCal2DNeighbors-April2011.txt
-LArFCAL_Base_ID                                    INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-06T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/FCal3DNeighborsNext-April2011.txt
-LArFCAL_Base_ID                                    INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-06T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/FCal3DNeighborsPrev-April2011.txt
-CaloIDHelper_IDDetDescrCnv                         INFO in createObj: creating a LArMiniFCAL_ID helper object in the detector store
-AtlasDetectorID                                    INFO initialize_from_dictionary - OK
-LArMiniFCAL_ID                                     INFO  initialize_from_dict - LArCalorimeter dictionary does NOT contain miniFCAL description. Unable to initialize LArMiniFCAL_ID.
-AtlasDetectorID                                    INFO initialize_from_dictionary - OK
-GeoModelSvc.TileDetectorTool                       INFO  U-shape parameter from database is: 1
-GeoModelSvc.TileDetectorTool                       INFO  Glue parameter from database is: 1
-GeoModelSvc.TileDetectorTool                       INFO  Cs Tube parameter from database is: 0
-GeoModelSvc.TileDetectorTool                       INFO  Entering TileAtlasFactory::create()
-GeoModelSvc.TileDetectorTool                       INFO  Tile Geometry with Saddle supports, starting from TileCal-CSC-02 xxx
-GeoModelSvc.TileDetectorTool                       INFO  => New BFingerLengthPos 430.5
-GeoModelSvc.TileDetectorTool                       INFO  => New BFingerLengthNeg 420.5
-GeoModelSvc.TileDetectorTool                       INFO  Positioning barrel with translation 0
-GeoModelSvc.TileDetectorTool                       INFO  Positioning positive barrel finger with translation 3035.25
-GeoModelSvc.TileDetectorTool                       INFO  Positioning negative barrel finger with translation -3030.25
-GeoModelSvc.TileDetectorTool                       INFO  Positioning positive ext.barrel with translation 4854.75
-GeoModelSvc.TileDetectorTool                       INFO  Positioning positive ext.barrel finger with translation ztrans= 6338.5
-GeoModelSvc.TileDetectorTool                       INFO  Positioning positive ext.barrel saddle with translation ztrans= 6192.5
-GeoModelSvc.TileDetectorTool                       INFO  Positive ITC envelope parameters: PLUG1  Rmin= 3438.85 Rmax= 4250 dzITC1= 154.5
-GeoModelSvc.TileDetectorTool                       INFO                                    PLUG2  Rmin= 2981 Rmax= 3440 dzITC2= 47.425
-GeoModelSvc.TileDetectorTool                       INFO  Positioning positive ITC with translation 3405
-GeoModelSvc.TileDetectorTool                       INFO  Positioning positive Gap with translation 3552
-GeoModelSvc.TileDetectorTool                       INFO  Positioning positive Crack with translation 3536
-GeoModelSvc.TileDetectorTool                       INFO  Positioning negative ext.barrel with translation ztrans -4854.75
-GeoModelSvc.TileDetectorTool                       INFO  Positioning negative ext.barrel finger with translation ztrans= -6338.5
-GeoModelSvc.TileDetectorTool                       INFO  Positioning negative ext.barrel saddle with translation ztrans= -6192.5
-GeoModelSvc.TileDetectorTool                       INFO  Negative ITC envelope parameters: PLUG1  Rmin= 3438.85 Rmax= 4250 dzITC1= 154.5
-GeoModelSvc.TileDetectorTool                       INFO                                    PLUG2  Rmin= 2981 Rmax= 3440 dzITC2= 47.425
-GeoModelSvc.TileDetectorTool                       INFO  Positioning negative ITC with translation -3405
-GeoModelSvc.TileDetectorTool                       INFO  Positioning negative Gap with translation -3552
-GeoModelSvc.TileDetectorTool                       INFO  Positioning negative Crack with translation -3536
-GeoModelSvc.TileDetectorTool                       INFO  Global positioning of barrel with rotation (0,0,0)) and translation (0,0,0) Gaudi::Units::cm
-GeoModelSvc.TileDetectorTool                       INFO  Global positioning of positive ext.barrel with rotation (0,0,0)) and translation (0,0,0) Gaudi::Units::cm
-GeoModelSvc.TileDetectorTool                       INFO  Global positioning of negative ext.barrel with rotation (0,0,0)) and translation (0,0,1) Gaudi::Units::cm
-TileDetDescrManager                                INFO Entering create_elements()
-GeoModelSvc                                        INFO GeoModelSvc.TileDetectorTool	 SZ= 2552Kb 	 Time = 0.16S
-ClassIDSvc                                         INFO  getRegistryEntries: read 66 CLIDRegistry entries for module ALL
-TileInfoLoader                                     INFO Changing TTL1 calib from 4.1 to 6.9
-TileInfoLoader                                     INFO Changing TTL1 noise sigma from 2.5 to 2.8
-CaloIDHelper_IDDetDescrCnv                         INFO in createObj: creating a CaloLVL1_ID helper object in the detector store
-CaloLVL1_ID                                        INFO initialize_from_dictionary
-AtlasDetectorID                                    INFO initialize_from_dictionary - OK
-TileCablingSvc                                     INFO RUN2 ATLAS geometry flag detected for geometry: ATLAS-R2-2016-01-00-01
-TileCablingSvc                                     INFO Cabling for RUN2 (2014-2017) ATLAS geometry is set via jobOptions 
-TileCablingSvc                                     INFO Setting Cabling type to 4
-AthenaHiveEventLoopMgr                             INFO Initializing AthenaHiveEventLoopMgr - package version AthenaServices-00-00-00
-ClassIDSvc                                  0      INFO  getRegistryEntries: read 4192 CLIDRegistry entries for module ALL
-PyComponentMgr                              0      INFO Initializing PyComponentMgr...
-Finalizer                                   0      INFO Initializing Finalizer...
-ClassIDSvc                                  0      INFO  getRegistryEntries: read 53 CLIDRegistry entries for module ALL
-CondInputLoader                             0      INFO Initializing CondInputLoader...
-CondInputLoader                             0      INFO Adding base classes:
+ApplicationMgr                                      INFO Updating Gaudi::PluginService::SetDebug(level) to level= 'PluginDebugLevel':0
+AthDictLoaderSvc                                    INFO in initialize...
+AthDictLoaderSvc                                    INFO acquired Dso-registry
+ClassIDSvc                                          INFO  getRegistryEntries: read 7790 CLIDRegistry entries for module ALL
+CoreDumpSvc                                         INFO install f-a-t-a-l handler... (flag = -1)
+CoreDumpSvc                                         INFO Handling signals: 11(Segmentation fault) 7(Bus error) 4(Illegal instruction) 8(Floating point exception) 
+MetaDataSvc                                         INFO Initializing MetaDataSvc - package version AthenaServices-00-00-00
+AthenaPoolCnvSvc                                    INFO Initializing AthenaPoolCnvSvc - package version AthenaPoolCnvSvc-00-00-00
+PoolSvc                                             INFO io_register[PoolSvc](xmlcatalog_file:PoolFileCatalog.xml) [ok]
+PoolSvc                                             INFO Set connectionsvc retry/timeout/IDLE timeout to  'ConnectionRetrialPeriod':300/ 'ConnectionRetrialTimeOut':3600/ 'ConnectionTimeOut':5 seconds with connection cleanup disabled
+PoolSvc                                             INFO Frontier compression level set to 5
+DBReplicaSvc                                        INFO Frontier server at (serverurl=http://atlasfrontier-local.cern.ch:8000/atlr)(serverurl=http://atlasfrontier-ai.cern.ch:8000/atlr)(serverurl=http://lcgft-atlas.gridpp.rl.ac.uk:3128/frontierATLAS)(serverurl=http://ccfrontier.in2p3.fr:23128/ccin2p3-AtlasFrontier)(proxyurl=http://ca-proxy.cern.ch:3128)(proxyurl=http://ca-proxy-meyrin.cern.ch:3128)(proxyurl=http://ca-proxy-wigner.cern.ch:3128)(proxyurl=http://atlasbpfrontier.cern.ch:3127)(proxyurl=http://atlasbpfrontier.fnal.gov:3127) will be considered for COOL data
+DBReplicaSvc                                        INFO Read replica configuration from /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/dbreplica.config
+DBReplicaSvc                                        INFO Total of 10 servers found for host pcpraha5.dyndns.cern.ch [ATLF ATLAS_COOLPROD atlas_dd ATLAS_CONFIG INT8R INTR ATONR_COOL ATONR_CONF DEVDB11 ATLF ]
+PoolSvc                                             INFO Successfully setup replica sorting algorithm
+PoolSvc                                             INFO Setting up APR FileCatalog and Streams
+PoolSvc                                          WARNING Unable to locate catalog for prfile:poolcond/PoolCat_oflcond.xml check your ATLAS_POOLCOND_PATH and DATAPATH variables
+PoolSvc                                          WARNING Unable to locate catalog for apcfile:poolcond/PoolCat_oflcond.xml check your ATLAS_POOLCOND_PATH and DATAPATH variables
+PoolSvc                                             INFO Resolved path (via ATLAS_POOLCOND_PATH) is /cvmfs/atlas-condb.cern.ch/repo/conditions/poolcond/PoolFileCatalog.xml
+PoolSvc                                             INFO POOL WriteCatalog is xmlcatalog_file:PoolFileCatalog.xml
+DbSession                                           INFO     Open     DbSession    
+Domain[ROOT_All]                                    INFO >   Access   DbDomain     READ      [ROOT_All] 
+ToolSvc.ByteStreamMetadataTool                      INFO Initializing ToolSvc.ByteStreamMetadataTool - package version ByteStreamCnvSvc-00-00-00
+MetaDataSvc                                         INFO Found MetaDataTools = PublicToolHandleArray(['IOVDbMetaDataTool','ByteStreamMetadataTool'])
+IOVDbSvc                                            INFO Opened read transaction for POOL PersistencySvc
+IOVDbSvc                                            INFO Only 5 POOL conditions files will be open at once
+IOVDbSvc                                            INFO Cache alignment will be done in 3 slices
+IOVDbSvc                                            INFO Global tag: OFLCOND-RUN12-SDR-35 set from joboptions
+IOVDbFolder                                         INFO Read from meta data only for folder /TagInfo
+IOVDbSvc                                            INFO Initialised with 3 connections and 14 folders
+IOVDbSvc                                            INFO Service IOVDbSvc initialised successfully
+ByteStreamAddressProviderSvc                        INFO Initializing ByteStreamAddressProviderSvc - package version ByteStreamCnvSvcBase-00-00-00
+ByteStreamAddressProviderSvc                        INFO initialized 
+ByteStreamAddressProviderSvc                        INFO -- Will fill Store with id =  0
+IOVDbSvc                                            INFO preLoadAddresses: Removing folder /TagInfo. It should only be in the file meta data and was not found.
+IOVDbSvc                                            INFO Opening COOL connection for COOLOFL_LAR/OFLP200
+ClassIDSvc                                          INFO  getRegistryEntries: read 3291 CLIDRegistry entries for module ALL
+ClassIDSvc                                          INFO  getRegistryEntries: read 800 CLIDRegistry entries for module ALL
+IOVSvc                                              INFO No IOVSvcTool associated with store "StoreGateSvc"
+IOVSvc.IOVSvcTool                                   INFO IOVRanges will be checked at every Event
+IOVDbSvc                                            INFO Opening COOL connection for COOLOFL_TILE/OFLP200
+IOVDbSvc                                            INFO Disconnecting from COOLOFL_LAR/OFLP200
+IOVDbSvc                                            INFO Disconnecting from COOLOFL_TILE/OFLP200
+IOVDbSvc                                            INFO Added taginfo remove for /LAR/Align
+IOVDbSvc                                            INFO Added taginfo remove for /TILE/OFL02/CALIB/CES
+IOVDbSvc                                            INFO Added taginfo remove for /TILE/OFL02/CALIB/CIS/FIT/LIN
+IOVDbSvc                                            INFO Added taginfo remove for /TILE/OFL02/CALIB/CIS/FIT/NLN
+IOVDbSvc                                            INFO Added taginfo remove for /TILE/OFL02/CALIB/EMS
+IOVDbSvc                                            INFO Added taginfo remove for /TILE/OFL02/CALIB/LAS/FIBER
+IOVDbSvc                                            INFO Added taginfo remove for /TILE/OFL02/CALIB/LAS/LIN
+IOVDbSvc                                            INFO Added taginfo remove for /TILE/OFL02/CALIB/LAS/NLN
+IOVDbSvc                                            INFO Added taginfo remove for /TILE/OFL02/NOISE/SAMPLE
+IOVDbSvc                                            INFO Added taginfo remove for /TILE/OFL02/STATUS/ADC
+IOVDbSvc                                            INFO Added taginfo remove for /TILE/OFL02/TIME/CHANNELOFFSET/PHY
+IOVDbSvc                                            INFO Added taginfo remove for /TILE/ONL01/STATUS/ADC
+IOVDbSvc                                            INFO Added taginfo remove for /LAR/LArCellPositionShift
+ClassIDSvc                                          INFO  getRegistryEntries: read 18 CLIDRegistry entries for module ALL
+DetDescrCnvSvc                                      INFO  initializing 
+DetDescrCnvSvc                                      INFO Found DetectorStore service
+DetDescrCnvSvc                                      INFO  filling proxies for detector managers 
+DetDescrCnvSvc                                      INFO  filling address for CaloTTMgr with CLID 117659265 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for CaloMgr with CLID 4548337 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for CaloSuperCellMgr with CLID 241807251 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for CaloIdManager with CLID 125856940 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for LArIdManager with CLID 79554919 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for IdDict with CLID 2411 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for AtlasID with CLID 164875623 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for PixelID with CLID 2516 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for SCT_ID with CLID 2517 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for TRT_ID with CLID 2518 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for SiliconID with CLID 129452393 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for LArEM_ID with CLID 163583365 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for LArEM_SuperCell_ID with CLID 99488227 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for LArHEC_ID with CLID 3870484 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for LArHEC_SuperCell_ID with CLID 254277678 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for LArFCAL_ID with CLID 45738051 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for LArFCAL_SuperCell_ID with CLID 12829437 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for LArMiniFCAL_ID with CLID 79264204 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for LArOnlineID with CLID 158698068 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for TTOnlineID with CLID 38321944 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for LArOnline_SuperCellID with CLID 115600394 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for LArHVLineID with CLID 27863673 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for LArElectrodeID with CLID 80757351 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for TileID with CLID 2901 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for Tile_SuperCell_ID with CLID 49557789 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for TileHWID with CLID 2902 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for TileTBID with CLID 2903 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for MDTIDHELPER with CLID 4170 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for CSCIDHELPER with CLID 4171 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for RPCIDHELPER with CLID 4172 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for TGCIDHELPER with CLID 4173 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for CaloLVL1_ID with CLID 108133391 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for CaloCell_ID with CLID 123500438 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for CaloCell_SuperCell_ID with CLID 128365736 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for CaloDM_ID with CLID 167756483 and storage type 68 to detector store 
+DetDescrCnvSvc                                      INFO  filling address for ZdcID with CLID 190591643 and storage type 68 to detector store 
+GeoModelSvc::RDBMaterialManager                  WARNING  Getting PixTBMatComponents with default tag
+GeoModelSvc::RDBMaterialManager                  WARNING  Getting PixTBMaterials with default tag
+GeoModelSvc::RDBMaterialManager                  WARNING  Getting InDetMatComponents with default tag
+GeoModelSvc::RDBMaterialManager                  WARNING  Getting InDetMaterials with default tag
+EventPersistencySvc                                 INFO Added successfully Conversion service:DetDescrCnvSvc
+LArElectrodeIDDetDescrCnv                           INFO in createObj: creating a LArElectrodeID helper object in the detector store
+IdDictDetDescrCnv                                   INFO in initialize
+IdDictDetDescrCnv                                   INFO in createObj: creating a IdDictManager object in the detector store
+IdDictDetDescrCnv                                   INFO IdDictName:  IdDictParser/ATLAS_IDS.xml
+IdDictDetDescrCnv                                   INFO Reading InnerDetector    IdDict file InDetIdDictFiles/IdDictInnerDetector_IBL3D25-03.xml
+IdDictDetDescrCnv                                   INFO Reading LArCalorimeter   IdDict file IdDictParser/IdDictLArCalorimeter_DC3-05-Comm-01.xml
+IdDictDetDescrCnv                                   INFO Reading TileCalorimeter  IdDict file IdDictParser/IdDictTileCalorimeter.xml
+IdDictDetDescrCnv                                   INFO Reading Calorimeter      IdDict file IdDictParser/IdDictCalorimeter_L1Onl.xml
+IdDictDetDescrCnv                                   INFO Reading MuonSpectrometer IdDict file IdDictParser/IdDictMuonSpectrometer_R.03.xml
+IdDictDetDescrCnv                                   INFO Reading ForwardDetectors IdDict file IdDictParser/IdDictForwardDetectors_2010.xml
+IdDictDetDescrCnv                                   INFO Found id dicts:
+IdDictDetDescrCnv                                   INFO Using dictionary tag: null
+IdDictDetDescrCnv                                   INFO Dictionary ATLAS                version default              DetDescr tag (using default) file 
+IdDictDetDescrCnv                                   INFO Dictionary Calorimeter          version default              DetDescr tag CaloIdentifier-LVL1-02 file IdDictParser/IdDictCalorimeter_L1Onl.xml
+IdDictDetDescrCnv                                   INFO Dictionary ForwardDetectors     version default              DetDescr tag ForDetIdentifier-01       file IdDictParser/IdDictForwardDetectors_2010.xml
+IdDictDetDescrCnv                                   INFO Dictionary InnerDetector        version IBL-DBM              DetDescr tag InDetIdentifier-IBL3D25-02 file InDetIdDictFiles/IdDictInnerDetector_IBL3D25-03.xml
+IdDictDetDescrCnv                                   INFO Dictionary LArCalorimeter       version fullAtlas            DetDescr tag LArIdentifier-DC3-05-Comm file IdDictParser/IdDictLArCalorimeter_DC3-05-Comm-01.xml
+IdDictDetDescrCnv                                   INFO Dictionary LArElectrode         version fullAtlas            DetDescr tag (using default) file 
+IdDictDetDescrCnv                                   INFO Dictionary LArHighVoltage       version fullAtlas            DetDescr tag (using default) file 
+IdDictDetDescrCnv                                   INFO Dictionary MuonSpectrometer     version R.03                 DetDescr tag MuonIdentifier-08         file IdDictParser/IdDictMuonSpectrometer_R.03.xml
+IdDictDetDescrCnv                                   INFO Dictionary TileCalorimeter      version fullAtlasAndTestBeam DetDescr tag TileIdentifier-00         file IdDictParser/IdDictTileCalorimeter.xml
+LArElectrodeID                                      INFO  => initialize_from_dictionary()
+AtlasDetectorID                                     INFO initialize_from_dictionary - OK
+AtlasDetectorID                                     INFO initialize_from_dictionary - OK
+LArHVLineIDDetDescrCnv                              INFO in createObj: creating a LArHVLineID helper object in the detector store
+LArHVLineID                                         INFO  => initialize_from_dictionary()
+AtlasDetectorID                                     INFO initialize_from_dictionary - OK
+AtlasDetectorID                                     INFO initialize_from_dictionary - OK
+LArHVLineID                                         INFO  => initialize_from_dictionary(dict_mgr) =0
+LArHVLineID                                         INFO Register_dict_tag of LArHighVoltage is OK
+LArHVLineID                                         INFO setDictVersion of LArHighVoltage is OK
+LArHVLineID                                         INFO [initLevelsFromDict] m_dict OK ... 
+LArHVLineID                                         INFO [initialize_from_dictionary] >  HV line range -> 11/1/48:79/0:15 | 11/1/148:179/0:15 | 11/1/80:93/0:7 | 11/1/180:193/0:7 | 11/1/200:231/0:15 | 11/1/232:263/0:15 | 11/1/296,297,306,307/0:15 | 11/1/299,304,305,308,309/0:15 | 11/1/264:279/0:15 | 11/1/280:295/0:15 | 11/1/0:47/0:15 | 11/1/320:322/0:15 | 11/1/100:147/0:15 | 11/1/324,325/0:15 | 11/1/312:315/0:15 | 11/1/316:319/0:15 | 11/1/300:303/0:15 | 11/1/310,311/0:15 | 11/1/323/0:15 | 11/1/326,327/0:15 | 11/1/94:99/0:15 | 11/1/194:199/0:15
+LArHVLineID                                         INFO [init_hashes()] > Hvline_size= 5008
+GeoModelSvc.LArDetectorToolNV                       INFO Keys for LAr are ATLAS-R2-2016-01-00-01  ATLAS
+GeoModelSvc.LArDetectorToolNV                       INFO Building LAr version LAr-Revised-17-01 while ATLAS version is ATLAS-R2-2016-01-00-01
+GeoModelSvc.LArDetectorToolNV                       INFO LAr Geometry Options:
+GeoModelSvc.LArDetectorToolNV                       INFO   Sagging           = false
+GeoModelSvc.LArDetectorToolNV                       INFO   Barrel            = ON
+GeoModelSvc.LArDetectorToolNV                       INFO   Endcap            = ON
+BarrelConstruction                                  INFO Getting primary numbers for ATLAS, ATLAS-R2-2016-01-00-01
+BarrelConstruction                                  INFO   Makes detailed absorber sandwich  ? 1 1
+BarrelConstruction                                  INFO   Use sagging in geometry  ? 0
+EMECConstruction                                    INFO multi-layered version of absorbers activated, parameter value is 1
+EMECConstruction                                    INFO activating LAr::EMEC::Pos::InnerWheel
+EMECConstruction                                    INFO activating LAr::EMEC::Pos::OuterWheel
+ClassIDSvc                                          INFO  getRegistryEntries: read 2901 CLIDRegistry entries for module ALL
+CaloIDHelper_IDDetDescrCnv                          INFO in createObj: creating a TileTBID helper object in the detector store
+TileTBID                                            INFO initialize_from_dictionary 
+AtlasDetectorID                                     INFO initialize_from_dictionary - OK
+EndcapDMConstruction                                INFO Start building EC electronics geometry
+EMECConstruction                                    INFO multi-layered version of absorbers activated, parameter value is 1
+EMECConstruction                                    INFO activating LAr::EMEC::Neg::InnerWheel
+EMECConstruction                                    INFO activating LAr::EMEC::Neg::OuterWheel
+EndcapDMConstruction                                INFO Start building EC electronics geometry
+GeoModelSvc                                         INFO GeoModelSvc.LArDetectorToolNV	 SZ= 25368Kb 	 Time = 0.45S
+GeoModelSvc.TileDetectorTool                        INFO  Entering TileDetectorTool::create()
+TileDddbManager                                     INFO m_tag = ATLAS-R2-2016-01-00-01
+TileDddbManager                                     INFO n_tiglob = 5
+TileDddbManager                                     INFO n_timod = 320
+TileDddbManager                                     INFO n_cuts = 9
+TileDddbManager                                     INFO n_saddle = 1
+TileDddbManager                                     INFO n_tilb = 21
+TileDddbManager                                     INFO n_tileSwitches = 1
+CaloIDHelper_IDDetDescrCnv                          INFO in createObj: creating a TileID helper object in the detector store
+AtlasDetectorID                                     INFO initialize_from_dictionary - OK
+TileNeighbour                                       INFO Reading file  /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/TileNeighbour_reduced.txt
+TileHWIDDetDescrCnv                                 INFO in createObj: creating a TileHWID helper object in the detector store
+TileHWID                                            INFO initialize_from_dictionary 
+AtlasDetectorID                                     INFO initialize_from_dictionary - OK
+ClassIDSvc                                          INFO  getRegistryEntries: read 55 CLIDRegistry entries for module ALL
+CaloIDHelper_IDDetDescrCnv                          INFO in createObj: creating a CaloCell_ID helper object in the detector store
+CaloIDHelper_IDDetDescrCnv                          INFO in createObj: creating a LArEM_ID helper object in the detector store
+AtlasDetectorID                                     INFO initialize_from_dictionary - OK
+CaloIDHelper_IDDetDescrCnv                          INFO in createObj: creating a LArHEC_ID helper object in the detector store
+AtlasDetectorID                                     INFO initialize_from_dictionary - OK
+CaloIDHelper_IDDetDescrCnv                          INFO in createObj: creating a LArFCAL_ID helper object in the detector store
+AtlasDetectorID                                     INFO initialize_from_dictionary - OK
+LArFCAL_Base_ID                                     INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/FCal2DNeighbors-April2011.txt
+LArFCAL_Base_ID                                     INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/FCal3DNeighborsNext-April2011.txt
+LArFCAL_Base_ID                                     INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/FCal3DNeighborsPrev-April2011.txt
+CaloIDHelper_IDDetDescrCnv                          INFO in createObj: creating a LArMiniFCAL_ID helper object in the detector store
+AtlasDetectorID                                     INFO initialize_from_dictionary - OK
+LArMiniFCAL_ID                                      INFO  initialize_from_dict - LArCalorimeter dictionary does NOT contain miniFCAL description. Unable to initialize LArMiniFCAL_ID.
+AtlasDetectorID                                     INFO initialize_from_dictionary - OK
+GeoModelSvc.TileDetectorTool                        INFO  U-shape parameter from database is: 1
+GeoModelSvc.TileDetectorTool                        INFO  Glue parameter from database is: 1
+GeoModelSvc.TileDetectorTool                        INFO  Cs Tube parameter from database is: 0
+GeoModelSvc.TileDetectorTool                        INFO  Entering TileAtlasFactory::create()
+GeoModelSvc.TileDetectorTool                        INFO  Tile Geometry with Saddle supports, starting from TileCal-CSC-02 xxx
+GeoModelSvc.TileDetectorTool                        INFO  => New BFingerLengthPos 430.5
+GeoModelSvc.TileDetectorTool                        INFO  => New BFingerLengthNeg 420.5
+GeoModelSvc.TileDetectorTool                        INFO  Positioning barrel with translation 0
+GeoModelSvc.TileDetectorTool                        INFO  Positioning positive barrel finger with translation 3035.25
+GeoModelSvc.TileDetectorTool                        INFO  Positioning negative barrel finger with translation -3030.25
+GeoModelSvc.TileDetectorTool                        INFO  Positioning positive ext.barrel with translation 4854.75
+GeoModelSvc.TileDetectorTool                        INFO  Positioning positive ext.barrel finger with translation ztrans= 6338.5
+GeoModelSvc.TileDetectorTool                        INFO  Positioning positive ext.barrel saddle with translation ztrans= 6192.5
+GeoModelSvc.TileDetectorTool                        INFO  Positive ITC envelope parameters: PLUG1  Rmin= 3438.85 Rmax= 4250 dzITC1= 154.5
+GeoModelSvc.TileDetectorTool                        INFO                                    PLUG2  Rmin= 2981 Rmax= 3440 dzITC2= 47.425
+GeoModelSvc.TileDetectorTool                        INFO  Positioning positive ITC with translation 3405
+GeoModelSvc.TileDetectorTool                        INFO  Positioning positive Gap with translation 3552
+GeoModelSvc.TileDetectorTool                        INFO  Positioning positive Crack with translation 3536
+GeoModelSvc.TileDetectorTool                        INFO  Positioning negative ext.barrel with translation ztrans -4854.75
+GeoModelSvc.TileDetectorTool                        INFO  Positioning negative ext.barrel finger with translation ztrans= -6338.5
+GeoModelSvc.TileDetectorTool                        INFO  Positioning negative ext.barrel saddle with translation ztrans= -6192.5
+GeoModelSvc.TileDetectorTool                        INFO  Negative ITC envelope parameters: PLUG1  Rmin= 3438.85 Rmax= 4250 dzITC1= 154.5
+GeoModelSvc.TileDetectorTool                        INFO                                    PLUG2  Rmin= 2981 Rmax= 3440 dzITC2= 47.425
+GeoModelSvc.TileDetectorTool                        INFO  Positioning negative ITC with translation -3405
+GeoModelSvc.TileDetectorTool                        INFO  Positioning negative Gap with translation -3552
+GeoModelSvc.TileDetectorTool                        INFO  Positioning negative Crack with translation -3536
+GeoModelSvc.TileDetectorTool                        INFO  Global positioning of barrel with rotation (0,0,0)) and translation (0,0,0) Gaudi::Units::cm
+GeoModelSvc.TileDetectorTool                        INFO  Global positioning of positive ext.barrel with rotation (0,0,0)) and translation (0,0,0) Gaudi::Units::cm
+GeoModelSvc.TileDetectorTool                        INFO  Global positioning of negative ext.barrel with rotation (0,0,0)) and translation (0,0,1) Gaudi::Units::cm
+TileDetDescrManager                                 INFO Entering create_elements()
+GeoModelSvc                                         INFO GeoModelSvc.TileDetectorTool	 SZ= 3576Kb 	 Time = 0.11S
+ClassIDSvc                                          INFO  getRegistryEntries: read 66 CLIDRegistry entries for module ALL
+TileInfoLoader                                      INFO Changing TTL1 calib from 4.1 to 6.9
+TileInfoLoader                                      INFO Changing TTL1 noise sigma from 2.5 to 2.8
+CaloIDHelper_IDDetDescrCnv                          INFO in createObj: creating a CaloLVL1_ID helper object in the detector store
+CaloLVL1_ID                                         INFO initialize_from_dictionary
+AtlasDetectorID                                     INFO initialize_from_dictionary - OK
+TileCablingSvc                                      INFO RUN2 ATLAS geometry flag detected for geometry: ATLAS-R2-2016-01-00-01
+TileCablingSvc                                      INFO Cabling for RUN2 (2014-2017) ATLAS geometry is set via jobOptions 
+TileCablingSvc                                      INFO Setting Cabling type to 4
+AthenaHiveEventLoopMgr                              INFO Initializing AthenaHiveEventLoopMgr - package version AthenaServices-00-00-00
+ClassIDSvc                                     0    INFO  getRegistryEntries: read 4180 CLIDRegistry entries for module ALL
+PyComponentMgr                                 0    INFO Initializing PyComponentMgr...
+Finalizer                                      0    INFO Initializing Finalizer...
+ClassIDSvc                                     0    INFO  getRegistryEntries: read 53 CLIDRegistry entries for module ALL
+CondInputLoader                                0    INFO Initializing CondInputLoader...
+CondInputLoader                                0    INFO Adding base classes:
   +  ( 'CondAttrListCollection' , 'ConditionStore+/TILE/OFL02/CALIB/CES' )   ->
   +  ( 'CondAttrListCollection' , 'ConditionStore+/TILE/OFL02/CALIB/CIS/FIT/LIN' )   ->
   +  ( 'CondAttrListCollection' , 'ConditionStore+/TILE/OFL02/CALIB/CIS/FIT/NLN' )   ->
@@ -929,7 +929,7 @@ CondInputLoader                             0      INFO Adding base classes:
   +  ( 'CondAttrListCollection' , 'ConditionStore+/TILE/OFL02/STATUS/ADC' )   ->
   +  ( 'CondAttrListCollection' , 'ConditionStore+/TILE/OFL02/TIME/CHANNELOFFSET/PHY' )   ->
   +  ( 'CondAttrListCollection' , 'ConditionStore+/TILE/ONL01/STATUS/ADC' )   ->
-CondInputLoader                             0      INFO Will create WriteCondHandle dependencies for the following DataObjects:
+CondInputLoader                                0    INFO Will create WriteCondHandle dependencies for the following DataObjects:
     +  ( 'CondAttrListCollection' , 'ConditionStore+/TILE/OFL02/CALIB/CES' ) 
     +  ( 'CondAttrListCollection' , 'ConditionStore+/TILE/OFL02/CALIB/CIS/FIT/LIN' ) 
     +  ( 'CondAttrListCollection' , 'ConditionStore+/TILE/OFL02/CALIB/CIS/FIT/NLN' ) 
@@ -941,358 +941,358 @@ CondInputLoader                             0      INFO Will create WriteCondHan
     +  ( 'CondAttrListCollection' , 'ConditionStore+/TILE/OFL02/STATUS/ADC' ) 
     +  ( 'CondAttrListCollection' , 'ConditionStore+/TILE/OFL02/TIME/CHANNELOFFSET/PHY' ) 
     +  ( 'CondAttrListCollection' , 'ConditionStore+/TILE/ONL01/STATUS/ADC' ) 
-TileBadChannelsCondAlg.TileCondProxyC...    0      INFO Creating TileCondProxyCool(TileBadChannelsCondAlg.TileCondProxyCool_OnlBch) for folder: "/TILE/ONL01/STATUS/ADC"
-TileBadChannelsCondAlg.TileCondProxyC...    0      INFO Creating TileCondProxyCool(TileBadChannelsCondAlg.TileCondProxyCool_OflBch) for folder: "/TILE/OFL02/STATUS/ADC"
-TileBadChannelsCondAlg                      0      INFO ProxyOnlBch and ProxyOflBch will be used for bad channel status
-TileEMScaleCondAlg.TileCondProxyCool_...    0      INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OflCisLin) for folder: "/TILE/OFL02/CALIB/CIS/FIT/LIN"
-TileEMScaleCondAlg.TileCondProxyCool_...    0      INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OflCisNln) for folder: "/TILE/OFL02/CALIB/CIS/FIT/NLN"
-TileEMScaleCondAlg.TileCondProxyCool_...    0      INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OflLasLin) for folder: "/TILE/OFL02/CALIB/LAS/LIN"
-TileEMScaleCondAlg.TileCondProxyCool_...    0      INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OflLasNln) for folder: "/TILE/OFL02/CALIB/LAS/NLN"
-TileEMScaleCondAlg.TileCondProxyCool_...    0      INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OflLasFib) for folder: "/TILE/OFL02/CALIB/LAS/FIBER"
-TileEMScaleCondAlg                          0      INFO ProxyOflLasFib is set up and can be used
-TileEMScaleCondAlg.TileCondProxyCool_...    0      INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OflCes) for folder: "/TILE/OFL02/CALIB/CES"
-TileEMScaleCondAlg.TileCondProxyCool_...    0      INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OflEms) for folder: "/TILE/OFL02/CALIB/EMS"
-TileEMScaleCondAlg                          0      INFO Undoing online calibration is not requested, since OnlCacheUnit= 'OnlCacheUnit':Invalid
-TileEMScaleCondAlg.TileCondProxyCool_...    0      INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OnlCis) for folder: "/TILE/OFL02/CALIB/CIS/FIT/LIN"
-TileEMScaleCondAlg.TileCondProxyCool_...    0      INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OnlLas) for folder: "/TILE/OFL02/CALIB/LAS/LIN"
-TileEMScaleCondAlg.TileCondProxyCool_...    0      INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OnlCes) for folder: "/TILE/OFL02/CALIB/CES"
-TileEMScaleCondAlg.TileCondProxyCool_...    0      INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OnlEms) for folder: "/TILE/OFL02/CALIB/EMS"
-TileSampleNoiseCondAlg.TileCondProxyC...    0      INFO Creating TileCondProxyCool(TileSampleNoiseCondAlg.TileCondProxyCool_NoiseSample) for folder: "/TILE/OFL02/NOISE/SAMPLE"
-TileTimingCondAlg.TileCondProxyCool_A...    0      INFO Creating TileCondProxyCool(TileTimingCondAlg.TileCondProxyCool_AdcOffset) for folder: "/TILE/OFL02/TIME/CHANNELOFFSET/PHY"
-ThreadPoolSvc                               0      INFO no thread init tools attached
-AvalancheSchedulerSvc                       0      INFO Activating scheduler in a separate thread
-AvalancheSchedulerSvc                       0      INFO Found 13 algorithms
-AvalancheSchedulerSvc                       0      INFO Will attribute the following unmet INPUT dependencies to "SGInputLoader/SGInputLoader" Algorithm
+TileBadChannelsCondAlg.TileCondProxyC...       0    INFO Creating TileCondProxyCool(TileBadChannelsCondAlg.TileCondProxyCool_OnlBch) for folder: "/TILE/ONL01/STATUS/ADC"
+TileBadChannelsCondAlg.TileCondProxyC...       0    INFO Creating TileCondProxyCool(TileBadChannelsCondAlg.TileCondProxyCool_OflBch) for folder: "/TILE/OFL02/STATUS/ADC"
+TileBadChannelsCondAlg                         0    INFO ProxyOnlBch and ProxyOflBch will be used for bad channel status
+TileEMScaleCondAlg.TileCondProxyCool_...       0    INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OflCisLin) for folder: "/TILE/OFL02/CALIB/CIS/FIT/LIN"
+TileEMScaleCondAlg.TileCondProxyCool_...       0    INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OflCisNln) for folder: "/TILE/OFL02/CALIB/CIS/FIT/NLN"
+TileEMScaleCondAlg.TileCondProxyCool_...       0    INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OflLasLin) for folder: "/TILE/OFL02/CALIB/LAS/LIN"
+TileEMScaleCondAlg.TileCondProxyCool_...       0    INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OflLasNln) for folder: "/TILE/OFL02/CALIB/LAS/NLN"
+TileEMScaleCondAlg.TileCondProxyCool_...       0    INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OflLasFib) for folder: "/TILE/OFL02/CALIB/LAS/FIBER"
+TileEMScaleCondAlg                             0    INFO ProxyOflLasFib is set up and can be used
+TileEMScaleCondAlg.TileCondProxyCool_...       0    INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OflCes) for folder: "/TILE/OFL02/CALIB/CES"
+TileEMScaleCondAlg.TileCondProxyCool_...       0    INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OflEms) for folder: "/TILE/OFL02/CALIB/EMS"
+TileEMScaleCondAlg                             0    INFO Undoing online calibration is not requested, since OnlCacheUnit= 'OnlCacheUnit':Invalid
+TileEMScaleCondAlg.TileCondProxyCool_...       0    INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OnlCis) for folder: "/TILE/OFL02/CALIB/CIS/FIT/LIN"
+TileEMScaleCondAlg.TileCondProxyCool_...       0    INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OnlLas) for folder: "/TILE/OFL02/CALIB/LAS/LIN"
+TileEMScaleCondAlg.TileCondProxyCool_...       0    INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OnlCes) for folder: "/TILE/OFL02/CALIB/CES"
+TileEMScaleCondAlg.TileCondProxyCool_...       0    INFO Creating TileCondProxyCool(TileEMScaleCondAlg.TileCondProxyCool_OnlEms) for folder: "/TILE/OFL02/CALIB/EMS"
+TileSampleNoiseCondAlg.TileCondProxyC...       0    INFO Creating TileCondProxyCool(TileSampleNoiseCondAlg.TileCondProxyCool_NoiseSample) for folder: "/TILE/OFL02/NOISE/SAMPLE"
+TileTimingCondAlg.TileCondProxyCool_A...       0    INFO Creating TileCondProxyCool(TileTimingCondAlg.TileCondProxyCool_AdcOffset) for folder: "/TILE/OFL02/TIME/CHANNELOFFSET/PHY"
+ThreadPoolSvc                                  0    INFO no thread init tools attached
+AvalancheSchedulerSvc                          0    INFO Activating scheduler in a separate thread
+AvalancheSchedulerSvc                          0    INFO Found 13 algorithms
+AvalancheSchedulerSvc                          0    INFO Will attribute the following unmet INPUT dependencies to "SGInputLoader/SGInputLoader" Algorithm
    o  ( 'TileRawChannelContainer' , 'StoreGateSvc+MuRcvRawChCnt' )     required by Algorithm: 
        * MuRcvRawChannelCntDumper
    o  ( 'TileRawChannelContainer' , 'StoreGateSvc+TileRawChannelCnt' )     required by Algorithm: 
        * TileRawChannelCntDumper
-PrecedenceSvc                               0      INFO Assembling CF and DF task precedence rules
-PrecedenceRulesGraph                        0      INFO CondSvc found. DF precedence rules will be augmented with 'Conditions'
-PrecedenceSvc                               0      INFO PrecedenceSvc initialized successfully
-AvalancheSchedulerSvc                       0      INFO Concurrency level information:
-AvalancheSchedulerSvc                       0      INFO  o Number of events in flight: 4
-AvalancheSchedulerSvc                       0      INFO  o TBB thread pool size:  'ThreadPoolSize':4
-HistogramPersistencySvc                     0   WARNING Histograms saving not required.
-EventSelector                               0      INFO Initializing EventSelector - package version ByteStreamCnvSvc-00-00-00
-ByteStreamInputSvc                          0      INFO Initializing ByteStreamInputSvc - package version ByteStreamCnvSvc-00-00-00
-ROBDataProviderSvc                          0      INFO Initializing ROBDataProviderSvc - package version ByteStreamCnvSvcBase-00-00-00
-ROBDataProviderSvc                          0      INFO  ---> Filter out empty ROB fragments                               =  'filterEmptyROB':False
-ROBDataProviderSvc                          0      INFO  ---> Filter out specific ROBs by Status Code: # ROBs = 0
-ROBDataProviderSvc                          0      INFO  ---> Filter out Sub Detector ROBs by Status Code: # Sub Detectors = 0
-EventSelector                               0      INFO reinitialization...
-AthenaHiveEventLoopMgr                      0      INFO Setup EventSelector service EventSelector
-ApplicationMgr                              0      INFO Application Manager Initialized successfully
-PoolSvc                                     0      INFO Enabled implicit multithreading in ROOT via PersistencySvc to: 4
-CondInputLoader                             0      INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/CALIB/CES'
-CondInputLoader                             0      INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/CALIB/CIS/FIT/LIN'
-CondInputLoader                             0      INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/CALIB/CIS/FIT/NLN'
-CondInputLoader                             0      INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/CALIB/EMS'
-CondInputLoader                             0      INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/CALIB/LAS/FIBER'
-CondInputLoader                             0      INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/CALIB/LAS/LIN'
-CondInputLoader                             0      INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/CALIB/LAS/NLN'
-CondInputLoader                             0      INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/NOISE/SAMPLE'
-CondInputLoader                             0      INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/STATUS/ADC'
-CondInputLoader                             0      INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/TIME/CHANNELOFFSET/PHY'
-CondInputLoader                             0      INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/ONL01/STATUS/ADC'
-ByteStreamInputSvc                          0      INFO Picked valid file: /cvmfs/atlas-nightlies.cern.ch/repo/data/data-art/Tier0ChainTests/data12_8TeV.00204073.physics_JetTauEtmiss.merge.RAW._lb0144._SFO-5._0001.1
-ApplicationMgr                              0      INFO Application Manager Started successfully
-AthenaHiveEventLoopMgr                      0      INFO Starting loop on events
-EventPersistencySvc                     0   0      INFO Added successfully Conversion service:AthenaPoolCnvSvc
-EventPersistencySvc                     0   0      INFO Added successfully Conversion service:TagInfoMgr
-EventPersistencySvc                     0   0      INFO Added successfully Conversion service:ByteStreamCnvSvc
-EventInfoByteStreamAuxCnv               0   0      INFO IsSimulation : 0
-EventInfoByteStreamAuxCnv               0   0      INFO IsTestbeam : 0
-EventInfoByteStreamAuxCnv               0   0      INFO IsCalibration : 0
-AthenaHiveEventLoopMgr                  0   0      INFO   ===>>>  start of run 204073    <<<===
-IOVDbSvc                                0   0      INFO Opening COOL connection for COOLOFL_LAR/OFLP200
-IOVDbFolder                             0   0      INFO HVS tag OFLCOND-RUN12-SDR-35 resolved to LARAlign-IOVDEP-00 for folder /LAR/Align
-IOVDbFolder                             0   0      INFO HVS tag OFLCOND-RUN12-SDR-35 resolved to LArCellPositionShift-ideal for folder /LAR/LArCellPositionShift
-IOVDbSvc                                0   0      INFO Disconnecting from COOLOFL_LAR/OFLP200
-Domain[ROOT_All]                        0   0      INFO ->  Access   DbDatabase   READ      [ROOT_All] 06C9EAE8-6F5B-E011-BAAA-003048F0E7AC
-Domain[ROOT_All]                        0   0      INFO                           /cvmfs/atlas-condb.cern.ch/repo/conditions/cond09/cond09_mc.000029.gen.COND/cond09_mc.000029.gen.COND._0002.pool.root
-RootDatabase.open                       0   0      INFO /cvmfs/atlas-condb.cern.ch/repo/conditions/cond09/cond09_mc.000029.gen.COND/cond09_mc.000029.gen.COND._0002.pool.root File version:52200
-CaloMgrDetDescrCnv                      0   0      INFO in createObj: creating a Calo Detector Manager object in the detector store
-CaloIdMgrDetDescrCnv                    0   0      INFO in createObj: creating a CaloDescrManager object in the detector store
-ClassIDSvc                              0   0      INFO  getRegistryEntries: read 195 CLIDRegistry entries for module ALL
-CaloIDHelper_IDDetDescrCnv              0   0      INFO in createObj: creating a CaloDM_ID helper object in the detector store
-CaloDM_ID                               0   0      INFO initialize_from_dictionary
-AtlasDetectorID                         0   0      INFO initialize_from_dictionary - OK
-CaloIDHelper_IDDetDescrCnv              0   0      INFO in createObj: creating a TTOnlineID helper object in the detector store
-TTOnlineID                              0   0      INFO initialize_from_dictionary
-AtlasDetectorID                         0   0      INFO initialize_from_dictionary - OK
-CaloIDHelper_IDDetDescrCnv              0   0      INFO in createObj: creating a CaloCell_SuperCell_ID helper object in the detector store
-CaloIDHelper_IDDetDescrCnv              0   0      INFO in createObj: creating a LArEM_SuperCell_ID helper object in the detector store
-AtlasDetectorID                         0   0      INFO initialize_from_dictionary - OK
-CaloIDHelper_IDDetDescrCnv              0   0      INFO in createObj: creating a LArHEC_SuperCell_ID helper object in the detector store
-AtlasDetectorID                         0   0      INFO initialize_from_dictionary - OK
-CaloIDHelper_IDDetDescrCnv              0   0      INFO in createObj: creating a LArFCAL_SuperCell_ID helper object in the detector store
-AtlasDetectorID                         0   0      INFO initialize_from_dictionary - OK
-LArFCAL_Base_ID                         0   0      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-06T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/FCalSuperCells2DNeighborsNew-April2014.txt
-LArFCAL_Base_ID                         0   0      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-06T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/FCalSuperCells3DNeighborsNextNew-April2014.txt
-LArFCAL_Base_ID                         0   0      INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-06T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/FCalSuperCells3DNeighborsPrevNew-April2014.txt
-CaloIDHelper_IDDetDescrCnv              0   0      INFO in createObj: creating a Tile_SuperCell_ID helper object in the detector store
-AtlasDetectorID                         0   0      INFO initialize_from_dictionary - OK
-TileNeighbour                           0   0      INFO Reading file  /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-08-06T2130/Athena/22.0.3/InstallArea/x86_64-centos7-gcc8-opt/share/TileSuperCellNeighbour.txt
-AtlasDetectorID                         0   0      INFO initialize_from_dictionary - OK
-CaloIdMgrDetDescrCnv                    0   0      INFO  Finished 
-CaloIdMgrDetDescrCnv                    0   0      INFO Initializing CaloIdMgr from values in CaloIdMgrDetDescrCnv 
-Domain[ROOT_All]                        0   0      INFO ->  Access   DbDatabase   READ      [ROOT_All] 8667C6F2-1559-DE11-A611-000423D9A21A
-Domain[ROOT_All]                        0   0      INFO                           /cvmfs/atlas-condb.cern.ch/repo/conditions/cond08/cond08_mc.000003.gen.COND/cond08_mc.000003.gen.COND._0064.pool.root
-RootDatabase.open                       0   0      INFO /cvmfs/atlas-condb.cern.ch/repo/conditions/cond08/cond08_mc.000003.gen.COND/cond08_mc.000003.gen.COND._0064.pool.root File version:52200
-AthenaHiveEventLoopMgr                  0   0      INFO   ===>>>  start processing event #1129572, run #204073 on slot 0,  0 events processed so far  <<<===
-ClassIDSvc                              0   0      INFO  getRegistryEntries: read 672 CLIDRegistry entries for module ALL
-ClassIDSvc                              0   0      INFO  getRegistryEntries: read 1776 CLIDRegistry entries for module ALL
-ClassIDSvc                              0   0      INFO  getRegistryEntries: read 90 CLIDRegistry entries for module ALL
-ToolSvc.TileROD_Decoder.TileL2Builder   0   0      INFO TileL2Builder initialization completed
-ToolSvc.TileRawChannelContByteStreamTool0   0      INFO Initializing TileRawChannelContByteStreamTool
-AthenaHiveEventLoopMgr                  1   1      INFO   ===>>>  start processing event #1129665, run #204073 on slot 1,  0 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  2   2      INFO   ===>>>  start processing event #1131212, run #204073 on slot 2,  0 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  3   3      INFO   ===>>>  start processing event #1131086, run #204073 on slot 3,  0 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1129572, run #204073 on slot 0,  1 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1129665, run #204073 on slot 1,  2 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1131212, run #204073 on slot 2,  3 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  4   0      INFO   ===>>>  start processing event #1130272, run #204073 on slot 0,  3 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  5   1      INFO   ===>>>  start processing event #1131269, run #204073 on slot 1,  3 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  6   2      INFO   ===>>>  start processing event #1130716, run #204073 on slot 2,  3 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1131086, run #204073 on slot 3,  4 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1130272, run #204073 on slot 0,  5 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1131269, run #204073 on slot 1,  6 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  7   0      INFO   ===>>>  start processing event #1132019, run #204073 on slot 0,  6 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  8   1      INFO   ===>>>  start processing event #1132092, run #204073 on slot 1,  6 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  9   3      INFO   ===>>>  start processing event #1130238, run #204073 on slot 3,  6 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1130716, run #204073 on slot 2,  7 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1132019, run #204073 on slot 0,  8 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1132092, run #204073 on slot 1,  9 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  10  0      INFO   ===>>>  start processing event #1134553, run #204073 on slot 0,  9 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  11  1      INFO   ===>>>  start processing event #1130999, run #204073 on slot 1,  9 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  12  2      INFO   ===>>>  start processing event #1133461, run #204073 on slot 2,  9 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1130238, run #204073 on slot 3,  10 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1134553, run #204073 on slot 0,  11 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1130999, run #204073 on slot 1,  12 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  13  0      INFO   ===>>>  start processing event #1131152, run #204073 on slot 0,  12 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  14  1      INFO   ===>>>  start processing event #1130142, run #204073 on slot 1,  12 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  15  3      INFO   ===>>>  start processing event #1132770, run #204073 on slot 3,  12 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1133461, run #204073 on slot 2,  13 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1131152, run #204073 on slot 0,  14 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1130142, run #204073 on slot 1,  15 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  16  0      INFO   ===>>>  start processing event #1132365, run #204073 on slot 0,  15 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  17  1      INFO   ===>>>  start processing event #1136791, run #204073 on slot 1,  15 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  18  2      INFO   ===>>>  start processing event #1133781, run #204073 on slot 2,  15 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1132770, run #204073 on slot 3,  16 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1132365, run #204073 on slot 0,  17 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1136791, run #204073 on slot 1,  18 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  19  0      INFO   ===>>>  start processing event #1132067, run #204073 on slot 0,  18 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  20  1      INFO   ===>>>  start processing event #1138637, run #204073 on slot 1,  18 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  21  3      INFO   ===>>>  start processing event #1139495, run #204073 on slot 3,  18 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1133781, run #204073 on slot 2,  19 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1132067, run #204073 on slot 0,  20 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1138637, run #204073 on slot 1,  21 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  22  0      INFO   ===>>>  start processing event #1140193, run #204073 on slot 0,  21 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  23  1      INFO   ===>>>  start processing event #1142953, run #204073 on slot 1,  21 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  24  2      INFO   ===>>>  start processing event #1139127, run #204073 on slot 2,  21 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1139495, run #204073 on slot 3,  22 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1140193, run #204073 on slot 0,  23 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1142953, run #204073 on slot 1,  24 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  25  0      INFO   ===>>>  start processing event #1141272, run #204073 on slot 0,  24 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  26  1      INFO   ===>>>  start processing event #1137117, run #204073 on slot 1,  24 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  27  3      INFO   ===>>>  start processing event #1139599, run #204073 on slot 3,  24 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1139127, run #204073 on slot 2,  25 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1141272, run #204073 on slot 0,  26 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1137117, run #204073 on slot 1,  27 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  28  0      INFO   ===>>>  start processing event #1140314, run #204073 on slot 0,  27 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  29  1      INFO   ===>>>  start processing event #1133685, run #204073 on slot 1,  27 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  30  2      INFO   ===>>>  start processing event #1143279, run #204073 on slot 2,  27 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1139599, run #204073 on slot 3,  28 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1140314, run #204073 on slot 0,  29 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1133685, run #204073 on slot 1,  30 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  31  0      INFO   ===>>>  start processing event #1137563, run #204073 on slot 0,  30 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  32  1      INFO   ===>>>  start processing event #1139927, run #204073 on slot 1,  30 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  33  3      INFO   ===>>>  start processing event #1141197, run #204073 on slot 3,  30 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1143279, run #204073 on slot 2,  31 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1137563, run #204073 on slot 0,  32 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1139927, run #204073 on slot 1,  33 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  34  0      INFO   ===>>>  start processing event #1140039, run #204073 on slot 0,  33 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  35  1      INFO   ===>>>  start processing event #1142531, run #204073 on slot 1,  33 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  36  2      INFO   ===>>>  start processing event #1139475, run #204073 on slot 2,  33 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1141197, run #204073 on slot 3,  34 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1140039, run #204073 on slot 0,  35 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1142531, run #204073 on slot 1,  36 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  37  0      INFO   ===>>>  start processing event #1139958, run #204073 on slot 0,  36 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  38  1      INFO   ===>>>  start processing event #1143765, run #204073 on slot 1,  36 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  39  3      INFO   ===>>>  start processing event #1143097, run #204073 on slot 3,  36 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1139475, run #204073 on slot 2,  37 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1139958, run #204073 on slot 0,  38 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1143765, run #204073 on slot 1,  39 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  40  0      INFO   ===>>>  start processing event #1134147, run #204073 on slot 0,  39 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  41  1      INFO   ===>>>  start processing event #1137156, run #204073 on slot 1,  39 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  42  2      INFO   ===>>>  start processing event #1136377, run #204073 on slot 2,  39 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1143097, run #204073 on slot 3,  40 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1134147, run #204073 on slot 0,  41 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1137156, run #204073 on slot 1,  42 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  43  0      INFO   ===>>>  start processing event #1137842, run #204073 on slot 0,  42 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  44  1      INFO   ===>>>  start processing event #1141705, run #204073 on slot 1,  42 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  45  3      INFO   ===>>>  start processing event #1143410, run #204073 on slot 3,  42 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1136377, run #204073 on slot 2,  43 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1137842, run #204073 on slot 0,  44 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1141705, run #204073 on slot 1,  45 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  46  0      INFO   ===>>>  start processing event #1144170, run #204073 on slot 0,  45 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  47  1      INFO   ===>>>  start processing event #1145987, run #204073 on slot 1,  45 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  48  2      INFO   ===>>>  start processing event #1145633, run #204073 on slot 2,  45 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1143410, run #204073 on slot 3,  46 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1144170, run #204073 on slot 0,  47 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1145987, run #204073 on slot 1,  48 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  49  0      INFO   ===>>>  start processing event #1135005, run #204073 on slot 0,  48 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  50  1      INFO   ===>>>  start processing event #1142167, run #204073 on slot 1,  48 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  51  3      INFO   ===>>>  start processing event #1144646, run #204073 on slot 3,  48 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1145633, run #204073 on slot 2,  49 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1135005, run #204073 on slot 0,  50 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1142167, run #204073 on slot 1,  51 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  52  0      INFO   ===>>>  start processing event #1145027, run #204073 on slot 0,  51 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  53  1      INFO   ===>>>  start processing event #1144112, run #204073 on slot 1,  51 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  54  2      INFO   ===>>>  start processing event #1138485, run #204073 on slot 2,  51 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1144646, run #204073 on slot 3,  52 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1145027, run #204073 on slot 0,  53 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1144112, run #204073 on slot 1,  54 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  55  0      INFO   ===>>>  start processing event #1144565, run #204073 on slot 0,  54 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  56  1      INFO   ===>>>  start processing event #1139498, run #204073 on slot 1,  54 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  57  3      INFO   ===>>>  start processing event #1136546, run #204073 on slot 3,  54 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1138485, run #204073 on slot 2,  55 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1144565, run #204073 on slot 0,  56 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1139498, run #204073 on slot 1,  57 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  58  0      INFO   ===>>>  start processing event #1143799, run #204073 on slot 0,  57 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  59  1      INFO   ===>>>  start processing event #1142877, run #204073 on slot 1,  57 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  60  2      INFO   ===>>>  start processing event #1149894, run #204073 on slot 2,  57 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1136546, run #204073 on slot 3,  58 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1143799, run #204073 on slot 0,  59 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1142877, run #204073 on slot 1,  60 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  61  0      INFO   ===>>>  start processing event #1145364, run #204073 on slot 0,  60 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  62  1      INFO   ===>>>  start processing event #1143770, run #204073 on slot 1,  60 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  63  3      INFO   ===>>>  start processing event #1148361, run #204073 on slot 3,  60 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1149894, run #204073 on slot 2,  61 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1145364, run #204073 on slot 0,  62 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1143770, run #204073 on slot 1,  63 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  64  0      INFO   ===>>>  start processing event #1148167, run #204073 on slot 0,  63 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  65  1      INFO   ===>>>  start processing event #1138948, run #204073 on slot 1,  63 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  66  2      INFO   ===>>>  start processing event #1144808, run #204073 on slot 2,  63 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1148361, run #204073 on slot 3,  64 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1148167, run #204073 on slot 0,  65 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  67  0      INFO   ===>>>  start processing event #1145832, run #204073 on slot 0,  65 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  68  3      INFO   ===>>>  start processing event #1153100, run #204073 on slot 3,  65 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1138948, run #204073 on slot 1,  66 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1144808, run #204073 on slot 2,  67 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1145832, run #204073 on slot 0,  68 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  69  0      INFO   ===>>>  start processing event #1142524, run #204073 on slot 0,  68 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  70  1      INFO   ===>>>  start processing event #1138294, run #204073 on slot 1,  68 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  71  2      INFO   ===>>>  start processing event #1138350, run #204073 on slot 2,  68 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1153100, run #204073 on slot 3,  69 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1142524, run #204073 on slot 0,  70 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1138294, run #204073 on slot 1,  71 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  72  0      INFO   ===>>>  start processing event #1149424, run #204073 on slot 0,  71 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  73  1      INFO   ===>>>  start processing event #1151102, run #204073 on slot 1,  71 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  74  3      INFO   ===>>>  start processing event #1152242, run #204073 on slot 3,  71 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1138350, run #204073 on slot 2,  72 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1149424, run #204073 on slot 0,  73 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1151102, run #204073 on slot 1,  74 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  75  0      INFO   ===>>>  start processing event #1148416, run #204073 on slot 0,  74 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  76  1      INFO   ===>>>  start processing event #1142753, run #204073 on slot 1,  74 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  77  2      INFO   ===>>>  start processing event #1149997, run #204073 on slot 2,  74 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1152242, run #204073 on slot 3,  75 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1148416, run #204073 on slot 0,  76 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1142753, run #204073 on slot 1,  77 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  78  0      INFO   ===>>>  start processing event #1151617, run #204073 on slot 0,  77 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  79  1      INFO   ===>>>  start processing event #1149794, run #204073 on slot 1,  77 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  80  3      INFO   ===>>>  start processing event #1152504, run #204073 on slot 3,  77 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1149997, run #204073 on slot 2,  78 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1151617, run #204073 on slot 0,  79 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1149794, run #204073 on slot 1,  80 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  81  0      INFO   ===>>>  start processing event #1142485, run #204073 on slot 0,  80 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  82  1      INFO   ===>>>  start processing event #1151364, run #204073 on slot 1,  80 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  83  2      INFO   ===>>>  start processing event #1143901, run #204073 on slot 2,  80 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1152504, run #204073 on slot 3,  81 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1142485, run #204073 on slot 0,  82 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1151364, run #204073 on slot 1,  83 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  84  0      INFO   ===>>>  start processing event #1153979, run #204073 on slot 0,  83 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  85  1      INFO   ===>>>  start processing event #1150212, run #204073 on slot 1,  83 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  86  3      INFO   ===>>>  start processing event #1152633, run #204073 on slot 3,  83 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1143901, run #204073 on slot 2,  84 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1153979, run #204073 on slot 0,  85 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1150212, run #204073 on slot 1,  86 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  87  0      INFO   ===>>>  start processing event #1155482, run #204073 on slot 0,  86 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  88  1      INFO   ===>>>  start processing event #1150472, run #204073 on slot 1,  86 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  89  2      INFO   ===>>>  start processing event #1140275, run #204073 on slot 2,  86 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1152633, run #204073 on slot 3,  87 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1155482, run #204073 on slot 0,  88 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  90  0      INFO   ===>>>  start processing event #1145882, run #204073 on slot 0,  88 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  91  3      INFO   ===>>>  start processing event #1151732, run #204073 on slot 3,  88 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1150472, run #204073 on slot 1,  89 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1140275, run #204073 on slot 2,  90 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1145882, run #204073 on slot 0,  91 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  92  0      INFO   ===>>>  start processing event #1137896, run #204073 on slot 0,  91 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  93  1      INFO   ===>>>  start processing event #1156381, run #204073 on slot 1,  91 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  94  2      INFO   ===>>>  start processing event #1149161, run #204073 on slot 2,  91 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1151732, run #204073 on slot 3,  92 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1137896, run #204073 on slot 0,  93 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1156381, run #204073 on slot 1,  94 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  95  0      INFO   ===>>>  start processing event #1153794, run #204073 on slot 0,  94 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  96  1      INFO   ===>>>  start processing event #1151312, run #204073 on slot 1,  94 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  97  3      INFO   ===>>>  start processing event #1148893, run #204073 on slot 3,  94 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1149161, run #204073 on slot 2,  95 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1153794, run #204073 on slot 0,  96 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1151312, run #204073 on slot 1,  97 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  98  0      INFO   ===>>>  start processing event #1156938, run #204073 on slot 0,  97 events processed so far  <<<===
-AthenaHiveEventLoopMgr                  99  1      INFO   ===>>>  start processing event #1156351, run #204073 on slot 1,  97 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1148893, run #204073 on slot 3,  98 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1156938, run #204073 on slot 0,  99 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO   ===>>>  done processing event #1156351, run #204073 on slot 1,  100 events processed so far  <<<===
-AthenaHiveEventLoopMgr                             INFO ---> Loop Finished (seconds): 7.84223
-/cvmfs/atlas-condb.cern.ch/repo/condi...           INFO Database being retired...
-Domain[ROOT_All]                                   INFO ->  Deaccess DbDatabase   READ      [ROOT_All] 06C9EAE8-6F5B-E011-BAAA-003048F0E7AC
-/cvmfs/atlas-condb.cern.ch/repo/condi...           INFO Database being retired...
-Domain[ROOT_All]                                   INFO ->  Deaccess DbDatabase   READ      [ROOT_All] 8667C6F2-1559-DE11-A611-000423D9A21A
-Domain[ROOT_All]                                   INFO >   Deaccess DbDomain     READ      [ROOT_All] 
-ApplicationMgr                                     INFO Application Manager Stopped successfully
-IncidentProcAlg1                                   INFO Finalize
-SGInputLoader                                      INFO Finalizing SGInputLoader...
-Finalizer                                          INFO Finalizing Finalizer...
+PrecedenceSvc                                  0    INFO Assembling CF and DF task precedence rules
+PrecedenceRulesGraph                           0    INFO CondSvc found. DF precedence rules will be augmented with 'Conditions'
+PrecedenceSvc                                  0    INFO PrecedenceSvc initialized successfully
+AvalancheSchedulerSvc                          0    INFO Concurrency level information:
+AvalancheSchedulerSvc                          0    INFO  o Number of events in flight: 4
+AvalancheSchedulerSvc                          0    INFO  o TBB thread pool size:  'ThreadPoolSize':4
+HistogramPersistencySvc                        0 WARNING Histograms saving not required.
+EventSelector                                  0    INFO Initializing EventSelector - package version ByteStreamCnvSvc-00-00-00
+ByteStreamInputSvc                             0    INFO Initializing ByteStreamInputSvc - package version ByteStreamCnvSvc-00-00-00
+ROBDataProviderSvc                             0    INFO Initializing ROBDataProviderSvc - package version ByteStreamCnvSvcBase-00-00-00
+ROBDataProviderSvc                             0    INFO  ---> Filter out empty ROB fragments                               =  'filterEmptyROB':False
+ROBDataProviderSvc                             0    INFO  ---> Filter out specific ROBs by Status Code: # ROBs = 0
+ROBDataProviderSvc                             0    INFO  ---> Filter out Sub Detector ROBs by Status Code: # Sub Detectors = 0
+EventSelector                                  0    INFO reinitialization...
+AthenaHiveEventLoopMgr                         0    INFO Setup EventSelector service EventSelector
+ApplicationMgr                                 0    INFO Application Manager Initialized successfully
+PoolSvc                                        0    INFO Enabled implicit multithreading in ROOT via PersistencySvc to: 4
+CondInputLoader                                0    INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/CALIB/CES'
+CondInputLoader                                0    INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/CALIB/CIS/FIT/LIN'
+CondInputLoader                                0    INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/CALIB/CIS/FIT/NLN'
+CondInputLoader                                0    INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/CALIB/EMS'
+CondInputLoader                                0    INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/CALIB/LAS/FIBER'
+CondInputLoader                                0    INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/CALIB/LAS/LIN'
+CondInputLoader                                0    INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/CALIB/LAS/NLN'
+CondInputLoader                                0    INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/NOISE/SAMPLE'
+CondInputLoader                                0    INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/STATUS/ADC'
+CondInputLoader                                0    INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/OFL02/TIME/CHANNELOFFSET/PHY'
+CondInputLoader                                0    INFO created CondCont<CondAttrListCollection> with key 'ConditionStore+/TILE/ONL01/STATUS/ADC'
+ByteStreamInputSvc                             0    INFO Picked valid file: /cvmfs/atlas-nightlies.cern.ch/repo/data/data-art/Tier0ChainTests/data12_8TeV.00204073.physics_JetTauEtmiss.merge.RAW._lb0144._SFO-5._0001.1
+ApplicationMgr                                 0    INFO Application Manager Started successfully
+AthenaHiveEventLoopMgr                         0    INFO Starting loop on events
+EventPersistencySvc                        0   0    INFO Added successfully Conversion service:AthenaPoolCnvSvc
+EventPersistencySvc                        0   0    INFO Added successfully Conversion service:TagInfoMgr
+EventPersistencySvc                        0   0    INFO Added successfully Conversion service:ByteStreamCnvSvc
+EventInfoByteStreamAuxCnv                  0   0    INFO IsSimulation : 0
+EventInfoByteStreamAuxCnv                  0   0    INFO IsTestbeam : 0
+EventInfoByteStreamAuxCnv                  0   0    INFO IsCalibration : 0
+AthenaHiveEventLoopMgr                     0   0    INFO   ===>>>  start of run 204073    <<<===
+IOVDbSvc                                   0   0    INFO Opening COOL connection for COOLOFL_LAR/OFLP200
+IOVDbFolder                                0   0    INFO HVS tag OFLCOND-RUN12-SDR-35 resolved to LARAlign-IOVDEP-00 for folder /LAR/Align
+IOVDbFolder                                0   0    INFO HVS tag OFLCOND-RUN12-SDR-35 resolved to LArCellPositionShift-ideal for folder /LAR/LArCellPositionShift
+IOVDbSvc                                   0   0    INFO Disconnecting from COOLOFL_LAR/OFLP200
+Domain[ROOT_All]                           0   0    INFO ->  Access   DbDatabase   READ      [ROOT_All] 06C9EAE8-6F5B-E011-BAAA-003048F0E7AC
+Domain[ROOT_All]                           0   0    INFO                           /cvmfs/atlas-condb.cern.ch/repo/conditions/cond09/cond09_mc.000029.gen.COND/cond09_mc.000029.gen.COND._0002.pool.root
+RootDatabase.open                          0   0    INFO /cvmfs/atlas-condb.cern.ch/repo/conditions/cond09/cond09_mc.000029.gen.COND/cond09_mc.000029.gen.COND._0002.pool.root File version:52200
+CaloMgrDetDescrCnv                         0   0    INFO in createObj: creating a Calo Detector Manager object in the detector store
+CaloIdMgrDetDescrCnv                       0   0    INFO in createObj: creating a CaloDescrManager object in the detector store
+ClassIDSvc                                 0   0    INFO  getRegistryEntries: read 198 CLIDRegistry entries for module ALL
+CaloIDHelper_IDDetDescrCnv                 0   0    INFO in createObj: creating a CaloDM_ID helper object in the detector store
+CaloDM_ID                                  0   0    INFO initialize_from_dictionary
+AtlasDetectorID                            0   0    INFO initialize_from_dictionary - OK
+CaloIDHelper_IDDetDescrCnv                 0   0    INFO in createObj: creating a TTOnlineID helper object in the detector store
+TTOnlineID                                 0   0    INFO initialize_from_dictionary
+AtlasDetectorID                            0   0    INFO initialize_from_dictionary - OK
+CaloIDHelper_IDDetDescrCnv                 0   0    INFO in createObj: creating a CaloCell_SuperCell_ID helper object in the detector store
+CaloIDHelper_IDDetDescrCnv                 0   0    INFO in createObj: creating a LArEM_SuperCell_ID helper object in the detector store
+AtlasDetectorID                            0   0    INFO initialize_from_dictionary - OK
+CaloIDHelper_IDDetDescrCnv                 0   0    INFO in createObj: creating a LArHEC_SuperCell_ID helper object in the detector store
+AtlasDetectorID                            0   0    INFO initialize_from_dictionary - OK
+CaloIDHelper_IDDetDescrCnv                 0   0    INFO in createObj: creating a LArFCAL_SuperCell_ID helper object in the detector store
+AtlasDetectorID                            0   0    INFO initialize_from_dictionary - OK
+LArFCAL_Base_ID                            0   0    INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/FCalSuperCells2DNeighborsNew-April2014.txt
+LArFCAL_Base_ID                            0   0    INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/FCalSuperCells3DNeighborsNextNew-April2014.txt
+LArFCAL_Base_ID                            0   0    INFO Reading file /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/FCalSuperCells3DNeighborsPrevNew-April2014.txt
+CaloIDHelper_IDDetDescrCnv                 0   0    INFO in createObj: creating a Tile_SuperCell_ID helper object in the detector store
+AtlasDetectorID                            0   0    INFO initialize_from_dictionary - OK
+TileNeighbour                              0   0    INFO Reading file  /cvmfs/atlas-nightlies.cern.ch/repo/sw/master/2019-11-28T2131/Athena/22.0.9/InstallArea/x86_64-centos7-gcc8-opt/share/TileSuperCellNeighbour.txt
+AtlasDetectorID                            0   0    INFO initialize_from_dictionary - OK
+CaloIdMgrDetDescrCnv                       0   0    INFO  Finished 
+CaloIdMgrDetDescrCnv                       0   0    INFO Initializing CaloIdMgr from values in CaloIdMgrDetDescrCnv 
+Domain[ROOT_All]                           0   0    INFO ->  Access   DbDatabase   READ      [ROOT_All] 8667C6F2-1559-DE11-A611-000423D9A21A
+Domain[ROOT_All]                           0   0    INFO                           /cvmfs/atlas-condb.cern.ch/repo/conditions/cond08/cond08_mc.000003.gen.COND/cond08_mc.000003.gen.COND._0064.pool.root
+RootDatabase.open                          0   0    INFO /cvmfs/atlas-condb.cern.ch/repo/conditions/cond08/cond08_mc.000003.gen.COND/cond08_mc.000003.gen.COND._0064.pool.root File version:52200
+AthenaHiveEventLoopMgr                     0   0    INFO   ===>>>  start processing event #1129572, run #204073 on slot 0,  0 events processed so far  <<<===
+ClassIDSvc                                 0   0    INFO  getRegistryEntries: read 470 CLIDRegistry entries for module ALL
+ClassIDSvc                                 0   0    INFO  getRegistryEntries: read 1795 CLIDRegistry entries for module ALL
+ClassIDSvc                                 0   0    INFO  getRegistryEntries: read 91 CLIDRegistry entries for module ALL
+ToolSvc.TileROD_Decoder.TileL2Builder      0   0    INFO TileL2Builder initialization completed
+ToolSvc.TileRawChannelContByteStreamTool   0   0    INFO Initializing TileRawChannelContByteStreamTool
+AthenaHiveEventLoopMgr                     1   1    INFO   ===>>>  start processing event #1129665, run #204073 on slot 1,  0 events processed so far  <<<===
+AthenaHiveEventLoopMgr                     2   2    INFO   ===>>>  start processing event #1131212, run #204073 on slot 2,  0 events processed so far  <<<===
+AthenaHiveEventLoopMgr                     3   3    INFO   ===>>>  start processing event #1131086, run #204073 on slot 3,  0 events processed so far  <<<===
+AthenaHiveEventLoopMgr                     1   1    INFO   ===>>>  done processing event #1129665, run #204073 on slot 1,  1 events processed so far  <<<===
+AthenaHiveEventLoopMgr                     4   1    INFO   ===>>>  start processing event #1130272, run #204073 on slot 1,  1 events processed so far  <<<===
+AthenaHiveEventLoopMgr                     0   0    INFO   ===>>>  done processing event #1129572, run #204073 on slot 0,  2 events processed so far  <<<===
+AthenaHiveEventLoopMgr                     2   2    INFO   ===>>>  done processing event #1131212, run #204073 on slot 2,  3 events processed so far  <<<===
+AthenaHiveEventLoopMgr                     5   0    INFO   ===>>>  start processing event #1131269, run #204073 on slot 0,  3 events processed so far  <<<===
+AthenaHiveEventLoopMgr                     6   2    INFO   ===>>>  start processing event #1130716, run #204073 on slot 2,  3 events processed so far  <<<===
+AthenaHiveEventLoopMgr                     3   3    INFO   ===>>>  done processing event #1131086, run #204073 on slot 3,  4 events processed so far  <<<===
+AthenaHiveEventLoopMgr                     4   1    INFO   ===>>>  done processing event #1130272, run #204073 on slot 1,  5 events processed so far  <<<===
+AthenaHiveEventLoopMgr                     7   1    INFO   ===>>>  start processing event #1132019, run #204073 on slot 1,  5 events processed so far  <<<===
+AthenaHiveEventLoopMgr                     8   3    INFO   ===>>>  start processing event #1132092, run #204073 on slot 3,  5 events processed so far  <<<===
+AthenaHiveEventLoopMgr                     5   0    INFO   ===>>>  done processing event #1131269, run #204073 on slot 0,  6 events processed so far  <<<===
+AthenaHiveEventLoopMgr                     6   2    INFO   ===>>>  done processing event #1130716, run #204073 on slot 2,  7 events processed so far  <<<===
+AthenaHiveEventLoopMgr                     9   0    INFO   ===>>>  start processing event #1130238, run #204073 on slot 0,  7 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    10   2    INFO   ===>>>  start processing event #1134553, run #204073 on slot 2,  7 events processed so far  <<<===
+AthenaHiveEventLoopMgr                     7   1    INFO   ===>>>  done processing event #1132019, run #204073 on slot 1,  8 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    11   1    INFO   ===>>>  start processing event #1130999, run #204073 on slot 1,  8 events processed so far  <<<===
+AthenaHiveEventLoopMgr                     8   3    INFO   ===>>>  done processing event #1132092, run #204073 on slot 3,  9 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    12   3    INFO   ===>>>  start processing event #1133461, run #204073 on slot 3,  9 events processed so far  <<<===
+AthenaHiveEventLoopMgr                     9   0    INFO   ===>>>  done processing event #1130238, run #204073 on slot 0,  10 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    10   2    INFO   ===>>>  done processing event #1134553, run #204073 on slot 2,  11 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    13   0    INFO   ===>>>  start processing event #1131152, run #204073 on slot 0,  11 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    14   2    INFO   ===>>>  start processing event #1130142, run #204073 on slot 2,  11 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    11   1    INFO   ===>>>  done processing event #1130999, run #204073 on slot 1,  12 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    15   1    INFO   ===>>>  start processing event #1132770, run #204073 on slot 1,  12 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    12   3    INFO   ===>>>  done processing event #1133461, run #204073 on slot 3,  13 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    13   0    INFO   ===>>>  done processing event #1131152, run #204073 on slot 0,  14 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    16   0    INFO   ===>>>  start processing event #1132365, run #204073 on slot 0,  14 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    17   3    INFO   ===>>>  start processing event #1136791, run #204073 on slot 3,  14 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    14   2    INFO   ===>>>  done processing event #1130142, run #204073 on slot 2,  15 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    18   2    INFO   ===>>>  start processing event #1133781, run #204073 on slot 2,  15 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    15   1    INFO   ===>>>  done processing event #1132770, run #204073 on slot 1,  16 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    16   0    INFO   ===>>>  done processing event #1132365, run #204073 on slot 0,  17 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    19   0    INFO   ===>>>  start processing event #1132067, run #204073 on slot 0,  17 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    20   1    INFO   ===>>>  start processing event #1138637, run #204073 on slot 1,  17 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    17   3    INFO   ===>>>  done processing event #1136791, run #204073 on slot 3,  18 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    18   2    INFO   ===>>>  done processing event #1133781, run #204073 on slot 2,  19 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    21   2    INFO   ===>>>  start processing event #1139495, run #204073 on slot 2,  19 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    22   3    INFO   ===>>>  start processing event #1140193, run #204073 on slot 3,  19 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    19   0    INFO   ===>>>  done processing event #1132067, run #204073 on slot 0,  20 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    20   1    INFO   ===>>>  done processing event #1138637, run #204073 on slot 1,  21 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    23   0    INFO   ===>>>  start processing event #1142953, run #204073 on slot 0,  21 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    24   1    INFO   ===>>>  start processing event #1139127, run #204073 on slot 1,  21 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    21   2    INFO   ===>>>  done processing event #1139495, run #204073 on slot 2,  22 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    22   3    INFO   ===>>>  done processing event #1140193, run #204073 on slot 3,  23 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    25   2    INFO   ===>>>  start processing event #1141272, run #204073 on slot 2,  23 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    26   3    INFO   ===>>>  start processing event #1137117, run #204073 on slot 3,  23 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    23   0    INFO   ===>>>  done processing event #1142953, run #204073 on slot 0,  24 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    24   1    INFO   ===>>>  done processing event #1139127, run #204073 on slot 1,  25 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    27   0    INFO   ===>>>  start processing event #1139599, run #204073 on slot 0,  25 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    28   1    INFO   ===>>>  start processing event #1140314, run #204073 on slot 1,  25 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    25   2    INFO   ===>>>  done processing event #1141272, run #204073 on slot 2,  26 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    26   3    INFO   ===>>>  done processing event #1137117, run #204073 on slot 3,  27 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    29   2    INFO   ===>>>  start processing event #1133685, run #204073 on slot 2,  27 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    30   3    INFO   ===>>>  start processing event #1143279, run #204073 on slot 3,  27 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    27   0    INFO   ===>>>  done processing event #1139599, run #204073 on slot 0,  28 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    28   1    INFO   ===>>>  done processing event #1140314, run #204073 on slot 1,  29 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    31   0    INFO   ===>>>  start processing event #1137563, run #204073 on slot 0,  29 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    32   1    INFO   ===>>>  start processing event #1139927, run #204073 on slot 1,  29 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    29   2    INFO   ===>>>  done processing event #1133685, run #204073 on slot 2,  30 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    33   2    INFO   ===>>>  start processing event #1141197, run #204073 on slot 2,  30 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    30   3    INFO   ===>>>  done processing event #1143279, run #204073 on slot 3,  31 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    31   0    INFO   ===>>>  done processing event #1137563, run #204073 on slot 0,  32 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    34   0    INFO   ===>>>  start processing event #1140039, run #204073 on slot 0,  32 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    35   3    INFO   ===>>>  start processing event #1142531, run #204073 on slot 3,  32 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    32   1    INFO   ===>>>  done processing event #1139927, run #204073 on slot 1,  33 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    36   1    INFO   ===>>>  start processing event #1139475, run #204073 on slot 1,  33 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    33   2    INFO   ===>>>  done processing event #1141197, run #204073 on slot 2,  34 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    34   0    INFO   ===>>>  done processing event #1140039, run #204073 on slot 0,  35 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    37   0    INFO   ===>>>  start processing event #1139958, run #204073 on slot 0,  35 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    38   2    INFO   ===>>>  start processing event #1143765, run #204073 on slot 2,  35 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    35   3    INFO   ===>>>  done processing event #1142531, run #204073 on slot 3,  36 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    36   1    INFO   ===>>>  done processing event #1139475, run #204073 on slot 1,  37 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    39   1    INFO   ===>>>  start processing event #1143097, run #204073 on slot 1,  37 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    40   3    INFO   ===>>>  start processing event #1134147, run #204073 on slot 3,  37 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    37   0    INFO   ===>>>  done processing event #1139958, run #204073 on slot 0,  38 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    41   0    INFO   ===>>>  start processing event #1137156, run #204073 on slot 0,  38 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    38   2    INFO   ===>>>  done processing event #1143765, run #204073 on slot 2,  39 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    42   2    INFO   ===>>>  start processing event #1136377, run #204073 on slot 2,  39 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    39   1    INFO   ===>>>  done processing event #1143097, run #204073 on slot 1,  40 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    40   3    INFO   ===>>>  done processing event #1134147, run #204073 on slot 3,  41 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    43   1    INFO   ===>>>  start processing event #1137842, run #204073 on slot 1,  41 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    44   3    INFO   ===>>>  start processing event #1141705, run #204073 on slot 3,  41 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    41   0    INFO   ===>>>  done processing event #1137156, run #204073 on slot 0,  42 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    42   2    INFO   ===>>>  done processing event #1136377, run #204073 on slot 2,  43 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    45   0    INFO   ===>>>  start processing event #1143410, run #204073 on slot 0,  43 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    46   2    INFO   ===>>>  start processing event #1144170, run #204073 on slot 2,  43 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    43   1    INFO   ===>>>  done processing event #1137842, run #204073 on slot 1,  44 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    47   1    INFO   ===>>>  start processing event #1145987, run #204073 on slot 1,  44 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    44   3    INFO   ===>>>  done processing event #1141705, run #204073 on slot 3,  45 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    48   3    INFO   ===>>>  start processing event #1145633, run #204073 on slot 3,  45 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    45   0    INFO   ===>>>  done processing event #1143410, run #204073 on slot 0,  46 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    49   0    INFO   ===>>>  start processing event #1135005, run #204073 on slot 0,  46 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    46   2    INFO   ===>>>  done processing event #1144170, run #204073 on slot 2,  47 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    47   1    INFO   ===>>>  done processing event #1145987, run #204073 on slot 1,  48 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    50   1    INFO   ===>>>  start processing event #1142167, run #204073 on slot 1,  48 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    51   2    INFO   ===>>>  start processing event #1144646, run #204073 on slot 2,  48 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    48   3    INFO   ===>>>  done processing event #1145633, run #204073 on slot 3,  49 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    49   0    INFO   ===>>>  done processing event #1135005, run #204073 on slot 0,  50 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    52   0    INFO   ===>>>  start processing event #1145027, run #204073 on slot 0,  50 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    53   3    INFO   ===>>>  start processing event #1144112, run #204073 on slot 3,  50 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    50   1    INFO   ===>>>  done processing event #1142167, run #204073 on slot 1,  51 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    54   1    INFO   ===>>>  start processing event #1138485, run #204073 on slot 1,  51 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    51   2    INFO   ===>>>  done processing event #1144646, run #204073 on slot 2,  52 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    52   0    INFO   ===>>>  done processing event #1145027, run #204073 on slot 0,  53 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    55   0    INFO   ===>>>  start processing event #1144565, run #204073 on slot 0,  53 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    56   2    INFO   ===>>>  start processing event #1139498, run #204073 on slot 2,  53 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    53   3    INFO   ===>>>  done processing event #1144112, run #204073 on slot 3,  54 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    54   1    INFO   ===>>>  done processing event #1138485, run #204073 on slot 1,  55 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    57   1    INFO   ===>>>  start processing event #1136546, run #204073 on slot 1,  55 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    58   3    INFO   ===>>>  start processing event #1143799, run #204073 on slot 3,  55 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    55   0    INFO   ===>>>  done processing event #1144565, run #204073 on slot 0,  56 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    56   2    INFO   ===>>>  done processing event #1139498, run #204073 on slot 2,  57 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    59   0    INFO   ===>>>  start processing event #1142877, run #204073 on slot 0,  57 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    60   2    INFO   ===>>>  start processing event #1149894, run #204073 on slot 2,  57 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    57   1    INFO   ===>>>  done processing event #1136546, run #204073 on slot 1,  58 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    58   3    INFO   ===>>>  done processing event #1143799, run #204073 on slot 3,  59 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    61   1    INFO   ===>>>  start processing event #1145364, run #204073 on slot 1,  59 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    62   3    INFO   ===>>>  start processing event #1143770, run #204073 on slot 3,  59 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    59   0    INFO   ===>>>  done processing event #1142877, run #204073 on slot 0,  60 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    60   2    INFO   ===>>>  done processing event #1149894, run #204073 on slot 2,  61 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    63   0    INFO   ===>>>  start processing event #1148361, run #204073 on slot 0,  61 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    64   2    INFO   ===>>>  start processing event #1148167, run #204073 on slot 2,  61 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    61   1    INFO   ===>>>  done processing event #1145364, run #204073 on slot 1,  62 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    62   3    INFO   ===>>>  done processing event #1143770, run #204073 on slot 3,  63 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    65   1    INFO   ===>>>  start processing event #1138948, run #204073 on slot 1,  63 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    66   3    INFO   ===>>>  start processing event #1144808, run #204073 on slot 3,  63 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    63   0    INFO   ===>>>  done processing event #1148361, run #204073 on slot 0,  64 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    64   2    INFO   ===>>>  done processing event #1148167, run #204073 on slot 2,  65 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    67   0    INFO   ===>>>  start processing event #1145832, run #204073 on slot 0,  65 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    68   2    INFO   ===>>>  start processing event #1153100, run #204073 on slot 2,  65 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    65   1    INFO   ===>>>  done processing event #1138948, run #204073 on slot 1,  66 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    66   3    INFO   ===>>>  done processing event #1144808, run #204073 on slot 3,  67 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    69   1    INFO   ===>>>  start processing event #1142524, run #204073 on slot 1,  67 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    70   3    INFO   ===>>>  start processing event #1138294, run #204073 on slot 3,  67 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    67   0    INFO   ===>>>  done processing event #1145832, run #204073 on slot 0,  68 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    68   2    INFO   ===>>>  done processing event #1153100, run #204073 on slot 2,  69 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    71   0    INFO   ===>>>  start processing event #1138350, run #204073 on slot 0,  69 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    72   2    INFO   ===>>>  start processing event #1149424, run #204073 on slot 2,  69 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    69   1    INFO   ===>>>  done processing event #1142524, run #204073 on slot 1,  70 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    70   3    INFO   ===>>>  done processing event #1138294, run #204073 on slot 3,  71 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    73   1    INFO   ===>>>  start processing event #1151102, run #204073 on slot 1,  71 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    74   3    INFO   ===>>>  start processing event #1152242, run #204073 on slot 3,  71 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    71   0    INFO   ===>>>  done processing event #1138350, run #204073 on slot 0,  72 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    72   2    INFO   ===>>>  done processing event #1149424, run #204073 on slot 2,  73 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    75   0    INFO   ===>>>  start processing event #1148416, run #204073 on slot 0,  73 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    76   2    INFO   ===>>>  start processing event #1142753, run #204073 on slot 2,  73 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    73   1    INFO   ===>>>  done processing event #1151102, run #204073 on slot 1,  74 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    74   3    INFO   ===>>>  done processing event #1152242, run #204073 on slot 3,  75 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    77   1    INFO   ===>>>  start processing event #1149997, run #204073 on slot 1,  75 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    78   3    INFO   ===>>>  start processing event #1151617, run #204073 on slot 3,  75 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    75   0    INFO   ===>>>  done processing event #1148416, run #204073 on slot 0,  76 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    76   2    INFO   ===>>>  done processing event #1142753, run #204073 on slot 2,  77 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    79   0    INFO   ===>>>  start processing event #1149794, run #204073 on slot 0,  77 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    80   2    INFO   ===>>>  start processing event #1152504, run #204073 on slot 2,  77 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    77   1    INFO   ===>>>  done processing event #1149997, run #204073 on slot 1,  78 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    78   3    INFO   ===>>>  done processing event #1151617, run #204073 on slot 3,  79 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    81   1    INFO   ===>>>  start processing event #1142485, run #204073 on slot 1,  79 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    82   3    INFO   ===>>>  start processing event #1151364, run #204073 on slot 3,  79 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    79   0    INFO   ===>>>  done processing event #1149794, run #204073 on slot 0,  80 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    80   2    INFO   ===>>>  done processing event #1152504, run #204073 on slot 2,  81 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    83   0    INFO   ===>>>  start processing event #1143901, run #204073 on slot 0,  81 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    84   2    INFO   ===>>>  start processing event #1153979, run #204073 on slot 2,  81 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    81   1    INFO   ===>>>  done processing event #1142485, run #204073 on slot 1,  82 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    82   3    INFO   ===>>>  done processing event #1151364, run #204073 on slot 3,  83 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    85   1    INFO   ===>>>  start processing event #1150212, run #204073 on slot 1,  83 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    86   3    INFO   ===>>>  start processing event #1152633, run #204073 on slot 3,  83 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    83   0    INFO   ===>>>  done processing event #1143901, run #204073 on slot 0,  84 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    84   2    INFO   ===>>>  done processing event #1153979, run #204073 on slot 2,  85 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    87   0    INFO   ===>>>  start processing event #1155482, run #204073 on slot 0,  85 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    88   2    INFO   ===>>>  start processing event #1150472, run #204073 on slot 2,  85 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    85   1    INFO   ===>>>  done processing event #1150212, run #204073 on slot 1,  86 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    89   1    INFO   ===>>>  start processing event #1140275, run #204073 on slot 1,  86 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    86   3    INFO   ===>>>  done processing event #1152633, run #204073 on slot 3,  87 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    87   0    INFO   ===>>>  done processing event #1155482, run #204073 on slot 0,  88 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    90   0    INFO   ===>>>  start processing event #1145882, run #204073 on slot 0,  88 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    91   3    INFO   ===>>>  start processing event #1151732, run #204073 on slot 3,  88 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    88   2    INFO   ===>>>  done processing event #1150472, run #204073 on slot 2,  89 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    89   1    INFO   ===>>>  done processing event #1140275, run #204073 on slot 1,  90 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    92   1    INFO   ===>>>  start processing event #1137896, run #204073 on slot 1,  90 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    93   2    INFO   ===>>>  start processing event #1156381, run #204073 on slot 2,  90 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    90   0    INFO   ===>>>  done processing event #1145882, run #204073 on slot 0,  91 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    91   3    INFO   ===>>>  done processing event #1151732, run #204073 on slot 3,  92 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    94   0    INFO   ===>>>  start processing event #1149161, run #204073 on slot 0,  92 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    95   3    INFO   ===>>>  start processing event #1153794, run #204073 on slot 3,  92 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    92   1    INFO   ===>>>  done processing event #1137896, run #204073 on slot 1,  93 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    93   2    INFO   ===>>>  done processing event #1156381, run #204073 on slot 2,  94 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    96   1    INFO   ===>>>  start processing event #1151312, run #204073 on slot 1,  94 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    97   2    INFO   ===>>>  start processing event #1148893, run #204073 on slot 2,  94 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    94   0    INFO   ===>>>  done processing event #1149161, run #204073 on slot 0,  95 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    95   3    INFO   ===>>>  done processing event #1153794, run #204073 on slot 3,  96 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    98   0    INFO   ===>>>  start processing event #1156938, run #204073 on slot 0,  96 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    99   3    INFO   ===>>>  start processing event #1156351, run #204073 on slot 3,  96 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    96   1    INFO   ===>>>  done processing event #1151312, run #204073 on slot 1,  97 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    97   2    INFO   ===>>>  done processing event #1148893, run #204073 on slot 2,  98 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    98   0    INFO   ===>>>  done processing event #1156938, run #204073 on slot 0,  99 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    99   3    INFO   ===>>>  done processing event #1156351, run #204073 on slot 3,  100 events processed so far  <<<===
+AthenaHiveEventLoopMgr                    99   3    INFO ---> Loop Finished (seconds): 3.84329
+/cvmfs/atlas-condb.cern.ch/repo/condi...            INFO Database being retired...
+Domain[ROOT_All]                                    INFO ->  Deaccess DbDatabase   READ      [ROOT_All] 06C9EAE8-6F5B-E011-BAAA-003048F0E7AC
+/cvmfs/atlas-condb.cern.ch/repo/condi...            INFO Database being retired...
+Domain[ROOT_All]                                    INFO ->  Deaccess DbDatabase   READ      [ROOT_All] 8667C6F2-1559-DE11-A611-000423D9A21A
+Domain[ROOT_All]                                    INFO >   Deaccess DbDomain     READ      [ROOT_All] 
+ApplicationMgr                                      INFO Application Manager Stopped successfully
+IncidentProcAlg1                                    INFO Finalize
+SGInputLoader                                       INFO Finalizing SGInputLoader...
+Finalizer                                           INFO Finalizing Finalizer...
 Finalize: compared 20 dumps
-CondInputLoader                                    INFO Finalizing CondInputLoader...
-IncidentProcAlg2                                   INFO Finalize
-AvalancheSchedulerSvc                              INFO Joining Scheduler thread
-PyComponentMgr                                     INFO Finalizing PyComponentMgr...
-EventDataSvc                                       INFO Finalizing EventDataSvc - package version StoreGate-00-00-00
-IdDictDetDescrCnv                                  INFO in finalize
-IOVDbFolder                                        INFO Folder /LAR/Align (PoolRef) db-read 1/1 objs/chan/bytes 1/1/170 ((     0.89 ))s
-IOVDbFolder                                        INFO Folder /TILE/OFL02/CALIB/CES (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
-IOVDbFolder                                        INFO Folder /TILE/OFL02/CALIB/CIS/FIT/LIN (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
-IOVDbFolder                                        INFO Folder /TILE/OFL02/CALIB/CIS/FIT/NLN (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
-IOVDbFolder                                        INFO Folder /TILE/OFL02/CALIB/EMS (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
-IOVDbFolder                                        INFO Folder /TILE/OFL02/CALIB/LAS/FIBER (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
-IOVDbFolder                                        INFO Folder /TILE/OFL02/CALIB/LAS/LIN (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
-IOVDbFolder                                        INFO Folder /TILE/OFL02/CALIB/LAS/NLN (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
-IOVDbFolder                                        INFO Folder /TILE/OFL02/NOISE/SAMPLE (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
-IOVDbFolder                                        INFO Folder /TILE/OFL02/STATUS/ADC (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
-IOVDbFolder                                        INFO Folder /TILE/OFL02/TIME/CHANNELOFFSET/PHY (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
-IOVDbFolder                                        INFO Folder /TILE/ONL01/STATUS/ADC (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
-IOVDbFolder                                        INFO Folder /LAR/LArCellPositionShift (PoolRef) db-read 1/1 objs/chan/bytes 1/1/195 ((     0.39 ))s
-IOVDbSvc                                           INFO  bytes in ((      1.28 ))s
-IOVDbSvc                                           INFO Connection sqlite://;schema=mycool.db;dbname=OFLP200 : nConnect: 0 nFolders: 0 ReadTime: ((     0.00 ))s
-IOVDbSvc                                           INFO Connection COOLOFL_LAR/OFLP200 : nConnect: 2 nFolders: 2 ReadTime: ((     1.28 ))s
-IOVDbSvc                                           INFO Connection COOLOFL_TILE/OFLP200 : nConnect: 1 nFolders: 11 ReadTime: ((     0.00 ))s
-AthDictLoaderSvc                                   INFO in finalize...
-ToolSvc                                            INFO Removing all tools created by ToolSvc
-ToolSvc.ByteStreamMetadataTool                     INFO in finalize()
-ToolSvc.TileRawChannelContByteStreamTool           INFO Finalizing TileRawChannelContByteStreamTool successfuly
-ToolSvc.TileROD_Decoder.TileL2Builder              INFO Finalizing
-*****Chrono*****                                   INFO ****************************************************************************************************
-*****Chrono*****                                   INFO WARNING: MT job; statistics are unreliable
-*****Chrono*****                                   INFO  The Final CPU consumption ( Chrono ) Table (ordered)
-*****Chrono*****                                   INFO ****************************************************************************************************
-cObjR_ALL                                          INFO Time User   : Tot=  370 [ms] Ave/Min/Max=  185(+-  185)/    0/  370 [ms] #=  2
-cObj_ALL                                           INFO Time User   : Tot=  420 [ms] Ave/Min/Max=  210(+-  180)/   30/  390 [ms] #=  2
-ChronoStatSvc                                      INFO Time User   : Tot= 10.2  [s]                                             #=  1
-*****Chrono*****                                   INFO ****************************************************************************************************
-ChronoStatSvc.finalize()                           INFO  Service finalized successfully 
-ApplicationMgr                                     INFO Application Manager Finalized successfully
-ApplicationMgr                                     INFO Application Manager Terminated successfully
+CondInputLoader                                     INFO Finalizing CondInputLoader...
+IncidentProcAlg2                                    INFO Finalize
+AvalancheSchedulerSvc                               INFO Joining Scheduler thread
+PyComponentMgr                                      INFO Finalizing PyComponentMgr...
+EventDataSvc                                        INFO Finalizing EventDataSvc - package version StoreGate-00-00-00
+IdDictDetDescrCnv                                   INFO in finalize
+IOVDbFolder                                         INFO Folder /LAR/Align (PoolRef) db-read 1/1 objs/chan/bytes 1/1/170 ((     0.04 ))s
+IOVDbFolder                                         INFO Folder /TILE/OFL02/CALIB/CES (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
+IOVDbFolder                                         INFO Folder /TILE/OFL02/CALIB/CIS/FIT/LIN (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
+IOVDbFolder                                         INFO Folder /TILE/OFL02/CALIB/CIS/FIT/NLN (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
+IOVDbFolder                                         INFO Folder /TILE/OFL02/CALIB/EMS (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
+IOVDbFolder                                         INFO Folder /TILE/OFL02/CALIB/LAS/FIBER (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
+IOVDbFolder                                         INFO Folder /TILE/OFL02/CALIB/LAS/LIN (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
+IOVDbFolder                                         INFO Folder /TILE/OFL02/CALIB/LAS/NLN (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
+IOVDbFolder                                         INFO Folder /TILE/OFL02/NOISE/SAMPLE (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
+IOVDbFolder                                         INFO Folder /TILE/OFL02/STATUS/ADC (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
+IOVDbFolder                                         INFO Folder /TILE/OFL02/TIME/CHANNELOFFSET/PHY (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
+IOVDbFolder                                         INFO Folder /TILE/ONL01/STATUS/ADC (AttrListColl) db-read 0/0 objs/chan/bytes 0/277/0 ((     0.00 ))s
+IOVDbFolder                                         INFO Folder /LAR/LArCellPositionShift (PoolRef) db-read 1/1 objs/chan/bytes 1/1/195 ((     0.02 ))s
+IOVDbSvc                                            INFO  bytes in ((      0.06 ))s
+IOVDbSvc                                            INFO Connection sqlite://;schema=mycool.db;dbname=OFLP200 : nConnect: 0 nFolders: 0 ReadTime: ((     0.00 ))s
+IOVDbSvc                                            INFO Connection COOLOFL_LAR/OFLP200 : nConnect: 2 nFolders: 2 ReadTime: ((     0.06 ))s
+IOVDbSvc                                            INFO Connection COOLOFL_TILE/OFLP200 : nConnect: 1 nFolders: 11 ReadTime: ((     0.00 ))s
+AthDictLoaderSvc                                    INFO in finalize...
+ToolSvc                                             INFO Removing all tools created by ToolSvc
+ToolSvc.TileRawChannelContByteStreamTool            INFO Finalizing TileRawChannelContByteStreamTool successfuly
+ToolSvc.TileROD_Decoder.TileL2Builder               INFO Finalizing
+ToolSvc.ByteStreamMetadataTool                      INFO in finalize()
+*****Chrono*****                                    INFO ****************************************************************************************************
+*****Chrono*****                                    INFO WARNING: MT job; statistics are unreliable
+*****Chrono*****                                    INFO  The Final CPU consumption ( Chrono ) Table (ordered)
+*****Chrono*****                                    INFO ****************************************************************************************************
+cObjR_ALL                                           INFO Time User   : Tot=  300 [ms] Ave/Min/Max=  150(+-  140)/   10/  290 [ms] #=  2
+cObj_ALL                                            INFO Time User   : Tot=  340 [ms] Ave/Min/Max=  170(+-  140)/   30/  310 [ms] #=  2
+ChronoStatSvc                                       INFO Time User   : Tot= 10.3  [s]                                             #=  1
+*****Chrono*****                                    INFO ****************************************************************************************************
+ChronoStatSvc.finalize()                            INFO  Service finalized successfully 
+ApplicationMgr                                      INFO Application Manager Finalized successfully
+ApplicationMgr                                      INFO Application Manager Terminated successfully
 Py:Athena            INFO leaving with code 0: "successful run"
diff --git a/TileCalorimeter/TileSvc/TileByteStream/src/TileROD_Decoder.cxx b/TileCalorimeter/TileSvc/TileByteStream/src/TileROD_Decoder.cxx
index 6f2df10fafd..8e400d36175 100644
--- a/TileCalorimeter/TileSvc/TileByteStream/src/TileROD_Decoder.cxx
+++ b/TileCalorimeter/TileSvc/TileByteStream/src/TileROD_Decoder.cxx
@@ -33,6 +33,8 @@ static const InterfaceID IID_ITileROD_Decoder("TileROD_Decoder", 1, 0);
 TileROD_Decoder::TileROD_Decoder(const std::string& type, const std::string& name,
                                  const IInterface* parent)
   : AthAlgTool(type, name, parent)
+  , m_ampMinThresh_pC(-1.)
+  , m_ampMinThresh_MeV(-1.)
   , m_of2Default(true)
   , m_MBTS(nullptr)
   , m_hid2re(nullptr)
@@ -50,9 +52,20 @@ TileROD_Decoder::TileROD_Decoder(const std::string& type, const std::string& nam
   }
 }
 
-void TileROD_Decoder::updateAmpThreshold() {
-  m_ampMinThresh_pC = m_ampMinThresh * (12.5 / 1023.);
-  m_ampMinThresh_MeV = m_ampMinThresh * (12.5 / 1023. / 1.05 * 1000.);
+void TileROD_Decoder::updateAmpThreshold(int run) {
+  if (m_ampMinThresh_MeV < 0 || m_ampMinThresh_pC < 0){
+    if (run < 0) run = m_fullTileRODs;
+    if (run >= 4444444) { // FIXME: should put correct run number here, once it is known
+      m_ampMinThresh_pC  = m_ampMinThresh * (25.  / 4095.);
+      m_ampMinThresh_MeV = m_ampMinThresh * (25.  / 4095. / 1.05 * 1000.);
+    } else {
+      m_ampMinThresh_pC  = m_ampMinThresh * (12.5 / 1023.);
+      m_ampMinThresh_MeV = m_ampMinThresh * (12.5 / 1023. / 1.05 * 1000.);
+    }
+  }
+  ATH_MSG_DEBUG("in TileROD_Decoder::updateAmpThreshold, m_ampMinThresh = " << m_ampMinThresh);
+  ATH_MSG_DEBUG("in TileROD_Decoder::updateAmpThreshold, m_ampMinThresh_MeV = " << m_ampMinThresh_MeV);
+  ATH_MSG_DEBUG("in TileROD_Decoder::updateAmpThreshold, m_ampMinThresh_pC = " << m_ampMinThresh_pC);
 }
 
 /** destructor
@@ -88,8 +101,6 @@ int TileROD_Decoder::getErrorCounter() {
 
 StatusCode TileROD_Decoder::initialize() {
   
-  updateAmpThreshold();
-
   m_rc2bytes5.setVerbose(m_verbose);
   m_rc2bytes2.setVerbose(m_verbose);
   m_rc2bytes.setVerbose(m_verbose);
@@ -137,6 +148,8 @@ StatusCode TileROD_Decoder::initialize() {
     m_L2Builder.disable();
   }
   
+  updateAmpThreshold();
+
   // Initialize
   this->m_hashFunc.initialize(m_tileHWID);
   
@@ -3498,7 +3511,7 @@ uint32_t TileROD_Decoder::make_copyHLT(bool of2,
 
     // This is looking at event data via member variables.  Won't work with MT.
     if (Gaudi::Hive::currentContext().slot() > 1) {
-      ATH_MSG_ERROR("TileROD_Decderr::make_copyHLT is not MT-safe but used in "
+      ATH_MSG_ERROR("TileROD_Decoder::make_copyHLT is not MT-safe but used in "
                     "a MT job.  Results will likely be wrong.");
     }
     if (m_MBTS && MBTS_chan >= 0) {
-- 
GitLab