diff --git a/Calorimeter/CaloAlignment/CaloAlignmentAlgs/CMakeLists.txt b/Calorimeter/CaloAlignment/CaloAlignmentAlgs/CMakeLists.txt
new file mode 100644
index 0000000000000000000000000000000000000000..ae42c874df3cb1dced53ac20c82cc261172c8ac8
--- /dev/null
+++ b/Calorimeter/CaloAlignment/CaloAlignmentAlgs/CMakeLists.txt
@@ -0,0 +1,10 @@
+# Copyright (C) 2002-2021 CERN for the benefit of the ATLAS collaboration
+
+# Declare the package name:
+atlas_subdir( CaloAlignmentAlgs )
+
+atlas_add_component( CaloAlignmentAlgs
+                     src/*.cxx 
+		     src/components/*.cxx
+                     LINK_LIBRARIES GaudiKernel AthenaBaseComps AthenaKernel GeoModelUtilities CaloConditions CaloDetDescrLib CaloDetDescrUtils )
+
diff --git a/Calorimeter/CaloAlignment/CaloAlignmentAlgs/src/CaloAlignCondAlg.cxx b/Calorimeter/CaloAlignment/CaloAlignmentAlgs/src/CaloAlignCondAlg.cxx
new file mode 100644
index 0000000000000000000000000000000000000000..5b7249c9a58746fb37b956e55d6f0cc092d1a7f6
--- /dev/null
+++ b/Calorimeter/CaloAlignment/CaloAlignmentAlgs/src/CaloAlignCondAlg.cxx
@@ -0,0 +1,73 @@
+/*
+   Copyright (C) 2002-2021 CERN for the benefit of the ATLAS collaboration
+*/
+
+#include "CaloAlignCondAlg.h"
+
+#include "CaloDetDescrUtils/CaloDetDescrBuilder.h"
+#include "AthenaKernel/getMessageSvc.h"
+
+#include <memory>
+
+StatusCode CaloAlignCondAlg::initialize()
+{
+  ATH_MSG_DEBUG("initialize " << name());
+
+  ATH_CHECK(m_condSvc.retrieve());
+  ATH_CHECK(m_readKeyGeoAlign.initialize());
+  ATH_CHECK(m_readKeyCellPosShift.initialize());
+  ATH_CHECK(m_writeKey.initialize());
+
+  // Register Write Cond Handle
+  if(m_condSvc->regHandle(this, m_writeKey).isFailure()) {
+    ATH_MSG_ERROR("unable to register WriteCondHandle " << m_writeKey.fullKey() << " with CondSvc");
+    return StatusCode::FAILURE;
+  }
+
+  return StatusCode::SUCCESS;
+}
+
+StatusCode CaloAlignCondAlg::execute(const EventContext& ctx) const
+{
+  // ____________ Construct Write Cond Handle and check its validity ____________
+  SG::WriteCondHandle<CaloDetDescrManager> writeHandle{m_writeKey,ctx};
+  if (writeHandle.isValid()) {
+    ATH_MSG_DEBUG("Found valid write handle");
+    return StatusCode::SUCCESS;
+  }
+  
+  // ____________ Get Read Cond Objects ____________
+  // 1. GeoAlignmentStore
+  SG::ReadCondHandle<GeoAlignmentStore> readHandleGeoAlign{m_readKeyGeoAlign,ctx};
+  const GeoAlignmentStore* readCdoGeoAlign{*readHandleGeoAlign};
+  if(!readCdoGeoAlign) {
+    ATH_MSG_ERROR("Null pointer to the read conditions object of type GeoAlignmentStore");
+    return StatusCode::FAILURE;
+  }
+  ATH_MSG_DEBUG("Retrieved GeoAlignmentStore object form the Condition Store");
+
+  writeHandle.addDependency(readHandleGeoAlign);
+
+  // 2. CaloCellPositionShift
+  SG::ReadCondHandle<CaloRec::CaloCellPositionShift> readHandleCellPosShift{m_readKeyCellPosShift,ctx};
+  const CaloRec::CaloCellPositionShift* readCdoCellPosShift{*readHandleCellPosShift};
+  if(!readCdoCellPosShift) {
+    ATH_MSG_ERROR("Null pointer to the read conditions object of type CaloRec::CaloCellPositionShift");
+    return StatusCode::FAILURE;
+  }
+  ATH_MSG_DEBUG("Retrieved CaloRec::CaloCellPositionShift object form the Condition Store");
+
+  writeHandle.addDependency(readHandleCellPosShift);
+
+  // ____________ Build new CaloDetDescrManager _________________
+  std::unique_ptr<CaloDetDescrManager> caloMgr = buildCaloDetDescr(serviceLocator()
+								   , Athena::getMessageSvc()
+								   , readCdoGeoAlign
+								   , readCdoCellPosShift);
+
+  ATH_CHECK(writeHandle.record(std::move(caloMgr)));
+  ATH_MSG_INFO("recorded new CaloDetDescr Manager condition object with key " << writeHandle.key() 
+	       << " and range " << writeHandle.getRange());
+
+  return StatusCode::SUCCESS;
+}
diff --git a/Calorimeter/CaloAlignment/CaloAlignmentAlgs/src/CaloAlignCondAlg.h b/Calorimeter/CaloAlignment/CaloAlignmentAlgs/src/CaloAlignCondAlg.h
new file mode 100644
index 0000000000000000000000000000000000000000..599c06b25cba69a1b7cb3143fd4886e880145812
--- /dev/null
+++ b/Calorimeter/CaloAlignment/CaloAlignmentAlgs/src/CaloAlignCondAlg.h
@@ -0,0 +1,54 @@
+/*
+  Copyright (C) 2002-2021 CERN for the benefit of the ATLAS collaboration
+*/
+
+#ifndef CALOALIGNMENTALGS_CALOALIGNCONDALG_H
+#define CALOALIGNMENTALGS_CALOALIGNCONDALG_H
+
+#include "AthenaBaseComps/AthReentrantAlgorithm.h"
+#include "StoreGate/ReadCondHandleKey.h"
+#include "StoreGate/WriteCondHandleKey.h"
+#include "GaudiKernel/ICondSvc.h"
+
+#include "GeoModelUtilities/GeoAlignmentStore.h"
+#include "CaloConditions/CaloCellPositionShift.h"
+#include "CaloDetDescr/CaloDetDescrManager.h"
+
+/**
+ * @class CaloAlignCondAlg
+ *
+ * @brief Condition Algorithm for making CaloDetDescrManager condition object
+ *
+ **/
+
+class CaloAlignCondAlg final : public AthReentrantAlgorithm
+{
+ public:
+  using AthReentrantAlgorithm::AthReentrantAlgorithm;
+  virtual ~CaloAlignCondAlg() = default;
+
+  virtual StatusCode initialize() override;
+  virtual StatusCode execute(const EventContext& ctx) const override;
+  virtual StatusCode finalize() override {return StatusCode::SUCCESS;};
+
+ private:
+  SG::ReadCondHandleKey<GeoAlignmentStore>  m_readKeyGeoAlign {this
+      , "LArAlignmentStore"
+      , "LArAlignmentStore"
+      , "SG key of the GeoAlignmentStore for LAr" };
+
+  SG::ReadCondHandleKey<CaloRec::CaloCellPositionShift> m_readKeyCellPosShift {this
+      , "CaloCellPositionShiftFolder"
+      , "LArCellPositionShift"
+      , "SG key of the CaloCellPositionShift" };
+
+  SG::WriteCondHandleKey<CaloDetDescrManager>  m_writeKey {this
+      , "CaloDetDescrManager"
+      , "CaloDetDescrManager"
+      , "SG key of the resulting CaloDetDescrManager" };
+
+  ServiceHandle<ICondSvc> m_condSvc{this, "CondSvc", "CondSvc"};
+
+};
+
+#endif
diff --git a/Calorimeter/CaloAlignment/CaloAlignmentAlgs/src/components/CaloAlignmentAlgs_entries.cxx b/Calorimeter/CaloAlignment/CaloAlignmentAlgs/src/components/CaloAlignmentAlgs_entries.cxx
new file mode 100644
index 0000000000000000000000000000000000000000..70dea40d86b336a40ee263882b9ff10926389ed5
--- /dev/null
+++ b/Calorimeter/CaloAlignment/CaloAlignmentAlgs/src/components/CaloAlignmentAlgs_entries.cxx
@@ -0,0 +1,3 @@
+#include "../CaloAlignCondAlg.h"
+
+DECLARE_COMPONENT( CaloAlignCondAlg )
diff --git a/Calorimeter/CaloDetDescr/CaloDetDescr/CaloDetDescrManager.h b/Calorimeter/CaloDetDescr/CaloDetDescr/CaloDetDescrManager.h
index 79a51a0eb3e55a5979ea8a4d0256640c4d2891ea..83338fa26d56bacf6c456ac93d5b917532119d4f 100755
--- a/Calorimeter/CaloDetDescr/CaloDetDescr/CaloDetDescrManager.h
+++ b/Calorimeter/CaloDetDescr/CaloDetDescr/CaloDetDescrManager.h
@@ -15,6 +15,7 @@
 #define CALODETDESCR_CALODETDESCRMANAGER_H
 
 #include "AthenaKernel/CLASS_DEF.h"
+#include "AthenaKernel/CondCont.h"
 #include "CaloIdentifier/CaloCell_ID.h"
 #include "CaloDetDescr/CaloConstIteratorAdaptor.h"
 #include "boost/range/iterator_range.hpp"
@@ -479,7 +480,7 @@ public:
 };
 
 CLASS_DEF( CaloDetDescrManager , 4548337 , 1 )
-
+CONDCONT_DEF( CaloDetDescrManager , 206559529 );
 
 class CaloSuperCellDetDescrManager
   : public CaloDetDescrManager_Base
diff --git a/Calorimeter/CaloDetDescrUtils/CMakeLists.txt b/Calorimeter/CaloDetDescrUtils/CMakeLists.txt
index 0a31db4c47c694f9b05c72255121db263bd0cc9f..00596b2a668c60569f4f3f056bad4c6f41b5b8be 100644
--- a/Calorimeter/CaloDetDescrUtils/CMakeLists.txt
+++ b/Calorimeter/CaloDetDescrUtils/CMakeLists.txt
@@ -7,4 +7,5 @@ atlas_subdir( CaloDetDescrUtils )
 atlas_add_library( CaloDetDescrUtils
 		   src/*.cxx
 		   PUBLIC_HEADERS CaloDetDescrUtils
-		   PRIVATE_LINK_LIBRARIES GaudiKernel CaloIdentifier GeoModelUtilities LArReadoutGeometry TileDetDescr StoreGateLib RDBAccessSvcLib )
+		   PRIVATE_LINK_LIBRARIES GaudiKernel CaloIdentifier CaloConditions GeoModelUtilities
+		                          LArReadoutGeometry TileDetDescr StoreGateLib RDBAccessSvcLib )
diff --git a/Calorimeter/CaloDetDescrUtils/src/CaloDetDescrBuilder.cxx b/Calorimeter/CaloDetDescrUtils/src/CaloDetDescrBuilder.cxx
index 521076a4a80d446d3456682282f3fa36ca1a0dc8..b908294b12e49fda73e3ca1e7bf568567fc5fc84 100644
--- a/Calorimeter/CaloDetDescrUtils/src/CaloDetDescrBuilder.cxx
+++ b/Calorimeter/CaloDetDescrUtils/src/CaloDetDescrBuilder.cxx
@@ -13,6 +13,8 @@
 #include "CaloDetDescr/CaloDescriptors.h"
 #include "CaloDetDescr/CaloDetDescrElementContainer.h"
 
+#include "CaloConditions/CaloCellPositionShift.h"
+
 #include "LArReadoutGeometry/LArDetectorManager.h"
 
 #include "LArReadoutGeometry/EMBCell.h"
@@ -44,7 +46,7 @@
 std::unique_ptr<CaloDetDescrManager> buildCaloDetDescr(ISvcLocator* svcLocator
 						       , IMessageSvc* msgSvc
 						       , const GeoAlignmentStore* geoAlignStore
-						       , const CaloRec::CaloCellPositionShift* /*cellPosShift*/)
+						       , const CaloRec::CaloCellPositionShift* cellPosShift)
 {
   MsgStream log(msgSvc, "buildCaloDetDescr"); 
 
@@ -80,16 +82,10 @@ std::unique_ptr<CaloDetDescrManager> buildCaloDetDescr(ISvcLocator* svcLocator
   // geometry layout
   caloMgr->set_lar_geometry(cellVol.layout());
 
-  //unsigned int idhash;
-  IdentifierHash min;
-  IdentifierHash max;
-
   const LArEM_ID* em_id = caloId_mgr->getEM_ID();
   const LArHEC_ID* hec_id = caloId_mgr->getHEC_ID();
   const LArFCAL_ID* fcal_id = caloId_mgr->getFCAL_ID();
 
-  // Create Calo Detector Elements
-
   // Check whether we are working with Test Beam geometry
   bool isTestBeam = false;
   const LArDetectorManager* larMgr{nullptr};
@@ -101,11 +97,19 @@ std::unique_ptr<CaloDetDescrManager> buildCaloDetDescr(ISvcLocator* svcLocator
     isTestBeam = larMgr->isTestBeam();
   }
 
+  // Get minimal value for Hash ID - needed to retrieve sagging information
+  IdentifierHash minHash,maxHash;
+  cell_id->calo_cell_hash_range(CaloCell_ID::LAREM,minHash,maxHash);
+
+  // Two objects needed to pass sagging info to updateAlignment() methods
+  CaloElementPositionShift elementPosShift;
+  CaloRec::CaloCellPositionShift::size_type posShiftInd;
+
   // ****************************************************************
   // **                   --- --- EMB --- ---                      **
   // ****************************************************************
 
-  // --- Retrieve Emec Detector Manager
+  // --- Retrieve EMB Detector Manager
   const EMBDetectorManager* embManager{nullptr};
   status = detStore->retrieve(embManager);
   if(status.isFailure()) {
@@ -115,13 +119,13 @@ std::unique_ptr<CaloDetDescrManager> buildCaloDetDescr(ISvcLocator* svcLocator
     //         --- --- Iterate over EMB regions and cells --- ---
     EMBDetectorManager::DetectorRegionConstIterator embregIt;
 
-    for (embregIt=embManager->beginDetectorRegion(); embregIt!=embManager->endDetectorRegion(); embregIt++) {
+    for (embregIt=embManager->beginDetectorRegion(); embregIt!=embManager->endDetectorRegion(); ++embregIt) {
       const EMBDetectorRegion *embRegion = *embregIt;
 
-      // *** ***  Create descriptor for this region *** ***
-      // Region identifier.
-      // Do some mapping between LArReadoutGeometry and CaloID
+      // _________ Create descriptor for this region _________
 
+      // Build region identifier.
+      // Do some mapping between LArReadoutGeometry and CaloID
       int barrel_ec = 0;
       switch(embRegion->getEndcapIndex()) {
       case EMBDetectorRegion::NEG:
@@ -156,14 +160,11 @@ std::unique_ptr<CaloDetDescrManager> buildCaloDetDescr(ISvcLocator* svcLocator
 
       std::vector<double> depth_in;
       std::vector<double> depth_out;
+      // __________________________________________________________
 
-      // *** ***  Create descriptor for this region *** ***
-
-      //
-      //            *** *** *** Iterate over cells *** *** ***
-      //
-      for (unsigned int iPhi=embRegion->beginPhiIndex();iPhi<embRegion->endPhiIndex();iPhi++) {
-	for (unsigned int iEta=embRegion->beginEtaIndex();iEta<embRegion->endEtaIndex();iEta++) {
+      // _________ Create EMB detector elements _________
+      for (unsigned int iPhi=embRegion->beginPhiIndex(); iPhi<embRegion->endPhiIndex(); ++iPhi) {
+	for (unsigned int iEta=embRegion->beginEtaIndex(); iEta<embRegion->endEtaIndex(); ++iEta) {
 	  EMBCellConstLink cellPtr = embRegion->getEMBCell(iEta,iPhi);
 
 	  // build hash identifier for this cell
@@ -173,7 +174,13 @@ std::unique_ptr<CaloDetDescrManager> buildCaloDetDescr(ISvcLocator* svcLocator
 						, iEta
 						, iPhi);
 
-	  // Create the element and store it
+	  // Create new element and store it
+	  if(cellPosShift) {
+            posShiftInd = cell_id->calo_cell_hash(chanId) - minHash;
+            elementPosShift.dx = cellPosShift->deltaX(posShiftInd);
+            elementPosShift.dy = cellPosShift->deltaY(posShiftInd);
+            elementPosShift.dz = cellPosShift->deltaZ(posShiftInd);
+          }
 	  EMBDetectorElement* embElement = new EMBDetectorElement(em_id->channel_hash(chanId)
 								  , 0
 								  , 0
@@ -181,10 +188,18 @@ std::unique_ptr<CaloDetDescrManager> buildCaloDetDescr(ISvcLocator* svcLocator
 								  , cellPtr
 								  , embRegion
 								  , isTestBeam
-								  , geoAlignStore);
-	  if(iPhi==embRegion->beginPhiIndex()) {
-	    phi_min = embElement->phi() - 0.5*embElement->dphi();
-	  }
+								  , geoAlignStore
+								  , cellPosShift ? &elementPosShift : nullptr);
+	  if(cellPosShift) {
+            if(iPhi==0 && (iEta==0||iEta==1)) {
+              phi_min = embElement->phi() - 0.5*embElement->dphi();
+            }
+          }
+          else {
+            if(iPhi==embRegion->beginPhiIndex()) {
+              phi_min = embElement->phi() - 0.5*embElement->dphi();
+            }
+          }
 
 	  // cell volume
 	  embElement->set_volume(cellVol.CellVolume(chanId));
@@ -213,7 +228,7 @@ std::unique_ptr<CaloDetDescrManager> buildCaloDetDescr(ISvcLocator* svcLocator
 	  }
 	} // Eta loop
       } // Phi loop
-      //            *** *** *** Iterate over cells *** *** ***
+      // _____________________________________________________________
 
       double eta_min = (embRegion->getSamplingIndex()==1 && embRegion->getRegionIndex()==0)
 	? embRegion->getDescriptor()->getEtaBinning().getStart() - embRegion->getDescriptor()->getEtaBinning().getDelta()
@@ -240,9 +255,18 @@ std::unique_ptr<CaloDetDescrManager> buildCaloDetDescr(ISvcLocator* svcLocator
       // 'alignable' values
       embDescr->setLArRegMin(reg_min);
       embDescr->setLArRegMax(reg_max);
-      embDescr->setLArEtaMin(eta_min);
       embDescr->setLArPhiMin(phi_min);
-
+      if(cellPosShift) {
+        if(embRegion->getEndcapIndex()==EMBDetectorRegion::NEG) {
+          embDescr->setLArEtaMin(-reg_max);
+        }
+        else {
+          embDescr->setLArEtaMin(reg_min);
+        }
+      }
+      else {
+        embDescr->setLArEtaMin(eta_min);
+      }
     }// Region loop
   } // if EMB manager has been retrieved
 
@@ -264,11 +288,12 @@ std::unique_ptr<CaloDetDescrManager> buildCaloDetDescr(ISvcLocator* svcLocator
     //         --- --- Iterate over EMEC regions and cells --- ---
     EMECDetectorManager::DetectorRegionConstIterator emecregIt;
 
-    for (emecregIt=emecManager->beginDetectorRegion(); emecregIt!=emecManager->endDetectorRegion(); emecregIt++) {
+    for (emecregIt=emecManager->beginDetectorRegion(); emecregIt!=emecManager->endDetectorRegion(); ++emecregIt) {
       const EMECDetectorRegion *emecRegion = *emecregIt;
 
-      // *** ***  Create descriptor for this region *** ***
-      // Region identifier.
+      // _________ Create descriptor for this region _________
+
+      // Build Region identifier.
       // Do some mapping between LArReadoutGeometry and CaloID
       EMECDetectorRegion::DetectorSide endcapInd = emecRegion->getEndcapIndex();
 
@@ -319,13 +344,11 @@ std::unique_ptr<CaloDetDescrManager> buildCaloDetDescr(ISvcLocator* svcLocator
 
       std::vector<double> depth_in;
       std::vector<double> depth_out;
-      // *** ***  Create descriptor for this region *** ***
+      // _____________________________________________________________
 
-      //
-      //            *** *** *** Iterate over cells *** *** ***
-      //
-      for (unsigned int iPhi=emecRegion->beginPhiIndex();iPhi<emecRegion->endPhiIndex();iPhi++) {
-	for (unsigned int iEta=emecRegion->beginEtaIndex();iEta<emecRegion->endEtaIndex();iEta++) {
+      // _________ Create EMEC detector elements _________
+      for (unsigned int iPhi=emecRegion->beginPhiIndex(); iPhi<emecRegion->endPhiIndex(); ++iPhi) {
+	for (unsigned int iEta=emecRegion->beginEtaIndex(); iEta<emecRegion->endEtaIndex(); ++iEta) {
 	  EMECCellConstLink cellPtr = emecRegion->getEMECCell(iEta,iPhi);
 
 	  Identifier chanId = em_id->channel_id(barrel_ec
@@ -334,7 +357,13 @@ std::unique_ptr<CaloDetDescrManager> buildCaloDetDescr(ISvcLocator* svcLocator
 						, iEta
 						, iPhi);
 
-	  // Create the element and store it
+	  // Create new element and store it
+	  if(cellPosShift) {
+            posShiftInd = cell_id->calo_cell_hash(chanId) - minHash;
+            elementPosShift.dx = cellPosShift->deltaX(posShiftInd);
+            elementPosShift.dy = cellPosShift->deltaY(posShiftInd);
+            elementPosShift.dz = cellPosShift->deltaZ(posShiftInd);
+          }
 	  EMECDetectorElement* emecElement = new EMECDetectorElement(em_id->channel_hash(chanId)
 								     , 0
 								     , 0
@@ -342,8 +371,10 @@ std::unique_ptr<CaloDetDescrManager> buildCaloDetDescr(ISvcLocator* svcLocator
 								     , cellPtr
 								     , emecRegion
 								     , isTestBeam
-								     , geoAlignStore);
-	  if(iPhi==emecRegion->beginPhiIndex()) {
+								     , geoAlignStore
+								     , cellPosShift ? &elementPosShift : nullptr);
+	  if((cellPosShift && iPhi==0)
+	     ||(!cellPosShift && iPhi==emecRegion->beginPhiIndex())) {
 	    phi_min = emecElement->phi() - 0.5*emecElement->dphi();
 	  }
 
@@ -373,7 +404,7 @@ std::unique_ptr<CaloDetDescrManager> buildCaloDetDescr(ISvcLocator* svcLocator
 	  }
 	} // Eta loop
       } // Phi loop
-      //            *** *** *** Iterate over cells *** *** ***
+      // ____________________________________________________________________
 
       double eta_min = emecRegion->getDescriptor()->getEtaBinning().getStart();
       double eta_max = emecRegion->getDescriptor()->getEtaBinning().getEnd();
@@ -397,8 +428,18 @@ std::unique_ptr<CaloDetDescrManager> buildCaloDetDescr(ISvcLocator* svcLocator
       // 'alignable' values
       emecDescr->setLArRegMin(reg_min);
       emecDescr->setLArRegMax(reg_max);
-      emecDescr->setLArEtaMin(eta_min);
       emecDescr->setLArPhiMin(phi_min);
+      if(cellPosShift) {
+        if(emecRegion->getEndcapIndex()==EMECDetectorRegion::NEG) {
+          emecDescr->setLArEtaMin(-reg_max);
+        }
+        else {
+          emecDescr->setLArEtaMin(reg_min);
+        }
+      }
+      else {
+        emecDescr->setLArEtaMin(eta_min);
+      }
     }// Region loop
   }// if EMEC manager has been retrieved
 
@@ -421,11 +462,12 @@ std::unique_ptr<CaloDetDescrManager> buildCaloDetDescr(ISvcLocator* svcLocator
     //         --- --- Iterate over HEC regions and cells --- ---
     HECDetectorManager::DetectorRegionConstIterator hecregIt;
 
-    for (hecregIt=hecManager->beginDetectorRegion(); hecregIt!=hecManager->endDetectorRegion(); hecregIt++) {
+    for (hecregIt=hecManager->beginDetectorRegion(); hecregIt!=hecManager->endDetectorRegion(); ++hecregIt) {
       const HECDetectorRegion *hecregion = *hecregIt;
 
-      // *** ***  Create descriptor for this region *** ***
-      // Region identifier.
+      // _________ Create descriptor for this region _________
+
+      // Build Region identifier.
       // Do some mapping between LArReadoutGeometry and CaloID
       HECDetectorRegion::DetectorSide endcapInd = hecregion->getEndcapIndex();
       int pos_neg = endcapInd==HECDetectorRegion::NEG ? -2 : 2;
@@ -452,12 +494,11 @@ std::unique_ptr<CaloDetDescrManager> buildCaloDetDescr(ISvcLocator* svcLocator
 
       std::vector<double> depth_in;
       std::vector<double> depth_out;
+      // _____________________________________________________________
 
-      //
-      //            *** *** *** Iterate over cells *** *** ***
-      //
-      for (unsigned int iPhi=hecregion->beginPhiIndex();iPhi<hecregion->endPhiIndex();iPhi++) {
-	for (unsigned int iEta=hecregion->beginEtaIndex();iEta<hecregion->endEtaIndex();iEta++)	{
+      // _________ Create HEC detector elements _________
+      for (unsigned int iPhi=hecregion->beginPhiIndex(); iPhi<hecregion->endPhiIndex(); ++iPhi) {
+	for (unsigned int iEta=hecregion->beginEtaIndex(); iEta<hecregion->endEtaIndex(); ++iEta) {
 	  HECCellConstLink cellPtr = hecregion->getHECCell(iEta,iPhi);
 	  // build hash identifier for this cell
 	  // Do some mapping between LArReadoutGeometry and CaloID
@@ -470,6 +511,12 @@ std::unique_ptr<CaloDetDescrManager> buildCaloDetDescr(ISvcLocator* svcLocator
 						   , iPhi);
 
 	    // Create the element and store it
+	    if(cellPosShift) {
+              posShiftInd = cell_id->calo_cell_hash(chanId) - minHash;
+              elementPosShift.dx = cellPosShift->deltaX(posShiftInd);
+              elementPosShift.dy = cellPosShift->deltaY(posShiftInd);
+              elementPosShift.dz = cellPosShift->deltaZ(posShiftInd);
+            }
 	    HECDetectorElement* hecElement = new HECDetectorElement(hec_id->channel_hash(chanId)
 								    , 0
 								    , 0
@@ -477,10 +524,13 @@ std::unique_ptr<CaloDetDescrManager> buildCaloDetDescr(ISvcLocator* svcLocator
 								    , cellPtr
 								    , hecregion
 								    , isTestBeam
-								    , geoAlignStore);
-	    if(iPhi==hecregion->beginPhiIndex()) {
-	      phi_min = hecElement->phi() - 0.5*hecElement->dphi();
-	    }
+								    , geoAlignStore
+								    , cellPosShift ? &elementPosShift : nullptr);
+
+	    if((cellPosShift && iPhi==0)
+               || (!cellPosShift && iPhi==hecregion->beginPhiIndex())) {
+              phi_min = hecElement->phi() - 0.5*hecElement->dphi();
+            }
 
 	    // cell volume
 	    hecElement->set_volume(cellVol.CellVolume(chanId));
@@ -534,8 +584,19 @@ std::unique_ptr<CaloDetDescrManager> buildCaloDetDescr(ISvcLocator* svcLocator
       // 'alignable' values
       hecDescr->setLArRegMin(reg_min);
       hecDescr->setLArRegMax(reg_max);
-      hecDescr->setLArEtaMin(eta_min);
       hecDescr->setLArPhiMin(phi_min);
+      if(cellPosShift) {
+        if(hecregion->getEndcapIndex()==HECDetectorRegion::NEG) {
+          hecDescr->setLArEtaMin(-reg_max);
+        }
+        else {
+          hecDescr->setLArEtaMin(reg_min);
+        }
+      }
+      else {
+        hecDescr->setLArEtaMin(eta_min);
+      }
+
     }// Region loop
   } // if HEC manager has been retrieved
 
@@ -558,11 +619,12 @@ std::unique_ptr<CaloDetDescrManager> buildCaloDetDescr(ISvcLocator* svcLocator
     //         --- --- Iterate over FCAL modules and tiles --- ---
     FCALDetectorManager::ConstIterator fcalmodIt;
 
-    for (fcalmodIt=fcalManager->beginFCAL(); fcalmodIt!=fcalManager->endFCAL(); fcalmodIt++) {
+    for (fcalmodIt=fcalManager->beginFCAL(); fcalmodIt!=fcalManager->endFCAL(); ++fcalmodIt) {
       const FCALModule* fcalmodule = *fcalmodIt;
 
-      // *** ***  Create descriptor for this module *** ***
-      // Module identifier.
+      // _________ Create descriptor for this module _________
+
+      // Build module identifier.
       // Do some mapping between LArReadoutGeometry and CaloID
 
       FCALModule::Endcap endcapInd = fcalmodule->getEndcapIndex();
@@ -590,17 +652,22 @@ std::unique_ptr<CaloDetDescrManager> buildCaloDetDescr(ISvcLocator* svcLocator
 
       std::vector<double> depth_in;
       std::vector<double> depth_out;
+      // ___________________________________________________________
 
-      //
-      //            *** *** *** Iterate over cells *** *** ***
-      //
+      // _________ Create FCAL detector elements _________
       FCALModule::ConstIterator fcaltileIt;
-      for (fcaltileIt=fcalmodule->beginTiles();fcaltileIt!=fcalmodule->endTiles();fcaltileIt++) {
+      for (fcaltileIt=fcalmodule->beginTiles(); fcaltileIt!=fcalmodule->endTiles(); ++fcaltileIt) {
 	Identifier chanId = fcal_id->channel_id(pos_neg
 						, (int)fcalmodule->getModuleIndex()
 						, fcaltileIt->getIndexJ()   // eta
 						, fcaltileIt->getIndexI());  // phi
 
+	if(cellPosShift) {
+          posShiftInd = cell_id->calo_cell_hash(chanId) - minHash;
+          elementPosShift.dx = cellPosShift->deltaX(posShiftInd);
+          elementPosShift.dy = cellPosShift->deltaY(posShiftInd);
+          elementPosShift.dz = cellPosShift->deltaZ(posShiftInd);
+        }
 	FCALDetectorElement* fcalElement = new FCALDetectorElement(fcal_id->channel_hash(chanId)
 								   , 0
 								   , 0
@@ -608,7 +675,8 @@ std::unique_ptr<CaloDetDescrManager> buildCaloDetDescr(ISvcLocator* svcLocator
 								   , &(*fcaltileIt)
 								   , fcalmodule
 								   , isTestBeam
-								   , geoAlignStore);
+								   , geoAlignStore
+								   , cellPosShift ? &elementPosShift : nullptr);
 	// calculate cell volume
 	double tubeSpacing = cellVol.getFcalTubeSpacing((int)fcalmodule->getModuleIndex());
 	unsigned int numTubes = fcaltileIt->getNumTubes();
@@ -684,8 +752,9 @@ std::unique_ptr<CaloDetDescrManager> buildCaloDetDescr(ISvcLocator* svcLocator
   }
   else {
     log << MSG::DEBUG << " Found the TileDetDescrManager " << endmsg;
-    cell_id->calo_cell_hash_range((int)CaloCell_ID::TILE,min,max);
-    for(unsigned int idhash=0; idhash < max-min; idhash++) {
+    cell_id->calo_cell_hash_range((int)CaloCell_ID::TILE,minHash,maxHash);
+    unsigned idHashMax = maxHash-minHash;
+    for(unsigned int idhash=0; idhash < idHashMax; ++idhash) {
       CaloDetDescrElement* newelt = tile_mgr->get_cell_element(idhash);
       if(newelt) {
 	caloMgr->add(newelt);
diff --git a/Calorimeter/CaloUtils/CMakeLists.txt b/Calorimeter/CaloUtils/CMakeLists.txt
index 9ddd5c3e55d6c336fc4874cf4a595616830d6209..721203a80b95dc335acf8d6027c70852eb260b10 100644
--- a/Calorimeter/CaloUtils/CMakeLists.txt
+++ b/Calorimeter/CaloUtils/CMakeLists.txt
@@ -60,7 +60,7 @@ atlas_add_test( CaloTowerStore_test
 atlas_add_test( CaloTowerBuilderTool_test
    SCRIPT test/CaloTowerBuilderTool_test.sh
    LOG_IGNORE_PATTERN "Reading file|Unable to locate catalog|Cache alignment|IOVDbSvc +INFO|INFO Initializing"
-   ENVIRONMENT "ATLAS_REFERENCE_TAG=CaloUtils/CaloUtils-01-00-15"
+   ENVIRONMENT "ATLAS_REFERENCE_TAG=CaloUtils/CaloUtils-01-00-16"
    PROPERTIES TIMEOUT 500 )
 
 atlas_add_test( ToolWithConstants_test
diff --git a/Calorimeter/CaloUtils/share/CaloTowerStore_test.ref b/Calorimeter/CaloUtils/share/CaloTowerStore_test.ref
index 324df2d878a8365690d101df03530d4d7e16a6f9..10c6f613c6b68972aebcf4372727ff6c16ba41a6 100644
--- a/Calorimeter/CaloUtils/share/CaloTowerStore_test.ref
+++ b/Calorimeter/CaloUtils/share/CaloTowerStore_test.ref
@@ -255,6 +255,7 @@ AthenaEventLoopMgr   INFO   ===>>>  start processing event #1, run #1 0 events p
 IOVDbSvc             INFO Opening COOL connection for COOLOFL_LAR/OFLP200
 IOVDbSvc             INFO Disconnecting from COOLOFL_LAR/OFLP200
 LArAlignCondAlg      INFO recorded new GeoAlignmentStore object for LAr with key LArAlignmentStore and range {[0,l:0] - [INVALID]}
+CaloAlignCondAlg     INFO recorded new CaloDetDescr Manager condition object with key CaloDetDescrManager and range {[0,t:0,l:0] - [INVALID]}
 test1
 AthenaEventLoopMgr   INFO   ===>>>  done processing event #1, run #1 1 events processed so far  <<<===
 /cvmfs/atlas-co...   INFO Database being retired...
diff --git a/Event/EventOverlay/EventOverlayJobTransforms/share/Rt_override_CONDBR2-BLKPA-2015-12.py b/Event/EventOverlay/EventOverlayJobTransforms/share/Rt_override_CONDBR2-BLKPA-2015-12.py
index da704d780ddeb3e7d40cad2acc7c372b8bfa09b8..c0f5f6e2eefb5a3684a91c77773f20f60855a195 100644
--- a/Event/EventOverlay/EventOverlayJobTransforms/share/Rt_override_CONDBR2-BLKPA-2015-12.py
+++ b/Event/EventOverlay/EventOverlayJobTransforms/share/Rt_override_CONDBR2-BLKPA-2015-12.py
@@ -11,7 +11,7 @@ conddb.addFolderWithTag("MDT_OFL","/MDT/RTBLOB","MDTRT_Sim-04-BLOB",force=True,f
 
 #from Guillaume
 conddb.blockFolder("/LAR/LArCellPositionShift");
-conddb.addFolderWithTag("LAR_OFL","/LAR/LArCellPositionShift","LArCellPositionShift-ideal",force=True,forceMC=True); 
+conddb.addFolderWithTag("LAR_OFL","/LAR/LArCellPositionShift","LArCellPositionShift-ideal",force=True,forceMC=True,className="CaloRec::CaloCellPositionShift");
 conddb.addOverride("/LAR/ElecCalibOfl/Shape/RTM/4samples1phase","LARElecCalibOflShapeRTM4samples1phase-RUN2-UPD4-00")
 conddb.addOverride("/LAR/ElecCalibOfl/OFC/PhysWave/RTM/4samples1phase","LARElecCalibOflOFCPhysWaveRTM4samples1phase-RUN2-UPD4-00")
 svcMgr.PoolSvc.ReadCatalog+=["xmlcatalog_file:"+"/cvmfs/atlas-condb.cern.ch/repo/conditions/poolcond/PoolFileCatalog.xml"]
diff --git a/Event/EventOverlay/EventOverlayJobTransforms/share/Rt_override_OFLCOND-MC15c-SDR-11.py b/Event/EventOverlay/EventOverlayJobTransforms/share/Rt_override_OFLCOND-MC15c-SDR-11.py
index c11cb6e0e0cf9568c50f5bb7c04857fcf0b09694..8a6deb519947c0d071a819508efa4dfebd2ff659 100644
--- a/Event/EventOverlay/EventOverlayJobTransforms/share/Rt_override_OFLCOND-MC15c-SDR-11.py
+++ b/Event/EventOverlay/EventOverlayJobTransforms/share/Rt_override_OFLCOND-MC15c-SDR-11.py
@@ -11,7 +11,7 @@ conddb.addFolderWithTag("MDT_OFL","/MDT/RTBLOB","MDTRT_Sim-04-BLOB",force=True,f
 
 #from Guillaume
 conddb.blockFolder("/LAR/LArCellPositionShift");
-conddb.addFolderWithTag("LAR_OFL","/LAR/LArCellPositionShift","LArCellPositionShift-ideal",force=True,forceMC=True); 
+conddb.addFolderWithTag("LAR_OFL","/LAR/LArCellPositionShift","LArCellPositionShift-ideal",force=True,forceMC=True,className="CaloRec::CaloCellPositionShift");
 conddb.addOverride("/LAR/ElecCalibOfl/Shape/RTM/4samples1phase","LARElecCalibOflShapeRTM4samples1phase-RUN2-UPD4-00")
 conddb.addOverride("/LAR/ElecCalibOfl/OFC/PhysWave/RTM/4samples1phase","LARElecCalibOflOFCPhysWaveRTM4samples1phase-RUN2-UPD4-00")
 svcMgr.PoolSvc.ReadCatalog+=["xmlcatalog_file:"+"/cvmfs/atlas-condb.cern.ch/repo/conditions/poolcond/PoolFileCatalog.xml"]
diff --git a/Event/EventOverlay/EventOverlayJobTransforms/share/Rt_override_OFLCOND-MC16-SDR-23.py b/Event/EventOverlay/EventOverlayJobTransforms/share/Rt_override_OFLCOND-MC16-SDR-23.py
index b3151045d17eb1b8dd0944353f300adc13ac4c2c..6d125207e5a91fab3a5f7473c0afcdfc666f91fa 100644
--- a/Event/EventOverlay/EventOverlayJobTransforms/share/Rt_override_OFLCOND-MC16-SDR-23.py
+++ b/Event/EventOverlay/EventOverlayJobTransforms/share/Rt_override_OFLCOND-MC16-SDR-23.py
@@ -11,7 +11,7 @@ conddb.addFolderWithTag("MDT_OFL","/MDT/RTBLOB","MDTRT_Sim-04-BLOB",force=True,f
 
 #from Guillaume
 conddb.blockFolder("/LAR/LArCellPositionShift");
-conddb.addFolderWithTag("LAR_OFL","/LAR/LArCellPositionShift","LArCellPositionShift-ideal",force=True,forceMC=True); 
+conddb.addFolderWithTag("LAR_OFL","/LAR/LArCellPositionShift","LArCellPositionShift-ideal",force=True,forceMC=True,className="CaloRec::CaloCellPositionShift");
 conddb.addOverride("/LAR/ElecCalibOfl/Shape/RTM/4samples1phase","LARElecCalibOflShapeRTM4samples1phase-RUN2-UPD4-00")
 conddb.addOverride("/LAR/ElecCalibOfl/OFC/PhysWave/RTM/4samples1phase","LARElecCalibOflOFCPhysWaveRTM4samples1phase-RUN2-UPD4-00")
 svcMgr.PoolSvc.ReadCatalog+=["xmlcatalog_file:"+"/cvmfs/atlas-condb.cern.ch/repo/conditions/poolcond/PoolFileCatalog.xml"]
diff --git a/Event/EventOverlay/EventOverlayJobTransforms/share/Rt_override_OFLCOND-MC16-SDR-26.py b/Event/EventOverlay/EventOverlayJobTransforms/share/Rt_override_OFLCOND-MC16-SDR-26.py
index 75fe998cb29a316f3fd670cefbfe144a0ef9b3e8..6fb455e8cc219e817241aaf7334825a31fad9f30 100644
--- a/Event/EventOverlay/EventOverlayJobTransforms/share/Rt_override_OFLCOND-MC16-SDR-26.py
+++ b/Event/EventOverlay/EventOverlayJobTransforms/share/Rt_override_OFLCOND-MC16-SDR-26.py
@@ -11,7 +11,7 @@ conddb.addFolderWithTag("MDT_OFL","/MDT/RTBLOB","MDTRT_Sim-04-BLOB",force=True,f
 
 #from Guillaume
 conddb.blockFolder("/LAR/LArCellPositionShift");
-conddb.addFolderWithTag("LAR_OFL","/LAR/LArCellPositionShift","LArCellPositionShift-ideal",force=True,forceMC=True); 
+conddb.addFolderWithTag("LAR_OFL","/LAR/LArCellPositionShift","LArCellPositionShift-ideal",force=True,forceMC=True,className="CaloRec::CaloCellPositionShift");
 conddb.addOverride("/LAR/ElecCalibOfl/Shape/RTM/4samples1phase","LARElecCalibOflShapeRTM4samples1phase-RUN2-UPD4-00")
 conddb.addOverride("/LAR/ElecCalibOfl/OFC/PhysWave/RTM/4samples1phase","LARElecCalibOflOFCPhysWaveRTM4samples1phase-RUN2-UPD4-00")
 svcMgr.PoolSvc.ReadCatalog+=["xmlcatalog_file:"+"/cvmfs/atlas-condb.cern.ch/repo/conditions/poolcond/PoolFileCatalog.xml"]
diff --git a/Event/EventOverlay/EventOverlayJobTransforms/share/Rt_override_OFLCOND-MC16-SDR-26_folders100M.py b/Event/EventOverlay/EventOverlayJobTransforms/share/Rt_override_OFLCOND-MC16-SDR-26_folders100M.py
index 4c8667b36c623cad2aa3c8569281a21d00e1b069..4dd84ed693a1069a9f6778f1e4d84bdf838b0f5e 100644
--- a/Event/EventOverlay/EventOverlayJobTransforms/share/Rt_override_OFLCOND-MC16-SDR-26_folders100M.py
+++ b/Event/EventOverlay/EventOverlayJobTransforms/share/Rt_override_OFLCOND-MC16-SDR-26_folders100M.py
@@ -11,7 +11,7 @@ conddb.addFolderWithTag("MDT_OFL","/MDT/RTBLOB","MDTRT_Sim-04-BLOB",force=True,f
 
 #from Guillaume
 conddb.blockFolder("/LAR/LArCellPositionShift");
-conddb.addFolderWithTag("LAR_OFL","/LAR/LArCellPositionShift","LArCellPositionShift-ideal",force=True,forceMC=True); 
+conddb.addFolderWithTag("LAR_OFL","/LAR/LArCellPositionShift","LArCellPositionShift-ideal",force=True,forceMC=True,className="CaloRec::CaloCellPositionShift");
 conddb.addOverride("/LAR/ElecCalibOfl/Shape/RTM/4samples1phase","LARElecCalibOflShapeRTM4samples1phase-RUN2-UPD4-00")
 conddb.addOverride("/LAR/ElecCalibOfl/OFC/PhysWave/RTM/4samples1phase","LARElecCalibOflOFCPhysWaveRTM4samples1phase-RUN2-UPD4-00")
 svcMgr.PoolSvc.ReadCatalog+=["xmlcatalog_file:"+"/cvmfs/atlas-condb.cern.ch/repo/conditions/poolcond/PoolFileCatalog.xml"]
diff --git a/Event/EventOverlay/EventOverlayJobTransforms/share/Rt_override_OFLCOND-MC16-SDR-27.py b/Event/EventOverlay/EventOverlayJobTransforms/share/Rt_override_OFLCOND-MC16-SDR-27.py
index 0834ff148d46fee92d0a5a9a80e3ceb2792dd71f..189e7d89dd71a4080b9b6ccea37108b2acad76dc 100644
--- a/Event/EventOverlay/EventOverlayJobTransforms/share/Rt_override_OFLCOND-MC16-SDR-27.py
+++ b/Event/EventOverlay/EventOverlayJobTransforms/share/Rt_override_OFLCOND-MC16-SDR-27.py
@@ -11,7 +11,7 @@ conddb.addFolderWithTag("MDT_OFL","/MDT/RTBLOB","MDTRT_Sim-04-BLOB",force=True,f
 
 #from Guillaume
 conddb.blockFolder("/LAR/LArCellPositionShift");
-conddb.addFolderWithTag("LAR_OFL","/LAR/LArCellPositionShift","LArCellPositionShift-ideal",force=True,forceMC=True); 
+conddb.addFolderWithTag("LAR_OFL","/LAR/LArCellPositionShift","LArCellPositionShift-ideal",force=True,forceMC=True,className="CaloRec::CaloCellPositionShift");
 conddb.addOverride("/LAR/ElecCalibOfl/Shape/RTM/4samples1phase","LARElecCalibOflShapeRTM4samples1phase-RUN2-UPD4-00")
 conddb.addOverride("/LAR/ElecCalibOfl/OFC/PhysWave/RTM/4samples1phase","LARElecCalibOflOFCPhysWaveRTM4samples1phase-RUN2-UPD4-00")
 svcMgr.PoolSvc.ReadCatalog+=["xmlcatalog_file:"+"/cvmfs/atlas-condb.cern.ch/repo/conditions/poolcond/PoolFileCatalog.xml"]
diff --git a/LArCalorimeter/LArCafJobs/share/LArReadCells_overlay.py b/LArCalorimeter/LArCafJobs/share/LArReadCells_overlay.py
index 6c7cd5f4ac65294dbb14938531d71de40170d884..9ed0b973d958fa77a25aa88e27da28453d735e0d 100644
--- a/LArCalorimeter/LArCafJobs/share/LArReadCells_overlay.py
+++ b/LArCalorimeter/LArCafJobs/share/LArReadCells_overlay.py
@@ -70,7 +70,7 @@ from AtlasGeoModel import GeoModelInit
 
 from IOVDbSvc.CondDB import conddb
 conddb.blockFolder("/LAR/LArCellPositionShift")
-conddb.addFolderWithTag("LAR_OFL","/LAR/LArCellPositionShift","LArCellPositionShift-ideal",force=True,forceMC=True) 
+conddb.addFolderWithTag("LAR_OFL","/LAR/LArCellPositionShift","LArCellPositionShift-ideal",force=True,forceMC=True,className="CaloRec::CaloCellPositionShift")
 
 include( "CaloDetMgrDetDescrCnv/CaloDetMgrDetDescrCnv_joboptions.py" )
 include( "LArDetDescr/LArDetDescr_joboptions.py" )
diff --git a/LArCalorimeter/LArCellRec/share/LArCellDeadOTXCorr_test.ref b/LArCalorimeter/LArCellRec/share/LArCellDeadOTXCorr_test.ref
index 20d762754505395196521dd8a93e026b0e1e937b..aabe0b6588e6778e2015bd40c9ee3757dce2b501 100644
--- a/LArCalorimeter/LArCellRec/share/LArCellDeadOTXCorr_test.ref
+++ b/LArCalorimeter/LArCellRec/share/LArCellDeadOTXCorr_test.ref
@@ -427,6 +427,8 @@ Domain[ROOT_All]     INFO                           /cvmfs/atlas-condb.cern.ch/r
 RootDatabase.open    INFO /cvmfs/atlas-condb.cern.ch/repo/conditions/cond09/cond09_mc.000027.gen.COND/cond09_mc.000027.gen.COND._0001.pool.root File version:52600
 /cvmfs/atlas-co...   INFO Database being retired...
 Domain[ROOT_All]     INFO ->  Deaccess DbDatabase   READ      [ROOT_All] 303FCBD8-653E-DD11-ABBD-000423D99862
+ of type TileDetDescrManager(CLID 2941)
+buildCaloDetDescr WARNING Could not get the TileDetectorManager. No Calo Elements will be built for Tile
 LArOnOffMappingAlg   INFO Done reading online/offline identifier mapping
 LArOnOffMappingAlg   INFO Found 195072 online identifier and 182468 offline identifier. 12604 disconnected channels.
 LArOnOffMappingAlg   INFO recorded new LArOnOffIdMap with range {[0,l:0] - [INVALID]} into Conditions Store
diff --git a/LArCalorimeter/LArExample/LArConditionsCommon/python/LArAlignable.py b/LArCalorimeter/LArExample/LArConditionsCommon/python/LArAlignable.py
index 5c4d544271462bdb9fcab31a5022cc11e5b95d56..160ede31994f23e5ad188faefecad0dadced3dd5 100755
--- a/LArCalorimeter/LArExample/LArConditionsCommon/python/LArAlignable.py
+++ b/LArCalorimeter/LArExample/LArConditionsCommon/python/LArAlignable.py
@@ -27,3 +27,5 @@ if activateCondAlgs:
   if not hasattr(condSeq,"LArAlignCondAlg"):
     from LArAlignmentAlgs.LArAlignmentAlgsConf import LArAlignCondAlg
     condSeq += LArAlignCondAlg("LArAlignCondAlg")
+    from CaloAlignmentAlgs.CaloAlignmentAlgsConf import CaloAlignCondAlg
+    condSeq += CaloAlignCondAlg("CaloAlignCondAlg")
diff --git a/LArCalorimeter/LArExample/TestLArDetDescr/TestLArDetDescr/TestCaloDDE.h b/LArCalorimeter/LArExample/TestLArDetDescr/TestLArDetDescr/TestCaloDDE.h
deleted file mode 100755
index b65c42611a20095dd4a8f4817c5e4dee32908e11..0000000000000000000000000000000000000000
--- a/LArCalorimeter/LArExample/TestLArDetDescr/TestLArDetDescr/TestCaloDDE.h
+++ /dev/null
@@ -1,77 +0,0 @@
-/*
-  Copyright (C) 2002-2021 CERN for the benefit of the ATLAS collaboration
-*/
-
-#ifndef TESTLARDETDESCR_TESTCALODDE_H
-#define TESTLARDETDESCR_TESTCALODDE_H
-
-/********************************************************************
-
-NAME:     TestCaloDDE.h 
-PACKAGE:  offline/LArCalorimeter/LArExample/TestLArDetDescr
-
-AUTHORS:  Claire Adam-Bourdarios
-CREATED:  Feb 2003
-
-PURPOSE:  provide example to retreive CaloDetDescr manager and
-          elements from StoreGate and test them.
-
-********************************************************************/
-// INCLUDE HEADER FILES:
-#include "AthenaBaseComps/AthAlgorithm.h"
-
-class CaloIdManager;
-class CaloDetDescrManager;
-#include "CaloIdentifier/CaloCell_ID.h"
-class ICaloRecoMaterialTool;
-class ICaloRecoSimpleGeomTool;
-class CaloPhiRange;
-
-class TestCaloDDE : public AthAlgorithm
-{
- public:
-
-  // constructor 
-  TestCaloDDE(const std::string& name, ISvcLocator* pSvcLocator);
-  // destructor 
-  virtual ~TestCaloDDE();
-
-  virtual StatusCode initialize();
-  virtual StatusCode finalize();
-  virtual StatusCode execute();
-
-  void print_subcalo(CaloCell_ID::CaloSample sample);
-  void print_eta_line(int phi_num, bool em, bool hec, bool fcal);
-  void print_phi_line(int eta_num, bool em, bool hec, bool fcal);
-  void print_elt_HW(bool em, bool hec, bool fcal);
-  void try_zone();
-  void try_each_descr_zone();
-  void try_zone(double eta, double deta, double phi, double dphi, int sampling_or_module);
-  void read_volumes();
-  void where_am_I(double eta, double phi);
-  void update();
-  void print_edges_via_CaloSample(CaloCell_ID::CaloSample sample, double eta, double phi );
-  void print_edges_via_SubCalo(CaloCell_ID::CaloSample sample, double eta, double phi );
-  void print_edges_via_CaloSample();
-  void print_edges_via_SubCalo();
-
- protected:
-  
-  const CaloIdManager*  m_calo_id_man;
-  const CaloDetDescrManager*  m_calo_dd_man;
-
-  // Simplified geometry :
-  ICaloRecoMaterialTool* m_lar_mat;
-  ICaloRecoSimpleGeomTool* m_lar_simplegeom;
-};
-
-#endif
-
-//end of TESTLARDETDESCR_TESTCALODDE 
-
-
-
-
-
-
-
diff --git a/LArCalorimeter/LArExample/TestLArDetDescr/src/TestCaloDDE.cxx b/LArCalorimeter/LArExample/TestLArDetDescr/src/TestCaloDDE.cxx
index 7f52574a3d1473a89199b7537f28442b2583cde3..be05449c9f2f49a80ec35075c9b1c5eaf97c3ca2 100755
--- a/LArCalorimeter/LArExample/TestLArDetDescr/src/TestCaloDDE.cxx
+++ b/LArCalorimeter/LArExample/TestLArDetDescr/src/TestCaloDDE.cxx
@@ -3,27 +3,25 @@
 */
 
 // INCLUDE HEADER FILES:
-#include "TestLArDetDescr/TestCaloDDE.h"
+#include "TestCaloDDE.h"
 
-// Athena related 
 #include "GaudiKernel/MsgStream.h"
 #include "Gaudi/Property.h"
-#include <algorithm>
 #include "StoreGate/StoreGateSvc.h"
 #include "CLHEP/Units/SystemOfUnits.h"
 #include "CLHEP/Geometry/Transform3D.h"
 
-// specific :
 #include "CaloIdentifier/LArID.h"
 #include "CaloIdentifier/CaloIdManager.h"
 
 #include "CaloDetDescr/CaloSubdetNames.h"
-#include "CaloDetDescr/CaloDetDescrManager.h"
 #include "CaloDetDescr/CaloDetDescriptor.h"
 #include "CaloDetDescr/ICaloRecoMaterialTool.h"
 #include "CaloDetDescr/ICaloRecoSimpleGeomTool.h"
 #include "CaloDetDescr/CaloDetDescrElement.h"
 #include "CaloGeoHelpers/CaloPhiRange.h"
+
+#include <algorithm>
 #include <cmath>
 
 #include "boost/io/ios_state.hpp"
@@ -31,30 +29,26 @@
 using HepGeom::Transform3D;
 using HepGeom::RotateZ3D;
 
-// -------------------------------------------------------------
-// Constructor 
-// -------------------------------------------------------------
-TestCaloDDE::TestCaloDDE(const std::string& name, 
-				   ISvcLocator* pSvcLocator): 
-  AthAlgorithm(name, pSvcLocator),
-  m_calo_id_man(0),
-  m_calo_dd_man(0),
-  m_lar_mat(0),
-  m_lar_simplegeom(0)
+TestCaloDDE::TestCaloDDE(const std::string& name
+			 , ISvcLocator* pSvcLocator)
+  : AthAlgorithm(name, pSvcLocator)
 {}
 
-// DESTRUCTOR:
 TestCaloDDE::~TestCaloDDE()
-{  }
+{}
 
-// INITIALIZE:
 StatusCode TestCaloDDE::initialize()
 {
   ATH_CHECK( detStore()->retrieve(m_calo_id_man) );
   ATH_MSG_DEBUG ( "Successfully retrieved CaloIdManager from DetectorStore" );
   
-  ATH_CHECK( detStore()->retrieve(m_calo_dd_man) );
-  ATH_MSG_DEBUG ( "Successfully retrieved CaloDetDescrManager from DetectorStore" );
+  if(m_useCondStore) {
+    ATH_CHECK(m_readCondKey.initialize());
+  }
+  else {
+    ATH_CHECK( detStore()->retrieve(m_calo_dd_man) );
+    ATH_MSG_DEBUG ( "Successfully retrieved CaloDetDescrManager from DetectorStore" );
+  }
 
   return StatusCode::SUCCESS;
 }
@@ -68,41 +62,52 @@ StatusCode TestCaloDDE::finalize()
 // EXECUTE:
 StatusCode TestCaloDDE::execute()
 {  
-  ATH_MSG_INFO ( "Executing TestCaloDDE with geometry : " 
-                 << m_calo_dd_man->lar_geometry());
+  const CaloDetDescrManager* caloDDMan{nullptr};
+  if(m_useCondStore) {
+    SG::ReadCondHandle<CaloDetDescrManager> readCondHandle{m_readCondKey};
+    caloDDMan = *readCondHandle;
+    if(!caloDDMan) {
+      ATH_MSG_FATAL("Failed to get CaloDetDescrManager from Condition Store");
+      return StatusCode::FAILURE;
+    }
+  }
+  else {
+    caloDDMan = m_calo_dd_man;
+  }
+
+  ATH_MSG_INFO ( "Executing TestCaloDDE with geometry : " << caloDDMan->lar_geometry());
 
   CaloPhiRange range;
   range.print(); 
 
   // Print Regions and/or CaloDDE :
 
-  //update();
   //if(m_lar_simplegeom) m_lar_simplegeom->print();
 
-  print_eta_line( 1, true, true, true);
-  //print_phi_line( 56, true, false, false);
+  print_eta_line( 1, true, true, true, caloDDMan);
+  //print_phi_line( 56, true, false, false, caloDDMan);
 
-  //print_edges_via_SubCalo();
-  //print_edges_via_CaloSample();
+  //print_edges_via_SubCalo(caloDDMan);
+  //print_edges_via_CaloSample(caloDDMan);
 
-  //  try_each_descr_zone();
-  //  try_zone();
+  //try_each_descr_zone(caloDDMan);
+  //try_zone(caloDDMan);
 
-  //print_elt_HW( true, true, true);
+  // print_elt_HW( true, true, true, caloDDMan);
 
-  /*
-  CaloCell_ID::CaloSample sample = CaloCell_ID::PreSamplerB;
-  print_subcalo( sample );
-
-  sample = CaloCell_ID::EMB1;
-  print_subcalo( sample );
-  sample = CaloCell_ID::EMB2;
-  print_subcalo( sample );
-  sample = CaloCell_ID::EMB3;
-  print_subcalo( sample );
-  */
 
-  //read_volumes();
+  // CaloCell_ID::CaloSample sample = CaloCell_ID::PreSamplerB;
+  // print_subcalo( sample,caloDDMan );
+
+  // sample = CaloCell_ID::EMB1;
+  // print_subcalo( sample,caloDDMan );
+  // sample = CaloCell_ID::EMB2;
+  // print_subcalo( sample,caloDDMan );
+  // sample = CaloCell_ID::EMB3;
+  // print_subcalo( sample,caloDDMan );
+
+
+  // read_volumes(caloDDMan);
 
   /*
   float min =  (float)toto.phi_min();
@@ -142,7 +147,8 @@ StatusCode TestCaloDDE::execute()
 }
 
 void
-TestCaloDDE::print_subcalo( CaloCell_ID::CaloSample sample )
+TestCaloDDE::print_subcalo(CaloCell_ID::CaloSample sample
+			   , const CaloDetDescrManager* caloDDMan)
 {
   ATH_MSG_INFO ( " printing CaloDDE characteristics " );
 
@@ -153,12 +159,12 @@ TestCaloDDE::print_subcalo( CaloCell_ID::CaloSample sample )
   double eta = 0.437500;
   double phi = 0.;
 
-  m_calo_dd_man->decode_sample (subcalo, barrel, sampling_or_module, sample);
+  caloDDMan->decode_sample (subcalo, barrel, sampling_or_module, sample);
 
   std::cout << " CaloCell_ID::CaloSample " << sample << " eta " << eta << " phi " << phi << std::endl;
 
   const CaloDetDescrElement* dde =
-   m_calo_dd_man->get_element(subcalo,sampling_or_module,barrel,eta,phi);
+   caloDDMan->get_element(subcalo,sampling_or_module,barrel,eta,phi);
 
   std::cout << " = subcalo " << subcalo << " barrel " << barrel 
 	    << " sampling_or_module " << sampling_or_module
@@ -172,7 +178,11 @@ TestCaloDDE::print_subcalo( CaloCell_ID::CaloSample sample )
 }
 
 void
-TestCaloDDE::print_eta_line(int phi_num, bool em, bool hec, bool fcal)
+TestCaloDDE::print_eta_line(int phi_num
+			    , bool em
+			    , bool hec
+			    , bool fcal
+			    , const CaloDetDescrManager* caloDDMan)
 {
   boost::io::ios_base_all_saver coutsave (std::cout);
 
@@ -205,7 +215,7 @@ TestCaloDDE::print_eta_line(int phi_num, bool em, bool hec, bool fcal)
       idcalohash = help_all->calo_cell_hash (sub_calo_num, idhash);
       id = help_em->channel_id(idhash);
 
-      const CaloDetDescrElement* newelt = m_calo_dd_man->get_element(idcalohash); 
+      const CaloDetDescrElement* newelt = caloDDMan->get_element(idcalohash); 
       if ( !newelt ) std::cout << "missing em element" 
 			       << i << std::endl;
       
@@ -244,7 +254,7 @@ TestCaloDDE::print_eta_line(int phi_num, bool em, bool hec, bool fcal)
       
       id = help_hec->channel_id(idhash);
       
-      const CaloDetDescrElement* newelt = m_calo_dd_man->get_element(idcalohash); 
+      const CaloDetDescrElement* newelt = caloDDMan->get_element(idcalohash); 
       if ( !newelt ) 
 	std::cout << "missing hec element" 
 		  << idhash << std::endl;
@@ -277,7 +287,7 @@ TestCaloDDE::print_eta_line(int phi_num, bool em, bool hec, bool fcal)
       idcalohash = help_all->calo_cell_hash (sub_calo_num, idhash);
       id = help_fcal->channel_id(idhash);
 
-      const CaloDetDescrElement* newelt = m_calo_dd_man->get_element(idcalohash); 
+      const CaloDetDescrElement* newelt = caloDDMan->get_element(idcalohash); 
       if ( !newelt ) std::cout << "missing fcal element" 
 			       << i << std::endl;
 
@@ -302,7 +312,11 @@ TestCaloDDE::print_eta_line(int phi_num, bool em, bool hec, bool fcal)
 }
 
 void
-TestCaloDDE::print_phi_line(int eta_num, bool em, bool hec, bool fcal)
+TestCaloDDE::print_phi_line(int eta_num
+			    , bool em
+			    , bool hec
+			    , bool fcal
+			    , const CaloDetDescrManager* caloDDMan)
 {
   boost::io::ios_base_all_saver coutsave (std::cout);
 
@@ -335,7 +349,7 @@ TestCaloDDE::print_phi_line(int eta_num, bool em, bool hec, bool fcal)
       idcalohash = help_all->calo_cell_hash (sub_calo_num, idhash);
       id = help_em->channel_id(idhash);
 
-      const CaloDetDescrElement* newelt = m_calo_dd_man->get_element(idcalohash); 
+      const CaloDetDescrElement* newelt = caloDDMan->get_element(idcalohash); 
       if ( !newelt ) std::cout << "missing em element" 
 			       << i << std::endl;
       
@@ -371,7 +385,7 @@ TestCaloDDE::print_phi_line(int eta_num, bool em, bool hec, bool fcal)
       
       id = help_hec->channel_id(idhash);
       
-      const CaloDetDescrElement* newelt = m_calo_dd_man->get_element(idcalohash); 
+      const CaloDetDescrElement* newelt = caloDDMan->get_element(idcalohash); 
       if ( !newelt ) 
 	std::cout << "missing hec element" 
 		  << idhash << std::endl;
@@ -404,7 +418,7 @@ TestCaloDDE::print_phi_line(int eta_num, bool em, bool hec, bool fcal)
       idcalohash = help_all->calo_cell_hash (sub_calo_num, idhash);
       id = help_fcal->channel_id(idhash);
 
-      const CaloDetDescrElement* newelt = m_calo_dd_man->get_element(idcalohash); 
+      const CaloDetDescrElement* newelt = caloDDMan->get_element(idcalohash); 
       if ( !newelt ) std::cout << "missing fcal element" 
 			       << i << std::endl;
 
@@ -428,7 +442,10 @@ TestCaloDDE::print_phi_line(int eta_num, bool em, bool hec, bool fcal)
 }
 
 void
-TestCaloDDE::print_elt_HW(bool em, bool hec, bool fcal)
+TestCaloDDE::print_elt_HW(bool em
+			  , bool hec
+			  , bool fcal
+			  , const CaloDetDescrManager* caloDDMan)
 {
   boost::io::ios_base_all_saver coutsave (std::cout);
 
@@ -463,7 +480,7 @@ TestCaloDDE::print_elt_HW(bool em, bool hec, bool fcal)
       idcalohash = help_all->calo_cell_hash (sub_calo_num, idhash);
       id = help_em->channel_id(idhash);
 
-      const CaloDetDescrElement* newelt = m_calo_dd_man->get_element(idcalohash); 
+      const CaloDetDescrElement* newelt = caloDDMan->get_element(idcalohash); 
       if ( !newelt ) std::cout << "missing em element" 
 			       << i << std::endl;
       
@@ -472,7 +489,7 @@ TestCaloDDE::print_elt_HW(bool em, bool hec, bool fcal)
 		  << "calo-hash=" << (unsigned int) idcalohash 
 		  << " sub-hash=" << i << " region: "
 		  << help_em->sampling(id)<< " " 
-		  << help_em->region(id)
+		  << help_em->region(id) 
 		  << std::endl;
 		  }
       
@@ -491,13 +508,12 @@ TestCaloDDE::print_elt_HW(bool em, bool hec, bool fcal)
       
       id = help_hec->channel_id(idhash);
       
-      const CaloDetDescrElement* newelt = m_calo_dd_man->get_element(idcalohash); 
+      const CaloDetDescrElement* newelt = caloDDMan->get_element(idcalohash); 
       if ( !newelt ) 
 	std::cout << "missing hec element" 
 		  << idhash << std::endl;
       
       else if ( hec && help_hec->phi(id) == phi_num && newelt->eta() >=0) { 
-	
 	std::cout  << std::setw(9) << std::setprecision(4) 
 		   << "calo-hash=" << (unsigned int) idcalohash 
 		   << " sub-hash=" << i << " region: "
@@ -519,14 +535,13 @@ TestCaloDDE::print_elt_HW(bool em, bool hec, bool fcal)
       idcalohash = help_all->calo_cell_hash (sub_calo_num, idhash);
       id = help_fcal->channel_id(idhash);
 
-      const CaloDetDescrElement* newelt = m_calo_dd_man->get_element(idcalohash); 
+      const CaloDetDescrElement* newelt = caloDDMan->get_element(idcalohash); 
       if ( !newelt ) std::cout << "missing fcal element" 
 			       << i << std::endl;
 
       else if (fcal && help_fcal->phi(id) == 
 	       phi_num && help_fcal->pos_neg(id) >=0) { 
 
-	
      	std::cout  << std::setw(9) << std::setprecision(4) 
 		   << "calo-hash=" << (unsigned int) idcalohash 
 		  << " sub-hash=" << i << " region: "
@@ -536,10 +551,11 @@ TestCaloDDE::print_elt_HW(bool em, bool hec, bool fcal)
       }
 
     }
+
 }
 
 void
-TestCaloDDE::try_zone()
+TestCaloDDE::try_zone(const CaloDetDescrManager* caloDDMan)
 {
 
   ATH_MSG_INFO ( "Executing TestCaloDDE : try_zone " );
@@ -559,7 +575,7 @@ TestCaloDDE::try_zone()
   ATH_MSG_INFO ( " Negative EMB : should find = 192 strips " );
   ATH_MSG_INFO ( " ------------------------------------------------------- " );
   ATH_MSG_INFO ( " " );
-  try_zone(eta, deta, phi, dphi, sampling_or_module);
+  try_zone(eta, deta, phi, dphi, sampling_or_module,caloDDMan);
   ATH_MSG_INFO ( " " );
 
   eta = 1.;
@@ -572,7 +588,7 @@ TestCaloDDE::try_zone()
   ATH_MSG_INFO ( " Positive EMB : should find = 192 strips " );
   ATH_MSG_INFO ( " ------------------------------------------------------- " );
   ATH_MSG_INFO ( " " );
-  try_zone(eta, deta, phi, dphi, sampling_or_module);
+  try_zone(eta, deta, phi, dphi, sampling_or_module,caloDDMan);
   ATH_MSG_INFO ( " " );
 
   eta = -1.;
@@ -585,7 +601,7 @@ TestCaloDDE::try_zone()
   ATH_MSG_INFO ( " Negative EMB : should find = 72 middle " );
   ATH_MSG_INFO ( " ------------------------------------------------------- " );
   ATH_MSG_INFO ( " " );
-  try_zone(eta, deta, phi, dphi, sampling_or_module);
+  try_zone(eta, deta, phi, dphi, sampling_or_module,caloDDMan);
   ATH_MSG_INFO ( " " );
 
   eta = 1.;
@@ -598,7 +614,7 @@ TestCaloDDE::try_zone()
   ATH_MSG_INFO ( " Positive EMB : should find = 72 middle " );
   ATH_MSG_INFO ( " ------------------------------------------------------- " );
   ATH_MSG_INFO ( " " );
-  try_zone(eta, deta, phi, dphi, sampling_or_module);
+  try_zone(eta, deta, phi, dphi, sampling_or_module,caloDDMan);
   ATH_MSG_INFO ( " " );
 
   eta = -1.;
@@ -611,7 +627,7 @@ TestCaloDDE::try_zone()
   ATH_MSG_INFO ( " Negative EMB : should find = 36 back " );
   ATH_MSG_INFO ( " ------------------------------------------------------- " );
   ATH_MSG_INFO ( " " );
-  try_zone(eta, deta, phi, dphi, sampling_or_module);
+  try_zone(eta, deta, phi, dphi, sampling_or_module,caloDDMan);
   ATH_MSG_INFO ( " " );
 
   eta = 1.;
@@ -624,7 +640,7 @@ TestCaloDDE::try_zone()
   ATH_MSG_INFO ( " Positive EMB : should find = 36 back " );
   ATH_MSG_INFO ( " ------------------------------------------------------- " );
   ATH_MSG_INFO ( " " );
-  try_zone(eta, deta, phi, dphi, sampling_or_module);
+  try_zone(eta, deta, phi, dphi, sampling_or_module,caloDDMan);
   ATH_MSG_INFO ( " " );
 
   // -----------------------------------------------------------
@@ -639,7 +655,7 @@ TestCaloDDE::try_zone()
   ATH_MSG_INFO ( " Negative EMEC : should find 3* ( 15 + 23 ) = 114 strips " );
   ATH_MSG_INFO ( " ------------------------------------------------------- " );
   ATH_MSG_INFO ( " " );
-  try_zone(eta, deta, phi, dphi, sampling_or_module);
+  try_zone(eta, deta, phi, dphi, sampling_or_module,caloDDMan);
   ATH_MSG_INFO ( " " );
 
   eta = 1.81035;
@@ -653,7 +669,7 @@ TestCaloDDE::try_zone()
   ATH_MSG_INFO ( " Positive EMEC : should find 3 * ( 32 + 25 ) = 171 strips " );
   ATH_MSG_INFO ( " -------------------------------------------------------- " );
   ATH_MSG_INFO ( " " );
-  try_zone(eta, deta, phi, dphi, sampling_or_module);
+  try_zone(eta, deta, phi, dphi, sampling_or_module,caloDDMan);
   ATH_MSG_INFO ( " " );
 
   eta = 0.;
@@ -668,7 +684,7 @@ TestCaloDDE::try_zone()
   ATH_MSG_INFO ( " should find 3 * ( 31 + 31 ) = 186 strips " );
   ATH_MSG_INFO ( " ---------------------------------------- " );
   ATH_MSG_INFO ( " " );
-  try_zone(eta, deta, phi, dphi, sampling_or_module);
+  try_zone(eta, deta, phi, dphi, sampling_or_module,caloDDMan);
   ATH_MSG_INFO ( " " );
 
   eta = 1.4;
@@ -683,7 +699,7 @@ TestCaloDDE::try_zone()
   ATH_MSG_INFO ( " where : 9 = 4 EMB2 + 1 barrel-end + 1 emec-begin + 3 EMEC2 " );
   ATH_MSG_INFO ( " ---------------------------------------- " );
   ATH_MSG_INFO ( " " );
-  try_zone(eta, deta, phi, dphi, sampling_or_module);
+  try_zone(eta, deta, phi, dphi, sampling_or_module,caloDDMan);
   ATH_MSG_INFO ( " " );
   ATH_MSG_INFO ( " " );
   ATH_MSG_INFO ( " " );
@@ -700,7 +716,7 @@ TestCaloDDE::try_zone()
   ATH_MSG_INFO ( " where : 9 = 4 EMB2 + 1 barrel-end + 1 emec-begin + 3 EMEC2  " );
   ATH_MSG_INFO ( " ----------------------------------------------------------- " );
   ATH_MSG_INFO ( " " );
-  try_zone(eta, deta, phi, dphi, sampling_or_module);
+  try_zone(eta, deta, phi, dphi, sampling_or_module,caloDDMan);
   ATH_MSG_INFO ( " " );
   ATH_MSG_INFO ( " " );
   ATH_MSG_INFO ( " " );
@@ -718,7 +734,7 @@ TestCaloDDE::try_zone()
   ATH_MSG_INFO ( " + 9 x ( 3 barrel-end, which has a different phi grannularity ) " );
   ATH_MSG_INFO ( " ---------------------------------------- " );
   ATH_MSG_INFO ( " " );
-  try_zone(eta, deta, phi, dphi, sampling_or_module);
+  try_zone(eta, deta, phi, dphi, sampling_or_module,caloDDMan);
   ATH_MSG_INFO ( " " );
   ATH_MSG_INFO ( " " );
   ATH_MSG_INFO ( " " );
@@ -735,7 +751,7 @@ TestCaloDDE::try_zone()
   ATH_MSG_INFO ( " 3 x ( 3 EMB3 + 2 EMEC3 )            " );
   ATH_MSG_INFO ( " ----------------------------------  " );
   ATH_MSG_INFO ( " " );
-  try_zone(eta, deta, phi, dphi, sampling_or_module);
+  try_zone(eta, deta, phi, dphi, sampling_or_module,caloDDMan);
   ATH_MSG_INFO ( " " );
   ATH_MSG_INFO ( " " );
   ATH_MSG_INFO ( " " );
@@ -754,7 +770,7 @@ TestCaloDDE::try_zone()
   ATH_MSG_INFO ( " 5 in phi ( 4 ~ -pi, 1 ~ +pi ) x  5 EMB2  " );
   ATH_MSG_INFO ( " ---------------------------------------  " );
   ATH_MSG_INFO ( " " );
-  try_zone(eta, deta, phi, dphi, sampling_or_module);
+  try_zone(eta, deta, phi, dphi, sampling_or_module,caloDDMan);
   ATH_MSG_INFO ( " " );
   ATH_MSG_INFO ( " " );
   ATH_MSG_INFO ( " " );
@@ -763,7 +779,7 @@ TestCaloDDE::try_zone()
 
 
 void
-TestCaloDDE::try_each_descr_zone()
+TestCaloDDE::try_each_descr_zone(const CaloDetDescrManager* caloDDMan)
 {
   ATH_MSG_INFO( "" );
   ATH_MSG_INFO ( "Executing TestCaloDDE : try_zone for each descriptor " );
@@ -794,7 +810,7 @@ TestCaloDDE::try_each_descr_zone()
   std::cout << std::endl;
   std::cout << std::endl;
 
-  for (const CaloDetDescriptor* descr : m_calo_dd_man->calo_descriptors_range())
+  for (const CaloDetDescriptor* descr : caloDDMan->calo_descriptors_range())
     {
       if ( num == em_nb || num == (em_nb+hec_nb) || num == (em_nb+hec_nb+fcal_nb)
 	   || num == (em_nb+hec_nb+fcal_nb+tile_nb) ) 
@@ -828,7 +844,7 @@ TestCaloDDE::try_each_descr_zone()
 		  << " CaloSample " << descr->getSampling(0)
 		  << std::endl;
 	
-	m_calo_dd_man->cellsInZone(eta_min,eta_max,phi_min,phi_max,descr,cell_list);
+	caloDDMan->cellsInZone(eta_min,eta_max,phi_min,phi_max,descr,cell_list);
 	std::cout << " ==> found :" << cell_list.size() << " cells  " ;
 	if( cell_list.size() != 10 && cell_list.size() != 8 ) std::cout << " <----- ??? " ;      
 	std::cout << std::endl;
@@ -842,7 +858,12 @@ TestCaloDDE::try_each_descr_zone()
 }
 
 void
-TestCaloDDE::try_zone(double eta, double deta, double phi, double dphi, int sampling_or_module)
+TestCaloDDE::try_zone(double eta
+		      , double deta
+		      , double phi
+		      , double dphi
+		      , int sampling_or_module
+		      , const CaloDetDescrManager* caloDDMan)
 {
 
   ATH_MSG_INFO( "" );
@@ -873,13 +894,13 @@ TestCaloDDE::try_zone(double eta, double deta, double phi, double dphi, int samp
 	    << " sampling_or_module " << sampling_or_module
 	    << std::endl;
 
-  m_calo_dd_man->cellsInZone(eta_min,eta_max,phi_min,phi_max,
+  caloDDMan->cellsInZone(eta_min,eta_max,phi_min,phi_max,
 		     CaloCell_ID::LAREM,sampling_or_module,cell_list);
   //			    CaloCell_ID::LAREM,cell_list);
   //		cell_list );
 
   
-  //m_calo_dd_man->cellsInZone(eta,phi,5,5,CaloCell_ID::LAREM,
+  //caloDDMan->cellsInZone(eta,phi,5,5,CaloCell_ID::LAREM,
   //			     sampling_or_module,barrel,cell_list);
 
   std::cout << " ==> with Calo found :" << cell_list.size() 
@@ -889,7 +910,7 @@ TestCaloDDE::try_zone(double eta, double deta, double phi, double dphi, int samp
     {
       idhash = cell_list[i];
       id = help_em->channel_id(idhash);
-      const CaloDetDescrElement* newelt = m_calo_dd_man->get_element(idhash); 
+      const CaloDetDescrElement* newelt = caloDDMan->get_element(idhash); 
       if ( !newelt ) std::cout << "  missing element" 
 			       << i << std::endl;
       /*
@@ -909,7 +930,9 @@ TestCaloDDE::try_zone(double eta, double deta, double phi, double dphi, int samp
 }
 
 void
-TestCaloDDE::where_am_I(double eta, double phi)
+TestCaloDDE::where_am_I(double eta
+			, double phi
+			, const CaloDetDescrManager* caloDDMan)
 {
   
   ATH_MSG_INFO ( "Executing TestCaloDDE : where am I ? eta, phi = " 
@@ -919,7 +942,7 @@ TestCaloDDE::where_am_I(double eta, double phi)
   const CaloDetDescriptor* descr;
 
   for (int nlay = 0 ; nlay<4; nlay++) {
-    descr = m_calo_dd_man->
+    descr = caloDDMan->
       get_descriptor(CaloCell_ID::LAREM,nlay,barrel,eta,phi);
     if(descr) std::cout << "barrel EM layer " <<  nlay 
 			<< std::endl;
@@ -928,20 +951,20 @@ TestCaloDDE::where_am_I(double eta, double phi)
   barrel = false;
 
   for (int nlay = 0 ; nlay<4; nlay++) {
-    descr = m_calo_dd_man->
+    descr = caloDDMan->
       get_descriptor(CaloCell_ID::LAREM,nlay,barrel,eta,phi);
     if(descr) std::cout << "endcap EM layer " <<  nlay 
 			<< std::endl;
   }
 
   for (int nlay = 0 ; nlay<4; nlay++) {
-    descr = m_calo_dd_man->
+    descr = caloDDMan->
       get_descriptor(CaloCell_ID::LARHEC,barrel,nlay,eta,phi);
     if(descr)  std::cout << "HEC layer " <<  nlay 
 			 << std::endl;
   }
   for (int nlay = 0 ; nlay<4; nlay++) {
-    descr = m_calo_dd_man->
+    descr = caloDDMan->
       get_descriptor(CaloCell_ID::LARFCAL,barrel,nlay,eta,phi);
     if(descr)  std::cout << "FCAL layer " <<  nlay 
 			 << std::endl;
@@ -950,7 +973,7 @@ TestCaloDDE::where_am_I(double eta, double phi)
 }
 
 void
-TestCaloDDE::read_volumes()
+TestCaloDDE::read_volumes(const CaloDetDescrManager* caloDDMan)
 {
   ATH_MSG_INFO ( "Executing TestCaloDDE : read_volumes " );
 
@@ -958,21 +981,17 @@ TestCaloDDE::read_volumes()
 
   
   std::cout << " subCaloHash = " << (unsigned int)caloHashId << " -------> got it !";
-  const CaloDetDescrElement* dde = m_calo_dd_man->get_element(caloHashId);
+  const CaloDetDescrElement* dde = caloDDMan->get_element(caloHashId);
   if (dde) 
     std::cout << dde->volume();
   std::cout << std::endl;
 }
 
-void
-TestCaloDDE::update()
-{
-  [[maybe_unused]]
-  Transform3D delta =  RotateZ3D(0.01);
-}
-
 void 
-TestCaloDDE::print_edges_via_SubCalo( CaloCell_ID::CaloSample sample, double eta, double phi )
+TestCaloDDE::print_edges_via_SubCalo(CaloCell_ID::CaloSample sample
+				     , double eta
+				     , double phi 
+				     , const CaloDetDescrManager* caloDDMan)
 {
   const LArEM_ID*    help_em = m_calo_id_man->getEM_ID();
 
@@ -981,19 +1000,19 @@ TestCaloDDE::print_edges_via_SubCalo( CaloCell_ID::CaloSample sample, double eta
   int sampling_or_module;
 
   std::cout << std::endl;
-  m_calo_dd_man->decode_sample (subcalo, barrel, sampling_or_module, sample);
+  caloDDMan->decode_sample (subcalo, barrel, sampling_or_module, sample);
   std::cout << " subcalo " << subcalo << " barrel " << barrel << " sampling_or_module "
 	    << sampling_or_module << " eta " << eta << " phi " << phi << std::endl;
 
   const CaloDetDescriptor* reg = 
-    m_calo_dd_man->get_descriptor (subcalo,sampling_or_module,barrel,eta,phi);
+    caloDDMan->get_descriptor (subcalo,sampling_or_module,barrel,eta,phi);
   if (!reg)
     std::cout << " no region for that value !" << std::endl;
   else
     help_em->print(reg->identify());
 
   const CaloDetDescrElement* newelt = 
-    m_calo_dd_man->get_element(subcalo,sampling_or_module, barrel, eta, phi);
+    caloDDMan->get_element(subcalo,sampling_or_module, barrel, eta, phi);
 
   if (newelt) {
     boost::io::ios_base_all_saver coutsave (std::cout);
@@ -1022,193 +1041,196 @@ TestCaloDDE::print_edges_via_SubCalo( CaloCell_ID::CaloSample sample, double eta
 }
 
 void
-TestCaloDDE::print_edges_via_SubCalo()
+TestCaloDDE::print_edges_via_SubCalo(const CaloDetDescrManager* caloDDMan)
 {
 
 
   std::cout << std::endl;
   std::cout << " ------------ PS -------------- " << std::endl;
 
-  print_edges_via_SubCalo(CaloCell_ID::PreSamplerB, -1.6, 0.);
-  print_edges_via_SubCalo(CaloCell_ID::PreSamplerB, -1.55, 0.);
-  print_edges_via_SubCalo(CaloCell_ID::PreSamplerB, -1.53, 0.);
-  print_edges_via_SubCalo(CaloCell_ID::PreSamplerB, -1.52, 0.);
-  print_edges_via_SubCalo(CaloCell_ID::PreSamplerB, -1.48, 0.);
-  print_edges_via_SubCalo(CaloCell_ID::PreSamplerB, -1.47, 0.);
-  print_edges_via_SubCalo(CaloCell_ID::PreSamplerB, -1.45, 0.);
-  print_edges_via_SubCalo(CaloCell_ID::PreSamplerB, -1.3, 0.);
-  print_edges_via_SubCalo(CaloCell_ID::PreSamplerB, -0.1, 0.);
-  print_edges_via_SubCalo(CaloCell_ID::PreSamplerB,  0., 0.);
-
-  print_edges_via_SubCalo(CaloCell_ID::PreSamplerB, 1.6, 0.);
-  print_edges_via_SubCalo(CaloCell_ID::PreSamplerB, 1.5, 0.);
-  print_edges_via_SubCalo(CaloCell_ID::PreSamplerB, 1.45, 0.);
-  print_edges_via_SubCalo(CaloCell_ID::PreSamplerB, 1.4, 0.);
-  print_edges_via_SubCalo(CaloCell_ID::PreSamplerB, 1.3, 0.);
-  print_edges_via_SubCalo(CaloCell_ID::PreSamplerB, 0.1, 0.);
-  print_edges_via_SubCalo(CaloCell_ID::PreSamplerB, 0.002854, 0.);
-
-  print_edges_via_SubCalo(CaloCell_ID::PreSamplerE, -1.4, 0.);
-  print_edges_via_SubCalo(CaloCell_ID::PreSamplerE, -1.45, 0.);
-  print_edges_via_SubCalo(CaloCell_ID::PreSamplerE, -1.49, 0.);
-  print_edges_via_SubCalo(CaloCell_ID::PreSamplerE, -1.5, 0.);
-  print_edges_via_SubCalo(CaloCell_ID::PreSamplerE, -1.52, 0.);
-  print_edges_via_SubCalo(CaloCell_ID::PreSamplerE, -1.6, 0.);
-  print_edges_via_SubCalo(CaloCell_ID::PreSamplerE, -1.79, 0.);
-  print_edges_via_SubCalo(CaloCell_ID::PreSamplerE, -1.8, 0.);
-  print_edges_via_SubCalo(CaloCell_ID::PreSamplerE, -1.81, 0.);
-
-  print_edges_via_SubCalo(CaloCell_ID::PreSamplerE, 1.3, 0.);
-  print_edges_via_SubCalo(CaloCell_ID::PreSamplerE, 1.4, 0.);
-  print_edges_via_SubCalo(CaloCell_ID::PreSamplerE, 1.45, 0.);
-  print_edges_via_SubCalo(CaloCell_ID::PreSamplerE, 1.6, 0.);
-  print_edges_via_SubCalo(CaloCell_ID::PreSamplerE, 2.45, 0.);
-  print_edges_via_SubCalo(CaloCell_ID::PreSamplerE, 2.5, 0.);
-  print_edges_via_SubCalo(CaloCell_ID::PreSamplerE, 2.6, 0.);
+  print_edges_via_SubCalo(CaloCell_ID::PreSamplerB, -1.6, 0.,caloDDMan);
+  print_edges_via_SubCalo(CaloCell_ID::PreSamplerB, -1.55, 0.,caloDDMan);
+  print_edges_via_SubCalo(CaloCell_ID::PreSamplerB, -1.53, 0.,caloDDMan);
+  print_edges_via_SubCalo(CaloCell_ID::PreSamplerB, -1.52, 0.,caloDDMan);
+  print_edges_via_SubCalo(CaloCell_ID::PreSamplerB, -1.48, 0.,caloDDMan);
+  print_edges_via_SubCalo(CaloCell_ID::PreSamplerB, -1.47, 0.,caloDDMan);
+  print_edges_via_SubCalo(CaloCell_ID::PreSamplerB, -1.45, 0.,caloDDMan);
+  print_edges_via_SubCalo(CaloCell_ID::PreSamplerB, -1.3, 0.,caloDDMan);
+  print_edges_via_SubCalo(CaloCell_ID::PreSamplerB, -0.1, 0.,caloDDMan);
+  print_edges_via_SubCalo(CaloCell_ID::PreSamplerB,  0., 0.,caloDDMan);
+
+  print_edges_via_SubCalo(CaloCell_ID::PreSamplerB, 1.6, 0.,caloDDMan);
+  print_edges_via_SubCalo(CaloCell_ID::PreSamplerB, 1.5, 0.,caloDDMan);
+  print_edges_via_SubCalo(CaloCell_ID::PreSamplerB, 1.45, 0.,caloDDMan);
+  print_edges_via_SubCalo(CaloCell_ID::PreSamplerB, 1.4, 0.,caloDDMan);
+  print_edges_via_SubCalo(CaloCell_ID::PreSamplerB, 1.3, 0.,caloDDMan);
+  print_edges_via_SubCalo(CaloCell_ID::PreSamplerB, 0.1, 0.,caloDDMan);
+  print_edges_via_SubCalo(CaloCell_ID::PreSamplerB, 0.002854, 0.,caloDDMan);
+
+  print_edges_via_SubCalo(CaloCell_ID::PreSamplerE, -1.4, 0.,caloDDMan);
+  print_edges_via_SubCalo(CaloCell_ID::PreSamplerE, -1.45, 0.,caloDDMan);
+  print_edges_via_SubCalo(CaloCell_ID::PreSamplerE, -1.49, 0.,caloDDMan);
+  print_edges_via_SubCalo(CaloCell_ID::PreSamplerE, -1.5, 0.,caloDDMan);
+  print_edges_via_SubCalo(CaloCell_ID::PreSamplerE, -1.52, 0.,caloDDMan);
+  print_edges_via_SubCalo(CaloCell_ID::PreSamplerE, -1.6, 0.,caloDDMan);
+  print_edges_via_SubCalo(CaloCell_ID::PreSamplerE, -1.79, 0.,caloDDMan);
+  print_edges_via_SubCalo(CaloCell_ID::PreSamplerE, -1.8, 0.,caloDDMan);
+  print_edges_via_SubCalo(CaloCell_ID::PreSamplerE, -1.81, 0.,caloDDMan);
+
+  print_edges_via_SubCalo(CaloCell_ID::PreSamplerE, 1.3, 0.,caloDDMan);
+  print_edges_via_SubCalo(CaloCell_ID::PreSamplerE, 1.4, 0.,caloDDMan);
+  print_edges_via_SubCalo(CaloCell_ID::PreSamplerE, 1.45, 0.,caloDDMan);
+  print_edges_via_SubCalo(CaloCell_ID::PreSamplerE, 1.6, 0.,caloDDMan);
+  print_edges_via_SubCalo(CaloCell_ID::PreSamplerE, 2.45, 0.,caloDDMan);
+  print_edges_via_SubCalo(CaloCell_ID::PreSamplerE, 2.5, 0.,caloDDMan);
+  print_edges_via_SubCalo(CaloCell_ID::PreSamplerE, 2.6, 0.,caloDDMan);
 
   std::cout << std::endl;
   std::cout << " ------------ Strips -------------- " << std::endl;
 
-  print_edges_via_SubCalo(CaloCell_ID::EMB1, -1.48, 0.);
-  print_edges_via_SubCalo(CaloCell_ID::EMB1, -1.47, 0.);
-  print_edges_via_SubCalo(CaloCell_ID::EMB1, -1.45, 0.);
-  print_edges_via_SubCalo(CaloCell_ID::EMB1, -1.41, 0.);
-  print_edges_via_SubCalo(CaloCell_ID::EMB1, -1.4, 0.);
-  print_edges_via_SubCalo(CaloCell_ID::EMB1, -1.39, 0.);
-  print_edges_via_SubCalo(CaloCell_ID::EMB1, -1.3, 0.);
-  print_edges_via_SubCalo(CaloCell_ID::EMB1, -0.1, 0.);
-  print_edges_via_SubCalo(CaloCell_ID::EMB1, -0.01, 0.);
-  print_edges_via_SubCalo(CaloCell_ID::EMB1,  0., 0.);
-  print_edges_via_SubCalo(CaloCell_ID::EMB1,  0.01, 0.);
-
-  print_edges_via_SubCalo(CaloCell_ID::EMB1, 1.6, 0.);
-  print_edges_via_SubCalo(CaloCell_ID::EMB1, 1.5, 0.);
-  print_edges_via_SubCalo(CaloCell_ID::EMB1, 1.45, 0.);
-  print_edges_via_SubCalo(CaloCell_ID::EMB1, 1.4, 0.);
-  print_edges_via_SubCalo(CaloCell_ID::EMB1, 1.3, 0.);
-  print_edges_via_SubCalo(CaloCell_ID::EMB1, 0.1, 0.);
-  print_edges_via_SubCalo(CaloCell_ID::EMB1, 0.002854, 0.);
-
-  print_edges_via_SubCalo(CaloCell_ID::EME1, -1.3, 0.);
-  print_edges_via_SubCalo(CaloCell_ID::EME1, -1.4, 0.);
-  print_edges_via_SubCalo(CaloCell_ID::EME1, -1.45, 0.);
-  print_edges_via_SubCalo(CaloCell_ID::EME1, -1.6, 0.);
-  print_edges_via_SubCalo(CaloCell_ID::EME1, -2.45, 0.);
-  print_edges_via_SubCalo(CaloCell_ID::EME1, -2.5, 0.);
-  print_edges_via_SubCalo(CaloCell_ID::EME1, -2.6, 0.);
-
-  print_edges_via_SubCalo(CaloCell_ID::EME1, 1.3, 0.);
-  print_edges_via_SubCalo(CaloCell_ID::EME1, 1.4, 0.);
-  print_edges_via_SubCalo(CaloCell_ID::EME1, 1.45, 0.);
-  print_edges_via_SubCalo(CaloCell_ID::EME1, 1.49, 0.);
-  print_edges_via_SubCalo(CaloCell_ID::EME1, 1.5, 0.);
-  print_edges_via_SubCalo(CaloCell_ID::EME1, 1.505, 0.);
-  print_edges_via_SubCalo(CaloCell_ID::EME1, 1.51, 0.);
-  print_edges_via_SubCalo(CaloCell_ID::EME1, 1.515, 0.);
-  print_edges_via_SubCalo(CaloCell_ID::EME1, 1.6, 0.);
-  print_edges_via_SubCalo(CaloCell_ID::EME1, 1.795, 0.);
-  print_edges_via_SubCalo(CaloCell_ID::EME1, 1.799, 0.);
-  print_edges_via_SubCalo(CaloCell_ID::EME1, 1.8, 0.);
-  print_edges_via_SubCalo(CaloCell_ID::EME1, 1.801, 0.);
-  print_edges_via_SubCalo(CaloCell_ID::EME1, 1.805, 0.);
-  print_edges_via_SubCalo(CaloCell_ID::EME1, 1.81, 0.);
-  print_edges_via_SubCalo(CaloCell_ID::EME1, 1.815, 0.);
-  print_edges_via_SubCalo(CaloCell_ID::EME1, 1.82, 0.);
-  print_edges_via_SubCalo(CaloCell_ID::EME1, 2.45, 0.);
-  print_edges_via_SubCalo(CaloCell_ID::EME1, 2.5, 0.);
-  print_edges_via_SubCalo(CaloCell_ID::EME1, 2.6, 0.);
+  print_edges_via_SubCalo(CaloCell_ID::EMB1, -1.48, 0.,caloDDMan);
+  print_edges_via_SubCalo(CaloCell_ID::EMB1, -1.47, 0.,caloDDMan);
+  print_edges_via_SubCalo(CaloCell_ID::EMB1, -1.45, 0.,caloDDMan);
+  print_edges_via_SubCalo(CaloCell_ID::EMB1, -1.41, 0.,caloDDMan);
+  print_edges_via_SubCalo(CaloCell_ID::EMB1, -1.4, 0.,caloDDMan);
+  print_edges_via_SubCalo(CaloCell_ID::EMB1, -1.39, 0.,caloDDMan);
+  print_edges_via_SubCalo(CaloCell_ID::EMB1, -1.3, 0.,caloDDMan);
+  print_edges_via_SubCalo(CaloCell_ID::EMB1, -0.1, 0.,caloDDMan);
+  print_edges_via_SubCalo(CaloCell_ID::EMB1, -0.01, 0.,caloDDMan);
+  print_edges_via_SubCalo(CaloCell_ID::EMB1,  0., 0.,caloDDMan);
+  print_edges_via_SubCalo(CaloCell_ID::EMB1,  0.01, 0.,caloDDMan);
+
+  print_edges_via_SubCalo(CaloCell_ID::EMB1, 1.6, 0.,caloDDMan);
+  print_edges_via_SubCalo(CaloCell_ID::EMB1, 1.5, 0.,caloDDMan);
+  print_edges_via_SubCalo(CaloCell_ID::EMB1, 1.45, 0.,caloDDMan);
+  print_edges_via_SubCalo(CaloCell_ID::EMB1, 1.4, 0.,caloDDMan);
+  print_edges_via_SubCalo(CaloCell_ID::EMB1, 1.3, 0.,caloDDMan);
+  print_edges_via_SubCalo(CaloCell_ID::EMB1, 0.1, 0.,caloDDMan);
+  print_edges_via_SubCalo(CaloCell_ID::EMB1, 0.002854, 0.,caloDDMan);
+
+  print_edges_via_SubCalo(CaloCell_ID::EME1, -1.3, 0.,caloDDMan);
+  print_edges_via_SubCalo(CaloCell_ID::EME1, -1.4, 0.,caloDDMan);
+  print_edges_via_SubCalo(CaloCell_ID::EME1, -1.45, 0.,caloDDMan);
+  print_edges_via_SubCalo(CaloCell_ID::EME1, -1.6, 0.,caloDDMan);
+  print_edges_via_SubCalo(CaloCell_ID::EME1, -2.45, 0.,caloDDMan);
+  print_edges_via_SubCalo(CaloCell_ID::EME1, -2.5, 0.,caloDDMan);
+  print_edges_via_SubCalo(CaloCell_ID::EME1, -2.6, 0.,caloDDMan);
+
+  print_edges_via_SubCalo(CaloCell_ID::EME1, 1.3, 0.,caloDDMan);
+  print_edges_via_SubCalo(CaloCell_ID::EME1, 1.4, 0.,caloDDMan);
+  print_edges_via_SubCalo(CaloCell_ID::EME1, 1.45, 0.,caloDDMan);
+  print_edges_via_SubCalo(CaloCell_ID::EME1, 1.49, 0.,caloDDMan);
+  print_edges_via_SubCalo(CaloCell_ID::EME1, 1.5, 0.,caloDDMan);
+  print_edges_via_SubCalo(CaloCell_ID::EME1, 1.505, 0.,caloDDMan);
+  print_edges_via_SubCalo(CaloCell_ID::EME1, 1.51, 0.,caloDDMan);
+  print_edges_via_SubCalo(CaloCell_ID::EME1, 1.515, 0.,caloDDMan);
+  print_edges_via_SubCalo(CaloCell_ID::EME1, 1.6, 0.,caloDDMan);
+  print_edges_via_SubCalo(CaloCell_ID::EME1, 1.795, 0.,caloDDMan);
+  print_edges_via_SubCalo(CaloCell_ID::EME1, 1.799, 0.,caloDDMan);
+  print_edges_via_SubCalo(CaloCell_ID::EME1, 1.8, 0.,caloDDMan);
+  print_edges_via_SubCalo(CaloCell_ID::EME1, 1.801, 0.,caloDDMan);
+  print_edges_via_SubCalo(CaloCell_ID::EME1, 1.805, 0.,caloDDMan);
+  print_edges_via_SubCalo(CaloCell_ID::EME1, 1.81, 0.,caloDDMan);
+  print_edges_via_SubCalo(CaloCell_ID::EME1, 1.815, 0.,caloDDMan);
+  print_edges_via_SubCalo(CaloCell_ID::EME1, 1.82, 0.,caloDDMan);
+  print_edges_via_SubCalo(CaloCell_ID::EME1, 2.45, 0.,caloDDMan);
+  print_edges_via_SubCalo(CaloCell_ID::EME1, 2.5, 0.,caloDDMan);
+  print_edges_via_SubCalo(CaloCell_ID::EME1, 2.6, 0.,caloDDMan);
 
 
   std::cout << std::endl;
   std::cout << " ------------ Middle -------------- " << std::endl;
 
-  print_edges_via_SubCalo(CaloCell_ID::EMB2, -1.6, 0.);
-  print_edges_via_SubCalo(CaloCell_ID::EMB2, -1.5, 0.);
-  print_edges_via_SubCalo(CaloCell_ID::EMB2, -1.45, 0.);
-  print_edges_via_SubCalo(CaloCell_ID::EMB2, -1.4, 0.);
-  print_edges_via_SubCalo(CaloCell_ID::EMB2, -1.3, 0.);
-  print_edges_via_SubCalo(CaloCell_ID::EMB2, -0.1, 0.);
-  print_edges_via_SubCalo(CaloCell_ID::EMB2,  0., 0.);
-
-  print_edges_via_SubCalo(CaloCell_ID::EMB2, 1.6, 0.);
-  print_edges_via_SubCalo(CaloCell_ID::EMB2, 1.5, 0.);
-  print_edges_via_SubCalo(CaloCell_ID::EMB2, 1.45, 0.);
-  print_edges_via_SubCalo(CaloCell_ID::EMB2, 1.4, 0.);
-  print_edges_via_SubCalo(CaloCell_ID::EMB2, 1.3, 0.);
-  print_edges_via_SubCalo(CaloCell_ID::EMB2, 0.1, 0.);
-  print_edges_via_SubCalo(CaloCell_ID::EMB2, 0.002854, 0.);
-
-  print_edges_via_SubCalo(CaloCell_ID::EME2, -1.3, 0.);
-  print_edges_via_SubCalo(CaloCell_ID::EME2, -1.4, 0.);
-  print_edges_via_SubCalo(CaloCell_ID::EME2, -1.45, 0.);
-  print_edges_via_SubCalo(CaloCell_ID::EME2, -1.6, 0.);
-  print_edges_via_SubCalo(CaloCell_ID::EME2, -2.45, 0.);
-  print_edges_via_SubCalo(CaloCell_ID::EME2, -2.5, 0.);
-  print_edges_via_SubCalo(CaloCell_ID::EME2, -2.6, 0.);
-
-  print_edges_via_SubCalo(CaloCell_ID::EME2, 1.3, 0.);
-  print_edges_via_SubCalo(CaloCell_ID::EME2, 1.4, 0.);
-  print_edges_via_SubCalo(CaloCell_ID::EME2, 1.45, 0.);
-  print_edges_via_SubCalo(CaloCell_ID::EME2, 1.6, 0.);
-  print_edges_via_SubCalo(CaloCell_ID::EME2, 2.45, 0.);
-  print_edges_via_SubCalo(CaloCell_ID::EME2, 2.5, 0.);
-  print_edges_via_SubCalo(CaloCell_ID::EME2, 2.6, 0.);
+  print_edges_via_SubCalo(CaloCell_ID::EMB2, -1.6, 0.,caloDDMan);
+  print_edges_via_SubCalo(CaloCell_ID::EMB2, -1.5, 0.,caloDDMan);
+  print_edges_via_SubCalo(CaloCell_ID::EMB2, -1.45, 0.,caloDDMan);
+  print_edges_via_SubCalo(CaloCell_ID::EMB2, -1.4, 0.,caloDDMan);
+  print_edges_via_SubCalo(CaloCell_ID::EMB2, -1.3, 0.,caloDDMan);
+  print_edges_via_SubCalo(CaloCell_ID::EMB2, -0.1, 0.,caloDDMan);
+  print_edges_via_SubCalo(CaloCell_ID::EMB2,  0., 0.,caloDDMan);
+
+  print_edges_via_SubCalo(CaloCell_ID::EMB2, 1.6, 0.,caloDDMan);
+  print_edges_via_SubCalo(CaloCell_ID::EMB2, 1.5, 0.,caloDDMan);
+  print_edges_via_SubCalo(CaloCell_ID::EMB2, 1.45, 0.,caloDDMan);
+  print_edges_via_SubCalo(CaloCell_ID::EMB2, 1.4, 0.,caloDDMan);
+  print_edges_via_SubCalo(CaloCell_ID::EMB2, 1.3, 0.,caloDDMan);
+  print_edges_via_SubCalo(CaloCell_ID::EMB2, 0.1, 0.,caloDDMan);
+  print_edges_via_SubCalo(CaloCell_ID::EMB2, 0.002854, 0.,caloDDMan);
+
+  print_edges_via_SubCalo(CaloCell_ID::EME2, -1.3, 0.,caloDDMan);
+  print_edges_via_SubCalo(CaloCell_ID::EME2, -1.4, 0.,caloDDMan);
+  print_edges_via_SubCalo(CaloCell_ID::EME2, -1.45, 0.,caloDDMan);
+  print_edges_via_SubCalo(CaloCell_ID::EME2, -1.6, 0.,caloDDMan);
+  print_edges_via_SubCalo(CaloCell_ID::EME2, -2.45, 0.,caloDDMan);
+  print_edges_via_SubCalo(CaloCell_ID::EME2, -2.5, 0.,caloDDMan);
+  print_edges_via_SubCalo(CaloCell_ID::EME2, -2.6, 0.,caloDDMan);
+
+  print_edges_via_SubCalo(CaloCell_ID::EME2, 1.3, 0.,caloDDMan);
+  print_edges_via_SubCalo(CaloCell_ID::EME2, 1.4, 0.,caloDDMan);
+  print_edges_via_SubCalo(CaloCell_ID::EME2, 1.45, 0.,caloDDMan);
+  print_edges_via_SubCalo(CaloCell_ID::EME2, 1.6, 0.,caloDDMan);
+  print_edges_via_SubCalo(CaloCell_ID::EME2, 2.45, 0.,caloDDMan);
+  print_edges_via_SubCalo(CaloCell_ID::EME2, 2.5, 0.,caloDDMan);
+  print_edges_via_SubCalo(CaloCell_ID::EME2, 2.6, 0.,caloDDMan);
 
   std::cout << std::endl;
   std::cout << " ------------ Back -------------- " << std::endl;
 
-  print_edges_via_SubCalo(CaloCell_ID::EMB3, -1.4, 0.);
-  print_edges_via_SubCalo(CaloCell_ID::EMB3, -1.36, 0.);
-  print_edges_via_SubCalo(CaloCell_ID::EMB3, -1.35, 0.);
-  print_edges_via_SubCalo(CaloCell_ID::EMB3, -1.34, 0.);
-  print_edges_via_SubCalo(CaloCell_ID::EMB3, -1.3, 0.);
-  print_edges_via_SubCalo(CaloCell_ID::EMB3, -0.1, 0.);
-  print_edges_via_SubCalo(CaloCell_ID::EMB3,  0., 0.);
-
-  print_edges_via_SubCalo(CaloCell_ID::EMB3, 1.6, 0.);
-  print_edges_via_SubCalo(CaloCell_ID::EMB3, 1.5, 0.);
-  print_edges_via_SubCalo(CaloCell_ID::EMB3, 1.45, 0.);
-  print_edges_via_SubCalo(CaloCell_ID::EMB3, 1.4, 0.);
-  print_edges_via_SubCalo(CaloCell_ID::EMB3, 1.3, 0.);
-  print_edges_via_SubCalo(CaloCell_ID::EMB3, 0.1, 0.);
-  print_edges_via_SubCalo(CaloCell_ID::EMB2, 0.002854, 0.);
-
-  print_edges_via_SubCalo(CaloCell_ID::EME3, -1.4, 0.);
-  print_edges_via_SubCalo(CaloCell_ID::EME3, -1.49, 0.);
-  print_edges_via_SubCalo(CaloCell_ID::EME3, -1.5, 0.);
-  print_edges_via_SubCalo(CaloCell_ID::EME3, -1.505, 0.);
-  print_edges_via_SubCalo(CaloCell_ID::EME3, -1.51, 0.);
-  print_edges_via_SubCalo(CaloCell_ID::EME3, -1.6, 0.);
-  print_edges_via_SubCalo(CaloCell_ID::EME3, -2.45, 0.);
-  print_edges_via_SubCalo(CaloCell_ID::EME3, -2.5, 0.);
-  print_edges_via_SubCalo(CaloCell_ID::EME3, -2.6, 0.);
-
-  print_edges_via_SubCalo(CaloCell_ID::EME3, 1.3, 0.);
-  print_edges_via_SubCalo(CaloCell_ID::EME3, 1.4, 0.);
-  print_edges_via_SubCalo(CaloCell_ID::EME3, 1.45, 0.);
-  print_edges_via_SubCalo(CaloCell_ID::EME3, 1.6, 0.);
-  print_edges_via_SubCalo(CaloCell_ID::EME3, 2.45, 0.);
-  print_edges_via_SubCalo(CaloCell_ID::EME3, 2.5, 0.);
-  print_edges_via_SubCalo(CaloCell_ID::EME3, 2.6, 0.);
+  print_edges_via_SubCalo(CaloCell_ID::EMB3, -1.4, 0.,caloDDMan);
+  print_edges_via_SubCalo(CaloCell_ID::EMB3, -1.36, 0.,caloDDMan);
+  print_edges_via_SubCalo(CaloCell_ID::EMB3, -1.35, 0.,caloDDMan);
+  print_edges_via_SubCalo(CaloCell_ID::EMB3, -1.34, 0.,caloDDMan);
+  print_edges_via_SubCalo(CaloCell_ID::EMB3, -1.3, 0.,caloDDMan);
+  print_edges_via_SubCalo(CaloCell_ID::EMB3, -0.1, 0.,caloDDMan);
+  print_edges_via_SubCalo(CaloCell_ID::EMB3,  0., 0.,caloDDMan);
+
+  print_edges_via_SubCalo(CaloCell_ID::EMB3, 1.6, 0.,caloDDMan);
+  print_edges_via_SubCalo(CaloCell_ID::EMB3, 1.5, 0.,caloDDMan);
+  print_edges_via_SubCalo(CaloCell_ID::EMB3, 1.45, 0.,caloDDMan);
+  print_edges_via_SubCalo(CaloCell_ID::EMB3, 1.4, 0.,caloDDMan);
+  print_edges_via_SubCalo(CaloCell_ID::EMB3, 1.3, 0.,caloDDMan);
+  print_edges_via_SubCalo(CaloCell_ID::EMB3, 0.1, 0.,caloDDMan);
+  print_edges_via_SubCalo(CaloCell_ID::EMB2, 0.002854, 0.,caloDDMan);
+
+  print_edges_via_SubCalo(CaloCell_ID::EME3, -1.4, 0.,caloDDMan);
+  print_edges_via_SubCalo(CaloCell_ID::EME3, -1.49, 0.,caloDDMan);
+  print_edges_via_SubCalo(CaloCell_ID::EME3, -1.5, 0.,caloDDMan);
+  print_edges_via_SubCalo(CaloCell_ID::EME3, -1.505, 0.,caloDDMan);
+  print_edges_via_SubCalo(CaloCell_ID::EME3, -1.51, 0.,caloDDMan);
+  print_edges_via_SubCalo(CaloCell_ID::EME3, -1.6, 0.,caloDDMan);
+  print_edges_via_SubCalo(CaloCell_ID::EME3, -2.45, 0.,caloDDMan);
+  print_edges_via_SubCalo(CaloCell_ID::EME3, -2.5, 0.,caloDDMan);
+  print_edges_via_SubCalo(CaloCell_ID::EME3, -2.6, 0.,caloDDMan);
+
+  print_edges_via_SubCalo(CaloCell_ID::EME3, 1.3, 0.,caloDDMan);
+  print_edges_via_SubCalo(CaloCell_ID::EME3, 1.4, 0.,caloDDMan);
+  print_edges_via_SubCalo(CaloCell_ID::EME3, 1.45, 0.,caloDDMan);
+  print_edges_via_SubCalo(CaloCell_ID::EME3, 1.6, 0.,caloDDMan);
+  print_edges_via_SubCalo(CaloCell_ID::EME3, 2.45, 0.,caloDDMan);
+  print_edges_via_SubCalo(CaloCell_ID::EME3, 2.5, 0.,caloDDMan);
+  print_edges_via_SubCalo(CaloCell_ID::EME3, 2.6, 0.,caloDDMan);
 
 }
 
 void 
-TestCaloDDE::print_edges_via_CaloSample( CaloCell_ID::CaloSample sample, double eta, double phi )
+TestCaloDDE::print_edges_via_CaloSample(CaloCell_ID::CaloSample sample
+					, double eta
+					, double phi 
+					, const CaloDetDescrManager* caloDDMan)
 {
   const LArEM_ID*    help_em = m_calo_id_man->getEM_ID();
 
   std::cout << " CaloCell_ID::CaloSample " << sample << " eta " << eta << " phi " << phi << std::endl;
 
   const CaloDetDescriptor* reg = 
-    m_calo_dd_man->get_descriptor (sample,eta,phi);
+    caloDDMan->get_descriptor (sample,eta,phi);
   if (!reg)
     std::cout << " no region for that value !" << std::endl;
   else
     help_em->print(reg->identify());
 
   const CaloDetDescrElement* newelt = 
-    m_calo_dd_man->get_element(sample, eta, phi);
+    caloDDMan->get_element(sample, eta, phi);
 
   if (newelt) {
     boost::io::ios_base_all_saver coutsave (std::cout);
@@ -1237,173 +1259,173 @@ TestCaloDDE::print_edges_via_CaloSample( CaloCell_ID::CaloSample sample, double
 }
 
 void
-TestCaloDDE::print_edges_via_CaloSample()
+TestCaloDDE::print_edges_via_CaloSample(const CaloDetDescrManager* caloDDMan)
 {
 
 
   std::cout << std::endl;
   std::cout << " ------------ PS -------------- " << std::endl;
 
-  print_edges_via_CaloSample(CaloCell_ID::PreSamplerB, -1.6, 0.);
-  print_edges_via_CaloSample(CaloCell_ID::PreSamplerB, -1.55, 0.);
-  print_edges_via_CaloSample(CaloCell_ID::PreSamplerB, -1.53, 0.);
-  print_edges_via_CaloSample(CaloCell_ID::PreSamplerB, -1.52, 0.);
-  print_edges_via_CaloSample(CaloCell_ID::PreSamplerB, -1.48, 0.);
-  print_edges_via_CaloSample(CaloCell_ID::PreSamplerB, -1.47, 0.);
-  print_edges_via_CaloSample(CaloCell_ID::PreSamplerB, -1.45, 0.);
-  print_edges_via_CaloSample(CaloCell_ID::PreSamplerB, -1.3, 0.);
-  print_edges_via_CaloSample(CaloCell_ID::PreSamplerB, -0.1, 0.);
-  print_edges_via_CaloSample(CaloCell_ID::PreSamplerB,  0., 0.);
-
-  print_edges_via_CaloSample(CaloCell_ID::PreSamplerB, 1.6, 0.);
-  print_edges_via_CaloSample(CaloCell_ID::PreSamplerB, 1.5, 0.);
-  print_edges_via_CaloSample(CaloCell_ID::PreSamplerB, 1.45, 0.);
-  print_edges_via_CaloSample(CaloCell_ID::PreSamplerB, 1.4, 0.);
-  print_edges_via_CaloSample(CaloCell_ID::PreSamplerB, 1.3, 0.);
-  print_edges_via_CaloSample(CaloCell_ID::PreSamplerB, 0.1, 0.);
-  print_edges_via_CaloSample(CaloCell_ID::PreSamplerB, 0.002854, 0.);
-
-  print_edges_via_CaloSample(CaloCell_ID::PreSamplerE, -1.4, 0.);
-  print_edges_via_CaloSample(CaloCell_ID::PreSamplerE, -1.45, 0.);
-  print_edges_via_CaloSample(CaloCell_ID::PreSamplerE, -1.49, 0.);
-  print_edges_via_CaloSample(CaloCell_ID::PreSamplerE, -1.5, 0.);
-  print_edges_via_CaloSample(CaloCell_ID::PreSamplerE, -1.52, 0.);
-  print_edges_via_CaloSample(CaloCell_ID::PreSamplerE, -1.6, 0.);
-  print_edges_via_CaloSample(CaloCell_ID::PreSamplerE, -1.79, 0.);
-  print_edges_via_CaloSample(CaloCell_ID::PreSamplerE, -1.8, 0.);
-  print_edges_via_CaloSample(CaloCell_ID::PreSamplerE, -1.81, 0.);
-
-  print_edges_via_CaloSample(CaloCell_ID::PreSamplerE, 1.3, 0.);
-  print_edges_via_CaloSample(CaloCell_ID::PreSamplerE, 1.4, 0.);
-  print_edges_via_CaloSample(CaloCell_ID::PreSamplerE, 1.45, 0.);
-  print_edges_via_CaloSample(CaloCell_ID::PreSamplerE, 1.6, 0.);
-  print_edges_via_CaloSample(CaloCell_ID::PreSamplerE, 2.45, 0.);
-  print_edges_via_CaloSample(CaloCell_ID::PreSamplerE, 2.5, 0.);
-  print_edges_via_CaloSample(CaloCell_ID::PreSamplerE, 2.6, 0.);
+  print_edges_via_CaloSample(CaloCell_ID::PreSamplerB, -1.6, 0.,caloDDMan);
+  print_edges_via_CaloSample(CaloCell_ID::PreSamplerB, -1.55, 0.,caloDDMan);
+  print_edges_via_CaloSample(CaloCell_ID::PreSamplerB, -1.53, 0.,caloDDMan);
+  print_edges_via_CaloSample(CaloCell_ID::PreSamplerB, -1.52, 0.,caloDDMan);
+  print_edges_via_CaloSample(CaloCell_ID::PreSamplerB, -1.48, 0.,caloDDMan);
+  print_edges_via_CaloSample(CaloCell_ID::PreSamplerB, -1.47, 0.,caloDDMan);
+  print_edges_via_CaloSample(CaloCell_ID::PreSamplerB, -1.45, 0.,caloDDMan);
+  print_edges_via_CaloSample(CaloCell_ID::PreSamplerB, -1.3, 0.,caloDDMan);
+  print_edges_via_CaloSample(CaloCell_ID::PreSamplerB, -0.1, 0.,caloDDMan);
+  print_edges_via_CaloSample(CaloCell_ID::PreSamplerB,  0., 0.,caloDDMan);
+
+  print_edges_via_CaloSample(CaloCell_ID::PreSamplerB, 1.6, 0.,caloDDMan);
+  print_edges_via_CaloSample(CaloCell_ID::PreSamplerB, 1.5, 0.,caloDDMan);
+  print_edges_via_CaloSample(CaloCell_ID::PreSamplerB, 1.45, 0.,caloDDMan);
+  print_edges_via_CaloSample(CaloCell_ID::PreSamplerB, 1.4, 0.,caloDDMan);
+  print_edges_via_CaloSample(CaloCell_ID::PreSamplerB, 1.3, 0.,caloDDMan);
+  print_edges_via_CaloSample(CaloCell_ID::PreSamplerB, 0.1, 0.,caloDDMan);
+  print_edges_via_CaloSample(CaloCell_ID::PreSamplerB, 0.002854, 0.,caloDDMan);
+
+  print_edges_via_CaloSample(CaloCell_ID::PreSamplerE, -1.4, 0.,caloDDMan);
+  print_edges_via_CaloSample(CaloCell_ID::PreSamplerE, -1.45, 0.,caloDDMan);
+  print_edges_via_CaloSample(CaloCell_ID::PreSamplerE, -1.49, 0.,caloDDMan);
+  print_edges_via_CaloSample(CaloCell_ID::PreSamplerE, -1.5, 0.,caloDDMan);
+  print_edges_via_CaloSample(CaloCell_ID::PreSamplerE, -1.52, 0.,caloDDMan);
+  print_edges_via_CaloSample(CaloCell_ID::PreSamplerE, -1.6, 0.,caloDDMan);
+  print_edges_via_CaloSample(CaloCell_ID::PreSamplerE, -1.79, 0.,caloDDMan);
+  print_edges_via_CaloSample(CaloCell_ID::PreSamplerE, -1.8, 0.,caloDDMan);
+  print_edges_via_CaloSample(CaloCell_ID::PreSamplerE, -1.81, 0.,caloDDMan);
+
+  print_edges_via_CaloSample(CaloCell_ID::PreSamplerE, 1.3, 0.,caloDDMan);
+  print_edges_via_CaloSample(CaloCell_ID::PreSamplerE, 1.4, 0.,caloDDMan);
+  print_edges_via_CaloSample(CaloCell_ID::PreSamplerE, 1.45, 0.,caloDDMan);
+  print_edges_via_CaloSample(CaloCell_ID::PreSamplerE, 1.6, 0.,caloDDMan);
+  print_edges_via_CaloSample(CaloCell_ID::PreSamplerE, 2.45, 0.,caloDDMan);
+  print_edges_via_CaloSample(CaloCell_ID::PreSamplerE, 2.5, 0.,caloDDMan);
+  print_edges_via_CaloSample(CaloCell_ID::PreSamplerE, 2.6, 0.,caloDDMan);
 
   std::cout << std::endl;
   std::cout << " ------------ Strips -------------- " << std::endl;
 
-  print_edges_via_CaloSample(CaloCell_ID::EMB1, -1.48, 0.);
-  print_edges_via_CaloSample(CaloCell_ID::EMB1, -1.47, 0.);
-  print_edges_via_CaloSample(CaloCell_ID::EMB1, -1.45, 0.);
-  print_edges_via_CaloSample(CaloCell_ID::EMB1, -1.41, 0.);
-  print_edges_via_CaloSample(CaloCell_ID::EMB1, -1.4, 0.);
-  print_edges_via_CaloSample(CaloCell_ID::EMB1, -1.39, 0.);
-  print_edges_via_CaloSample(CaloCell_ID::EMB1, -1.3, 0.);
-  print_edges_via_CaloSample(CaloCell_ID::EMB1, -0.1, 0.);
-  print_edges_via_CaloSample(CaloCell_ID::EMB1, -0.01, 0.);
-  print_edges_via_CaloSample(CaloCell_ID::EMB1,  0., 0.);
-  print_edges_via_CaloSample(CaloCell_ID::EMB1,  0.01, 0.);
-
-  print_edges_via_CaloSample(CaloCell_ID::EMB1, 1.6, 0.);
-  print_edges_via_CaloSample(CaloCell_ID::EMB1, 1.5, 0.);
-  print_edges_via_CaloSample(CaloCell_ID::EMB1, 1.45, 0.);
-  print_edges_via_CaloSample(CaloCell_ID::EMB1, 1.4, 0.);
-  print_edges_via_CaloSample(CaloCell_ID::EMB1, 1.3, 0.);
-  print_edges_via_CaloSample(CaloCell_ID::EMB1, 0.1, 0.);
-  print_edges_via_CaloSample(CaloCell_ID::EMB1, 0.002854, 0.);
-
-  print_edges_via_CaloSample(CaloCell_ID::EME1, -1.3, 0.);
-  print_edges_via_CaloSample(CaloCell_ID::EME1, -1.4, 0.);
-  print_edges_via_CaloSample(CaloCell_ID::EME1, -1.45, 0.);
-  print_edges_via_CaloSample(CaloCell_ID::EME1, -1.6, 0.);
-  print_edges_via_CaloSample(CaloCell_ID::EME1, -2.45, 0.);
-  print_edges_via_CaloSample(CaloCell_ID::EME1, -2.5, 0.);
-  print_edges_via_CaloSample(CaloCell_ID::EME1, -2.6, 0.);
-
-  print_edges_via_CaloSample(CaloCell_ID::EME1, 1.3, 0.);
-  print_edges_via_CaloSample(CaloCell_ID::EME1, 1.4, 0.);
-  print_edges_via_CaloSample(CaloCell_ID::EME1, 1.45, 0.);
-  print_edges_via_CaloSample(CaloCell_ID::EME1, 1.49, 0.);
-  print_edges_via_CaloSample(CaloCell_ID::EME1, 1.5, 0.);
-  print_edges_via_CaloSample(CaloCell_ID::EME1, 1.505, 0.);
-  print_edges_via_CaloSample(CaloCell_ID::EME1, 1.51, 0.);
-  print_edges_via_CaloSample(CaloCell_ID::EME1, 1.515, 0.);
-  print_edges_via_CaloSample(CaloCell_ID::EME1, 1.6, 0.);
-  print_edges_via_CaloSample(CaloCell_ID::EME1, 1.795, 0.);
-  print_edges_via_CaloSample(CaloCell_ID::EME1, 1.799, 0.);
-  print_edges_via_CaloSample(CaloCell_ID::EME1, 1.8, 0.);
-  print_edges_via_CaloSample(CaloCell_ID::EME1, 1.801, 0.);
-  print_edges_via_CaloSample(CaloCell_ID::EME1, 1.805, 0.);
-  print_edges_via_CaloSample(CaloCell_ID::EME1, 1.81, 0.);
-  print_edges_via_CaloSample(CaloCell_ID::EME1, 1.815, 0.);
-  print_edges_via_CaloSample(CaloCell_ID::EME1, 1.82, 0.);
-  print_edges_via_CaloSample(CaloCell_ID::EME1, 2.45, 0.);
-  print_edges_via_CaloSample(CaloCell_ID::EME1, 2.5, 0.);
-  print_edges_via_CaloSample(CaloCell_ID::EME1, 2.6, 0.);
+  print_edges_via_CaloSample(CaloCell_ID::EMB1, -1.48, 0.,caloDDMan);
+  print_edges_via_CaloSample(CaloCell_ID::EMB1, -1.47, 0.,caloDDMan);
+  print_edges_via_CaloSample(CaloCell_ID::EMB1, -1.45, 0.,caloDDMan);
+  print_edges_via_CaloSample(CaloCell_ID::EMB1, -1.41, 0.,caloDDMan);
+  print_edges_via_CaloSample(CaloCell_ID::EMB1, -1.4, 0.,caloDDMan);
+  print_edges_via_CaloSample(CaloCell_ID::EMB1, -1.39, 0.,caloDDMan);
+  print_edges_via_CaloSample(CaloCell_ID::EMB1, -1.3, 0.,caloDDMan);
+  print_edges_via_CaloSample(CaloCell_ID::EMB1, -0.1, 0.,caloDDMan);
+  print_edges_via_CaloSample(CaloCell_ID::EMB1, -0.01, 0.,caloDDMan);
+  print_edges_via_CaloSample(CaloCell_ID::EMB1,  0., 0.,caloDDMan);
+  print_edges_via_CaloSample(CaloCell_ID::EMB1,  0.01, 0.,caloDDMan);
+
+  print_edges_via_CaloSample(CaloCell_ID::EMB1, 1.6, 0.,caloDDMan);
+  print_edges_via_CaloSample(CaloCell_ID::EMB1, 1.5, 0.,caloDDMan);
+  print_edges_via_CaloSample(CaloCell_ID::EMB1, 1.45, 0.,caloDDMan);
+  print_edges_via_CaloSample(CaloCell_ID::EMB1, 1.4, 0.,caloDDMan);
+  print_edges_via_CaloSample(CaloCell_ID::EMB1, 1.3, 0.,caloDDMan);
+  print_edges_via_CaloSample(CaloCell_ID::EMB1, 0.1, 0.,caloDDMan);
+  print_edges_via_CaloSample(CaloCell_ID::EMB1, 0.002854, 0.,caloDDMan);
+
+  print_edges_via_CaloSample(CaloCell_ID::EME1, -1.3, 0.,caloDDMan);
+  print_edges_via_CaloSample(CaloCell_ID::EME1, -1.4, 0.,caloDDMan);
+  print_edges_via_CaloSample(CaloCell_ID::EME1, -1.45, 0.,caloDDMan);
+  print_edges_via_CaloSample(CaloCell_ID::EME1, -1.6, 0.,caloDDMan);
+  print_edges_via_CaloSample(CaloCell_ID::EME1, -2.45, 0.,caloDDMan);
+  print_edges_via_CaloSample(CaloCell_ID::EME1, -2.5, 0.,caloDDMan);
+  print_edges_via_CaloSample(CaloCell_ID::EME1, -2.6, 0.,caloDDMan);
+
+  print_edges_via_CaloSample(CaloCell_ID::EME1, 1.3, 0.,caloDDMan);
+  print_edges_via_CaloSample(CaloCell_ID::EME1, 1.4, 0.,caloDDMan);
+  print_edges_via_CaloSample(CaloCell_ID::EME1, 1.45, 0.,caloDDMan);
+  print_edges_via_CaloSample(CaloCell_ID::EME1, 1.49, 0.,caloDDMan);
+  print_edges_via_CaloSample(CaloCell_ID::EME1, 1.5, 0.,caloDDMan);
+  print_edges_via_CaloSample(CaloCell_ID::EME1, 1.505, 0.,caloDDMan);
+  print_edges_via_CaloSample(CaloCell_ID::EME1, 1.51, 0.,caloDDMan);
+  print_edges_via_CaloSample(CaloCell_ID::EME1, 1.515, 0.,caloDDMan);
+  print_edges_via_CaloSample(CaloCell_ID::EME1, 1.6, 0.,caloDDMan);
+  print_edges_via_CaloSample(CaloCell_ID::EME1, 1.795, 0.,caloDDMan);
+  print_edges_via_CaloSample(CaloCell_ID::EME1, 1.799, 0.,caloDDMan);
+  print_edges_via_CaloSample(CaloCell_ID::EME1, 1.8, 0.,caloDDMan);
+  print_edges_via_CaloSample(CaloCell_ID::EME1, 1.801, 0.,caloDDMan);
+  print_edges_via_CaloSample(CaloCell_ID::EME1, 1.805, 0.,caloDDMan);
+  print_edges_via_CaloSample(CaloCell_ID::EME1, 1.81, 0.,caloDDMan);
+  print_edges_via_CaloSample(CaloCell_ID::EME1, 1.815, 0.,caloDDMan);
+  print_edges_via_CaloSample(CaloCell_ID::EME1, 1.82, 0.,caloDDMan);
+  print_edges_via_CaloSample(CaloCell_ID::EME1, 2.45, 0.,caloDDMan);
+  print_edges_via_CaloSample(CaloCell_ID::EME1, 2.5, 0.,caloDDMan);
+  print_edges_via_CaloSample(CaloCell_ID::EME1, 2.6, 0.,caloDDMan);
 
 
   std::cout << std::endl;
   std::cout << " ------------ Middle -------------- " << std::endl;
 
-  print_edges_via_CaloSample(CaloCell_ID::EMB2, -1.6, 0.);
-  print_edges_via_CaloSample(CaloCell_ID::EMB2, -1.5, 0.);
-  print_edges_via_CaloSample(CaloCell_ID::EMB2, -1.45, 0.);
-  print_edges_via_CaloSample(CaloCell_ID::EMB2, -1.4, 0.);
-  print_edges_via_CaloSample(CaloCell_ID::EMB2, -1.3, 0.);
-  print_edges_via_CaloSample(CaloCell_ID::EMB2, -0.1, 0.);
-  print_edges_via_CaloSample(CaloCell_ID::EMB2,  0., 0.);
-
-  print_edges_via_CaloSample(CaloCell_ID::EMB2, 1.6, 0.);
-  print_edges_via_CaloSample(CaloCell_ID::EMB2, 1.5, 0.);
-  print_edges_via_CaloSample(CaloCell_ID::EMB2, 1.45, 0.);
-  print_edges_via_CaloSample(CaloCell_ID::EMB2, 1.4, 0.);
-  print_edges_via_CaloSample(CaloCell_ID::EMB2, 1.3, 0.);
-  print_edges_via_CaloSample(CaloCell_ID::EMB2, 0.1, 0.);
-  print_edges_via_CaloSample(CaloCell_ID::EMB2, 0.002854, 0.);
-
-  print_edges_via_CaloSample(CaloCell_ID::EME2, -1.3, 0.);
-  print_edges_via_CaloSample(CaloCell_ID::EME2, -1.4, 0.);
-  print_edges_via_CaloSample(CaloCell_ID::EME2, -1.45, 0.);
-  print_edges_via_CaloSample(CaloCell_ID::EME2, -1.6, 0.);
-  print_edges_via_CaloSample(CaloCell_ID::EME2, -2.45, 0.);
-  print_edges_via_CaloSample(CaloCell_ID::EME2, -2.5, 0.);
-  print_edges_via_CaloSample(CaloCell_ID::EME2, -2.6, 0.);
-
-  print_edges_via_CaloSample(CaloCell_ID::EME2, 1.3, 0.);
-  print_edges_via_CaloSample(CaloCell_ID::EME2, 1.4, 0.);
-  print_edges_via_CaloSample(CaloCell_ID::EME2, 1.45, 0.);
-  print_edges_via_CaloSample(CaloCell_ID::EME2, 1.6, 0.);
-  print_edges_via_CaloSample(CaloCell_ID::EME2, 2.45, 0.);
-  print_edges_via_CaloSample(CaloCell_ID::EME2, 2.5, 0.);
-  print_edges_via_CaloSample(CaloCell_ID::EME2, 2.6, 0.);
+  print_edges_via_CaloSample(CaloCell_ID::EMB2, -1.6, 0.,caloDDMan);
+  print_edges_via_CaloSample(CaloCell_ID::EMB2, -1.5, 0.,caloDDMan);
+  print_edges_via_CaloSample(CaloCell_ID::EMB2, -1.45, 0.,caloDDMan);
+  print_edges_via_CaloSample(CaloCell_ID::EMB2, -1.4, 0.,caloDDMan);
+  print_edges_via_CaloSample(CaloCell_ID::EMB2, -1.3, 0.,caloDDMan);
+  print_edges_via_CaloSample(CaloCell_ID::EMB2, -0.1, 0.,caloDDMan);
+  print_edges_via_CaloSample(CaloCell_ID::EMB2,  0., 0.,caloDDMan);
+
+  print_edges_via_CaloSample(CaloCell_ID::EMB2, 1.6, 0.,caloDDMan);
+  print_edges_via_CaloSample(CaloCell_ID::EMB2, 1.5, 0.,caloDDMan);
+  print_edges_via_CaloSample(CaloCell_ID::EMB2, 1.45, 0.,caloDDMan);
+  print_edges_via_CaloSample(CaloCell_ID::EMB2, 1.4, 0.,caloDDMan);
+  print_edges_via_CaloSample(CaloCell_ID::EMB2, 1.3, 0.,caloDDMan);
+  print_edges_via_CaloSample(CaloCell_ID::EMB2, 0.1, 0.,caloDDMan);
+  print_edges_via_CaloSample(CaloCell_ID::EMB2, 0.002854, 0.,caloDDMan);
+
+  print_edges_via_CaloSample(CaloCell_ID::EME2, -1.3, 0.,caloDDMan);
+  print_edges_via_CaloSample(CaloCell_ID::EME2, -1.4, 0.,caloDDMan);
+  print_edges_via_CaloSample(CaloCell_ID::EME2, -1.45, 0.,caloDDMan);
+  print_edges_via_CaloSample(CaloCell_ID::EME2, -1.6, 0.,caloDDMan);
+  print_edges_via_CaloSample(CaloCell_ID::EME2, -2.45, 0.,caloDDMan);
+  print_edges_via_CaloSample(CaloCell_ID::EME2, -2.5, 0.,caloDDMan);
+  print_edges_via_CaloSample(CaloCell_ID::EME2, -2.6, 0.,caloDDMan);
+
+  print_edges_via_CaloSample(CaloCell_ID::EME2, 1.3, 0.,caloDDMan);
+  print_edges_via_CaloSample(CaloCell_ID::EME2, 1.4, 0.,caloDDMan);
+  print_edges_via_CaloSample(CaloCell_ID::EME2, 1.45, 0.,caloDDMan);
+  print_edges_via_CaloSample(CaloCell_ID::EME2, 1.6, 0.,caloDDMan);
+  print_edges_via_CaloSample(CaloCell_ID::EME2, 2.45, 0.,caloDDMan);
+  print_edges_via_CaloSample(CaloCell_ID::EME2, 2.5, 0.,caloDDMan);
+  print_edges_via_CaloSample(CaloCell_ID::EME2, 2.6, 0.,caloDDMan);
 
   std::cout << std::endl;
   std::cout << " ------------ Back -------------- " << std::endl;
 
-  print_edges_via_CaloSample(CaloCell_ID::EMB3, -1.4, 0.);
-  print_edges_via_CaloSample(CaloCell_ID::EMB3, -1.36, 0.);
-  print_edges_via_CaloSample(CaloCell_ID::EMB3, -1.35, 0.);
-  print_edges_via_CaloSample(CaloCell_ID::EMB3, -1.34, 0.);
-  print_edges_via_CaloSample(CaloCell_ID::EMB3, -1.3, 0.);
-  print_edges_via_CaloSample(CaloCell_ID::EMB3, -0.1, 0.);
-  print_edges_via_CaloSample(CaloCell_ID::EMB3,  0., 0.);
-
-  print_edges_via_CaloSample(CaloCell_ID::EMB3, 1.6, 0.);
-  print_edges_via_CaloSample(CaloCell_ID::EMB3, 1.5, 0.);
-  print_edges_via_CaloSample(CaloCell_ID::EMB3, 1.45, 0.);
-  print_edges_via_CaloSample(CaloCell_ID::EMB3, 1.4, 0.);
-  print_edges_via_CaloSample(CaloCell_ID::EMB3, 1.3, 0.);
-  print_edges_via_CaloSample(CaloCell_ID::EMB3, 0.1, 0.);
-  print_edges_via_CaloSample(CaloCell_ID::EMB3, 0.002854, 0.);
-
-  print_edges_via_CaloSample(CaloCell_ID::EME3, -1.4, 0.);
-  print_edges_via_CaloSample(CaloCell_ID::EME3, -1.49, 0.);
-  print_edges_via_CaloSample(CaloCell_ID::EME3, -1.5, 0.);
-  print_edges_via_CaloSample(CaloCell_ID::EME3, -1.505, 0.);
-  print_edges_via_CaloSample(CaloCell_ID::EME3, -1.51, 0.);
-  print_edges_via_CaloSample(CaloCell_ID::EME3, -1.6, 0.);
-  print_edges_via_CaloSample(CaloCell_ID::EME3, -2.45, 0.);
-  print_edges_via_CaloSample(CaloCell_ID::EME3, -2.5, 0.);
-  print_edges_via_CaloSample(CaloCell_ID::EME3, -2.6, 0.);
-
-  print_edges_via_CaloSample(CaloCell_ID::EME3, 1.3, 0.);
-  print_edges_via_CaloSample(CaloCell_ID::EME3, 1.4, 0.);
-  print_edges_via_CaloSample(CaloCell_ID::EME3, 1.45, 0.);
-  print_edges_via_CaloSample(CaloCell_ID::EME3, 1.6, 0.);
-  print_edges_via_CaloSample(CaloCell_ID::EME3, 2.45, 0.);
-  print_edges_via_CaloSample(CaloCell_ID::EME3, 2.5, 0.);
-  print_edges_via_CaloSample(CaloCell_ID::EME3, 2.6, 0.);
+  print_edges_via_CaloSample(CaloCell_ID::EMB3, -1.4, 0.,caloDDMan);
+  print_edges_via_CaloSample(CaloCell_ID::EMB3, -1.36, 0.,caloDDMan);
+  print_edges_via_CaloSample(CaloCell_ID::EMB3, -1.35, 0.,caloDDMan);
+  print_edges_via_CaloSample(CaloCell_ID::EMB3, -1.34, 0.,caloDDMan);
+  print_edges_via_CaloSample(CaloCell_ID::EMB3, -1.3, 0.,caloDDMan);
+  print_edges_via_CaloSample(CaloCell_ID::EMB3, -0.1, 0.,caloDDMan);
+  print_edges_via_CaloSample(CaloCell_ID::EMB3,  0., 0.,caloDDMan);
+
+  print_edges_via_CaloSample(CaloCell_ID::EMB3, 1.6, 0.,caloDDMan);
+  print_edges_via_CaloSample(CaloCell_ID::EMB3, 1.5, 0.,caloDDMan);
+  print_edges_via_CaloSample(CaloCell_ID::EMB3, 1.45, 0.,caloDDMan);
+  print_edges_via_CaloSample(CaloCell_ID::EMB3, 1.4, 0.,caloDDMan);
+  print_edges_via_CaloSample(CaloCell_ID::EMB3, 1.3, 0.,caloDDMan);
+  print_edges_via_CaloSample(CaloCell_ID::EMB3, 0.1, 0.,caloDDMan);
+  print_edges_via_CaloSample(CaloCell_ID::EMB3, 0.002854, 0.,caloDDMan);
+
+  print_edges_via_CaloSample(CaloCell_ID::EME3, -1.4, 0.,caloDDMan);
+  print_edges_via_CaloSample(CaloCell_ID::EME3, -1.49, 0.,caloDDMan);
+  print_edges_via_CaloSample(CaloCell_ID::EME3, -1.5, 0.,caloDDMan);
+  print_edges_via_CaloSample(CaloCell_ID::EME3, -1.505, 0.,caloDDMan);
+  print_edges_via_CaloSample(CaloCell_ID::EME3, -1.51, 0.,caloDDMan);
+  print_edges_via_CaloSample(CaloCell_ID::EME3, -1.6, 0.,caloDDMan);
+  print_edges_via_CaloSample(CaloCell_ID::EME3, -2.45, 0.,caloDDMan);
+  print_edges_via_CaloSample(CaloCell_ID::EME3, -2.5, 0.,caloDDMan);
+  print_edges_via_CaloSample(CaloCell_ID::EME3, -2.6, 0.,caloDDMan);
+
+  print_edges_via_CaloSample(CaloCell_ID::EME3, 1.3, 0.,caloDDMan);
+  print_edges_via_CaloSample(CaloCell_ID::EME3, 1.4, 0.,caloDDMan);
+  print_edges_via_CaloSample(CaloCell_ID::EME3, 1.45, 0.,caloDDMan);
+  print_edges_via_CaloSample(CaloCell_ID::EME3, 1.6, 0.,caloDDMan);
+  print_edges_via_CaloSample(CaloCell_ID::EME3, 2.45, 0.,caloDDMan);
+  print_edges_via_CaloSample(CaloCell_ID::EME3, 2.5, 0.,caloDDMan);
+  print_edges_via_CaloSample(CaloCell_ID::EME3, 2.6, 0.,caloDDMan);
 
 }
diff --git a/LArCalorimeter/LArExample/TestLArDetDescr/src/TestCaloDDE.h b/LArCalorimeter/LArExample/TestLArDetDescr/src/TestCaloDDE.h
new file mode 100755
index 0000000000000000000000000000000000000000..e0decd0892cada1a27ddfe9785e6e2c4ce2776ec
--- /dev/null
+++ b/LArCalorimeter/LArExample/TestLArDetDescr/src/TestCaloDDE.h
@@ -0,0 +1,72 @@
+/*
+  Copyright (C) 2002-2021 CERN for the benefit of the ATLAS collaboration
+*/
+
+#ifndef TESTLARDETDESCR_TESTCALODDE_H
+#define TESTLARDETDESCR_TESTCALODDE_H
+
+/**
+ * @file   TestCaloDDE.h 
+ *
+ * @author Claire Adam-Bourdarios
+ *
+ * @date   Feb 2003
+ *
+ * @brief  Example of retreiving CaloDetDescr manager either from
+ *           DetStore or from CondStore
+ */
+
+#include "AthenaBaseComps/AthAlgorithm.h"
+#include "CaloDetDescr/CaloDetDescrManager.h"
+#include "CaloIdentifier/CaloCell_ID.h"
+#include "StoreGate/ReadCondHandleKey.h"
+
+class CaloIdManager;
+class ICaloRecoMaterialTool;
+class ICaloRecoSimpleGeomTool;
+class CaloPhiRange;
+
+class TestCaloDDE : public AthAlgorithm
+{
+ public:
+  TestCaloDDE(const std::string& name, ISvcLocator* pSvcLocator);
+  virtual ~TestCaloDDE();
+  
+  virtual StatusCode initialize() override;
+  virtual StatusCode finalize() override;
+  virtual StatusCode execute() override;
+
+ private:
+  void print_subcalo(CaloCell_ID::CaloSample sample, const CaloDetDescrManager* caloDDMan);
+  void print_eta_line(int phi_num, bool em, bool hec, bool fcal, const CaloDetDescrManager* caloDDMan);
+  void print_phi_line(int eta_num, bool em, bool hec, bool fcal, const CaloDetDescrManager* caloDDMan);
+  void print_elt_HW(bool em, bool hec, bool fcal, const CaloDetDescrManager* caloDDMan);
+  void try_zone(const CaloDetDescrManager* caloDDMan);
+  void try_each_descr_zone(const CaloDetDescrManager* caloDDMan);
+  void try_zone(double eta, double deta, double phi, double dphi, int sampling_or_module, const CaloDetDescrManager* caloDDMan);
+  void read_volumes(const CaloDetDescrManager* caloDDMan);
+  void where_am_I(double eta, double phi, const CaloDetDescrManager* caloDDMan);
+  void print_edges_via_CaloSample(CaloCell_ID::CaloSample sample, double eta, double phi, const CaloDetDescrManager* caloDDMan);
+  void print_edges_via_SubCalo(CaloCell_ID::CaloSample sample, double eta, double phi, const CaloDetDescrManager* caloDDMan);
+  void print_edges_via_CaloSample(const CaloDetDescrManager* caloDDMan);
+  void print_edges_via_SubCalo(const CaloDetDescrManager* caloDDMan);
+  
+  const CaloIdManager*  m_calo_id_man{nullptr};
+  const CaloDetDescrManager*  m_calo_dd_man{nullptr};
+
+  // Simplified geometry :
+  ICaloRecoMaterialTool* m_lar_mat{nullptr};
+  ICaloRecoSimpleGeomTool* m_lar_simplegeom{nullptr};
+
+  BooleanProperty m_useCondStore { this
+      , "UseCondStore"
+      , true
+      , "Get CaloDetDescrManage from Condition Store. If FALSE, then use Detector Store"};
+
+  SG::ReadCondHandleKey<CaloDetDescrManager> m_readCondKey { this
+      , "CaloDetDescrManager"
+      , "CaloDetDescrManager"
+      , "SG Key for CaloDetDescrManager in the Condition Store" };
+};
+
+#endif
diff --git a/LArCalorimeter/LArExample/TestLArDetDescr/src/components/TestLArDetDescr_entries.cxx b/LArCalorimeter/LArExample/TestLArDetDescr/src/components/TestLArDetDescr_entries.cxx
index 2bc683dceefc5d3958e2e76de6654ff986fa7d27..c58a60e36827256e5e7e80376030b495f75468db 100644
--- a/LArCalorimeter/LArExample/TestLArDetDescr/src/components/TestLArDetDescr_entries.cxx
+++ b/LArCalorimeter/LArExample/TestLArDetDescr/src/components/TestLArDetDescr_entries.cxx
@@ -1,4 +1,4 @@
-#include "TestLArDetDescr/TestCaloDDE.h"
+#include "../TestCaloDDE.h"
 #include "TestLArDetDescr/TestCaloGeom.h"
 #include "TestLArDetDescr/TestLArTT.h"
 #include "TestLArDetDescr/TestLArMaterial.h"
diff --git a/LArCalorimeter/LArGeoModel/LArGeoCode/src/LArAlignHelper.cxx b/LArCalorimeter/LArGeoModel/LArGeoCode/src/LArAlignHelper.cxx
index 1881de9df73ac381af05567ccd95e5d2e21e2c49..f5cabf018cb1207036b96c379506d310a1a33800 100644
--- a/LArCalorimeter/LArGeoModel/LArGeoCode/src/LArAlignHelper.cxx
+++ b/LArCalorimeter/LArGeoModel/LArGeoCode/src/LArAlignHelper.cxx
@@ -126,13 +126,16 @@ StatusCode LArAlignHelper::applyAlignments(const ServiceHandle<StoreGateSvc>& de
   } // Loop over Align Names
 
   // Fill the caches of Full Physical Volumes
-  for(const std::string& alignName : m_alignNames) {
-    if(detStore->contains<StoredPhysVol>(alignName)) {
-      StoredPhysVol* storedPV{nullptr};
-      if(detStore->retrieve(storedPV,alignName).isSuccess()) {
-	storedPV->getPhysVol()->getAbsoluteTransform(alignmentStore);
-	storedPV->getPhysVol()->getDefAbsoluteTransform(alignmentStore);
-      }
+  //
+  // !!! NB! The code assumes that StoredPhysVol-s are used only by LAr
+  //         This has been true ever since the StorePhysVol-s were invented.
+  //
+  for(const std::string& key : detStore->keys<StoredPhysVol>()) {
+    StoredPhysVol* storedPV = detStore->tryRetrieve<StoredPhysVol>(key);
+    ATH_MSG_DEBUG("Building position caches for StoredPhysVol :" << key);
+    if(storedPV) {
+      storedPV->getPhysVol()->getAbsoluteTransform(alignmentStore);
+      storedPV->getPhysVol()->getDefAbsoluteTransform(alignmentStore);
     }
   }
 
diff --git a/LArCalorimeter/LArRecUtils/share/LArFCalTowerBuilderTool.ref b/LArCalorimeter/LArRecUtils/share/LArFCalTowerBuilderTool.ref
index 19062382ec952457a9beeb9d2e0979949e0bf8b2..3ab4c8034a6dd917f20ffef42a334015dab5b99b 100644
--- a/LArCalorimeter/LArRecUtils/share/LArFCalTowerBuilderTool.ref
+++ b/LArCalorimeter/LArRecUtils/share/LArFCalTowerBuilderTool.ref
@@ -256,6 +256,7 @@ AthenaEventLoopMgr   INFO   ===>>>  start processing event #1, run #1 0 events p
 IOVDbSvc             INFO Opening COOL connection for COOLOFL_LAR/OFLP200
 IOVDbSvc             INFO Disconnecting from COOLOFL_LAR/OFLP200
 LArAlignCondAlg      INFO recorded new GeoAlignmentStore object for LAr with key LArAlignmentStore and range {[0,l:0] - [INVALID]}
+CaloAlignCondAlg     INFO recorded new CaloDetDescr Manager condition object with key CaloDetDescrManager and range {[0,t:0,l:0] - [INVALID]}
 test1
 towers
 0 1 1 0 
diff --git a/LArCalorimeter/LArTest/LArConditionsTest/share/LArConditionsTest.ref b/LArCalorimeter/LArTest/LArConditionsTest/share/LArConditionsTest.ref
index 6a42730e8134aebe9221b9315128cdc395ac4c54..2e4170b04ab8a5e1cfaac942e045badcf01317fe 100644
--- a/LArCalorimeter/LArTest/LArConditionsTest/share/LArConditionsTest.ref
+++ b/LArCalorimeter/LArTest/LArConditionsTest/share/LArConditionsTest.ref
@@ -316,6 +316,7 @@ IOVDbSvc             INFO Disconnecting from COOLOFL_LAR/OFLP200
 IOVDbSvc             INFO Opening COOL connection for COOLOFL_LAR/OFLP200
 IOVDbSvc             INFO Disconnecting from COOLOFL_LAR/OFLP200
 LArAlignCondAlg      INFO recorded new GeoAlignmentStore object for LAr with key LArAlignmentStore and range {[0,l:0] - [INVALID]}
+CaloAlignCondAlg     INFO recorded new CaloDetDescr Manager condition object with key CaloDetDescrManager and range {[0,t:0,l:0] - [INVALID]}
 LArOnOffMappingAlg   INFO Done reading online/offline identifier mapping
 LArOnOffMappingAlg   INFO Found 195072 online identifier and 182468 offline identifier. 12604 disconnected channels.
 LArOnOffMappingAlg   INFO recorded new LArOnOffIdMap with range {[0,l:0] - [INVALID]} into Conditions Store
diff --git a/LArCalorimeter/LArTest/LArConditionsTest/share/LArConditionsTestReadNoReg.ref b/LArCalorimeter/LArTest/LArConditionsTest/share/LArConditionsTestReadNoReg.ref
index cca5bbb998e3b8c57c3e2b752b06f3178d29a551..0ce252e6f8e576c179fdb8521b8119d7e4764f6a 100644
--- a/LArCalorimeter/LArTest/LArConditionsTest/share/LArConditionsTestReadNoReg.ref
+++ b/LArCalorimeter/LArTest/LArConditionsTest/share/LArConditionsTestReadNoReg.ref
@@ -341,6 +341,7 @@ IOVDbSvc             INFO Disconnecting from COOLOFL_LAR/OFLP200
 IOVDbSvc             INFO Opening COOL connection for COOLOFL_LAR/OFLP200
 IOVDbSvc             INFO Disconnecting from COOLOFL_LAR/OFLP200
 LArAlignCondAlg      INFO recorded new GeoAlignmentStore object for LAr with key LArAlignmentStore and range {[0,l:0] - [INVALID]}
+CaloAlignCondAlg     INFO recorded new CaloDetDescr Manager condition object with key CaloDetDescrManager and range {[0,t:0,l:0] - [INVALID]}
 LArOnOffMappingAlg   INFO Done reading online/offline identifier mapping
 LArOnOffMappingAlg   INFO Found 195072 online identifier and 182468 offline identifier. 12604 disconnected channels.
 LArOnOffMappingAlg   INFO recorded new LArOnOffIdMap with range {[0,l:0] - [INVALID]} into Conditions Store
diff --git a/LArCalorimeter/LArTest/LArConditionsTest/share/LArConditionsTestWriteNoReg.ref b/LArCalorimeter/LArTest/LArConditionsTest/share/LArConditionsTestWriteNoReg.ref
index 10582ca7bbcc847bf0621aa751fb7745302d69b5..3a796ff5a31ebd5b7fba230aac2f9ca90a5c169b 100644
--- a/LArCalorimeter/LArTest/LArConditionsTest/share/LArConditionsTestWriteNoReg.ref
+++ b/LArCalorimeter/LArTest/LArConditionsTest/share/LArConditionsTestWriteNoReg.ref
@@ -318,6 +318,7 @@ IOVDbSvc             INFO Disconnecting from COOLOFL_LAR/OFLP200
 IOVDbSvc             INFO Opening COOL connection for COOLOFL_LAR/OFLP200
 IOVDbSvc             INFO Disconnecting from COOLOFL_LAR/OFLP200
 LArAlignCondAlg      INFO recorded new GeoAlignmentStore object for LAr with key LArAlignmentStore and range {[0,l:0] - [INVALID]}
+CaloAlignCondAlg     INFO recorded new CaloDetDescr Manager condition object with key CaloDetDescrManager and range {[0,t:0,l:0] - [INVALID]}
 LArOnOffMappingAlg   INFO Done reading online/offline identifier mapping
 LArOnOffMappingAlg   INFO Found 195072 online identifier and 182468 offline identifier. 12604 disconnected channels.
 LArOnOffMappingAlg   INFO recorded new LArOnOffIdMap with range {[0,l:0] - [INVALID]} into Conditions Store
diff --git a/TileCalorimeter/TileRecUtils/share/TileCellBuilderFromHit_test.ref b/TileCalorimeter/TileRecUtils/share/TileCellBuilderFromHit_test.ref
index a5ad105a8e955b1719ef45b568baf1186716f90a..d54438e3888d9dfdc0d4449072e9289b2b20cf5d 100644
--- a/TileCalorimeter/TileRecUtils/share/TileCellBuilderFromHit_test.ref
+++ b/TileCalorimeter/TileRecUtils/share/TileCellBuilderFromHit_test.ref
@@ -371,6 +371,7 @@ IOVDbFolder          INFO HVS tag OFLCOND-RUN12-SDR-35 resolved to TileOfl02Stat
 IOVDbFolder          INFO HVS tag OFLCOND-RUN12-SDR-35 resolved to TileOfl02TimeChanneloffsetPhy-000-00 for folder /TILE/OFL02/TIME/CHANNELOFFSET/PHY
 IOVDbSvc             INFO Disconnecting from COOLOFL_TILE/OFLP200
 LArAlignCondAlg      INFO recorded new GeoAlignmentStore object for LAr with key LArAlignmentStore and range {[0,l:0] - [177530,l:0]}
+CaloAlignCondAlg     INFO recorded new CaloDetDescr Manager condition object with key CaloDetDescrManager and range {[0,t:0,l:0] - [177530,l:0]}
 TileBadChannels...   INFO Updating TileBchStatus::isBad() definition from DB
 TileBadChannels...   INFO Updating TileBchStatus::isNoisy() definition from DB
 TileBadChannels...   INFO No TileBchStatus::isNoGainL1() definition found in DB, using defaults
diff --git a/TileCalorimeter/TileRecUtils/share/TileCellBuilder_test.ref b/TileCalorimeter/TileRecUtils/share/TileCellBuilder_test.ref
index 4cdbe4bdbbac78b5c4c163c0f6c95fc6cf66d223..0e83aa8c7662923ae7ed35721b419e5608a4ddea 100644
--- a/TileCalorimeter/TileRecUtils/share/TileCellBuilder_test.ref
+++ b/TileCalorimeter/TileRecUtils/share/TileCellBuilder_test.ref
@@ -399,6 +399,7 @@ IOVDbFolder          INFO HVS tag OFLCOND-RUN12-SDR-35 resolved to TileOfl02Stat
 IOVDbFolder          INFO HVS tag OFLCOND-RUN12-SDR-35 resolved to TileOfl02TimeChanneloffsetPhy-000-00 for folder /TILE/OFL02/TIME/CHANNELOFFSET/PHY
 IOVDbSvc             INFO Disconnecting from COOLOFL_TILE/OFLP200
 LArAlignCondAlg      INFO recorded new GeoAlignmentStore object for LAr with key LArAlignmentStore and range {[0,l:0] - [177530,l:0]}
+CaloAlignCondAlg     INFO recorded new CaloDetDescr Manager condition object with key CaloDetDescrManager and range {[0,t:0,l:0] - [177530,l:0]}
 TileBadChannels...   INFO Updating TileBchStatus::isBad() definition from DB
 TileBadChannels...   INFO Updating TileBchStatus::isNoisy() definition from DB
 TileBadChannels...   INFO No TileBchStatus::isNoGainL1() definition found in DB, using defaults
diff --git a/TileCalorimeter/TileRecUtils/share/TileDQstatusAlg_test.ref b/TileCalorimeter/TileRecUtils/share/TileDQstatusAlg_test.ref
index 78f684fc3a1229c08c4a8b61534c09a7cce4feff..113fbde39579010e5ad411f7be266876ed9f739a 100644
--- a/TileCalorimeter/TileRecUtils/share/TileDQstatusAlg_test.ref
+++ b/TileCalorimeter/TileRecUtils/share/TileDQstatusAlg_test.ref
@@ -382,6 +382,7 @@ IOVDbFolder          INFO HVS tag OFLCOND-RUN12-SDR-35 resolved to TileOfl02Stat
 IOVDbFolder          INFO HVS tag OFLCOND-RUN12-SDR-35 resolved to TileOfl02TimeChanneloffsetPhy-000-00 for folder /TILE/OFL02/TIME/CHANNELOFFSET/PHY
 IOVDbSvc             INFO Disconnecting from COOLOFL_TILE/OFLP200
 LArAlignCondAlg      INFO recorded new GeoAlignmentStore object for LAr with key LArAlignmentStore and range {[0,l:0] - [177530,l:0]}
+CaloAlignCondAlg     INFO recorded new CaloDetDescr Manager condition object with key CaloDetDescrManager and range {[0,t:0,l:0] - [177530,l:0]}
 TileBadChannels...   INFO Updating TileBchStatus::isBad() definition from DB
 TileBadChannels...   INFO Updating TileBchStatus::isNoisy() definition from DB
 TileBadChannels...   INFO No TileBchStatus::isNoGainL1() definition found in DB, using defaults
diff --git a/TileCalorimeter/TileRecUtils/share/TileDQstatusTool_test.ref b/TileCalorimeter/TileRecUtils/share/TileDQstatusTool_test.ref
index 5c35995271cd5faf53dfc4dc83826253c627e0e3..b9220e152fc5fa53cf8c98534d4228cf0bcf736c 100644
--- a/TileCalorimeter/TileRecUtils/share/TileDQstatusTool_test.ref
+++ b/TileCalorimeter/TileRecUtils/share/TileDQstatusTool_test.ref
@@ -381,6 +381,7 @@ IOVDbFolder          INFO HVS tag OFLCOND-RUN12-SDR-35 resolved to TileOfl02Stat
 IOVDbFolder          INFO HVS tag OFLCOND-RUN12-SDR-35 resolved to TileOfl02TimeChanneloffsetPhy-000-00 for folder /TILE/OFL02/TIME/CHANNELOFFSET/PHY
 IOVDbSvc             INFO Disconnecting from COOLOFL_TILE/OFLP200
 LArAlignCondAlg      INFO recorded new GeoAlignmentStore object for LAr with key LArAlignmentStore and range {[0,l:0] - [177530,l:0]}
+CaloAlignCondAlg     INFO recorded new CaloDetDescr Manager condition object with key CaloDetDescrManager and range {[0,t:0,l:0] - [177530,l:0]}
 TileBadChannels...   INFO Updating TileBchStatus::isBad() definition from DB
 TileBadChannels...   INFO Updating TileBchStatus::isNoisy() definition from DB
 TileBadChannels...   INFO No TileBchStatus::isNoGainL1() definition found in DB, using defaults
diff --git a/TileCalorimeter/TileRecUtils/share/TileRawChannelBuilder_test.ref b/TileCalorimeter/TileRecUtils/share/TileRawChannelBuilder_test.ref
index 958c78f4c8dd37b64afbcfad398a6c3f5dc6bb8f..68d3dbcb2386f3897dad03e1e153c10d65607361 100644
--- a/TileCalorimeter/TileRecUtils/share/TileRawChannelBuilder_test.ref
+++ b/TileCalorimeter/TileRecUtils/share/TileRawChannelBuilder_test.ref
@@ -390,6 +390,7 @@ IOVDbFolder          INFO HVS tag OFLCOND-RUN12-SDR-35 resolved to TileOfl02Stat
 IOVDbFolder          INFO HVS tag OFLCOND-RUN12-SDR-35 resolved to TileOfl02TimeChanneloffsetPhy-000-00 for folder /TILE/OFL02/TIME/CHANNELOFFSET/PHY
 IOVDbSvc             INFO Disconnecting from COOLOFL_TILE/OFLP200
 LArAlignCondAlg      INFO recorded new GeoAlignmentStore object for LAr with key LArAlignmentStore and range {[0,l:0] - [177530,l:0]}
+CaloAlignCondAlg     INFO recorded new CaloDetDescr Manager condition object with key CaloDetDescrManager and range {[0,t:0,l:0] - [177530,l:0]}
 TileBadChannels...   INFO Updating TileBchStatus::isBad() definition from DB
 TileBadChannels...   INFO Updating TileBchStatus::isNoisy() definition from DB
 TileBadChannels...   INFO No TileBchStatus::isNoGainL1() definition found in DB, using defaults
diff --git a/TileCalorimeter/TileSvc/TileByteStream/share/TileBeamElemContByteStreamCnv_test.ref b/TileCalorimeter/TileSvc/TileByteStream/share/TileBeamElemContByteStreamCnv_test.ref
index 7f3400f98d793b894703cd1be13bd09338df8edf..632a76b268bec587ab5c57062427abf183ff28c9 100644
--- a/TileCalorimeter/TileSvc/TileByteStream/share/TileBeamElemContByteStreamCnv_test.ref
+++ b/TileCalorimeter/TileSvc/TileByteStream/share/TileBeamElemContByteStreamCnv_test.ref
@@ -399,6 +399,7 @@ IOVDbFolder          INFO HVS tag OFLCOND-RUN12-SDR-35 resolved to TileOfl02Stat
 IOVDbFolder          INFO HVS tag OFLCOND-RUN12-SDR-35 resolved to TileOfl02TimeChanneloffsetPhy-000-00 for folder /TILE/OFL02/TIME/CHANNELOFFSET/PHY
 IOVDbSvc             INFO Disconnecting from COOLOFL_TILE/OFLP200
 LArAlignCondAlg      INFO recorded new GeoAlignmentStore object for LAr with key LArAlignmentStore and range {[177530,l:0] - [INVALID]}
+CaloAlignCondAlg     INFO recorded new CaloDetDescr Manager condition object with key CaloDetDescrManager and range {[177530,t:0,l:0] - [INVALID]}
 TileBadChannels...   INFO Updating TileBchStatus::isBad() definition from DB
 TileBadChannels...   INFO Updating TileBchStatus::isNoisy() definition from DB
 TileBadChannels...   INFO No TileBchStatus::isNoGainL1() definition found in DB, using defaults
@@ -978,7 +979,7 @@ TileSampleNoiseCon...TileCondProxyCool_NoiseSample           0    INFO Creating
 TileTimingCondAlg.TileCondProxyCool_AdcOffset                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 15 algorithms
+AvalancheSchedulerSvc                                        0    INFO Found 16 algorithms
 AvalancheSchedulerSvc                                        0    INFO Will attribute the following unmet INPUT dependencies to "SGInputLoader/SGInputLoader" Algorithm
 AvalancheSchedulerSvc                                        0    INFO    o  ( 'TileBeamElemContainer' , 'StoreGateSvc+TileBeamElemCnt' )     required by Algorithm: 
 AvalancheSchedulerSvc                                        0    INFO        * TileBeamElemCntDumper
diff --git a/TileCalorimeter/TileSvc/TileByteStream/share/TileDigitsContByteStreamCnv_test.ref b/TileCalorimeter/TileSvc/TileByteStream/share/TileDigitsContByteStreamCnv_test.ref
index f90a19acaf88f0b77fd3ae5ecda8a771465b6550..85f2dcf4eaaa6ba057267363aec8f304972ce43e 100644
--- a/TileCalorimeter/TileSvc/TileByteStream/share/TileDigitsContByteStreamCnv_test.ref
+++ b/TileCalorimeter/TileSvc/TileByteStream/share/TileDigitsContByteStreamCnv_test.ref
@@ -399,6 +399,7 @@ IOVDbFolder          INFO HVS tag OFLCOND-RUN12-SDR-35 resolved to TileOfl02Stat
 IOVDbFolder          INFO HVS tag OFLCOND-RUN12-SDR-35 resolved to TileOfl02TimeChanneloffsetPhy-000-00 for folder /TILE/OFL02/TIME/CHANNELOFFSET/PHY
 IOVDbSvc             INFO Disconnecting from COOLOFL_TILE/OFLP200
 LArAlignCondAlg      INFO recorded new GeoAlignmentStore object for LAr with key LArAlignmentStore and range {[177530,l:0] - [INVALID]}
+CaloAlignCondAlg     INFO recorded new CaloDetDescr Manager condition object with key CaloDetDescrManager and range {[177530,t:0,l:0] - [INVALID]}
 TileBadChannels...   INFO Updating TileBchStatus::isBad() definition from DB
 TileBadChannels...   INFO Updating TileBchStatus::isNoisy() definition from DB
 TileBadChannels...   INFO No TileBchStatus::isNoGainL1() definition found in DB, using defaults
@@ -980,7 +981,7 @@ TileSampleNoiseCon...TileCondProxyCool_NoiseSample           0    INFO Creating
 TileTimingCondAlg.TileCondProxyCool_AdcOffset                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 16 algorithms
+AvalancheSchedulerSvc                                        0    INFO Found 17 algorithms
 AvalancheSchedulerSvc                                        0    INFO Will attribute the following unmet INPUT dependencies to "SGInputLoader/SGInputLoader" Algorithm
 AvalancheSchedulerSvc                                        0    INFO    o  ( 'TileDigitsContainer' , 'StoreGateSvc+MuRcvDigitsCnt' )     required by Algorithm: 
 AvalancheSchedulerSvc                                        0    INFO        * MuRcvDigitsCntDumper
diff --git a/TileCalorimeter/TileSvc/TileByteStream/share/TileL2ContByteStreamCnv_test.ref b/TileCalorimeter/TileSvc/TileByteStream/share/TileL2ContByteStreamCnv_test.ref
index 69e33589492dc3fae958e4b2afbc7c432c953b7e..d8b3323ad507b455205efe76f074ab78960e386b 100644
--- a/TileCalorimeter/TileSvc/TileByteStream/share/TileL2ContByteStreamCnv_test.ref
+++ b/TileCalorimeter/TileSvc/TileByteStream/share/TileL2ContByteStreamCnv_test.ref
@@ -399,6 +399,7 @@ IOVDbFolder          INFO HVS tag OFLCOND-RUN12-SDR-35 resolved to TileOfl02Stat
 IOVDbFolder          INFO HVS tag OFLCOND-RUN12-SDR-35 resolved to TileOfl02TimeChanneloffsetPhy-000-00 for folder /TILE/OFL02/TIME/CHANNELOFFSET/PHY
 IOVDbSvc             INFO Disconnecting from COOLOFL_TILE/OFLP200
 LArAlignCondAlg      INFO recorded new GeoAlignmentStore object for LAr with key LArAlignmentStore and range {[177530,l:0] - [INVALID]}
+CaloAlignCondAlg     INFO recorded new CaloDetDescr Manager condition object with key CaloDetDescrManager and range {[177530,t:0,l:0] - [INVALID]}
 TileBadChannels...   INFO Updating TileBchStatus::isBad() definition from DB
 TileBadChannels...   INFO Updating TileBchStatus::isNoisy() definition from DB
 TileBadChannels...   INFO No TileBchStatus::isNoGainL1() definition found in DB, using defaults
@@ -979,7 +980,7 @@ TileSampleNoiseCon...TileCondProxyCool_NoiseSample           0    INFO Creating
 TileTimingCondAlg.TileCondProxyCool_AdcOffset                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 15 algorithms
+AvalancheSchedulerSvc                                        0    INFO Found 16 algorithms
 AvalancheSchedulerSvc                                        0    INFO Will attribute the following unmet INPUT dependencies to "SGInputLoader/SGInputLoader" Algorithm
 AvalancheSchedulerSvc                                        0    INFO    o  ( 'TileL2Container' , 'StoreGateSvc+TileL2Cnt' )     required by Algorithm: 
 AvalancheSchedulerSvc                                        0    INFO        * TileL2CntDumper
diff --git a/TileCalorimeter/TileSvc/TileByteStream/share/TileLaserObjByteStreamCnv_test.ref b/TileCalorimeter/TileSvc/TileByteStream/share/TileLaserObjByteStreamCnv_test.ref
index 3e11d019d3618fc02449d74607c4a27dd2f71d73..26b40af40449cdf3528791eaa5f3f8f5895c2a85 100644
--- a/TileCalorimeter/TileSvc/TileByteStream/share/TileLaserObjByteStreamCnv_test.ref
+++ b/TileCalorimeter/TileSvc/TileByteStream/share/TileLaserObjByteStreamCnv_test.ref
@@ -398,6 +398,7 @@ IOVDbFolder          INFO HVS tag OFLCOND-RUN12-SDR-35 resolved to TileOfl02Stat
 IOVDbFolder          INFO HVS tag OFLCOND-RUN12-SDR-35 resolved to TileOfl02TimeChanneloffsetPhy-000-00 for folder /TILE/OFL02/TIME/CHANNELOFFSET/PHY
 IOVDbSvc             INFO Disconnecting from COOLOFL_TILE/OFLP200
 LArAlignCondAlg      INFO recorded new GeoAlignmentStore object for LAr with key LArAlignmentStore and range {[177530,l:0] - [INVALID]}
+CaloAlignCondAlg     INFO recorded new CaloDetDescr Manager condition object with key CaloDetDescrManager and range {[177530,t:0,l:0] - [INVALID]}
 TileBadChannels...   INFO Updating TileBchStatus::isBad() definition from DB
 TileBadChannels...   INFO Updating TileBchStatus::isNoisy() definition from DB
 TileBadChannels...   INFO No TileBchStatus::isNoGainL1() definition found in DB, using defaults
@@ -976,7 +977,7 @@ TileSampleNoiseCon...TileCondProxyCool_NoiseSample           0    INFO Creating
 TileTimingCondAlg.TileCondProxyCool_AdcOffset                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 15 algorithms
+AvalancheSchedulerSvc                                        0    INFO Found 16 algorithms
 AvalancheSchedulerSvc                                        0    INFO Will attribute the following unmet INPUT dependencies to "SGInputLoader/SGInputLoader" Algorithm
 AvalancheSchedulerSvc                                        0    INFO    o  ( 'TileLaserObject' , 'StoreGateSvc+TileLaserObj' )     required by Algorithm: 
 AvalancheSchedulerSvc                                        0    INFO        * TileLaserObjectDumper
diff --git a/TileCalorimeter/TileSvc/TileByteStream/share/TileMuRcvContByteStreamCnv_test.ref b/TileCalorimeter/TileSvc/TileByteStream/share/TileMuRcvContByteStreamCnv_test.ref
index 801324481b416427f030f970e9bd55834cccb6c2..dcccc5fd1675269b2cb8c165dc5ede5075ed36ae 100644
--- a/TileCalorimeter/TileSvc/TileByteStream/share/TileMuRcvContByteStreamCnv_test.ref
+++ b/TileCalorimeter/TileSvc/TileByteStream/share/TileMuRcvContByteStreamCnv_test.ref
@@ -399,6 +399,7 @@ IOVDbFolder          INFO HVS tag OFLCOND-RUN12-SDR-35 resolved to TileOfl02Stat
 IOVDbFolder          INFO HVS tag OFLCOND-RUN12-SDR-35 resolved to TileOfl02TimeChanneloffsetPhy-000-00 for folder /TILE/OFL02/TIME/CHANNELOFFSET/PHY
 IOVDbSvc             INFO Disconnecting from COOLOFL_TILE/OFLP200
 LArAlignCondAlg      INFO recorded new GeoAlignmentStore object for LAr with key LArAlignmentStore and range {[177530,l:0] - [INVALID]}
+CaloAlignCondAlg     INFO recorded new CaloDetDescr Manager condition object with key CaloDetDescrManager and range {[177530,t:0,l:0] - [INVALID]}
 TileBadChannels...   INFO Updating TileBchStatus::isBad() definition from DB
 TileBadChannels...   INFO Updating TileBchStatus::isNoisy() definition from DB
 TileBadChannels...   INFO No TileBchStatus::isNoGainL1() definition found in DB, using defaults
@@ -980,7 +981,7 @@ TileSampleNoiseCon...TileCondProxyCool_NoiseSample           0    INFO Creating
 TileTimingCondAlg.TileCondProxyCool_AdcOffset                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 15 algorithms
+AvalancheSchedulerSvc                                        0    INFO Found 16 algorithms
 AvalancheSchedulerSvc                                        0    INFO Will attribute the following unmet INPUT dependencies to "SGInputLoader/SGInputLoader" Algorithm
 AvalancheSchedulerSvc                                        0    INFO    o  ( 'TileMuonReceiverContainer' , 'StoreGateSvc+TileMuRcvCnt' )     required by Algorithm: 
 AvalancheSchedulerSvc                                        0    INFO        * TileMuonReceiverDumper
diff --git a/TileCalorimeter/TileSvc/TileByteStream/share/TileRawChannelContByteStreamCnv_test.ref b/TileCalorimeter/TileSvc/TileByteStream/share/TileRawChannelContByteStreamCnv_test.ref
index a4584d006c832020b8633eed5f4bf444a7a42414..eca4e071e70ac65295dff43419801dd5a273973b 100644
--- a/TileCalorimeter/TileSvc/TileByteStream/share/TileRawChannelContByteStreamCnv_test.ref
+++ b/TileCalorimeter/TileSvc/TileByteStream/share/TileRawChannelContByteStreamCnv_test.ref
@@ -399,6 +399,7 @@ IOVDbFolder          INFO HVS tag OFLCOND-RUN12-SDR-35 resolved to TileOfl02Stat
 IOVDbFolder          INFO HVS tag OFLCOND-RUN12-SDR-35 resolved to TileOfl02TimeChanneloffsetPhy-000-00 for folder /TILE/OFL02/TIME/CHANNELOFFSET/PHY
 IOVDbSvc             INFO Disconnecting from COOLOFL_TILE/OFLP200
 LArAlignCondAlg      INFO recorded new GeoAlignmentStore object for LAr with key LArAlignmentStore and range {[177530,l:0] - [INVALID]}
+CaloAlignCondAlg     INFO recorded new CaloDetDescr Manager condition object with key CaloDetDescrManager and range {[177530,t:0,l:0] - [INVALID]}
 TileBadChannels...   INFO Updating TileBchStatus::isBad() definition from DB
 TileBadChannels...   INFO Updating TileBchStatus::isNoisy() definition from DB
 TileBadChannels...   INFO No TileBchStatus::isNoGainL1() definition found in DB, using defaults
@@ -980,7 +981,7 @@ TileSampleNoiseCon...TileCondProxyCool_NoiseSample           0    INFO Creating
 TileTimingCondAlg.TileCondProxyCool_AdcOffset                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 16 algorithms
+AvalancheSchedulerSvc                                        0    INFO Found 17 algorithms
 AvalancheSchedulerSvc                                        0    INFO Will attribute the following unmet INPUT dependencies to "SGInputLoader/SGInputLoader" Algorithm
 AvalancheSchedulerSvc                                        0    INFO    o  ( 'TileRawChannelContainer' , 'StoreGateSvc+MuRcvRawChCnt' )     required by Algorithm: 
 AvalancheSchedulerSvc                                        0    INFO        * MuRcvRawChannelCntDumper