diff --git a/DetectorDescription/AtlasDetDescr/src/AtlasDetectorIDHelper.cxx b/DetectorDescription/AtlasDetDescr/src/AtlasDetectorIDHelper.cxx
index c6097206e00b77597f066d2ff03c9c6da0bed707..77154ebd815bf7f95215d78a3563cc26317ab9f1 100755
--- a/DetectorDescription/AtlasDetDescr/src/AtlasDetectorIDHelper.cxx
+++ b/DetectorDescription/AtlasDetDescr/src/AtlasDetectorIDHelper.cxx
@@ -1,88 +1,40 @@
 /*
-  Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
+  Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration
 */
 
-/***************************************************************************
- 
- -----------------------------------------
- ***************************************************************************/
-
-//<doc><file>	$Id: AtlasDetectorIDHelper.cxx,v 1.6 2006-01-11 09:24:23 schaffer Exp $
-//<version>	$Name: not supported by cvs2svn $
-
-//<<<<<< INCLUDES                                                       >>>>>>
-
 #include "AtlasDetectorIDHelper.h"
 #include "IdDict/IdDictDefs.h"  
 #include "AtlasDetDescr/AtlasDetectorID.h"
 #include "GaudiKernel/MsgStream.h"
 #include <iostream>
 
-//<<<<<< PRIVATE DEFINES                                                >>>>>>
-//<<<<<< PRIVATE CONSTANTS                                              >>>>>>
-//<<<<<< PRIVATE TYPES                                                  >>>>>>
-//<<<<<< PRIVATE VARIABLE DEFINITIONS                                   >>>>>>
-//<<<<<< PUBLIC VARIABLE DEFINITIONS                                    >>>>>>
-//<<<<<< CLASS STRUCTURE INITIALIZATION                                 >>>>>>
-//<<<<<< PRIVATE FUNCTION DEFINITIONS                                   >>>>>>
-//<<<<<< PUBLIC FUNCTION DEFINITIONS                                    >>>>>>
-//<<<<<< MEMBER FUNCTION DEFINITIONS                                    >>>>>>
-
-AtlasDetectorIDHelper::AtlasDetectorIDHelper(void)
-	:
-	m_isSLHC(false),
-	m_pixel_region_index(UNDEFINED),
-	m_sct_region_index(UNDEFINED),
-	m_trt_region_index(UNDEFINED),
-	m_lar_em_region_index(UNDEFINED),
-	m_lar_hec_region_index(UNDEFINED),
-	m_lar_fcal_region_index(UNDEFINED),
-        m_lvl1_region_index(UNDEFINED),
-        m_dm_region_index(UNDEFINED),
-	m_tile_region_index(UNDEFINED),
-	m_mdt_region_index(UNDEFINED),
-	m_csc_region_index(UNDEFINED),
-	m_rpc_region_index(UNDEFINED),
-	m_tgc_region_index(UNDEFINED),
-	m_mm_region_index(UNDEFINED),
-	m_stgc_region_index(UNDEFINED),
-	m_muon_station_index(UNDEFINED),
-        m_alfa_region_index(UNDEFINED),
-        m_bcm_region_index(UNDEFINED),
-        m_lucid_region_index(UNDEFINED),
-        m_zdc_region_index(UNDEFINED),
-	m_initialized(false),
-	m_station_field(0),
-        m_msgSvc(0)
-{}
-
-AtlasDetectorIDHelper::~AtlasDetectorIDHelper(void)
-{
+AtlasDetectorIDHelper::AtlasDetectorIDHelper(void) :
+    m_isSLHC(false),
+    m_pixel_region_index(UNDEFINED),
+    m_sct_region_index(UNDEFINED),
+    m_trt_region_index(UNDEFINED),
+    m_lar_em_region_index(UNDEFINED),
+    m_lar_hec_region_index(UNDEFINED),
+    m_lar_fcal_region_index(UNDEFINED),
+    m_lvl1_region_index(UNDEFINED),
+    m_dm_region_index(UNDEFINED),
+    m_tile_region_index(UNDEFINED),
+    m_mdt_region_index(UNDEFINED),
+    m_csc_region_index(UNDEFINED),
+    m_rpc_region_index(UNDEFINED),
+    m_tgc_region_index(UNDEFINED),
+    m_mm_region_index(UNDEFINED),
+    m_stgc_region_index(UNDEFINED),
+    m_muon_station_index(UNDEFINED),
+    m_alfa_region_index(UNDEFINED),
+    m_bcm_region_index(UNDEFINED),
+    m_lucid_region_index(UNDEFINED),
+    m_zdc_region_index(UNDEFINED),
+    m_initialized(false),
+    m_station_field(nullptr),
+    m_msgSvc(nullptr) {
 }
 
-// AtlasDetectorIDHelper::AtlasDetectorIDHelper (const AtlasDetectorIDHelper &)
-// {
-// }
-
-//  AtlasDetectorIDHelper & AtlasDetectorIDHelper::operator= (const AtlasDetectorIDHelper & other)
-//  {
-//      return other;
-//  }
-
-
-//  AtlasDetectorIDHelper * 
-//  AtlasDetectorIDHelper::instance()
-//  {
-
-//      static AtlasDetectorIDHelper* instance = 0;
-
-//      if (instance == 0) {
-//  	instance = new AtlasDetectorIDHelper;
-//      }
-//      return instance;
-//  }
-
-
 int         
 AtlasDetectorIDHelper::initialize_from_dictionary(const IdDictMgr& dict_mgr,
                                                   bool quiet)
diff --git a/DetectorDescription/AtlasDetDescr/src/AtlasDetectorIDHelper.h b/DetectorDescription/AtlasDetDescr/src/AtlasDetectorIDHelper.h
index 1302c606d06c8ab9dc8561ed8adf8925161dbd45..c168f01f0e86c2885fc51304e71e4d1c81438daa 100755
--- a/DetectorDescription/AtlasDetDescr/src/AtlasDetectorIDHelper.h
+++ b/DetectorDescription/AtlasDetDescr/src/AtlasDetectorIDHelper.h
@@ -1,19 +1,9 @@
 /*
-  Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
+  Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration
 */
 
-/***************************************************************************
- 
- -----------------------------------------
- ***************************************************************************/
-
-//<doc><file>	$Id: AtlasDetectorIDHelper.h,v 1.6 2006-01-11 09:24:23 schaffer Exp $
-//<version>	$Name: not supported by cvs2svn $
-
 #ifndef SRC_ATLASDETECTORIDHELPER_H
-# define SRC_ATLASDETECTORIDHELPER_H
-
-//<<<<<< INCLUDES                                                       >>>>>>
+#define SRC_ATLASDETECTORIDHELPER_H
 
 #include "Identifier/Identifier.h"
 #include "Identifier/IdContext.h"
@@ -21,18 +11,9 @@
 #include <string>
 #include <vector>
 
-//<<<<<< PUBLIC DEFINES                                                 >>>>>>
-//<<<<<< PUBLIC CONSTANTS                                               >>>>>>
-//<<<<<< PUBLIC TYPES                                                   >>>>>>
-
 class IdDictField;
 
-//<<<<<< PUBLIC VARIABLES                                               >>>>>>
-//<<<<<< PUBLIC FUNCTIONS                                               >>>>>>
-//<<<<<< CLASS DECLARATIONS                                             >>>>>>
-
-class AtlasDetectorIDHelper
-{
+class AtlasDetectorIDHelper {
 public:
     
     enum ERRORS { UNDEFINED = 999 };
@@ -48,7 +29,7 @@ public:
     /// Initialization from the identifier dictionary
   int         initialize_from_dictionary(const IdDictMgr& dict_mgr, bool quiet);
 
-    ~AtlasDetectorIDHelper(void);
+    ~AtlasDetectorIDHelper()=default;
     
     size_type   pixel_region_index();
     size_type   sct_region_index();
diff --git a/MuonSpectrometer/MuonCnv/MuonEventAthenaPool/share/CscRawDataCnv_p2_test.ref b/MuonSpectrometer/MuonCnv/MuonEventAthenaPool/share/CscRawDataCnv_p2_test.ref
index b63df6294ab66a2c6ffe0b0e845f35d7a9e087b1..a832e5ee14169e095d5f658a38e219711e32d1d7 100644
--- a/MuonSpectrometer/MuonCnv/MuonEventAthenaPool/share/CscRawDataCnv_p2_test.ref
+++ b/MuonSpectrometer/MuonCnv/MuonEventAthenaPool/share/CscRawDataCnv_p2_test.ref
@@ -3,15 +3,9 @@
 ApplicationMgr       INFO Application Manager Configured successfully
 EventLoopMgr      WARNING Unable to locate service "EventSelector" 
 EventLoopMgr      WARNING No events will be processed from external input.
-HistogramPersis...WARNING Histograms saving not required.
 ApplicationMgr       INFO Application Manager Initialized successfully
 ApplicationMgr Ready
-AtlasDetectorIDHelper::initialize_from_dictionary - Warning: unable to find mm region index: group, region size 0 0
-AtlasDetectorIDHelper::initialize_from_dictionary - Warning: unable to find stgc region index: group, region size 0 0
-AtlasDetectorID::initLevelsFromDict - there are no sTGC entries in the dictionary! 
-AtlasDetectorID::initLevelsFromDict - there are no MM entries in the dictionary! 
-AtlasDetectorID      DEBUG Could not get value for label 'no_side' of field 'DetZside' in dictionary Calorimeter
- AtlasDetectorID::initialize_from_dictionary - OK 
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 RpcIdHelper          INFO MultiRange built successfully to doubletR: MultiRange size is 241
 RpcIdHelper          INFO MultiRange built successfully to detectorElement: DetectorElement MultiRange size is 241
 RpcIdHelper          INFO MultiRange built successfully to rpcStrip: MultiRange size is 241
@@ -19,12 +13,7 @@ RpcIdHelper          INFO Initializing RPC hash indices ...
 RpcIdHelper          INFO The element hash max is 600
 RpcIdHelper          INFO The detector element hash max is 1122
 RpcIdHelper          INFO Initializing RPC hash indices for finding neighbors ... 
-AtlasDetectorIDHelper::initialize_from_dictionary - Warning: unable to find mm region index: group, region size 0 0
-AtlasDetectorIDHelper::initialize_from_dictionary - Warning: unable to find stgc region index: group, region size 0 0
-AtlasDetectorID::initLevelsFromDict - there are no sTGC entries in the dictionary! 
-AtlasDetectorID::initLevelsFromDict - there are no MM entries in the dictionary! 
-AtlasDetectorID      DEBUG Could not get value for label 'no_side' of field 'DetZside' in dictionary Calorimeter
- AtlasDetectorID::initialize_from_dictionary - OK 
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 CscIdHelper          INFO MultiRange built successfully to Technology: MultiRange size is 210
 CscIdHelper          INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 237
 CscIdHelper          INFO MultiRange built successfully to cscStrip: MultiRange size is 241
@@ -33,12 +22,7 @@ CscIdHelper          INFO The element hash max is 32
 CscIdHelper          INFO The detector element hash max is 64
 CscIdHelper          INFO The channel hash max is 61440
 CscIdHelper          INFO Initializing CSC hash indices for finding neighbors ... 
-AtlasDetectorIDHelper::initialize_from_dictionary - Warning: unable to find mm region index: group, region size 0 0
-AtlasDetectorIDHelper::initialize_from_dictionary - Warning: unable to find stgc region index: group, region size 0 0
-AtlasDetectorID::initLevelsFromDict - there are no sTGC entries in the dictionary! 
-AtlasDetectorID::initLevelsFromDict - there are no MM entries in the dictionary! 
-AtlasDetectorID      DEBUG Could not get value for label 'no_side' of field 'DetZside' in dictionary Calorimeter
- AtlasDetectorID::initialize_from_dictionary - OK 
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 MdtIdHelper          INFO MultiRange built successfully to Technology: MultiRange size is 210
 MdtIdHelper          INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 241
 MdtIdHelper          INFO MultiRange built successfully to tube: MultiRange size is 241
@@ -46,12 +30,7 @@ MdtIdHelper          INFO Initializing MDT hash indices ...
 MdtIdHelper          INFO The element hash max is 1188
 MdtIdHelper          INFO The detector element hash max is 2328
 MdtIdHelper          INFO Initializing MDT hash indices for finding neighbors ... 
-AtlasDetectorIDHelper::initialize_from_dictionary - Warning: unable to find mm region index: group, region size 0 0
-AtlasDetectorIDHelper::initialize_from_dictionary - Warning: unable to find stgc region index: group, region size 0 0
-AtlasDetectorID::initLevelsFromDict - there are no sTGC entries in the dictionary! 
-AtlasDetectorID::initLevelsFromDict - there are no MM entries in the dictionary! 
-AtlasDetectorID      DEBUG Could not get value for label 'no_side' of field 'DetZside' in dictionary Calorimeter
- AtlasDetectorID::initialize_from_dictionary - OK 
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 TgcIdHelper          INFO MultiRange built successfully to Technology: MultiRange size is 210
 TgcIdHelper          INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 210
 TgcIdHelper          INFO MultiRange built successfully to channel: MultiRange size is 241
diff --git a/MuonSpectrometer/MuonCnv/MuonEventAthenaPool/share/CscRawDataCnv_p3_test.ref b/MuonSpectrometer/MuonCnv/MuonEventAthenaPool/share/CscRawDataCnv_p3_test.ref
index b63df6294ab66a2c6ffe0b0e845f35d7a9e087b1..a832e5ee14169e095d5f658a38e219711e32d1d7 100644
--- a/MuonSpectrometer/MuonCnv/MuonEventAthenaPool/share/CscRawDataCnv_p3_test.ref
+++ b/MuonSpectrometer/MuonCnv/MuonEventAthenaPool/share/CscRawDataCnv_p3_test.ref
@@ -3,15 +3,9 @@
 ApplicationMgr       INFO Application Manager Configured successfully
 EventLoopMgr      WARNING Unable to locate service "EventSelector" 
 EventLoopMgr      WARNING No events will be processed from external input.
-HistogramPersis...WARNING Histograms saving not required.
 ApplicationMgr       INFO Application Manager Initialized successfully
 ApplicationMgr Ready
-AtlasDetectorIDHelper::initialize_from_dictionary - Warning: unable to find mm region index: group, region size 0 0
-AtlasDetectorIDHelper::initialize_from_dictionary - Warning: unable to find stgc region index: group, region size 0 0
-AtlasDetectorID::initLevelsFromDict - there are no sTGC entries in the dictionary! 
-AtlasDetectorID::initLevelsFromDict - there are no MM entries in the dictionary! 
-AtlasDetectorID      DEBUG Could not get value for label 'no_side' of field 'DetZside' in dictionary Calorimeter
- AtlasDetectorID::initialize_from_dictionary - OK 
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 RpcIdHelper          INFO MultiRange built successfully to doubletR: MultiRange size is 241
 RpcIdHelper          INFO MultiRange built successfully to detectorElement: DetectorElement MultiRange size is 241
 RpcIdHelper          INFO MultiRange built successfully to rpcStrip: MultiRange size is 241
@@ -19,12 +13,7 @@ RpcIdHelper          INFO Initializing RPC hash indices ...
 RpcIdHelper          INFO The element hash max is 600
 RpcIdHelper          INFO The detector element hash max is 1122
 RpcIdHelper          INFO Initializing RPC hash indices for finding neighbors ... 
-AtlasDetectorIDHelper::initialize_from_dictionary - Warning: unable to find mm region index: group, region size 0 0
-AtlasDetectorIDHelper::initialize_from_dictionary - Warning: unable to find stgc region index: group, region size 0 0
-AtlasDetectorID::initLevelsFromDict - there are no sTGC entries in the dictionary! 
-AtlasDetectorID::initLevelsFromDict - there are no MM entries in the dictionary! 
-AtlasDetectorID      DEBUG Could not get value for label 'no_side' of field 'DetZside' in dictionary Calorimeter
- AtlasDetectorID::initialize_from_dictionary - OK 
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 CscIdHelper          INFO MultiRange built successfully to Technology: MultiRange size is 210
 CscIdHelper          INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 237
 CscIdHelper          INFO MultiRange built successfully to cscStrip: MultiRange size is 241
@@ -33,12 +22,7 @@ CscIdHelper          INFO The element hash max is 32
 CscIdHelper          INFO The detector element hash max is 64
 CscIdHelper          INFO The channel hash max is 61440
 CscIdHelper          INFO Initializing CSC hash indices for finding neighbors ... 
-AtlasDetectorIDHelper::initialize_from_dictionary - Warning: unable to find mm region index: group, region size 0 0
-AtlasDetectorIDHelper::initialize_from_dictionary - Warning: unable to find stgc region index: group, region size 0 0
-AtlasDetectorID::initLevelsFromDict - there are no sTGC entries in the dictionary! 
-AtlasDetectorID::initLevelsFromDict - there are no MM entries in the dictionary! 
-AtlasDetectorID      DEBUG Could not get value for label 'no_side' of field 'DetZside' in dictionary Calorimeter
- AtlasDetectorID::initialize_from_dictionary - OK 
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 MdtIdHelper          INFO MultiRange built successfully to Technology: MultiRange size is 210
 MdtIdHelper          INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 241
 MdtIdHelper          INFO MultiRange built successfully to tube: MultiRange size is 241
@@ -46,12 +30,7 @@ MdtIdHelper          INFO Initializing MDT hash indices ...
 MdtIdHelper          INFO The element hash max is 1188
 MdtIdHelper          INFO The detector element hash max is 2328
 MdtIdHelper          INFO Initializing MDT hash indices for finding neighbors ... 
-AtlasDetectorIDHelper::initialize_from_dictionary - Warning: unable to find mm region index: group, region size 0 0
-AtlasDetectorIDHelper::initialize_from_dictionary - Warning: unable to find stgc region index: group, region size 0 0
-AtlasDetectorID::initLevelsFromDict - there are no sTGC entries in the dictionary! 
-AtlasDetectorID::initLevelsFromDict - there are no MM entries in the dictionary! 
-AtlasDetectorID      DEBUG Could not get value for label 'no_side' of field 'DetZside' in dictionary Calorimeter
- AtlasDetectorID::initialize_from_dictionary - OK 
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 TgcIdHelper          INFO MultiRange built successfully to Technology: MultiRange size is 210
 TgcIdHelper          INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 210
 TgcIdHelper          INFO MultiRange built successfully to channel: MultiRange size is 241
diff --git a/MuonSpectrometer/MuonCnv/MuonEventAthenaPool/share/CscRawDataCollectionCnv_p2_test.ref b/MuonSpectrometer/MuonCnv/MuonEventAthenaPool/share/CscRawDataCollectionCnv_p2_test.ref
index b63df6294ab66a2c6ffe0b0e845f35d7a9e087b1..a832e5ee14169e095d5f658a38e219711e32d1d7 100644
--- a/MuonSpectrometer/MuonCnv/MuonEventAthenaPool/share/CscRawDataCollectionCnv_p2_test.ref
+++ b/MuonSpectrometer/MuonCnv/MuonEventAthenaPool/share/CscRawDataCollectionCnv_p2_test.ref
@@ -3,15 +3,9 @@
 ApplicationMgr       INFO Application Manager Configured successfully
 EventLoopMgr      WARNING Unable to locate service "EventSelector" 
 EventLoopMgr      WARNING No events will be processed from external input.
-HistogramPersis...WARNING Histograms saving not required.
 ApplicationMgr       INFO Application Manager Initialized successfully
 ApplicationMgr Ready
-AtlasDetectorIDHelper::initialize_from_dictionary - Warning: unable to find mm region index: group, region size 0 0
-AtlasDetectorIDHelper::initialize_from_dictionary - Warning: unable to find stgc region index: group, region size 0 0
-AtlasDetectorID::initLevelsFromDict - there are no sTGC entries in the dictionary! 
-AtlasDetectorID::initLevelsFromDict - there are no MM entries in the dictionary! 
-AtlasDetectorID      DEBUG Could not get value for label 'no_side' of field 'DetZside' in dictionary Calorimeter
- AtlasDetectorID::initialize_from_dictionary - OK 
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 RpcIdHelper          INFO MultiRange built successfully to doubletR: MultiRange size is 241
 RpcIdHelper          INFO MultiRange built successfully to detectorElement: DetectorElement MultiRange size is 241
 RpcIdHelper          INFO MultiRange built successfully to rpcStrip: MultiRange size is 241
@@ -19,12 +13,7 @@ RpcIdHelper          INFO Initializing RPC hash indices ...
 RpcIdHelper          INFO The element hash max is 600
 RpcIdHelper          INFO The detector element hash max is 1122
 RpcIdHelper          INFO Initializing RPC hash indices for finding neighbors ... 
-AtlasDetectorIDHelper::initialize_from_dictionary - Warning: unable to find mm region index: group, region size 0 0
-AtlasDetectorIDHelper::initialize_from_dictionary - Warning: unable to find stgc region index: group, region size 0 0
-AtlasDetectorID::initLevelsFromDict - there are no sTGC entries in the dictionary! 
-AtlasDetectorID::initLevelsFromDict - there are no MM entries in the dictionary! 
-AtlasDetectorID      DEBUG Could not get value for label 'no_side' of field 'DetZside' in dictionary Calorimeter
- AtlasDetectorID::initialize_from_dictionary - OK 
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 CscIdHelper          INFO MultiRange built successfully to Technology: MultiRange size is 210
 CscIdHelper          INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 237
 CscIdHelper          INFO MultiRange built successfully to cscStrip: MultiRange size is 241
@@ -33,12 +22,7 @@ CscIdHelper          INFO The element hash max is 32
 CscIdHelper          INFO The detector element hash max is 64
 CscIdHelper          INFO The channel hash max is 61440
 CscIdHelper          INFO Initializing CSC hash indices for finding neighbors ... 
-AtlasDetectorIDHelper::initialize_from_dictionary - Warning: unable to find mm region index: group, region size 0 0
-AtlasDetectorIDHelper::initialize_from_dictionary - Warning: unable to find stgc region index: group, region size 0 0
-AtlasDetectorID::initLevelsFromDict - there are no sTGC entries in the dictionary! 
-AtlasDetectorID::initLevelsFromDict - there are no MM entries in the dictionary! 
-AtlasDetectorID      DEBUG Could not get value for label 'no_side' of field 'DetZside' in dictionary Calorimeter
- AtlasDetectorID::initialize_from_dictionary - OK 
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 MdtIdHelper          INFO MultiRange built successfully to Technology: MultiRange size is 210
 MdtIdHelper          INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 241
 MdtIdHelper          INFO MultiRange built successfully to tube: MultiRange size is 241
@@ -46,12 +30,7 @@ MdtIdHelper          INFO Initializing MDT hash indices ...
 MdtIdHelper          INFO The element hash max is 1188
 MdtIdHelper          INFO The detector element hash max is 2328
 MdtIdHelper          INFO Initializing MDT hash indices for finding neighbors ... 
-AtlasDetectorIDHelper::initialize_from_dictionary - Warning: unable to find mm region index: group, region size 0 0
-AtlasDetectorIDHelper::initialize_from_dictionary - Warning: unable to find stgc region index: group, region size 0 0
-AtlasDetectorID::initLevelsFromDict - there are no sTGC entries in the dictionary! 
-AtlasDetectorID::initLevelsFromDict - there are no MM entries in the dictionary! 
-AtlasDetectorID      DEBUG Could not get value for label 'no_side' of field 'DetZside' in dictionary Calorimeter
- AtlasDetectorID::initialize_from_dictionary - OK 
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 TgcIdHelper          INFO MultiRange built successfully to Technology: MultiRange size is 210
 TgcIdHelper          INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 210
 TgcIdHelper          INFO MultiRange built successfully to channel: MultiRange size is 241
diff --git a/MuonSpectrometer/MuonCnv/MuonEventAthenaPool/share/CscRawDataCollectionCnv_p3_test.ref b/MuonSpectrometer/MuonCnv/MuonEventAthenaPool/share/CscRawDataCollectionCnv_p3_test.ref
index b63df6294ab66a2c6ffe0b0e845f35d7a9e087b1..a832e5ee14169e095d5f658a38e219711e32d1d7 100644
--- a/MuonSpectrometer/MuonCnv/MuonEventAthenaPool/share/CscRawDataCollectionCnv_p3_test.ref
+++ b/MuonSpectrometer/MuonCnv/MuonEventAthenaPool/share/CscRawDataCollectionCnv_p3_test.ref
@@ -3,15 +3,9 @@
 ApplicationMgr       INFO Application Manager Configured successfully
 EventLoopMgr      WARNING Unable to locate service "EventSelector" 
 EventLoopMgr      WARNING No events will be processed from external input.
-HistogramPersis...WARNING Histograms saving not required.
 ApplicationMgr       INFO Application Manager Initialized successfully
 ApplicationMgr Ready
-AtlasDetectorIDHelper::initialize_from_dictionary - Warning: unable to find mm region index: group, region size 0 0
-AtlasDetectorIDHelper::initialize_from_dictionary - Warning: unable to find stgc region index: group, region size 0 0
-AtlasDetectorID::initLevelsFromDict - there are no sTGC entries in the dictionary! 
-AtlasDetectorID::initLevelsFromDict - there are no MM entries in the dictionary! 
-AtlasDetectorID      DEBUG Could not get value for label 'no_side' of field 'DetZside' in dictionary Calorimeter
- AtlasDetectorID::initialize_from_dictionary - OK 
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 RpcIdHelper          INFO MultiRange built successfully to doubletR: MultiRange size is 241
 RpcIdHelper          INFO MultiRange built successfully to detectorElement: DetectorElement MultiRange size is 241
 RpcIdHelper          INFO MultiRange built successfully to rpcStrip: MultiRange size is 241
@@ -19,12 +13,7 @@ RpcIdHelper          INFO Initializing RPC hash indices ...
 RpcIdHelper          INFO The element hash max is 600
 RpcIdHelper          INFO The detector element hash max is 1122
 RpcIdHelper          INFO Initializing RPC hash indices for finding neighbors ... 
-AtlasDetectorIDHelper::initialize_from_dictionary - Warning: unable to find mm region index: group, region size 0 0
-AtlasDetectorIDHelper::initialize_from_dictionary - Warning: unable to find stgc region index: group, region size 0 0
-AtlasDetectorID::initLevelsFromDict - there are no sTGC entries in the dictionary! 
-AtlasDetectorID::initLevelsFromDict - there are no MM entries in the dictionary! 
-AtlasDetectorID      DEBUG Could not get value for label 'no_side' of field 'DetZside' in dictionary Calorimeter
- AtlasDetectorID::initialize_from_dictionary - OK 
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 CscIdHelper          INFO MultiRange built successfully to Technology: MultiRange size is 210
 CscIdHelper          INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 237
 CscIdHelper          INFO MultiRange built successfully to cscStrip: MultiRange size is 241
@@ -33,12 +22,7 @@ CscIdHelper          INFO The element hash max is 32
 CscIdHelper          INFO The detector element hash max is 64
 CscIdHelper          INFO The channel hash max is 61440
 CscIdHelper          INFO Initializing CSC hash indices for finding neighbors ... 
-AtlasDetectorIDHelper::initialize_from_dictionary - Warning: unable to find mm region index: group, region size 0 0
-AtlasDetectorIDHelper::initialize_from_dictionary - Warning: unable to find stgc region index: group, region size 0 0
-AtlasDetectorID::initLevelsFromDict - there are no sTGC entries in the dictionary! 
-AtlasDetectorID::initLevelsFromDict - there are no MM entries in the dictionary! 
-AtlasDetectorID      DEBUG Could not get value for label 'no_side' of field 'DetZside' in dictionary Calorimeter
- AtlasDetectorID::initialize_from_dictionary - OK 
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 MdtIdHelper          INFO MultiRange built successfully to Technology: MultiRange size is 210
 MdtIdHelper          INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 241
 MdtIdHelper          INFO MultiRange built successfully to tube: MultiRange size is 241
@@ -46,12 +30,7 @@ MdtIdHelper          INFO Initializing MDT hash indices ...
 MdtIdHelper          INFO The element hash max is 1188
 MdtIdHelper          INFO The detector element hash max is 2328
 MdtIdHelper          INFO Initializing MDT hash indices for finding neighbors ... 
-AtlasDetectorIDHelper::initialize_from_dictionary - Warning: unable to find mm region index: group, region size 0 0
-AtlasDetectorIDHelper::initialize_from_dictionary - Warning: unable to find stgc region index: group, region size 0 0
-AtlasDetectorID::initLevelsFromDict - there are no sTGC entries in the dictionary! 
-AtlasDetectorID::initLevelsFromDict - there are no MM entries in the dictionary! 
-AtlasDetectorID      DEBUG Could not get value for label 'no_side' of field 'DetZside' in dictionary Calorimeter
- AtlasDetectorID::initialize_from_dictionary - OK 
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 TgcIdHelper          INFO MultiRange built successfully to Technology: MultiRange size is 210
 TgcIdHelper          INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 210
 TgcIdHelper          INFO MultiRange built successfully to channel: MultiRange size is 241
diff --git a/MuonSpectrometer/MuonCnv/MuonEventAthenaPool/share/RpcPadContainerCnv_p1_test.ref b/MuonSpectrometer/MuonCnv/MuonEventAthenaPool/share/RpcPadContainerCnv_p1_test.ref
index 4a294b1ab94c2abc84db380982653e6158dcc16f..d56b817d62cf49ed5d326a92dffc2e7831420d20 100644
--- a/MuonSpectrometer/MuonCnv/MuonEventAthenaPool/share/RpcPadContainerCnv_p1_test.ref
+++ b/MuonSpectrometer/MuonCnv/MuonEventAthenaPool/share/RpcPadContainerCnv_p1_test.ref
@@ -1,25 +1,11 @@
 
 
-Initializing Gaudi ApplicationMgr using job opts ../share/MuonEventAthenaPool_test.txt
-JobOptionsSvc        INFO # =======> /afs/cern.ch/user/s/ssnyder/atlas-work3/MuonSpectrometer/MuonCnv/MuonEventAthenaPool/share/../share/MuonEventAthenaPool_test.txt
-JobOptionsSvc        INFO # (1,1): ApplicationMgr.Dlls += ["StoreGate", "CLIDComps"]
-JobOptionsSvc        INFO # (2,1): ApplicationMgr.ExtSvc += ["StoreGateSvc", "StoreGateSvc/DetectorStore"]
-JobOptionsSvc        INFO # (3,1): TGCcablingServerSvc.forcedUse = 1
-JobOptionsSvc        INFO Job options successfully read in from ../share/MuonEventAthenaPool_test.txt
-ApplicationMgr    SUCCESS 
-====================================================================================================================================
-                                                   Welcome to ApplicationMgr (GaudiCoreSvc v29r0)
-                                          running on lxplus000.cern.ch on Wed Nov 22 22:09:33 2017
-====================================================================================================================================
-ApplicationMgr       INFO Successfully loaded modules : StoreGate, CLIDComps
 ApplicationMgr       INFO Application Manager Configured successfully
-ClassIDSvc           INFO  getRegistryEntries: read 1844 CLIDRegistry entries for module ALL
 EventLoopMgr      WARNING Unable to locate service "EventSelector" 
 EventLoopMgr      WARNING No events will be processed from external input.
-HistogramPersis...WARNING Histograms saving not required.
 ApplicationMgr       INFO Application Manager Initialized successfully
 ApplicationMgr Ready
- AtlasDetectorID::initialize_from_dictionary - OK 
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 RpcIdHelper          INFO MultiRange built successfully to doubletR: MultiRange size is 261
 RpcIdHelper          INFO MultiRange built successfully to detectorElement: DetectorElement MultiRange size is 261
 RpcIdHelper          INFO MultiRange built successfully to rpcStrip: MultiRange size is 261
@@ -27,5 +13,4 @@ RpcIdHelper          INFO Initializing RPC hash indices ...
 RpcIdHelper          INFO The element hash max is 600
 RpcIdHelper          INFO The detector element hash max is 1122
 RpcIdHelper          INFO Initializing RPC hash indices for finding neighbors ... 
-ClassIDSvc           INFO  getRegistryEntries: read 372 CLIDRegistry entries for module ALL
 test1
diff --git a/MuonSpectrometer/MuonCnv/MuonEventAthenaPool/share/RpcPadContainerCnv_p2_test.ref b/MuonSpectrometer/MuonCnv/MuonEventAthenaPool/share/RpcPadContainerCnv_p2_test.ref
index 7b7f6c23c624511708b9042832633aa24a2d7919..a246a707f206dfe9493c7d1435a8d8e55fa901bb 100644
--- a/MuonSpectrometer/MuonCnv/MuonEventAthenaPool/share/RpcPadContainerCnv_p2_test.ref
+++ b/MuonSpectrometer/MuonCnv/MuonEventAthenaPool/share/RpcPadContainerCnv_p2_test.ref
@@ -1,25 +1,11 @@
 
 
-Initializing Gaudi ApplicationMgr using job opts ../share/MuonEventAthenaPool_test.txt
-JobOptionsSvc        INFO # =======> /afs/cern.ch/user/s/ssnyder/atlas-work3/MuonSpectrometer/MuonCnv/MuonEventAthenaPool/share/../share/MuonEventAthenaPool_test.txt
-JobOptionsSvc        INFO # (1,1): ApplicationMgr.Dlls += ["StoreGate", "CLIDComps"]
-JobOptionsSvc        INFO # (2,1): ApplicationMgr.ExtSvc += ["StoreGateSvc", "StoreGateSvc/DetectorStore"]
-JobOptionsSvc        INFO # (3,1): TGCcablingServerSvc.forcedUse = 1
-JobOptionsSvc        INFO Job options successfully read in from ../share/MuonEventAthenaPool_test.txt
-ApplicationMgr    SUCCESS 
-====================================================================================================================================
-                                                   Welcome to ApplicationMgr (GaudiCoreSvc v29r0)
-                                          running on lxplus000.cern.ch on Wed Nov 22 21:23:47 2017
-====================================================================================================================================
-ApplicationMgr       INFO Successfully loaded modules : StoreGate, CLIDComps
 ApplicationMgr       INFO Application Manager Configured successfully
-ClassIDSvc           INFO  getRegistryEntries: read 1844 CLIDRegistry entries for module ALL
 EventLoopMgr      WARNING Unable to locate service "EventSelector" 
 EventLoopMgr      WARNING No events will be processed from external input.
-HistogramPersis...WARNING Histograms saving not required.
 ApplicationMgr       INFO Application Manager Initialized successfully
 ApplicationMgr Ready
- AtlasDetectorID::initialize_from_dictionary - OK 
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 RpcIdHelper          INFO MultiRange built successfully to doubletR: MultiRange size is 261
 RpcIdHelper          INFO MultiRange built successfully to detectorElement: DetectorElement MultiRange size is 261
 RpcIdHelper          INFO MultiRange built successfully to rpcStrip: MultiRange size is 261
@@ -27,6 +13,5 @@ RpcIdHelper          INFO Initializing RPC hash indices ...
 RpcIdHelper          INFO The element hash max is 600
 RpcIdHelper          INFO The detector element hash max is 1122
 RpcIdHelper          INFO Initializing RPC hash indices for finding neighbors ... 
-ClassIDSvc           INFO  getRegistryEntries: read 372 CLIDRegistry entries for module ALL
 test1
 test                 INFO  RPCcablingSvc obtained - hashmax  = 3
diff --git a/MuonSpectrometer/MuonCnv/MuonEventTPCnv/share/CompetingMuonClustersOnTrackCnv_p2_test.ref b/MuonSpectrometer/MuonCnv/MuonEventTPCnv/share/CompetingMuonClustersOnTrackCnv_p2_test.ref
index 309d5a1a4b96696a99981f7107372429c86a22e3..eafa59f97879b9e447a9cdea019dc6bb7238a360 100644
--- a/MuonSpectrometer/MuonCnv/MuonEventTPCnv/share/CompetingMuonClustersOnTrackCnv_p2_test.ref
+++ b/MuonSpectrometer/MuonCnv/MuonEventTPCnv/share/CompetingMuonClustersOnTrackCnv_p2_test.ref
@@ -1,18 +1,6 @@
 
 
-Initializing Gaudi ApplicationMgr using job opts /home/emoyse/master2/build/x86_64-centos7-gcc8-opt/jobOptions/MuonEventTPCnv/MuonEventTPCnv_test.txt
-JobOptionsSvc        INFO # =======> /home/emoyse/master2/build/x86_64-centos7-gcc8-opt/jobOptions/MuonEventTPCnv/MuonEventTPCnv_test.txt
-JobOptionsSvc        INFO # (1,1): ApplicationMgr.Dlls += ["StoreGate", "CLIDComps"]
-JobOptionsSvc        INFO # (2,1): ApplicationMgr.ExtSvc += ["StoreGateSvc", "StoreGateSvc/DetectorStore", "StoreGateSvc/ConditionStore", "Athena::RCUSvc"]
-JobOptionsSvc        INFO Job options successfully read in from /home/emoyse/master2/build/x86_64-centos7-gcc8-opt/jobOptions/MuonEventTPCnv/MuonEventTPCnv_test.txt
-ApplicationMgr    SUCCESS 
-====================================================================================================================================
-                                                   Welcome to ApplicationMgr (GaudiCoreSvc v34r0)
-                                          running on pcumass4 on Wed Nov  4 09:34:39 2020
-====================================================================================================================================
-ApplicationMgr       INFO Successfully loaded modules : StoreGate, CLIDComps
 ApplicationMgr       INFO Application Manager Configured successfully
-ClassIDSvc           INFO  getRegistryEntries: read 12361 CLIDRegistry entries for module ALL
 EventLoopMgr      WARNING Unable to locate service "EventSelector" 
 EventLoopMgr      WARNING No events will be processed from external input.
 ApplicationMgr       INFO Application Manager Initialized successfully
@@ -22,22 +10,7 @@ ApplicationMgr Ready
  Volume pmdum2 not found: returning 0
  Volume pmdum3 not found: returning 0
  INFO Initialize from dictionary
- DEBUG (Re)initialize
  AtlasDetectorID::initialize_from_dictionary - OK 
- DEBUG decode index and bit fields for each level: 
- DEBUG indet          decode 1 vals 2,4,5,7,10,11,12,13 mask/zero mask/shift/bits/offset 7   1fffffffffffffff 61 3  0  indexes 0 0 1 2 0 3 0 0 4 5 6 7 mode  enumerated  
- DEBUG pixel          decode 1 vals 1:3             mask/zero mask/shift/bits/offset 3   e7ffffffffffffff 59 2  3  indexes                     mode  both_bounded  
- DEBUG bec            decode 1 vals -2,0,2          mask/zero mask/shift/bits/offset 3   f9ffffffffffffff 57 2  5  indexes 0 0 1 0 2           mode  enumerated  
- DEBUG bec_shift      decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
- DEBUG lay_disk       decode 0 vals 0:2             mask/zero mask/shift/bits/offset 3   fe7fffffffffffff 55 2  7  indexes                     mode  both_bounded  
- DEBUG lay_disk_shift decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
- DEBUG phi_mod        decode 0 vals 0:51            mask/zero mask/shift/bits/offset 3f  ff81ffffffffffff 49 6  9  indexes                     mode  both_bounded  
- DEBUG phi_mod_shift  decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
- DEBUG eta_mod        decode 1 vals -6:6            mask/zero mask/shift/bits/offset f   fffe1fffffffffff 45 4  15 indexes                     mode  both_bounded  
- DEBUG eta_mod_shift  decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
- DEBUG phi_index      decode 0 vals 0:327           mask/zero mask/shift/bits/offset 1ff ffffe00fffffffff 36 9  19 indexes                     mode  both_bounded  
- DEBUG eta_index      decode 0 vals 0:191           mask/zero mask/shift/bits/offset ff  fffffff00fffffff 28 8  28 indexes                     mode  both_bounded  
- DEBUG bec_eta_mod    decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
 indet 1 2,4,5,7,10,11,12,13 7 1fffffffffffffff 61 3 0 min/max 2 13 values  2 4 5 7 10 11 12 13 indexes  0 0 1 2 0 3 0 0 4 5 6 7 indices  8 prev  0 next  0 mode  enumerated  cont mode  none  
 pixel 1 1:3 3 e7ffffffffffffff 59 2 3 min/max 1 3 values  indexes  indices  3 prev  0 next  0 mode  both_bounded  cont mode  none  
 bec 1 -2,0,2 3 f9ffffffffffffff 57 2 5 min/max -2 2 values  -2 0 2 indexes  0 0 1 0 2 indices  3 prev  0 next  0 mode  enumerated  cont mode  none  
@@ -60,87 +33,28 @@ phi_module    4
 eta_module    5
 phi_index     6
 eta_index     7
- DEBUG PixelID::initialize_from_dict Set barrel field values: 0
- DEBUG PixelID::initialize_from_dict Set dbm field values: -999,999
- DEBUG PixelID::initialize_from_dict Found field values: InDet/Pixel 2/1
- DEBUG PixelID::init_neighbors 
- DEBUG PixelID::initialize_from_dict 
- DEBUG Wafer range -> 2/1/0/0/0:21/-6:6 | 2/1/0/1/0:37/-6:6 | 2/1/0/2/0:51/-6:6 | 2/1/-2,2/0:2/0:47/0
- DEBUG Pixel range -> 2/1/0/0/0:21/-6:6/0:327/0:191 | 2/1/0/1/0:37/-6:6/0:327/0:143 | 2/1/0/2/0:51/-6:6/0:327/0:143 | 2/1/-2,2/0:2/0:47/0/0:327/0:143
 INFO SCT_ID::initialize_from_dictionary 
  AtlasDetectorID::initialize_from_dictionary - OK 
 INFO Initialize from dictionary cout 0
- DEBUG (Re)initialize
  AtlasDetectorID::initialize_from_dictionary - OK 
- DEBUG decode index and bit fields for each level: 
- DEBUG indet     decode 1 vals 2,4,5,7,10,11,12,13 mask/zero mask/shift/bits/offset 7   1fffffffffffffff 61 3  0  indexes 0 0 1 2 0 3 0 0 4 5 6 7 mode  enumerated  
- DEBUG trt       decode 1 vals 1:3             mask/zero mask/shift/bits/offset 3   e7ffffffffffffff 59 2  3  indexes                     mode  both_bounded  
- DEBUG bec       decode 1 vals -2,-1,1,2       mask/zero mask/shift/bits/offset 3   f9ffffffffffffff 57 2  5  indexes 0 1 0 2 3           mode  enumerated  
- DEBUG phi_mod   decode 0 vals 0:31            mask/zero mask/shift/bits/offset 1f  fe0fffffffffffff 52 5  7  indexes                     mode  both_bounded  
- DEBUG lay_wheel decode 0 vals 0:17            mask/zero mask/shift/bits/offset 1f  fff07fffffffffff 47 5  12 indexes                     mode  both_bounded  
- DEBUG str_lay   decode 0 vals 0:29            mask/zero mask/shift/bits/offset 1f  ffff83ffffffffff 42 5  17 indexes                     mode  both_bounded  
- DEBUG straw     decode 0 vals 0:28            mask/zero mask/shift/bits/offset 1f  fffffc1fffffffff 37 5  22 indexes                     mode  both_bounded  
- DEBUG  TRT_ID::initialize_from_dict Set barrel field values: -1,1
- DEBUG  TRT_ID::initialize_from_dict Found field values: InDet/TRT 2/3
- DEBUG Module range -> 2/3/-1,1/0:31/0 | 2/3/-1,1/0:31/1 | 2/3/-1,1/0:31/2 | 2/3/-2,2/0:31/0:5 | 2/3/-2,2/0:31/6:13 | 2/3/-2,2/0:31/14:17
- DEBUG TRT_ID::init_hashes  module hash max 1344
- DEBUG TRT_ID::init_hashes  straw layer hash max 19008
- DEBUG TRT_ID::init_hashes  straw hash max 424576
- DEBUG  TRT_ID::initialize_from_dict 
- DEBUG Module range -> 2/3/-1,1/0:31/0 | 2/3/-1,1/0:31/1 | 2/3/-1,1/0:31/2 | 2/3/-2,2/0:31/0:5 | 2/3/-2,2/0:31/6:13 | 2/3/-2,2/0:31/14:17
- DEBUG Straw layer range -> 2/3/-1,1/0:31/0/0 | 2/3/-1,1/0:31/0/1:4 | 2/3/-1,1/0:31/0/5:9 | 2/3/-1,1/0:31/0/10:14 | 2/3/-1,1/0:31/0/15:17 | 2/3/-1,1/0:31/0/18 | 2/3/-1,1/0:31/1/0 | 2/3/-1,1/0:31/1/1:5 | 2/3/-1,1/0:31/1/6:10 | 2/3/-1,1/0:31/1/11:15 | 2/3/-1,1/0:31/1/16:20 | 2/3/-1,1/0:31/1/21:22 | 2/3/-1,1/0:31/1/23 | 2/3/-1,1/0:31/2/0 | 2/3/-1,1/0:31/2/1:4 | 2/3/-1,1/0:31/2/5:9 | 2/3/-1,1/0:31/2/10:14 | 2/3/-1,1/0:31/2/15:19 | 2/3/-1,1/0:31/2/20:24 | 2/3/-1,1/0:31/2/25:28 | 2/3/-1,1/0:31/2/29 | 2/3/-2,2/0:31/0:5/0:15 | 2/3/-2,2/0:31/6:13/0:7 | 2/3/-2,2/0:31/14:17/0:15
- DEBUG Straw range -> 2/3/-1,1/0:31/0/0/0:14 | 2/3/-1,1/0:31/0/1:4/0:15 | 2/3/-1,1/0:31/0/5:9/0:16 | 2/3/-1,1/0:31/0/10:14/0:17 | 2/3/-1,1/0:31/0/15:17/0:18 | 2/3/-1,1/0:31/0/18/0:17 | 2/3/-1,1/0:31/1/0/0:18 | 2/3/-1,1/0:31/1/1:5/0:19 | 2/3/-1,1/0:31/1/6:10/0:20 | 2/3/-1,1/0:31/1/11:15/0:21 | 2/3/-1,1/0:31/1/16:20/0:22 | 2/3/-1,1/0:31/1/21:22/0:23 | 2/3/-1,1/0:31/1/23/0:22 | 2/3/-1,1/0:31/2/0/0:22 | 2/3/-1,1/0:31/2/1:4/0:23 | 2/3/-1,1/0:31/2/5:9/0:24 | 2/3/-1,1/0:31/2/10:14/0:25 | 2/3/-1,1/0:31/2/15:19/0:26 | 2/3/-1,1/0:31/2/20:24/0:27 | 2/3/-1,1/0:31/2/25:28/0:28 | 2/3/-1,1/0:31/2/29/0:27 | 2/3/-2,2/0:31/0:5/0:15/0:23 | 2/3/-2,2/0:31/6:13/0:7/0:23 | 2/3/-2,2/0:31/14:17/0:15/0:17
- AtlasDetectorID::initialize_from_dictionary - OK 
-CscIdHelper          INFO MultiRange built successfully to Technology: MultiRange size is 218
-CscIdHelper          INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 257
-CscIdHelper          INFO MultiRange built successfully to cscStrip: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 CscIdHelper          INFO Initializing CSC hash indices ... 
-CscIdHelper          INFO The element hash max is 32
-CscIdHelper          INFO The detector element hash max is 64
 CscIdHelper          INFO The channel hash max is 61440
 CscIdHelper          INFO Initializing CSC hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-RpcIdHelper          INFO MultiRange built successfully to doubletR: MultiRange size is 261
-RpcIdHelper          INFO MultiRange built successfully to detectorElement: DetectorElement MultiRange size is 261
-RpcIdHelper          INFO MultiRange built successfully to rpcStrip: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 RpcIdHelper          INFO Initializing RPC hash indices ... 
-RpcIdHelper          INFO The element hash max is 600
-RpcIdHelper          INFO The detector element hash max is 1122
 RpcIdHelper          INFO Initializing RPC hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-TgcIdHelper          INFO MultiRange built successfully to Technology: MultiRange size is 218
-TgcIdHelper          INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 218
-TgcIdHelper          INFO MultiRange built successfully to channel: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 TgcIdHelper          INFO Initializing TGC hash indices ... 
-TgcIdHelper          INFO The element hash max is 1578
-TgcIdHelper          INFO The detector element hash max is 1578
 TgcIdHelper          INFO Initializing TGC hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-MdtIdHelper          INFO MultiRange built successfully to Technology: MultiRange size is 218
-MdtIdHelper          INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 261
-MdtIdHelper          INFO MultiRange built successfully to tube: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 MdtIdHelper          INFO Initializing MDT hash indices ... 
-MdtIdHelper          INFO The element hash max is 1188
-MdtIdHelper          INFO The detector element hash max is 2328
 MdtIdHelper          INFO Initializing MDT hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-sTgcIdHelper         INFO MultiRange built successfully to Technology: MultiRange size is 218
-sTgcIdHelper         INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 253
-sTgcIdHelper         INFO MultiRange built successfully to channel: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 sTgcIdHelper         INFO Initializing sTGC hash indices ... 
-sTgcIdHelper         INFO The element hash max is 96
-sTgcIdHelper         INFO The detector element hash max is 192
 sTgcIdHelper         INFO Initializing sTGC hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-MmIdHelper           INFO MultiRange built successfully to Technology: MultiRange size is 218
-MmIdHelper           INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 257
-MmIdHelper           INFO MultiRange built successfully to channel: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 MmIdHelper           INFO Initializing MicroMegas hash indices ... 
-MmIdHelper           INFO The element hash max is 64
-MmIdHelper           INFO The detector element hash max is 128
 MmIdHelper           INFO Initializing MicroMegas hash indices for finding neighbors ... 
  AtlasDetectorID::initialize_from_dictionary - OK 
-ClassIDSvc           INFO  getRegistryEntries: read 379 CLIDRegistry entries for module ALL
 test1
-ClassIDSvc           INFO  getRegistryEntries: read 320 CLIDRegistry entries for module ALL
-ClassIDSvc           INFO  getRegistryEntries: read 170 CLIDRegistry entries for module ALL
diff --git a/MuonSpectrometer/MuonCnv/MuonEventTPCnv/share/CscClusterOnTrackCnv_p2_test.ref b/MuonSpectrometer/MuonCnv/MuonEventTPCnv/share/CscClusterOnTrackCnv_p2_test.ref
index 43c07e16f5d6b16f88d482d7e34635c9f0093691..eafa59f97879b9e447a9cdea019dc6bb7238a360 100644
--- a/MuonSpectrometer/MuonCnv/MuonEventTPCnv/share/CscClusterOnTrackCnv_p2_test.ref
+++ b/MuonSpectrometer/MuonCnv/MuonEventTPCnv/share/CscClusterOnTrackCnv_p2_test.ref
@@ -1,18 +1,6 @@
 
 
-Initializing Gaudi ApplicationMgr using job opts /home/emoyse/master2/build/x86_64-centos7-gcc8-opt/jobOptions/MuonEventTPCnv/MuonEventTPCnv_test.txt
-JobOptionsSvc        INFO # =======> /home/emoyse/master2/build/x86_64-centos7-gcc8-opt/jobOptions/MuonEventTPCnv/MuonEventTPCnv_test.txt
-JobOptionsSvc        INFO # (1,1): ApplicationMgr.Dlls += ["StoreGate", "CLIDComps"]
-JobOptionsSvc        INFO # (2,1): ApplicationMgr.ExtSvc += ["StoreGateSvc", "StoreGateSvc/DetectorStore", "StoreGateSvc/ConditionStore", "Athena::RCUSvc"]
-JobOptionsSvc        INFO Job options successfully read in from /home/emoyse/master2/build/x86_64-centos7-gcc8-opt/jobOptions/MuonEventTPCnv/MuonEventTPCnv_test.txt
-ApplicationMgr    SUCCESS 
-====================================================================================================================================
-                                                   Welcome to ApplicationMgr (GaudiCoreSvc v34r0)
-                                          running on pcumass4 on Wed Nov  4 09:34:27 2020
-====================================================================================================================================
-ApplicationMgr       INFO Successfully loaded modules : StoreGate, CLIDComps
 ApplicationMgr       INFO Application Manager Configured successfully
-ClassIDSvc           INFO  getRegistryEntries: read 12361 CLIDRegistry entries for module ALL
 EventLoopMgr      WARNING Unable to locate service "EventSelector" 
 EventLoopMgr      WARNING No events will be processed from external input.
 ApplicationMgr       INFO Application Manager Initialized successfully
@@ -22,22 +10,7 @@ ApplicationMgr Ready
  Volume pmdum2 not found: returning 0
  Volume pmdum3 not found: returning 0
  INFO Initialize from dictionary
- DEBUG (Re)initialize
  AtlasDetectorID::initialize_from_dictionary - OK 
- DEBUG decode index and bit fields for each level: 
- DEBUG indet          decode 1 vals 2,4,5,7,10,11,12,13 mask/zero mask/shift/bits/offset 7   1fffffffffffffff 61 3  0  indexes 0 0 1 2 0 3 0 0 4 5 6 7 mode  enumerated  
- DEBUG pixel          decode 1 vals 1:3             mask/zero mask/shift/bits/offset 3   e7ffffffffffffff 59 2  3  indexes                     mode  both_bounded  
- DEBUG bec            decode 1 vals -2,0,2          mask/zero mask/shift/bits/offset 3   f9ffffffffffffff 57 2  5  indexes 0 0 1 0 2           mode  enumerated  
- DEBUG bec_shift      decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
- DEBUG lay_disk       decode 0 vals 0:2             mask/zero mask/shift/bits/offset 3   fe7fffffffffffff 55 2  7  indexes                     mode  both_bounded  
- DEBUG lay_disk_shift decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
- DEBUG phi_mod        decode 0 vals 0:51            mask/zero mask/shift/bits/offset 3f  ff81ffffffffffff 49 6  9  indexes                     mode  both_bounded  
- DEBUG phi_mod_shift  decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
- DEBUG eta_mod        decode 1 vals -6:6            mask/zero mask/shift/bits/offset f   fffe1fffffffffff 45 4  15 indexes                     mode  both_bounded  
- DEBUG eta_mod_shift  decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
- DEBUG phi_index      decode 0 vals 0:327           mask/zero mask/shift/bits/offset 1ff ffffe00fffffffff 36 9  19 indexes                     mode  both_bounded  
- DEBUG eta_index      decode 0 vals 0:191           mask/zero mask/shift/bits/offset ff  fffffff00fffffff 28 8  28 indexes                     mode  both_bounded  
- DEBUG bec_eta_mod    decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
 indet 1 2,4,5,7,10,11,12,13 7 1fffffffffffffff 61 3 0 min/max 2 13 values  2 4 5 7 10 11 12 13 indexes  0 0 1 2 0 3 0 0 4 5 6 7 indices  8 prev  0 next  0 mode  enumerated  cont mode  none  
 pixel 1 1:3 3 e7ffffffffffffff 59 2 3 min/max 1 3 values  indexes  indices  3 prev  0 next  0 mode  both_bounded  cont mode  none  
 bec 1 -2,0,2 3 f9ffffffffffffff 57 2 5 min/max -2 2 values  -2 0 2 indexes  0 0 1 0 2 indices  3 prev  0 next  0 mode  enumerated  cont mode  none  
@@ -60,87 +33,28 @@ phi_module    4
 eta_module    5
 phi_index     6
 eta_index     7
- DEBUG PixelID::initialize_from_dict Set barrel field values: 0
- DEBUG PixelID::initialize_from_dict Set dbm field values: -999,999
- DEBUG PixelID::initialize_from_dict Found field values: InDet/Pixel 2/1
- DEBUG PixelID::init_neighbors 
- DEBUG PixelID::initialize_from_dict 
- DEBUG Wafer range -> 2/1/0/0/0:21/-6:6 | 2/1/0/1/0:37/-6:6 | 2/1/0/2/0:51/-6:6 | 2/1/-2,2/0:2/0:47/0
- DEBUG Pixel range -> 2/1/0/0/0:21/-6:6/0:327/0:191 | 2/1/0/1/0:37/-6:6/0:327/0:143 | 2/1/0/2/0:51/-6:6/0:327/0:143 | 2/1/-2,2/0:2/0:47/0/0:327/0:143
 INFO SCT_ID::initialize_from_dictionary 
  AtlasDetectorID::initialize_from_dictionary - OK 
 INFO Initialize from dictionary cout 0
- DEBUG (Re)initialize
  AtlasDetectorID::initialize_from_dictionary - OK 
- DEBUG decode index and bit fields for each level: 
- DEBUG indet     decode 1 vals 2,4,5,7,10,11,12,13 mask/zero mask/shift/bits/offset 7   1fffffffffffffff 61 3  0  indexes 0 0 1 2 0 3 0 0 4 5 6 7 mode  enumerated  
- DEBUG trt       decode 1 vals 1:3             mask/zero mask/shift/bits/offset 3   e7ffffffffffffff 59 2  3  indexes                     mode  both_bounded  
- DEBUG bec       decode 1 vals -2,-1,1,2       mask/zero mask/shift/bits/offset 3   f9ffffffffffffff 57 2  5  indexes 0 1 0 2 3           mode  enumerated  
- DEBUG phi_mod   decode 0 vals 0:31            mask/zero mask/shift/bits/offset 1f  fe0fffffffffffff 52 5  7  indexes                     mode  both_bounded  
- DEBUG lay_wheel decode 0 vals 0:17            mask/zero mask/shift/bits/offset 1f  fff07fffffffffff 47 5  12 indexes                     mode  both_bounded  
- DEBUG str_lay   decode 0 vals 0:29            mask/zero mask/shift/bits/offset 1f  ffff83ffffffffff 42 5  17 indexes                     mode  both_bounded  
- DEBUG straw     decode 0 vals 0:28            mask/zero mask/shift/bits/offset 1f  fffffc1fffffffff 37 5  22 indexes                     mode  both_bounded  
- DEBUG  TRT_ID::initialize_from_dict Set barrel field values: -1,1
- DEBUG  TRT_ID::initialize_from_dict Found field values: InDet/TRT 2/3
- DEBUG Module range -> 2/3/-1,1/0:31/0 | 2/3/-1,1/0:31/1 | 2/3/-1,1/0:31/2 | 2/3/-2,2/0:31/0:5 | 2/3/-2,2/0:31/6:13 | 2/3/-2,2/0:31/14:17
- DEBUG TRT_ID::init_hashes  module hash max 1344
- DEBUG TRT_ID::init_hashes  straw layer hash max 19008
- DEBUG TRT_ID::init_hashes  straw hash max 424576
- DEBUG  TRT_ID::initialize_from_dict 
- DEBUG Module range -> 2/3/-1,1/0:31/0 | 2/3/-1,1/0:31/1 | 2/3/-1,1/0:31/2 | 2/3/-2,2/0:31/0:5 | 2/3/-2,2/0:31/6:13 | 2/3/-2,2/0:31/14:17
- DEBUG Straw layer range -> 2/3/-1,1/0:31/0/0 | 2/3/-1,1/0:31/0/1:4 | 2/3/-1,1/0:31/0/5:9 | 2/3/-1,1/0:31/0/10:14 | 2/3/-1,1/0:31/0/15:17 | 2/3/-1,1/0:31/0/18 | 2/3/-1,1/0:31/1/0 | 2/3/-1,1/0:31/1/1:5 | 2/3/-1,1/0:31/1/6:10 | 2/3/-1,1/0:31/1/11:15 | 2/3/-1,1/0:31/1/16:20 | 2/3/-1,1/0:31/1/21:22 | 2/3/-1,1/0:31/1/23 | 2/3/-1,1/0:31/2/0 | 2/3/-1,1/0:31/2/1:4 | 2/3/-1,1/0:31/2/5:9 | 2/3/-1,1/0:31/2/10:14 | 2/3/-1,1/0:31/2/15:19 | 2/3/-1,1/0:31/2/20:24 | 2/3/-1,1/0:31/2/25:28 | 2/3/-1,1/0:31/2/29 | 2/3/-2,2/0:31/0:5/0:15 | 2/3/-2,2/0:31/6:13/0:7 | 2/3/-2,2/0:31/14:17/0:15
- DEBUG Straw range -> 2/3/-1,1/0:31/0/0/0:14 | 2/3/-1,1/0:31/0/1:4/0:15 | 2/3/-1,1/0:31/0/5:9/0:16 | 2/3/-1,1/0:31/0/10:14/0:17 | 2/3/-1,1/0:31/0/15:17/0:18 | 2/3/-1,1/0:31/0/18/0:17 | 2/3/-1,1/0:31/1/0/0:18 | 2/3/-1,1/0:31/1/1:5/0:19 | 2/3/-1,1/0:31/1/6:10/0:20 | 2/3/-1,1/0:31/1/11:15/0:21 | 2/3/-1,1/0:31/1/16:20/0:22 | 2/3/-1,1/0:31/1/21:22/0:23 | 2/3/-1,1/0:31/1/23/0:22 | 2/3/-1,1/0:31/2/0/0:22 | 2/3/-1,1/0:31/2/1:4/0:23 | 2/3/-1,1/0:31/2/5:9/0:24 | 2/3/-1,1/0:31/2/10:14/0:25 | 2/3/-1,1/0:31/2/15:19/0:26 | 2/3/-1,1/0:31/2/20:24/0:27 | 2/3/-1,1/0:31/2/25:28/0:28 | 2/3/-1,1/0:31/2/29/0:27 | 2/3/-2,2/0:31/0:5/0:15/0:23 | 2/3/-2,2/0:31/6:13/0:7/0:23 | 2/3/-2,2/0:31/14:17/0:15/0:17
- AtlasDetectorID::initialize_from_dictionary - OK 
-CscIdHelper          INFO MultiRange built successfully to Technology: MultiRange size is 218
-CscIdHelper          INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 257
-CscIdHelper          INFO MultiRange built successfully to cscStrip: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 CscIdHelper          INFO Initializing CSC hash indices ... 
-CscIdHelper          INFO The element hash max is 32
-CscIdHelper          INFO The detector element hash max is 64
 CscIdHelper          INFO The channel hash max is 61440
 CscIdHelper          INFO Initializing CSC hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-RpcIdHelper          INFO MultiRange built successfully to doubletR: MultiRange size is 261
-RpcIdHelper          INFO MultiRange built successfully to detectorElement: DetectorElement MultiRange size is 261
-RpcIdHelper          INFO MultiRange built successfully to rpcStrip: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 RpcIdHelper          INFO Initializing RPC hash indices ... 
-RpcIdHelper          INFO The element hash max is 600
-RpcIdHelper          INFO The detector element hash max is 1122
 RpcIdHelper          INFO Initializing RPC hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-TgcIdHelper          INFO MultiRange built successfully to Technology: MultiRange size is 218
-TgcIdHelper          INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 218
-TgcIdHelper          INFO MultiRange built successfully to channel: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 TgcIdHelper          INFO Initializing TGC hash indices ... 
-TgcIdHelper          INFO The element hash max is 1578
-TgcIdHelper          INFO The detector element hash max is 1578
 TgcIdHelper          INFO Initializing TGC hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-MdtIdHelper          INFO MultiRange built successfully to Technology: MultiRange size is 218
-MdtIdHelper          INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 261
-MdtIdHelper          INFO MultiRange built successfully to tube: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 MdtIdHelper          INFO Initializing MDT hash indices ... 
-MdtIdHelper          INFO The element hash max is 1188
-MdtIdHelper          INFO The detector element hash max is 2328
 MdtIdHelper          INFO Initializing MDT hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-sTgcIdHelper         INFO MultiRange built successfully to Technology: MultiRange size is 218
-sTgcIdHelper         INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 253
-sTgcIdHelper         INFO MultiRange built successfully to channel: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 sTgcIdHelper         INFO Initializing sTGC hash indices ... 
-sTgcIdHelper         INFO The element hash max is 96
-sTgcIdHelper         INFO The detector element hash max is 192
 sTgcIdHelper         INFO Initializing sTGC hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-MmIdHelper           INFO MultiRange built successfully to Technology: MultiRange size is 218
-MmIdHelper           INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 257
-MmIdHelper           INFO MultiRange built successfully to channel: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 MmIdHelper           INFO Initializing MicroMegas hash indices ... 
-MmIdHelper           INFO The element hash max is 64
-MmIdHelper           INFO The detector element hash max is 128
 MmIdHelper           INFO Initializing MicroMegas hash indices for finding neighbors ... 
  AtlasDetectorID::initialize_from_dictionary - OK 
-ClassIDSvc           INFO  getRegistryEntries: read 379 CLIDRegistry entries for module ALL
 test1
-ClassIDSvc           INFO  getRegistryEntries: read 320 CLIDRegistry entries for module ALL
-ClassIDSvc           INFO  getRegistryEntries: read 170 CLIDRegistry entries for module ALL
diff --git a/MuonSpectrometer/MuonCnv/MuonEventTPCnv/share/CscPrepDataContainerCnv_p1_test.ref b/MuonSpectrometer/MuonCnv/MuonEventTPCnv/share/CscPrepDataContainerCnv_p1_test.ref
index 54c1ab9d9c33189c409ea8cebf49e05632695d2c..eafa59f97879b9e447a9cdea019dc6bb7238a360 100644
--- a/MuonSpectrometer/MuonCnv/MuonEventTPCnv/share/CscPrepDataContainerCnv_p1_test.ref
+++ b/MuonSpectrometer/MuonCnv/MuonEventTPCnv/share/CscPrepDataContainerCnv_p1_test.ref
@@ -1,18 +1,6 @@
 
 
-Initializing Gaudi ApplicationMgr using job opts /home/emoyse/master2/build/x86_64-centos7-gcc8-opt/jobOptions/MuonEventTPCnv/MuonEventTPCnv_test.txt
-JobOptionsSvc        INFO # =======> /home/emoyse/master2/build/x86_64-centos7-gcc8-opt/jobOptions/MuonEventTPCnv/MuonEventTPCnv_test.txt
-JobOptionsSvc        INFO # (1,1): ApplicationMgr.Dlls += ["StoreGate", "CLIDComps"]
-JobOptionsSvc        INFO # (2,1): ApplicationMgr.ExtSvc += ["StoreGateSvc", "StoreGateSvc/DetectorStore", "StoreGateSvc/ConditionStore", "Athena::RCUSvc"]
-JobOptionsSvc        INFO Job options successfully read in from /home/emoyse/master2/build/x86_64-centos7-gcc8-opt/jobOptions/MuonEventTPCnv/MuonEventTPCnv_test.txt
-ApplicationMgr    SUCCESS 
-====================================================================================================================================
-                                                   Welcome to ApplicationMgr (GaudiCoreSvc v34r0)
-                                          running on pcumass4 on Wed Nov  4 09:34:57 2020
-====================================================================================================================================
-ApplicationMgr       INFO Successfully loaded modules : StoreGate, CLIDComps
 ApplicationMgr       INFO Application Manager Configured successfully
-ClassIDSvc           INFO  getRegistryEntries: read 12360 CLIDRegistry entries for module ALL
 EventLoopMgr      WARNING Unable to locate service "EventSelector" 
 EventLoopMgr      WARNING No events will be processed from external input.
 ApplicationMgr       INFO Application Manager Initialized successfully
@@ -22,22 +10,7 @@ ApplicationMgr Ready
  Volume pmdum2 not found: returning 0
  Volume pmdum3 not found: returning 0
  INFO Initialize from dictionary
- DEBUG (Re)initialize
  AtlasDetectorID::initialize_from_dictionary - OK 
- DEBUG decode index and bit fields for each level: 
- DEBUG indet          decode 1 vals 2,4,5,7,10,11,12,13 mask/zero mask/shift/bits/offset 7   1fffffffffffffff 61 3  0  indexes 0 0 1 2 0 3 0 0 4 5 6 7 mode  enumerated  
- DEBUG pixel          decode 1 vals 1:3             mask/zero mask/shift/bits/offset 3   e7ffffffffffffff 59 2  3  indexes                     mode  both_bounded  
- DEBUG bec            decode 1 vals -2,0,2          mask/zero mask/shift/bits/offset 3   f9ffffffffffffff 57 2  5  indexes 0 0 1 0 2           mode  enumerated  
- DEBUG bec_shift      decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
- DEBUG lay_disk       decode 0 vals 0:2             mask/zero mask/shift/bits/offset 3   fe7fffffffffffff 55 2  7  indexes                     mode  both_bounded  
- DEBUG lay_disk_shift decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
- DEBUG phi_mod        decode 0 vals 0:51            mask/zero mask/shift/bits/offset 3f  ff81ffffffffffff 49 6  9  indexes                     mode  both_bounded  
- DEBUG phi_mod_shift  decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
- DEBUG eta_mod        decode 1 vals -6:6            mask/zero mask/shift/bits/offset f   fffe1fffffffffff 45 4  15 indexes                     mode  both_bounded  
- DEBUG eta_mod_shift  decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
- DEBUG phi_index      decode 0 vals 0:327           mask/zero mask/shift/bits/offset 1ff ffffe00fffffffff 36 9  19 indexes                     mode  both_bounded  
- DEBUG eta_index      decode 0 vals 0:191           mask/zero mask/shift/bits/offset ff  fffffff00fffffff 28 8  28 indexes                     mode  both_bounded  
- DEBUG bec_eta_mod    decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
 indet 1 2,4,5,7,10,11,12,13 7 1fffffffffffffff 61 3 0 min/max 2 13 values  2 4 5 7 10 11 12 13 indexes  0 0 1 2 0 3 0 0 4 5 6 7 indices  8 prev  0 next  0 mode  enumerated  cont mode  none  
 pixel 1 1:3 3 e7ffffffffffffff 59 2 3 min/max 1 3 values  indexes  indices  3 prev  0 next  0 mode  both_bounded  cont mode  none  
 bec 1 -2,0,2 3 f9ffffffffffffff 57 2 5 min/max -2 2 values  -2 0 2 indexes  0 0 1 0 2 indices  3 prev  0 next  0 mode  enumerated  cont mode  none  
@@ -60,85 +33,28 @@ phi_module    4
 eta_module    5
 phi_index     6
 eta_index     7
- DEBUG PixelID::initialize_from_dict Set barrel field values: 0
- DEBUG PixelID::initialize_from_dict Set dbm field values: -999,999
- DEBUG PixelID::initialize_from_dict Found field values: InDet/Pixel 2/1
- DEBUG PixelID::init_neighbors 
- DEBUG PixelID::initialize_from_dict 
- DEBUG Wafer range -> 2/1/0/0/0:21/-6:6 | 2/1/0/1/0:37/-6:6 | 2/1/0/2/0:51/-6:6 | 2/1/-2,2/0:2/0:47/0
- DEBUG Pixel range -> 2/1/0/0/0:21/-6:6/0:327/0:191 | 2/1/0/1/0:37/-6:6/0:327/0:143 | 2/1/0/2/0:51/-6:6/0:327/0:143 | 2/1/-2,2/0:2/0:47/0/0:327/0:143
 INFO SCT_ID::initialize_from_dictionary 
  AtlasDetectorID::initialize_from_dictionary - OK 
 INFO Initialize from dictionary cout 0
- DEBUG (Re)initialize
  AtlasDetectorID::initialize_from_dictionary - OK 
- DEBUG decode index and bit fields for each level: 
- DEBUG indet     decode 1 vals 2,4,5,7,10,11,12,13 mask/zero mask/shift/bits/offset 7   1fffffffffffffff 61 3  0  indexes 0 0 1 2 0 3 0 0 4 5 6 7 mode  enumerated  
- DEBUG trt       decode 1 vals 1:3             mask/zero mask/shift/bits/offset 3   e7ffffffffffffff 59 2  3  indexes                     mode  both_bounded  
- DEBUG bec       decode 1 vals -2,-1,1,2       mask/zero mask/shift/bits/offset 3   f9ffffffffffffff 57 2  5  indexes 0 1 0 2 3           mode  enumerated  
- DEBUG phi_mod   decode 0 vals 0:31            mask/zero mask/shift/bits/offset 1f  fe0fffffffffffff 52 5  7  indexes                     mode  both_bounded  
- DEBUG lay_wheel decode 0 vals 0:17            mask/zero mask/shift/bits/offset 1f  fff07fffffffffff 47 5  12 indexes                     mode  both_bounded  
- DEBUG str_lay   decode 0 vals 0:29            mask/zero mask/shift/bits/offset 1f  ffff83ffffffffff 42 5  17 indexes                     mode  both_bounded  
- DEBUG straw     decode 0 vals 0:28            mask/zero mask/shift/bits/offset 1f  fffffc1fffffffff 37 5  22 indexes                     mode  both_bounded  
- DEBUG  TRT_ID::initialize_from_dict Set barrel field values: -1,1
- DEBUG  TRT_ID::initialize_from_dict Found field values: InDet/TRT 2/3
- DEBUG Module range -> 2/3/-1,1/0:31/0 | 2/3/-1,1/0:31/1 | 2/3/-1,1/0:31/2 | 2/3/-2,2/0:31/0:5 | 2/3/-2,2/0:31/6:13 | 2/3/-2,2/0:31/14:17
- DEBUG TRT_ID::init_hashes  module hash max 1344
- DEBUG TRT_ID::init_hashes  straw layer hash max 19008
- DEBUG TRT_ID::init_hashes  straw hash max 424576
- DEBUG  TRT_ID::initialize_from_dict 
- DEBUG Module range -> 2/3/-1,1/0:31/0 | 2/3/-1,1/0:31/1 | 2/3/-1,1/0:31/2 | 2/3/-2,2/0:31/0:5 | 2/3/-2,2/0:31/6:13 | 2/3/-2,2/0:31/14:17
- DEBUG Straw layer range -> 2/3/-1,1/0:31/0/0 | 2/3/-1,1/0:31/0/1:4 | 2/3/-1,1/0:31/0/5:9 | 2/3/-1,1/0:31/0/10:14 | 2/3/-1,1/0:31/0/15:17 | 2/3/-1,1/0:31/0/18 | 2/3/-1,1/0:31/1/0 | 2/3/-1,1/0:31/1/1:5 | 2/3/-1,1/0:31/1/6:10 | 2/3/-1,1/0:31/1/11:15 | 2/3/-1,1/0:31/1/16:20 | 2/3/-1,1/0:31/1/21:22 | 2/3/-1,1/0:31/1/23 | 2/3/-1,1/0:31/2/0 | 2/3/-1,1/0:31/2/1:4 | 2/3/-1,1/0:31/2/5:9 | 2/3/-1,1/0:31/2/10:14 | 2/3/-1,1/0:31/2/15:19 | 2/3/-1,1/0:31/2/20:24 | 2/3/-1,1/0:31/2/25:28 | 2/3/-1,1/0:31/2/29 | 2/3/-2,2/0:31/0:5/0:15 | 2/3/-2,2/0:31/6:13/0:7 | 2/3/-2,2/0:31/14:17/0:15
- DEBUG Straw range -> 2/3/-1,1/0:31/0/0/0:14 | 2/3/-1,1/0:31/0/1:4/0:15 | 2/3/-1,1/0:31/0/5:9/0:16 | 2/3/-1,1/0:31/0/10:14/0:17 | 2/3/-1,1/0:31/0/15:17/0:18 | 2/3/-1,1/0:31/0/18/0:17 | 2/3/-1,1/0:31/1/0/0:18 | 2/3/-1,1/0:31/1/1:5/0:19 | 2/3/-1,1/0:31/1/6:10/0:20 | 2/3/-1,1/0:31/1/11:15/0:21 | 2/3/-1,1/0:31/1/16:20/0:22 | 2/3/-1,1/0:31/1/21:22/0:23 | 2/3/-1,1/0:31/1/23/0:22 | 2/3/-1,1/0:31/2/0/0:22 | 2/3/-1,1/0:31/2/1:4/0:23 | 2/3/-1,1/0:31/2/5:9/0:24 | 2/3/-1,1/0:31/2/10:14/0:25 | 2/3/-1,1/0:31/2/15:19/0:26 | 2/3/-1,1/0:31/2/20:24/0:27 | 2/3/-1,1/0:31/2/25:28/0:28 | 2/3/-1,1/0:31/2/29/0:27 | 2/3/-2,2/0:31/0:5/0:15/0:23 | 2/3/-2,2/0:31/6:13/0:7/0:23 | 2/3/-2,2/0:31/14:17/0:15/0:17
- AtlasDetectorID::initialize_from_dictionary - OK 
-CscIdHelper          INFO MultiRange built successfully to Technology: MultiRange size is 218
-CscIdHelper          INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 257
-CscIdHelper          INFO MultiRange built successfully to cscStrip: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 CscIdHelper          INFO Initializing CSC hash indices ... 
-CscIdHelper          INFO The element hash max is 32
-CscIdHelper          INFO The detector element hash max is 64
 CscIdHelper          INFO The channel hash max is 61440
 CscIdHelper          INFO Initializing CSC hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-RpcIdHelper          INFO MultiRange built successfully to doubletR: MultiRange size is 261
-RpcIdHelper          INFO MultiRange built successfully to detectorElement: DetectorElement MultiRange size is 261
-RpcIdHelper          INFO MultiRange built successfully to rpcStrip: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 RpcIdHelper          INFO Initializing RPC hash indices ... 
-RpcIdHelper          INFO The element hash max is 600
-RpcIdHelper          INFO The detector element hash max is 1122
 RpcIdHelper          INFO Initializing RPC hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-TgcIdHelper          INFO MultiRange built successfully to Technology: MultiRange size is 218
-TgcIdHelper          INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 218
-TgcIdHelper          INFO MultiRange built successfully to channel: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 TgcIdHelper          INFO Initializing TGC hash indices ... 
-TgcIdHelper          INFO The element hash max is 1578
-TgcIdHelper          INFO The detector element hash max is 1578
 TgcIdHelper          INFO Initializing TGC hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-MdtIdHelper          INFO MultiRange built successfully to Technology: MultiRange size is 218
-MdtIdHelper          INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 261
-MdtIdHelper          INFO MultiRange built successfully to tube: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 MdtIdHelper          INFO Initializing MDT hash indices ... 
-MdtIdHelper          INFO The element hash max is 1188
-MdtIdHelper          INFO The detector element hash max is 2328
 MdtIdHelper          INFO Initializing MDT hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-sTgcIdHelper         INFO MultiRange built successfully to Technology: MultiRange size is 218
-sTgcIdHelper         INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 253
-sTgcIdHelper         INFO MultiRange built successfully to channel: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 sTgcIdHelper         INFO Initializing sTGC hash indices ... 
-sTgcIdHelper         INFO The element hash max is 96
-sTgcIdHelper         INFO The detector element hash max is 192
 sTgcIdHelper         INFO Initializing sTGC hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-MmIdHelper           INFO MultiRange built successfully to Technology: MultiRange size is 218
-MmIdHelper           INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 257
-MmIdHelper           INFO MultiRange built successfully to channel: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 MmIdHelper           INFO Initializing MicroMegas hash indices ... 
-MmIdHelper           INFO The element hash max is 64
-MmIdHelper           INFO The detector element hash max is 128
 MmIdHelper           INFO Initializing MicroMegas hash indices for finding neighbors ... 
  AtlasDetectorID::initialize_from_dictionary - OK 
-ClassIDSvc           INFO  getRegistryEntries: read 379 CLIDRegistry entries for module ALL
 test1
diff --git a/MuonSpectrometer/MuonCnv/MuonEventTPCnv/share/CscPrepDataContainerCnv_p2_test.ref b/MuonSpectrometer/MuonCnv/MuonEventTPCnv/share/CscPrepDataContainerCnv_p2_test.ref
index f8e21d8dc42f6ac9851732dae83d45f52a34e48e..eafa59f97879b9e447a9cdea019dc6bb7238a360 100644
--- a/MuonSpectrometer/MuonCnv/MuonEventTPCnv/share/CscPrepDataContainerCnv_p2_test.ref
+++ b/MuonSpectrometer/MuonCnv/MuonEventTPCnv/share/CscPrepDataContainerCnv_p2_test.ref
@@ -1,18 +1,6 @@
 
 
-Initializing Gaudi ApplicationMgr using job opts /home/emoyse/master2/build/x86_64-centos7-gcc8-opt/jobOptions/MuonEventTPCnv/MuonEventTPCnv_test.txt
-JobOptionsSvc        INFO # =======> /home/emoyse/master2/build/x86_64-centos7-gcc8-opt/jobOptions/MuonEventTPCnv/MuonEventTPCnv_test.txt
-JobOptionsSvc        INFO # (1,1): ApplicationMgr.Dlls += ["StoreGate", "CLIDComps"]
-JobOptionsSvc        INFO # (2,1): ApplicationMgr.ExtSvc += ["StoreGateSvc", "StoreGateSvc/DetectorStore", "StoreGateSvc/ConditionStore", "Athena::RCUSvc"]
-JobOptionsSvc        INFO Job options successfully read in from /home/emoyse/master2/build/x86_64-centos7-gcc8-opt/jobOptions/MuonEventTPCnv/MuonEventTPCnv_test.txt
-ApplicationMgr    SUCCESS 
-====================================================================================================================================
-                                                   Welcome to ApplicationMgr (GaudiCoreSvc v34r0)
-                                          running on pcumass4 on Wed Nov  4 09:34:59 2020
-====================================================================================================================================
-ApplicationMgr       INFO Successfully loaded modules : StoreGate, CLIDComps
 ApplicationMgr       INFO Application Manager Configured successfully
-ClassIDSvc           INFO  getRegistryEntries: read 12360 CLIDRegistry entries for module ALL
 EventLoopMgr      WARNING Unable to locate service "EventSelector" 
 EventLoopMgr      WARNING No events will be processed from external input.
 ApplicationMgr       INFO Application Manager Initialized successfully
@@ -22,22 +10,7 @@ ApplicationMgr Ready
  Volume pmdum2 not found: returning 0
  Volume pmdum3 not found: returning 0
  INFO Initialize from dictionary
- DEBUG (Re)initialize
  AtlasDetectorID::initialize_from_dictionary - OK 
- DEBUG decode index and bit fields for each level: 
- DEBUG indet          decode 1 vals 2,4,5,7,10,11,12,13 mask/zero mask/shift/bits/offset 7   1fffffffffffffff 61 3  0  indexes 0 0 1 2 0 3 0 0 4 5 6 7 mode  enumerated  
- DEBUG pixel          decode 1 vals 1:3             mask/zero mask/shift/bits/offset 3   e7ffffffffffffff 59 2  3  indexes                     mode  both_bounded  
- DEBUG bec            decode 1 vals -2,0,2          mask/zero mask/shift/bits/offset 3   f9ffffffffffffff 57 2  5  indexes 0 0 1 0 2           mode  enumerated  
- DEBUG bec_shift      decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
- DEBUG lay_disk       decode 0 vals 0:2             mask/zero mask/shift/bits/offset 3   fe7fffffffffffff 55 2  7  indexes                     mode  both_bounded  
- DEBUG lay_disk_shift decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
- DEBUG phi_mod        decode 0 vals 0:51            mask/zero mask/shift/bits/offset 3f  ff81ffffffffffff 49 6  9  indexes                     mode  both_bounded  
- DEBUG phi_mod_shift  decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
- DEBUG eta_mod        decode 1 vals -6:6            mask/zero mask/shift/bits/offset f   fffe1fffffffffff 45 4  15 indexes                     mode  both_bounded  
- DEBUG eta_mod_shift  decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
- DEBUG phi_index      decode 0 vals 0:327           mask/zero mask/shift/bits/offset 1ff ffffe00fffffffff 36 9  19 indexes                     mode  both_bounded  
- DEBUG eta_index      decode 0 vals 0:191           mask/zero mask/shift/bits/offset ff  fffffff00fffffff 28 8  28 indexes                     mode  both_bounded  
- DEBUG bec_eta_mod    decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
 indet 1 2,4,5,7,10,11,12,13 7 1fffffffffffffff 61 3 0 min/max 2 13 values  2 4 5 7 10 11 12 13 indexes  0 0 1 2 0 3 0 0 4 5 6 7 indices  8 prev  0 next  0 mode  enumerated  cont mode  none  
 pixel 1 1:3 3 e7ffffffffffffff 59 2 3 min/max 1 3 values  indexes  indices  3 prev  0 next  0 mode  both_bounded  cont mode  none  
 bec 1 -2,0,2 3 f9ffffffffffffff 57 2 5 min/max -2 2 values  -2 0 2 indexes  0 0 1 0 2 indices  3 prev  0 next  0 mode  enumerated  cont mode  none  
@@ -60,85 +33,28 @@ phi_module    4
 eta_module    5
 phi_index     6
 eta_index     7
- DEBUG PixelID::initialize_from_dict Set barrel field values: 0
- DEBUG PixelID::initialize_from_dict Set dbm field values: -999,999
- DEBUG PixelID::initialize_from_dict Found field values: InDet/Pixel 2/1
- DEBUG PixelID::init_neighbors 
- DEBUG PixelID::initialize_from_dict 
- DEBUG Wafer range -> 2/1/0/0/0:21/-6:6 | 2/1/0/1/0:37/-6:6 | 2/1/0/2/0:51/-6:6 | 2/1/-2,2/0:2/0:47/0
- DEBUG Pixel range -> 2/1/0/0/0:21/-6:6/0:327/0:191 | 2/1/0/1/0:37/-6:6/0:327/0:143 | 2/1/0/2/0:51/-6:6/0:327/0:143 | 2/1/-2,2/0:2/0:47/0/0:327/0:143
 INFO SCT_ID::initialize_from_dictionary 
  AtlasDetectorID::initialize_from_dictionary - OK 
 INFO Initialize from dictionary cout 0
- DEBUG (Re)initialize
  AtlasDetectorID::initialize_from_dictionary - OK 
- DEBUG decode index and bit fields for each level: 
- DEBUG indet     decode 1 vals 2,4,5,7,10,11,12,13 mask/zero mask/shift/bits/offset 7   1fffffffffffffff 61 3  0  indexes 0 0 1 2 0 3 0 0 4 5 6 7 mode  enumerated  
- DEBUG trt       decode 1 vals 1:3             mask/zero mask/shift/bits/offset 3   e7ffffffffffffff 59 2  3  indexes                     mode  both_bounded  
- DEBUG bec       decode 1 vals -2,-1,1,2       mask/zero mask/shift/bits/offset 3   f9ffffffffffffff 57 2  5  indexes 0 1 0 2 3           mode  enumerated  
- DEBUG phi_mod   decode 0 vals 0:31            mask/zero mask/shift/bits/offset 1f  fe0fffffffffffff 52 5  7  indexes                     mode  both_bounded  
- DEBUG lay_wheel decode 0 vals 0:17            mask/zero mask/shift/bits/offset 1f  fff07fffffffffff 47 5  12 indexes                     mode  both_bounded  
- DEBUG str_lay   decode 0 vals 0:29            mask/zero mask/shift/bits/offset 1f  ffff83ffffffffff 42 5  17 indexes                     mode  both_bounded  
- DEBUG straw     decode 0 vals 0:28            mask/zero mask/shift/bits/offset 1f  fffffc1fffffffff 37 5  22 indexes                     mode  both_bounded  
- DEBUG  TRT_ID::initialize_from_dict Set barrel field values: -1,1
- DEBUG  TRT_ID::initialize_from_dict Found field values: InDet/TRT 2/3
- DEBUG Module range -> 2/3/-1,1/0:31/0 | 2/3/-1,1/0:31/1 | 2/3/-1,1/0:31/2 | 2/3/-2,2/0:31/0:5 | 2/3/-2,2/0:31/6:13 | 2/3/-2,2/0:31/14:17
- DEBUG TRT_ID::init_hashes  module hash max 1344
- DEBUG TRT_ID::init_hashes  straw layer hash max 19008
- DEBUG TRT_ID::init_hashes  straw hash max 424576
- DEBUG  TRT_ID::initialize_from_dict 
- DEBUG Module range -> 2/3/-1,1/0:31/0 | 2/3/-1,1/0:31/1 | 2/3/-1,1/0:31/2 | 2/3/-2,2/0:31/0:5 | 2/3/-2,2/0:31/6:13 | 2/3/-2,2/0:31/14:17
- DEBUG Straw layer range -> 2/3/-1,1/0:31/0/0 | 2/3/-1,1/0:31/0/1:4 | 2/3/-1,1/0:31/0/5:9 | 2/3/-1,1/0:31/0/10:14 | 2/3/-1,1/0:31/0/15:17 | 2/3/-1,1/0:31/0/18 | 2/3/-1,1/0:31/1/0 | 2/3/-1,1/0:31/1/1:5 | 2/3/-1,1/0:31/1/6:10 | 2/3/-1,1/0:31/1/11:15 | 2/3/-1,1/0:31/1/16:20 | 2/3/-1,1/0:31/1/21:22 | 2/3/-1,1/0:31/1/23 | 2/3/-1,1/0:31/2/0 | 2/3/-1,1/0:31/2/1:4 | 2/3/-1,1/0:31/2/5:9 | 2/3/-1,1/0:31/2/10:14 | 2/3/-1,1/0:31/2/15:19 | 2/3/-1,1/0:31/2/20:24 | 2/3/-1,1/0:31/2/25:28 | 2/3/-1,1/0:31/2/29 | 2/3/-2,2/0:31/0:5/0:15 | 2/3/-2,2/0:31/6:13/0:7 | 2/3/-2,2/0:31/14:17/0:15
- DEBUG Straw range -> 2/3/-1,1/0:31/0/0/0:14 | 2/3/-1,1/0:31/0/1:4/0:15 | 2/3/-1,1/0:31/0/5:9/0:16 | 2/3/-1,1/0:31/0/10:14/0:17 | 2/3/-1,1/0:31/0/15:17/0:18 | 2/3/-1,1/0:31/0/18/0:17 | 2/3/-1,1/0:31/1/0/0:18 | 2/3/-1,1/0:31/1/1:5/0:19 | 2/3/-1,1/0:31/1/6:10/0:20 | 2/3/-1,1/0:31/1/11:15/0:21 | 2/3/-1,1/0:31/1/16:20/0:22 | 2/3/-1,1/0:31/1/21:22/0:23 | 2/3/-1,1/0:31/1/23/0:22 | 2/3/-1,1/0:31/2/0/0:22 | 2/3/-1,1/0:31/2/1:4/0:23 | 2/3/-1,1/0:31/2/5:9/0:24 | 2/3/-1,1/0:31/2/10:14/0:25 | 2/3/-1,1/0:31/2/15:19/0:26 | 2/3/-1,1/0:31/2/20:24/0:27 | 2/3/-1,1/0:31/2/25:28/0:28 | 2/3/-1,1/0:31/2/29/0:27 | 2/3/-2,2/0:31/0:5/0:15/0:23 | 2/3/-2,2/0:31/6:13/0:7/0:23 | 2/3/-2,2/0:31/14:17/0:15/0:17
- AtlasDetectorID::initialize_from_dictionary - OK 
-CscIdHelper          INFO MultiRange built successfully to Technology: MultiRange size is 218
-CscIdHelper          INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 257
-CscIdHelper          INFO MultiRange built successfully to cscStrip: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 CscIdHelper          INFO Initializing CSC hash indices ... 
-CscIdHelper          INFO The element hash max is 32
-CscIdHelper          INFO The detector element hash max is 64
 CscIdHelper          INFO The channel hash max is 61440
 CscIdHelper          INFO Initializing CSC hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-RpcIdHelper          INFO MultiRange built successfully to doubletR: MultiRange size is 261
-RpcIdHelper          INFO MultiRange built successfully to detectorElement: DetectorElement MultiRange size is 261
-RpcIdHelper          INFO MultiRange built successfully to rpcStrip: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 RpcIdHelper          INFO Initializing RPC hash indices ... 
-RpcIdHelper          INFO The element hash max is 600
-RpcIdHelper          INFO The detector element hash max is 1122
 RpcIdHelper          INFO Initializing RPC hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-TgcIdHelper          INFO MultiRange built successfully to Technology: MultiRange size is 218
-TgcIdHelper          INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 218
-TgcIdHelper          INFO MultiRange built successfully to channel: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 TgcIdHelper          INFO Initializing TGC hash indices ... 
-TgcIdHelper          INFO The element hash max is 1578
-TgcIdHelper          INFO The detector element hash max is 1578
 TgcIdHelper          INFO Initializing TGC hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-MdtIdHelper          INFO MultiRange built successfully to Technology: MultiRange size is 218
-MdtIdHelper          INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 261
-MdtIdHelper          INFO MultiRange built successfully to tube: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 MdtIdHelper          INFO Initializing MDT hash indices ... 
-MdtIdHelper          INFO The element hash max is 1188
-MdtIdHelper          INFO The detector element hash max is 2328
 MdtIdHelper          INFO Initializing MDT hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-sTgcIdHelper         INFO MultiRange built successfully to Technology: MultiRange size is 218
-sTgcIdHelper         INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 253
-sTgcIdHelper         INFO MultiRange built successfully to channel: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 sTgcIdHelper         INFO Initializing sTGC hash indices ... 
-sTgcIdHelper         INFO The element hash max is 96
-sTgcIdHelper         INFO The detector element hash max is 192
 sTgcIdHelper         INFO Initializing sTGC hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-MmIdHelper           INFO MultiRange built successfully to Technology: MultiRange size is 218
-MmIdHelper           INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 257
-MmIdHelper           INFO MultiRange built successfully to channel: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 MmIdHelper           INFO Initializing MicroMegas hash indices ... 
-MmIdHelper           INFO The element hash max is 64
-MmIdHelper           INFO The detector element hash max is 128
 MmIdHelper           INFO Initializing MicroMegas hash indices for finding neighbors ... 
  AtlasDetectorID::initialize_from_dictionary - OK 
-ClassIDSvc           INFO  getRegistryEntries: read 379 CLIDRegistry entries for module ALL
 test1
diff --git a/MuonSpectrometer/MuonCnv/MuonEventTPCnv/share/CscStripPrepDataContainerCnv_p1_test.ref b/MuonSpectrometer/MuonCnv/MuonEventTPCnv/share/CscStripPrepDataContainerCnv_p1_test.ref
index 3f1b0d76cd201bdbb47bf8574da218b87b1d1316..eafa59f97879b9e447a9cdea019dc6bb7238a360 100644
--- a/MuonSpectrometer/MuonCnv/MuonEventTPCnv/share/CscStripPrepDataContainerCnv_p1_test.ref
+++ b/MuonSpectrometer/MuonCnv/MuonEventTPCnv/share/CscStripPrepDataContainerCnv_p1_test.ref
@@ -1,18 +1,6 @@
 
 
-Initializing Gaudi ApplicationMgr using job opts /home/emoyse/master2/build/x86_64-centos7-gcc8-opt/jobOptions/MuonEventTPCnv/MuonEventTPCnv_test.txt
-JobOptionsSvc        INFO # =======> /home/emoyse/master2/build/x86_64-centos7-gcc8-opt/jobOptions/MuonEventTPCnv/MuonEventTPCnv_test.txt
-JobOptionsSvc        INFO # (1,1): ApplicationMgr.Dlls += ["StoreGate", "CLIDComps"]
-JobOptionsSvc        INFO # (2,1): ApplicationMgr.ExtSvc += ["StoreGateSvc", "StoreGateSvc/DetectorStore", "StoreGateSvc/ConditionStore", "Athena::RCUSvc"]
-JobOptionsSvc        INFO Job options successfully read in from /home/emoyse/master2/build/x86_64-centos7-gcc8-opt/jobOptions/MuonEventTPCnv/MuonEventTPCnv_test.txt
-ApplicationMgr    SUCCESS 
-====================================================================================================================================
-                                                   Welcome to ApplicationMgr (GaudiCoreSvc v34r0)
-                                          running on pcumass4 on Wed Nov  4 09:35:01 2020
-====================================================================================================================================
-ApplicationMgr       INFO Successfully loaded modules : StoreGate, CLIDComps
 ApplicationMgr       INFO Application Manager Configured successfully
-ClassIDSvc           INFO  getRegistryEntries: read 12362 CLIDRegistry entries for module ALL
 EventLoopMgr      WARNING Unable to locate service "EventSelector" 
 EventLoopMgr      WARNING No events will be processed from external input.
 ApplicationMgr       INFO Application Manager Initialized successfully
@@ -22,22 +10,7 @@ ApplicationMgr Ready
  Volume pmdum2 not found: returning 0
  Volume pmdum3 not found: returning 0
  INFO Initialize from dictionary
- DEBUG (Re)initialize
  AtlasDetectorID::initialize_from_dictionary - OK 
- DEBUG decode index and bit fields for each level: 
- DEBUG indet          decode 1 vals 2,4,5,7,10,11,12,13 mask/zero mask/shift/bits/offset 7   1fffffffffffffff 61 3  0  indexes 0 0 1 2 0 3 0 0 4 5 6 7 mode  enumerated  
- DEBUG pixel          decode 1 vals 1:3             mask/zero mask/shift/bits/offset 3   e7ffffffffffffff 59 2  3  indexes                     mode  both_bounded  
- DEBUG bec            decode 1 vals -2,0,2          mask/zero mask/shift/bits/offset 3   f9ffffffffffffff 57 2  5  indexes 0 0 1 0 2           mode  enumerated  
- DEBUG bec_shift      decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
- DEBUG lay_disk       decode 0 vals 0:2             mask/zero mask/shift/bits/offset 3   fe7fffffffffffff 55 2  7  indexes                     mode  both_bounded  
- DEBUG lay_disk_shift decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
- DEBUG phi_mod        decode 0 vals 0:51            mask/zero mask/shift/bits/offset 3f  ff81ffffffffffff 49 6  9  indexes                     mode  both_bounded  
- DEBUG phi_mod_shift  decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
- DEBUG eta_mod        decode 1 vals -6:6            mask/zero mask/shift/bits/offset f   fffe1fffffffffff 45 4  15 indexes                     mode  both_bounded  
- DEBUG eta_mod_shift  decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
- DEBUG phi_index      decode 0 vals 0:327           mask/zero mask/shift/bits/offset 1ff ffffe00fffffffff 36 9  19 indexes                     mode  both_bounded  
- DEBUG eta_index      decode 0 vals 0:191           mask/zero mask/shift/bits/offset ff  fffffff00fffffff 28 8  28 indexes                     mode  both_bounded  
- DEBUG bec_eta_mod    decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
 indet 1 2,4,5,7,10,11,12,13 7 1fffffffffffffff 61 3 0 min/max 2 13 values  2 4 5 7 10 11 12 13 indexes  0 0 1 2 0 3 0 0 4 5 6 7 indices  8 prev  0 next  0 mode  enumerated  cont mode  none  
 pixel 1 1:3 3 e7ffffffffffffff 59 2 3 min/max 1 3 values  indexes  indices  3 prev  0 next  0 mode  both_bounded  cont mode  none  
 bec 1 -2,0,2 3 f9ffffffffffffff 57 2 5 min/max -2 2 values  -2 0 2 indexes  0 0 1 0 2 indices  3 prev  0 next  0 mode  enumerated  cont mode  none  
@@ -60,85 +33,28 @@ phi_module    4
 eta_module    5
 phi_index     6
 eta_index     7
- DEBUG PixelID::initialize_from_dict Set barrel field values: 0
- DEBUG PixelID::initialize_from_dict Set dbm field values: -999,999
- DEBUG PixelID::initialize_from_dict Found field values: InDet/Pixel 2/1
- DEBUG PixelID::init_neighbors 
- DEBUG PixelID::initialize_from_dict 
- DEBUG Wafer range -> 2/1/0/0/0:21/-6:6 | 2/1/0/1/0:37/-6:6 | 2/1/0/2/0:51/-6:6 | 2/1/-2,2/0:2/0:47/0
- DEBUG Pixel range -> 2/1/0/0/0:21/-6:6/0:327/0:191 | 2/1/0/1/0:37/-6:6/0:327/0:143 | 2/1/0/2/0:51/-6:6/0:327/0:143 | 2/1/-2,2/0:2/0:47/0/0:327/0:143
 INFO SCT_ID::initialize_from_dictionary 
  AtlasDetectorID::initialize_from_dictionary - OK 
 INFO Initialize from dictionary cout 0
- DEBUG (Re)initialize
  AtlasDetectorID::initialize_from_dictionary - OK 
- DEBUG decode index and bit fields for each level: 
- DEBUG indet     decode 1 vals 2,4,5,7,10,11,12,13 mask/zero mask/shift/bits/offset 7   1fffffffffffffff 61 3  0  indexes 0 0 1 2 0 3 0 0 4 5 6 7 mode  enumerated  
- DEBUG trt       decode 1 vals 1:3             mask/zero mask/shift/bits/offset 3   e7ffffffffffffff 59 2  3  indexes                     mode  both_bounded  
- DEBUG bec       decode 1 vals -2,-1,1,2       mask/zero mask/shift/bits/offset 3   f9ffffffffffffff 57 2  5  indexes 0 1 0 2 3           mode  enumerated  
- DEBUG phi_mod   decode 0 vals 0:31            mask/zero mask/shift/bits/offset 1f  fe0fffffffffffff 52 5  7  indexes                     mode  both_bounded  
- DEBUG lay_wheel decode 0 vals 0:17            mask/zero mask/shift/bits/offset 1f  fff07fffffffffff 47 5  12 indexes                     mode  both_bounded  
- DEBUG str_lay   decode 0 vals 0:29            mask/zero mask/shift/bits/offset 1f  ffff83ffffffffff 42 5  17 indexes                     mode  both_bounded  
- DEBUG straw     decode 0 vals 0:28            mask/zero mask/shift/bits/offset 1f  fffffc1fffffffff 37 5  22 indexes                     mode  both_bounded  
- DEBUG  TRT_ID::initialize_from_dict Set barrel field values: -1,1
- DEBUG  TRT_ID::initialize_from_dict Found field values: InDet/TRT 2/3
- DEBUG Module range -> 2/3/-1,1/0:31/0 | 2/3/-1,1/0:31/1 | 2/3/-1,1/0:31/2 | 2/3/-2,2/0:31/0:5 | 2/3/-2,2/0:31/6:13 | 2/3/-2,2/0:31/14:17
- DEBUG TRT_ID::init_hashes  module hash max 1344
- DEBUG TRT_ID::init_hashes  straw layer hash max 19008
- DEBUG TRT_ID::init_hashes  straw hash max 424576
- DEBUG  TRT_ID::initialize_from_dict 
- DEBUG Module range -> 2/3/-1,1/0:31/0 | 2/3/-1,1/0:31/1 | 2/3/-1,1/0:31/2 | 2/3/-2,2/0:31/0:5 | 2/3/-2,2/0:31/6:13 | 2/3/-2,2/0:31/14:17
- DEBUG Straw layer range -> 2/3/-1,1/0:31/0/0 | 2/3/-1,1/0:31/0/1:4 | 2/3/-1,1/0:31/0/5:9 | 2/3/-1,1/0:31/0/10:14 | 2/3/-1,1/0:31/0/15:17 | 2/3/-1,1/0:31/0/18 | 2/3/-1,1/0:31/1/0 | 2/3/-1,1/0:31/1/1:5 | 2/3/-1,1/0:31/1/6:10 | 2/3/-1,1/0:31/1/11:15 | 2/3/-1,1/0:31/1/16:20 | 2/3/-1,1/0:31/1/21:22 | 2/3/-1,1/0:31/1/23 | 2/3/-1,1/0:31/2/0 | 2/3/-1,1/0:31/2/1:4 | 2/3/-1,1/0:31/2/5:9 | 2/3/-1,1/0:31/2/10:14 | 2/3/-1,1/0:31/2/15:19 | 2/3/-1,1/0:31/2/20:24 | 2/3/-1,1/0:31/2/25:28 | 2/3/-1,1/0:31/2/29 | 2/3/-2,2/0:31/0:5/0:15 | 2/3/-2,2/0:31/6:13/0:7 | 2/3/-2,2/0:31/14:17/0:15
- DEBUG Straw range -> 2/3/-1,1/0:31/0/0/0:14 | 2/3/-1,1/0:31/0/1:4/0:15 | 2/3/-1,1/0:31/0/5:9/0:16 | 2/3/-1,1/0:31/0/10:14/0:17 | 2/3/-1,1/0:31/0/15:17/0:18 | 2/3/-1,1/0:31/0/18/0:17 | 2/3/-1,1/0:31/1/0/0:18 | 2/3/-1,1/0:31/1/1:5/0:19 | 2/3/-1,1/0:31/1/6:10/0:20 | 2/3/-1,1/0:31/1/11:15/0:21 | 2/3/-1,1/0:31/1/16:20/0:22 | 2/3/-1,1/0:31/1/21:22/0:23 | 2/3/-1,1/0:31/1/23/0:22 | 2/3/-1,1/0:31/2/0/0:22 | 2/3/-1,1/0:31/2/1:4/0:23 | 2/3/-1,1/0:31/2/5:9/0:24 | 2/3/-1,1/0:31/2/10:14/0:25 | 2/3/-1,1/0:31/2/15:19/0:26 | 2/3/-1,1/0:31/2/20:24/0:27 | 2/3/-1,1/0:31/2/25:28/0:28 | 2/3/-1,1/0:31/2/29/0:27 | 2/3/-2,2/0:31/0:5/0:15/0:23 | 2/3/-2,2/0:31/6:13/0:7/0:23 | 2/3/-2,2/0:31/14:17/0:15/0:17
- AtlasDetectorID::initialize_from_dictionary - OK 
-CscIdHelper          INFO MultiRange built successfully to Technology: MultiRange size is 218
-CscIdHelper          INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 257
-CscIdHelper          INFO MultiRange built successfully to cscStrip: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 CscIdHelper          INFO Initializing CSC hash indices ... 
-CscIdHelper          INFO The element hash max is 32
-CscIdHelper          INFO The detector element hash max is 64
 CscIdHelper          INFO The channel hash max is 61440
 CscIdHelper          INFO Initializing CSC hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-RpcIdHelper          INFO MultiRange built successfully to doubletR: MultiRange size is 261
-RpcIdHelper          INFO MultiRange built successfully to detectorElement: DetectorElement MultiRange size is 261
-RpcIdHelper          INFO MultiRange built successfully to rpcStrip: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 RpcIdHelper          INFO Initializing RPC hash indices ... 
-RpcIdHelper          INFO The element hash max is 600
-RpcIdHelper          INFO The detector element hash max is 1122
 RpcIdHelper          INFO Initializing RPC hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-TgcIdHelper          INFO MultiRange built successfully to Technology: MultiRange size is 218
-TgcIdHelper          INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 218
-TgcIdHelper          INFO MultiRange built successfully to channel: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 TgcIdHelper          INFO Initializing TGC hash indices ... 
-TgcIdHelper          INFO The element hash max is 1578
-TgcIdHelper          INFO The detector element hash max is 1578
 TgcIdHelper          INFO Initializing TGC hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-MdtIdHelper          INFO MultiRange built successfully to Technology: MultiRange size is 218
-MdtIdHelper          INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 261
-MdtIdHelper          INFO MultiRange built successfully to tube: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 MdtIdHelper          INFO Initializing MDT hash indices ... 
-MdtIdHelper          INFO The element hash max is 1188
-MdtIdHelper          INFO The detector element hash max is 2328
 MdtIdHelper          INFO Initializing MDT hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-sTgcIdHelper         INFO MultiRange built successfully to Technology: MultiRange size is 218
-sTgcIdHelper         INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 253
-sTgcIdHelper         INFO MultiRange built successfully to channel: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 sTgcIdHelper         INFO Initializing sTGC hash indices ... 
-sTgcIdHelper         INFO The element hash max is 96
-sTgcIdHelper         INFO The detector element hash max is 192
 sTgcIdHelper         INFO Initializing sTGC hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-MmIdHelper           INFO MultiRange built successfully to Technology: MultiRange size is 218
-MmIdHelper           INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 257
-MmIdHelper           INFO MultiRange built successfully to channel: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 MmIdHelper           INFO Initializing MicroMegas hash indices ... 
-MmIdHelper           INFO The element hash max is 64
-MmIdHelper           INFO The detector element hash max is 128
 MmIdHelper           INFO Initializing MicroMegas hash indices for finding neighbors ... 
  AtlasDetectorID::initialize_from_dictionary - OK 
-ClassIDSvc           INFO  getRegistryEntries: read 379 CLIDRegistry entries for module ALL
 test1
diff --git a/MuonSpectrometer/MuonCnv/MuonEventTPCnv/share/MMPrepDataContainerCnv_p1_test.ref b/MuonSpectrometer/MuonCnv/MuonEventTPCnv/share/MMPrepDataContainerCnv_p1_test.ref
index 3cd171c475c5b6de76afa2ab29a7a99fabb39915..eafa59f97879b9e447a9cdea019dc6bb7238a360 100644
--- a/MuonSpectrometer/MuonCnv/MuonEventTPCnv/share/MMPrepDataContainerCnv_p1_test.ref
+++ b/MuonSpectrometer/MuonCnv/MuonEventTPCnv/share/MMPrepDataContainerCnv_p1_test.ref
@@ -1,18 +1,6 @@
 
 
-Initializing Gaudi ApplicationMgr using job opts /home/emoyse/master2/build/x86_64-centos7-gcc8-opt/jobOptions/MuonEventTPCnv/MuonEventTPCnv_test.txt
-JobOptionsSvc        INFO # =======> /home/emoyse/master2/build/x86_64-centos7-gcc8-opt/jobOptions/MuonEventTPCnv/MuonEventTPCnv_test.txt
-JobOptionsSvc        INFO # (1,1): ApplicationMgr.Dlls += ["StoreGate", "CLIDComps"]
-JobOptionsSvc        INFO # (2,1): ApplicationMgr.ExtSvc += ["StoreGateSvc", "StoreGateSvc/DetectorStore", "StoreGateSvc/ConditionStore", "Athena::RCUSvc"]
-JobOptionsSvc        INFO Job options successfully read in from /home/emoyse/master2/build/x86_64-centos7-gcc8-opt/jobOptions/MuonEventTPCnv/MuonEventTPCnv_test.txt
-ApplicationMgr    SUCCESS 
-====================================================================================================================================
-                                                   Welcome to ApplicationMgr (GaudiCoreSvc v34r0)
-                                          running on pcumass4 on Wed Nov  4 09:35:20 2020
-====================================================================================================================================
-ApplicationMgr       INFO Successfully loaded modules : StoreGate, CLIDComps
 ApplicationMgr       INFO Application Manager Configured successfully
-ClassIDSvc           INFO  getRegistryEntries: read 12360 CLIDRegistry entries for module ALL
 EventLoopMgr      WARNING Unable to locate service "EventSelector" 
 EventLoopMgr      WARNING No events will be processed from external input.
 ApplicationMgr       INFO Application Manager Initialized successfully
@@ -22,22 +10,7 @@ ApplicationMgr Ready
  Volume pmdum2 not found: returning 0
  Volume pmdum3 not found: returning 0
  INFO Initialize from dictionary
- DEBUG (Re)initialize
  AtlasDetectorID::initialize_from_dictionary - OK 
- DEBUG decode index and bit fields for each level: 
- DEBUG indet          decode 1 vals 2,4,5,7,10,11,12,13 mask/zero mask/shift/bits/offset 7   1fffffffffffffff 61 3  0  indexes 0 0 1 2 0 3 0 0 4 5 6 7 mode  enumerated  
- DEBUG pixel          decode 1 vals 1:3             mask/zero mask/shift/bits/offset 3   e7ffffffffffffff 59 2  3  indexes                     mode  both_bounded  
- DEBUG bec            decode 1 vals -2,0,2          mask/zero mask/shift/bits/offset 3   f9ffffffffffffff 57 2  5  indexes 0 0 1 0 2           mode  enumerated  
- DEBUG bec_shift      decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
- DEBUG lay_disk       decode 0 vals 0:2             mask/zero mask/shift/bits/offset 3   fe7fffffffffffff 55 2  7  indexes                     mode  both_bounded  
- DEBUG lay_disk_shift decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
- DEBUG phi_mod        decode 0 vals 0:51            mask/zero mask/shift/bits/offset 3f  ff81ffffffffffff 49 6  9  indexes                     mode  both_bounded  
- DEBUG phi_mod_shift  decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
- DEBUG eta_mod        decode 1 vals -6:6            mask/zero mask/shift/bits/offset f   fffe1fffffffffff 45 4  15 indexes                     mode  both_bounded  
- DEBUG eta_mod_shift  decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
- DEBUG phi_index      decode 0 vals 0:327           mask/zero mask/shift/bits/offset 1ff ffffe00fffffffff 36 9  19 indexes                     mode  both_bounded  
- DEBUG eta_index      decode 0 vals 0:191           mask/zero mask/shift/bits/offset ff  fffffff00fffffff 28 8  28 indexes                     mode  both_bounded  
- DEBUG bec_eta_mod    decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
 indet 1 2,4,5,7,10,11,12,13 7 1fffffffffffffff 61 3 0 min/max 2 13 values  2 4 5 7 10 11 12 13 indexes  0 0 1 2 0 3 0 0 4 5 6 7 indices  8 prev  0 next  0 mode  enumerated  cont mode  none  
 pixel 1 1:3 3 e7ffffffffffffff 59 2 3 min/max 1 3 values  indexes  indices  3 prev  0 next  0 mode  both_bounded  cont mode  none  
 bec 1 -2,0,2 3 f9ffffffffffffff 57 2 5 min/max -2 2 values  -2 0 2 indexes  0 0 1 0 2 indices  3 prev  0 next  0 mode  enumerated  cont mode  none  
@@ -60,85 +33,28 @@ phi_module    4
 eta_module    5
 phi_index     6
 eta_index     7
- DEBUG PixelID::initialize_from_dict Set barrel field values: 0
- DEBUG PixelID::initialize_from_dict Set dbm field values: -999,999
- DEBUG PixelID::initialize_from_dict Found field values: InDet/Pixel 2/1
- DEBUG PixelID::init_neighbors 
- DEBUG PixelID::initialize_from_dict 
- DEBUG Wafer range -> 2/1/0/0/0:21/-6:6 | 2/1/0/1/0:37/-6:6 | 2/1/0/2/0:51/-6:6 | 2/1/-2,2/0:2/0:47/0
- DEBUG Pixel range -> 2/1/0/0/0:21/-6:6/0:327/0:191 | 2/1/0/1/0:37/-6:6/0:327/0:143 | 2/1/0/2/0:51/-6:6/0:327/0:143 | 2/1/-2,2/0:2/0:47/0/0:327/0:143
 INFO SCT_ID::initialize_from_dictionary 
  AtlasDetectorID::initialize_from_dictionary - OK 
 INFO Initialize from dictionary cout 0
- DEBUG (Re)initialize
  AtlasDetectorID::initialize_from_dictionary - OK 
- DEBUG decode index and bit fields for each level: 
- DEBUG indet     decode 1 vals 2,4,5,7,10,11,12,13 mask/zero mask/shift/bits/offset 7   1fffffffffffffff 61 3  0  indexes 0 0 1 2 0 3 0 0 4 5 6 7 mode  enumerated  
- DEBUG trt       decode 1 vals 1:3             mask/zero mask/shift/bits/offset 3   e7ffffffffffffff 59 2  3  indexes                     mode  both_bounded  
- DEBUG bec       decode 1 vals -2,-1,1,2       mask/zero mask/shift/bits/offset 3   f9ffffffffffffff 57 2  5  indexes 0 1 0 2 3           mode  enumerated  
- DEBUG phi_mod   decode 0 vals 0:31            mask/zero mask/shift/bits/offset 1f  fe0fffffffffffff 52 5  7  indexes                     mode  both_bounded  
- DEBUG lay_wheel decode 0 vals 0:17            mask/zero mask/shift/bits/offset 1f  fff07fffffffffff 47 5  12 indexes                     mode  both_bounded  
- DEBUG str_lay   decode 0 vals 0:29            mask/zero mask/shift/bits/offset 1f  ffff83ffffffffff 42 5  17 indexes                     mode  both_bounded  
- DEBUG straw     decode 0 vals 0:28            mask/zero mask/shift/bits/offset 1f  fffffc1fffffffff 37 5  22 indexes                     mode  both_bounded  
- DEBUG  TRT_ID::initialize_from_dict Set barrel field values: -1,1
- DEBUG  TRT_ID::initialize_from_dict Found field values: InDet/TRT 2/3
- DEBUG Module range -> 2/3/-1,1/0:31/0 | 2/3/-1,1/0:31/1 | 2/3/-1,1/0:31/2 | 2/3/-2,2/0:31/0:5 | 2/3/-2,2/0:31/6:13 | 2/3/-2,2/0:31/14:17
- DEBUG TRT_ID::init_hashes  module hash max 1344
- DEBUG TRT_ID::init_hashes  straw layer hash max 19008
- DEBUG TRT_ID::init_hashes  straw hash max 424576
- DEBUG  TRT_ID::initialize_from_dict 
- DEBUG Module range -> 2/3/-1,1/0:31/0 | 2/3/-1,1/0:31/1 | 2/3/-1,1/0:31/2 | 2/3/-2,2/0:31/0:5 | 2/3/-2,2/0:31/6:13 | 2/3/-2,2/0:31/14:17
- DEBUG Straw layer range -> 2/3/-1,1/0:31/0/0 | 2/3/-1,1/0:31/0/1:4 | 2/3/-1,1/0:31/0/5:9 | 2/3/-1,1/0:31/0/10:14 | 2/3/-1,1/0:31/0/15:17 | 2/3/-1,1/0:31/0/18 | 2/3/-1,1/0:31/1/0 | 2/3/-1,1/0:31/1/1:5 | 2/3/-1,1/0:31/1/6:10 | 2/3/-1,1/0:31/1/11:15 | 2/3/-1,1/0:31/1/16:20 | 2/3/-1,1/0:31/1/21:22 | 2/3/-1,1/0:31/1/23 | 2/3/-1,1/0:31/2/0 | 2/3/-1,1/0:31/2/1:4 | 2/3/-1,1/0:31/2/5:9 | 2/3/-1,1/0:31/2/10:14 | 2/3/-1,1/0:31/2/15:19 | 2/3/-1,1/0:31/2/20:24 | 2/3/-1,1/0:31/2/25:28 | 2/3/-1,1/0:31/2/29 | 2/3/-2,2/0:31/0:5/0:15 | 2/3/-2,2/0:31/6:13/0:7 | 2/3/-2,2/0:31/14:17/0:15
- DEBUG Straw range -> 2/3/-1,1/0:31/0/0/0:14 | 2/3/-1,1/0:31/0/1:4/0:15 | 2/3/-1,1/0:31/0/5:9/0:16 | 2/3/-1,1/0:31/0/10:14/0:17 | 2/3/-1,1/0:31/0/15:17/0:18 | 2/3/-1,1/0:31/0/18/0:17 | 2/3/-1,1/0:31/1/0/0:18 | 2/3/-1,1/0:31/1/1:5/0:19 | 2/3/-1,1/0:31/1/6:10/0:20 | 2/3/-1,1/0:31/1/11:15/0:21 | 2/3/-1,1/0:31/1/16:20/0:22 | 2/3/-1,1/0:31/1/21:22/0:23 | 2/3/-1,1/0:31/1/23/0:22 | 2/3/-1,1/0:31/2/0/0:22 | 2/3/-1,1/0:31/2/1:4/0:23 | 2/3/-1,1/0:31/2/5:9/0:24 | 2/3/-1,1/0:31/2/10:14/0:25 | 2/3/-1,1/0:31/2/15:19/0:26 | 2/3/-1,1/0:31/2/20:24/0:27 | 2/3/-1,1/0:31/2/25:28/0:28 | 2/3/-1,1/0:31/2/29/0:27 | 2/3/-2,2/0:31/0:5/0:15/0:23 | 2/3/-2,2/0:31/6:13/0:7/0:23 | 2/3/-2,2/0:31/14:17/0:15/0:17
- AtlasDetectorID::initialize_from_dictionary - OK 
-CscIdHelper          INFO MultiRange built successfully to Technology: MultiRange size is 218
-CscIdHelper          INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 257
-CscIdHelper          INFO MultiRange built successfully to cscStrip: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 CscIdHelper          INFO Initializing CSC hash indices ... 
-CscIdHelper          INFO The element hash max is 32
-CscIdHelper          INFO The detector element hash max is 64
 CscIdHelper          INFO The channel hash max is 61440
 CscIdHelper          INFO Initializing CSC hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-RpcIdHelper          INFO MultiRange built successfully to doubletR: MultiRange size is 261
-RpcIdHelper          INFO MultiRange built successfully to detectorElement: DetectorElement MultiRange size is 261
-RpcIdHelper          INFO MultiRange built successfully to rpcStrip: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 RpcIdHelper          INFO Initializing RPC hash indices ... 
-RpcIdHelper          INFO The element hash max is 600
-RpcIdHelper          INFO The detector element hash max is 1122
 RpcIdHelper          INFO Initializing RPC hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-TgcIdHelper          INFO MultiRange built successfully to Technology: MultiRange size is 218
-TgcIdHelper          INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 218
-TgcIdHelper          INFO MultiRange built successfully to channel: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 TgcIdHelper          INFO Initializing TGC hash indices ... 
-TgcIdHelper          INFO The element hash max is 1578
-TgcIdHelper          INFO The detector element hash max is 1578
 TgcIdHelper          INFO Initializing TGC hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-MdtIdHelper          INFO MultiRange built successfully to Technology: MultiRange size is 218
-MdtIdHelper          INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 261
-MdtIdHelper          INFO MultiRange built successfully to tube: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 MdtIdHelper          INFO Initializing MDT hash indices ... 
-MdtIdHelper          INFO The element hash max is 1188
-MdtIdHelper          INFO The detector element hash max is 2328
 MdtIdHelper          INFO Initializing MDT hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-sTgcIdHelper         INFO MultiRange built successfully to Technology: MultiRange size is 218
-sTgcIdHelper         INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 253
-sTgcIdHelper         INFO MultiRange built successfully to channel: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 sTgcIdHelper         INFO Initializing sTGC hash indices ... 
-sTgcIdHelper         INFO The element hash max is 96
-sTgcIdHelper         INFO The detector element hash max is 192
 sTgcIdHelper         INFO Initializing sTGC hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-MmIdHelper           INFO MultiRange built successfully to Technology: MultiRange size is 218
-MmIdHelper           INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 257
-MmIdHelper           INFO MultiRange built successfully to channel: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 MmIdHelper           INFO Initializing MicroMegas hash indices ... 
-MmIdHelper           INFO The element hash max is 64
-MmIdHelper           INFO The detector element hash max is 128
 MmIdHelper           INFO Initializing MicroMegas hash indices for finding neighbors ... 
  AtlasDetectorID::initialize_from_dictionary - OK 
-ClassIDSvc           INFO  getRegistryEntries: read 379 CLIDRegistry entries for module ALL
 test1
diff --git a/MuonSpectrometer/MuonCnv/MuonEventTPCnv/share/MM_ClusterOnTrackCnv_p1_test.ref b/MuonSpectrometer/MuonCnv/MuonEventTPCnv/share/MM_ClusterOnTrackCnv_p1_test.ref
index bc750a9634ec0a785026b427cfe48233001a0f2d..eafa59f97879b9e447a9cdea019dc6bb7238a360 100644
--- a/MuonSpectrometer/MuonCnv/MuonEventTPCnv/share/MM_ClusterOnTrackCnv_p1_test.ref
+++ b/MuonSpectrometer/MuonCnv/MuonEventTPCnv/share/MM_ClusterOnTrackCnv_p1_test.ref
@@ -1,18 +1,6 @@
 
 
-Initializing Gaudi ApplicationMgr using job opts /home/emoyse/master2/build/x86_64-centos7-gcc8-opt/jobOptions/MuonEventTPCnv/MuonEventTPCnv_test.txt
-JobOptionsSvc        INFO # =======> /home/emoyse/master2/build/x86_64-centos7-gcc8-opt/jobOptions/MuonEventTPCnv/MuonEventTPCnv_test.txt
-JobOptionsSvc        INFO # (1,1): ApplicationMgr.Dlls += ["StoreGate", "CLIDComps"]
-JobOptionsSvc        INFO # (2,1): ApplicationMgr.ExtSvc += ["StoreGateSvc", "StoreGateSvc/DetectorStore", "StoreGateSvc/ConditionStore", "Athena::RCUSvc"]
-JobOptionsSvc        INFO Job options successfully read in from /home/emoyse/master2/build/x86_64-centos7-gcc8-opt/jobOptions/MuonEventTPCnv/MuonEventTPCnv_test.txt
-ApplicationMgr    SUCCESS 
-====================================================================================================================================
-                                                   Welcome to ApplicationMgr (GaudiCoreSvc v34r0)
-                                          running on pcumass4 on Wed Nov  4 09:34:33 2020
-====================================================================================================================================
-ApplicationMgr       INFO Successfully loaded modules : StoreGate, CLIDComps
 ApplicationMgr       INFO Application Manager Configured successfully
-ClassIDSvc           INFO  getRegistryEntries: read 12361 CLIDRegistry entries for module ALL
 EventLoopMgr      WARNING Unable to locate service "EventSelector" 
 EventLoopMgr      WARNING No events will be processed from external input.
 ApplicationMgr       INFO Application Manager Initialized successfully
@@ -22,22 +10,7 @@ ApplicationMgr Ready
  Volume pmdum2 not found: returning 0
  Volume pmdum3 not found: returning 0
  INFO Initialize from dictionary
- DEBUG (Re)initialize
  AtlasDetectorID::initialize_from_dictionary - OK 
- DEBUG decode index and bit fields for each level: 
- DEBUG indet          decode 1 vals 2,4,5,7,10,11,12,13 mask/zero mask/shift/bits/offset 7   1fffffffffffffff 61 3  0  indexes 0 0 1 2 0 3 0 0 4 5 6 7 mode  enumerated  
- DEBUG pixel          decode 1 vals 1:3             mask/zero mask/shift/bits/offset 3   e7ffffffffffffff 59 2  3  indexes                     mode  both_bounded  
- DEBUG bec            decode 1 vals -2,0,2          mask/zero mask/shift/bits/offset 3   f9ffffffffffffff 57 2  5  indexes 0 0 1 0 2           mode  enumerated  
- DEBUG bec_shift      decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
- DEBUG lay_disk       decode 0 vals 0:2             mask/zero mask/shift/bits/offset 3   fe7fffffffffffff 55 2  7  indexes                     mode  both_bounded  
- DEBUG lay_disk_shift decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
- DEBUG phi_mod        decode 0 vals 0:51            mask/zero mask/shift/bits/offset 3f  ff81ffffffffffff 49 6  9  indexes                     mode  both_bounded  
- DEBUG phi_mod_shift  decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
- DEBUG eta_mod        decode 1 vals -6:6            mask/zero mask/shift/bits/offset f   fffe1fffffffffff 45 4  15 indexes                     mode  both_bounded  
- DEBUG eta_mod_shift  decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
- DEBUG phi_index      decode 0 vals 0:327           mask/zero mask/shift/bits/offset 1ff ffffe00fffffffff 36 9  19 indexes                     mode  both_bounded  
- DEBUG eta_index      decode 0 vals 0:191           mask/zero mask/shift/bits/offset ff  fffffff00fffffff 28 8  28 indexes                     mode  both_bounded  
- DEBUG bec_eta_mod    decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
 indet 1 2,4,5,7,10,11,12,13 7 1fffffffffffffff 61 3 0 min/max 2 13 values  2 4 5 7 10 11 12 13 indexes  0 0 1 2 0 3 0 0 4 5 6 7 indices  8 prev  0 next  0 mode  enumerated  cont mode  none  
 pixel 1 1:3 3 e7ffffffffffffff 59 2 3 min/max 1 3 values  indexes  indices  3 prev  0 next  0 mode  both_bounded  cont mode  none  
 bec 1 -2,0,2 3 f9ffffffffffffff 57 2 5 min/max -2 2 values  -2 0 2 indexes  0 0 1 0 2 indices  3 prev  0 next  0 mode  enumerated  cont mode  none  
@@ -60,87 +33,28 @@ phi_module    4
 eta_module    5
 phi_index     6
 eta_index     7
- DEBUG PixelID::initialize_from_dict Set barrel field values: 0
- DEBUG PixelID::initialize_from_dict Set dbm field values: -999,999
- DEBUG PixelID::initialize_from_dict Found field values: InDet/Pixel 2/1
- DEBUG PixelID::init_neighbors 
- DEBUG PixelID::initialize_from_dict 
- DEBUG Wafer range -> 2/1/0/0/0:21/-6:6 | 2/1/0/1/0:37/-6:6 | 2/1/0/2/0:51/-6:6 | 2/1/-2,2/0:2/0:47/0
- DEBUG Pixel range -> 2/1/0/0/0:21/-6:6/0:327/0:191 | 2/1/0/1/0:37/-6:6/0:327/0:143 | 2/1/0/2/0:51/-6:6/0:327/0:143 | 2/1/-2,2/0:2/0:47/0/0:327/0:143
 INFO SCT_ID::initialize_from_dictionary 
  AtlasDetectorID::initialize_from_dictionary - OK 
 INFO Initialize from dictionary cout 0
- DEBUG (Re)initialize
  AtlasDetectorID::initialize_from_dictionary - OK 
- DEBUG decode index and bit fields for each level: 
- DEBUG indet     decode 1 vals 2,4,5,7,10,11,12,13 mask/zero mask/shift/bits/offset 7   1fffffffffffffff 61 3  0  indexes 0 0 1 2 0 3 0 0 4 5 6 7 mode  enumerated  
- DEBUG trt       decode 1 vals 1:3             mask/zero mask/shift/bits/offset 3   e7ffffffffffffff 59 2  3  indexes                     mode  both_bounded  
- DEBUG bec       decode 1 vals -2,-1,1,2       mask/zero mask/shift/bits/offset 3   f9ffffffffffffff 57 2  5  indexes 0 1 0 2 3           mode  enumerated  
- DEBUG phi_mod   decode 0 vals 0:31            mask/zero mask/shift/bits/offset 1f  fe0fffffffffffff 52 5  7  indexes                     mode  both_bounded  
- DEBUG lay_wheel decode 0 vals 0:17            mask/zero mask/shift/bits/offset 1f  fff07fffffffffff 47 5  12 indexes                     mode  both_bounded  
- DEBUG str_lay   decode 0 vals 0:29            mask/zero mask/shift/bits/offset 1f  ffff83ffffffffff 42 5  17 indexes                     mode  both_bounded  
- DEBUG straw     decode 0 vals 0:28            mask/zero mask/shift/bits/offset 1f  fffffc1fffffffff 37 5  22 indexes                     mode  both_bounded  
- DEBUG  TRT_ID::initialize_from_dict Set barrel field values: -1,1
- DEBUG  TRT_ID::initialize_from_dict Found field values: InDet/TRT 2/3
- DEBUG Module range -> 2/3/-1,1/0:31/0 | 2/3/-1,1/0:31/1 | 2/3/-1,1/0:31/2 | 2/3/-2,2/0:31/0:5 | 2/3/-2,2/0:31/6:13 | 2/3/-2,2/0:31/14:17
- DEBUG TRT_ID::init_hashes  module hash max 1344
- DEBUG TRT_ID::init_hashes  straw layer hash max 19008
- DEBUG TRT_ID::init_hashes  straw hash max 424576
- DEBUG  TRT_ID::initialize_from_dict 
- DEBUG Module range -> 2/3/-1,1/0:31/0 | 2/3/-1,1/0:31/1 | 2/3/-1,1/0:31/2 | 2/3/-2,2/0:31/0:5 | 2/3/-2,2/0:31/6:13 | 2/3/-2,2/0:31/14:17
- DEBUG Straw layer range -> 2/3/-1,1/0:31/0/0 | 2/3/-1,1/0:31/0/1:4 | 2/3/-1,1/0:31/0/5:9 | 2/3/-1,1/0:31/0/10:14 | 2/3/-1,1/0:31/0/15:17 | 2/3/-1,1/0:31/0/18 | 2/3/-1,1/0:31/1/0 | 2/3/-1,1/0:31/1/1:5 | 2/3/-1,1/0:31/1/6:10 | 2/3/-1,1/0:31/1/11:15 | 2/3/-1,1/0:31/1/16:20 | 2/3/-1,1/0:31/1/21:22 | 2/3/-1,1/0:31/1/23 | 2/3/-1,1/0:31/2/0 | 2/3/-1,1/0:31/2/1:4 | 2/3/-1,1/0:31/2/5:9 | 2/3/-1,1/0:31/2/10:14 | 2/3/-1,1/0:31/2/15:19 | 2/3/-1,1/0:31/2/20:24 | 2/3/-1,1/0:31/2/25:28 | 2/3/-1,1/0:31/2/29 | 2/3/-2,2/0:31/0:5/0:15 | 2/3/-2,2/0:31/6:13/0:7 | 2/3/-2,2/0:31/14:17/0:15
- DEBUG Straw range -> 2/3/-1,1/0:31/0/0/0:14 | 2/3/-1,1/0:31/0/1:4/0:15 | 2/3/-1,1/0:31/0/5:9/0:16 | 2/3/-1,1/0:31/0/10:14/0:17 | 2/3/-1,1/0:31/0/15:17/0:18 | 2/3/-1,1/0:31/0/18/0:17 | 2/3/-1,1/0:31/1/0/0:18 | 2/3/-1,1/0:31/1/1:5/0:19 | 2/3/-1,1/0:31/1/6:10/0:20 | 2/3/-1,1/0:31/1/11:15/0:21 | 2/3/-1,1/0:31/1/16:20/0:22 | 2/3/-1,1/0:31/1/21:22/0:23 | 2/3/-1,1/0:31/1/23/0:22 | 2/3/-1,1/0:31/2/0/0:22 | 2/3/-1,1/0:31/2/1:4/0:23 | 2/3/-1,1/0:31/2/5:9/0:24 | 2/3/-1,1/0:31/2/10:14/0:25 | 2/3/-1,1/0:31/2/15:19/0:26 | 2/3/-1,1/0:31/2/20:24/0:27 | 2/3/-1,1/0:31/2/25:28/0:28 | 2/3/-1,1/0:31/2/29/0:27 | 2/3/-2,2/0:31/0:5/0:15/0:23 | 2/3/-2,2/0:31/6:13/0:7/0:23 | 2/3/-2,2/0:31/14:17/0:15/0:17
- AtlasDetectorID::initialize_from_dictionary - OK 
-CscIdHelper          INFO MultiRange built successfully to Technology: MultiRange size is 218
-CscIdHelper          INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 257
-CscIdHelper          INFO MultiRange built successfully to cscStrip: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 CscIdHelper          INFO Initializing CSC hash indices ... 
-CscIdHelper          INFO The element hash max is 32
-CscIdHelper          INFO The detector element hash max is 64
 CscIdHelper          INFO The channel hash max is 61440
 CscIdHelper          INFO Initializing CSC hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-RpcIdHelper          INFO MultiRange built successfully to doubletR: MultiRange size is 261
-RpcIdHelper          INFO MultiRange built successfully to detectorElement: DetectorElement MultiRange size is 261
-RpcIdHelper          INFO MultiRange built successfully to rpcStrip: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 RpcIdHelper          INFO Initializing RPC hash indices ... 
-RpcIdHelper          INFO The element hash max is 600
-RpcIdHelper          INFO The detector element hash max is 1122
 RpcIdHelper          INFO Initializing RPC hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-TgcIdHelper          INFO MultiRange built successfully to Technology: MultiRange size is 218
-TgcIdHelper          INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 218
-TgcIdHelper          INFO MultiRange built successfully to channel: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 TgcIdHelper          INFO Initializing TGC hash indices ... 
-TgcIdHelper          INFO The element hash max is 1578
-TgcIdHelper          INFO The detector element hash max is 1578
 TgcIdHelper          INFO Initializing TGC hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-MdtIdHelper          INFO MultiRange built successfully to Technology: MultiRange size is 218
-MdtIdHelper          INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 261
-MdtIdHelper          INFO MultiRange built successfully to tube: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 MdtIdHelper          INFO Initializing MDT hash indices ... 
-MdtIdHelper          INFO The element hash max is 1188
-MdtIdHelper          INFO The detector element hash max is 2328
 MdtIdHelper          INFO Initializing MDT hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-sTgcIdHelper         INFO MultiRange built successfully to Technology: MultiRange size is 218
-sTgcIdHelper         INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 253
-sTgcIdHelper         INFO MultiRange built successfully to channel: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 sTgcIdHelper         INFO Initializing sTGC hash indices ... 
-sTgcIdHelper         INFO The element hash max is 96
-sTgcIdHelper         INFO The detector element hash max is 192
 sTgcIdHelper         INFO Initializing sTGC hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-MmIdHelper           INFO MultiRange built successfully to Technology: MultiRange size is 218
-MmIdHelper           INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 257
-MmIdHelper           INFO MultiRange built successfully to channel: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 MmIdHelper           INFO Initializing MicroMegas hash indices ... 
-MmIdHelper           INFO The element hash max is 64
-MmIdHelper           INFO The detector element hash max is 128
 MmIdHelper           INFO Initializing MicroMegas hash indices for finding neighbors ... 
  AtlasDetectorID::initialize_from_dictionary - OK 
-ClassIDSvc           INFO  getRegistryEntries: read 379 CLIDRegistry entries for module ALL
 test1
-ClassIDSvc           INFO  getRegistryEntries: read 320 CLIDRegistry entries for module ALL
-ClassIDSvc           INFO  getRegistryEntries: read 170 CLIDRegistry entries for module ALL
diff --git a/MuonSpectrometer/MuonCnv/MuonEventTPCnv/share/MM_DigitContainerCnv_p1_test.ref b/MuonSpectrometer/MuonCnv/MuonEventTPCnv/share/MM_DigitContainerCnv_p1_test.ref
index 2585fcf71181472422a23a067e84aea2246af506..eafa59f97879b9e447a9cdea019dc6bb7238a360 100644
--- a/MuonSpectrometer/MuonCnv/MuonEventTPCnv/share/MM_DigitContainerCnv_p1_test.ref
+++ b/MuonSpectrometer/MuonCnv/MuonEventTPCnv/share/MM_DigitContainerCnv_p1_test.ref
@@ -1,18 +1,6 @@
 
 
-Initializing Gaudi ApplicationMgr using job opts /home/emoyse/master2/build/x86_64-centos7-gcc8-opt/jobOptions/MuonEventTPCnv/MuonEventTPCnv_test.txt
-JobOptionsSvc        INFO # =======> /home/emoyse/master2/build/x86_64-centos7-gcc8-opt/jobOptions/MuonEventTPCnv/MuonEventTPCnv_test.txt
-JobOptionsSvc        INFO # (1,1): ApplicationMgr.Dlls += ["StoreGate", "CLIDComps"]
-JobOptionsSvc        INFO # (2,1): ApplicationMgr.ExtSvc += ["StoreGateSvc", "StoreGateSvc/DetectorStore", "StoreGateSvc/ConditionStore", "Athena::RCUSvc"]
-JobOptionsSvc        INFO Job options successfully read in from /home/emoyse/master2/build/x86_64-centos7-gcc8-opt/jobOptions/MuonEventTPCnv/MuonEventTPCnv_test.txt
-ApplicationMgr    SUCCESS 
-====================================================================================================================================
-                                                   Welcome to ApplicationMgr (GaudiCoreSvc v34r0)
-                                          running on pcumass4 on Wed Nov  4 09:35:35 2020
-====================================================================================================================================
-ApplicationMgr       INFO Successfully loaded modules : StoreGate, CLIDComps
 ApplicationMgr       INFO Application Manager Configured successfully
-ClassIDSvc           INFO  getRegistryEntries: read 12351 CLIDRegistry entries for module ALL
 EventLoopMgr      WARNING Unable to locate service "EventSelector" 
 EventLoopMgr      WARNING No events will be processed from external input.
 ApplicationMgr       INFO Application Manager Initialized successfully
@@ -22,22 +10,7 @@ ApplicationMgr Ready
  Volume pmdum2 not found: returning 0
  Volume pmdum3 not found: returning 0
  INFO Initialize from dictionary
- DEBUG (Re)initialize
  AtlasDetectorID::initialize_from_dictionary - OK 
- DEBUG decode index and bit fields for each level: 
- DEBUG indet          decode 1 vals 2,4,5,7,10,11,12,13 mask/zero mask/shift/bits/offset 7   1fffffffffffffff 61 3  0  indexes 0 0 1 2 0 3 0 0 4 5 6 7 mode  enumerated  
- DEBUG pixel          decode 1 vals 1:3             mask/zero mask/shift/bits/offset 3   e7ffffffffffffff 59 2  3  indexes                     mode  both_bounded  
- DEBUG bec            decode 1 vals -2,0,2          mask/zero mask/shift/bits/offset 3   f9ffffffffffffff 57 2  5  indexes 0 0 1 0 2           mode  enumerated  
- DEBUG bec_shift      decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
- DEBUG lay_disk       decode 0 vals 0:2             mask/zero mask/shift/bits/offset 3   fe7fffffffffffff 55 2  7  indexes                     mode  both_bounded  
- DEBUG lay_disk_shift decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
- DEBUG phi_mod        decode 0 vals 0:51            mask/zero mask/shift/bits/offset 3f  ff81ffffffffffff 49 6  9  indexes                     mode  both_bounded  
- DEBUG phi_mod_shift  decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
- DEBUG eta_mod        decode 1 vals -6:6            mask/zero mask/shift/bits/offset f   fffe1fffffffffff 45 4  15 indexes                     mode  both_bounded  
- DEBUG eta_mod_shift  decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
- DEBUG phi_index      decode 0 vals 0:327           mask/zero mask/shift/bits/offset 1ff ffffe00fffffffff 36 9  19 indexes                     mode  both_bounded  
- DEBUG eta_index      decode 0 vals 0:191           mask/zero mask/shift/bits/offset ff  fffffff00fffffff 28 8  28 indexes                     mode  both_bounded  
- DEBUG bec_eta_mod    decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
 indet 1 2,4,5,7,10,11,12,13 7 1fffffffffffffff 61 3 0 min/max 2 13 values  2 4 5 7 10 11 12 13 indexes  0 0 1 2 0 3 0 0 4 5 6 7 indices  8 prev  0 next  0 mode  enumerated  cont mode  none  
 pixel 1 1:3 3 e7ffffffffffffff 59 2 3 min/max 1 3 values  indexes  indices  3 prev  0 next  0 mode  both_bounded  cont mode  none  
 bec 1 -2,0,2 3 f9ffffffffffffff 57 2 5 min/max -2 2 values  -2 0 2 indexes  0 0 1 0 2 indices  3 prev  0 next  0 mode  enumerated  cont mode  none  
@@ -60,85 +33,28 @@ phi_module    4
 eta_module    5
 phi_index     6
 eta_index     7
- DEBUG PixelID::initialize_from_dict Set barrel field values: 0
- DEBUG PixelID::initialize_from_dict Set dbm field values: -999,999
- DEBUG PixelID::initialize_from_dict Found field values: InDet/Pixel 2/1
- DEBUG PixelID::init_neighbors 
- DEBUG PixelID::initialize_from_dict 
- DEBUG Wafer range -> 2/1/0/0/0:21/-6:6 | 2/1/0/1/0:37/-6:6 | 2/1/0/2/0:51/-6:6 | 2/1/-2,2/0:2/0:47/0
- DEBUG Pixel range -> 2/1/0/0/0:21/-6:6/0:327/0:191 | 2/1/0/1/0:37/-6:6/0:327/0:143 | 2/1/0/2/0:51/-6:6/0:327/0:143 | 2/1/-2,2/0:2/0:47/0/0:327/0:143
 INFO SCT_ID::initialize_from_dictionary 
  AtlasDetectorID::initialize_from_dictionary - OK 
 INFO Initialize from dictionary cout 0
- DEBUG (Re)initialize
  AtlasDetectorID::initialize_from_dictionary - OK 
- DEBUG decode index and bit fields for each level: 
- DEBUG indet     decode 1 vals 2,4,5,7,10,11,12,13 mask/zero mask/shift/bits/offset 7   1fffffffffffffff 61 3  0  indexes 0 0 1 2 0 3 0 0 4 5 6 7 mode  enumerated  
- DEBUG trt       decode 1 vals 1:3             mask/zero mask/shift/bits/offset 3   e7ffffffffffffff 59 2  3  indexes                     mode  both_bounded  
- DEBUG bec       decode 1 vals -2,-1,1,2       mask/zero mask/shift/bits/offset 3   f9ffffffffffffff 57 2  5  indexes 0 1 0 2 3           mode  enumerated  
- DEBUG phi_mod   decode 0 vals 0:31            mask/zero mask/shift/bits/offset 1f  fe0fffffffffffff 52 5  7  indexes                     mode  both_bounded  
- DEBUG lay_wheel decode 0 vals 0:17            mask/zero mask/shift/bits/offset 1f  fff07fffffffffff 47 5  12 indexes                     mode  both_bounded  
- DEBUG str_lay   decode 0 vals 0:29            mask/zero mask/shift/bits/offset 1f  ffff83ffffffffff 42 5  17 indexes                     mode  both_bounded  
- DEBUG straw     decode 0 vals 0:28            mask/zero mask/shift/bits/offset 1f  fffffc1fffffffff 37 5  22 indexes                     mode  both_bounded  
- DEBUG  TRT_ID::initialize_from_dict Set barrel field values: -1,1
- DEBUG  TRT_ID::initialize_from_dict Found field values: InDet/TRT 2/3
- DEBUG Module range -> 2/3/-1,1/0:31/0 | 2/3/-1,1/0:31/1 | 2/3/-1,1/0:31/2 | 2/3/-2,2/0:31/0:5 | 2/3/-2,2/0:31/6:13 | 2/3/-2,2/0:31/14:17
- DEBUG TRT_ID::init_hashes  module hash max 1344
- DEBUG TRT_ID::init_hashes  straw layer hash max 19008
- DEBUG TRT_ID::init_hashes  straw hash max 424576
- DEBUG  TRT_ID::initialize_from_dict 
- DEBUG Module range -> 2/3/-1,1/0:31/0 | 2/3/-1,1/0:31/1 | 2/3/-1,1/0:31/2 | 2/3/-2,2/0:31/0:5 | 2/3/-2,2/0:31/6:13 | 2/3/-2,2/0:31/14:17
- DEBUG Straw layer range -> 2/3/-1,1/0:31/0/0 | 2/3/-1,1/0:31/0/1:4 | 2/3/-1,1/0:31/0/5:9 | 2/3/-1,1/0:31/0/10:14 | 2/3/-1,1/0:31/0/15:17 | 2/3/-1,1/0:31/0/18 | 2/3/-1,1/0:31/1/0 | 2/3/-1,1/0:31/1/1:5 | 2/3/-1,1/0:31/1/6:10 | 2/3/-1,1/0:31/1/11:15 | 2/3/-1,1/0:31/1/16:20 | 2/3/-1,1/0:31/1/21:22 | 2/3/-1,1/0:31/1/23 | 2/3/-1,1/0:31/2/0 | 2/3/-1,1/0:31/2/1:4 | 2/3/-1,1/0:31/2/5:9 | 2/3/-1,1/0:31/2/10:14 | 2/3/-1,1/0:31/2/15:19 | 2/3/-1,1/0:31/2/20:24 | 2/3/-1,1/0:31/2/25:28 | 2/3/-1,1/0:31/2/29 | 2/3/-2,2/0:31/0:5/0:15 | 2/3/-2,2/0:31/6:13/0:7 | 2/3/-2,2/0:31/14:17/0:15
- DEBUG Straw range -> 2/3/-1,1/0:31/0/0/0:14 | 2/3/-1,1/0:31/0/1:4/0:15 | 2/3/-1,1/0:31/0/5:9/0:16 | 2/3/-1,1/0:31/0/10:14/0:17 | 2/3/-1,1/0:31/0/15:17/0:18 | 2/3/-1,1/0:31/0/18/0:17 | 2/3/-1,1/0:31/1/0/0:18 | 2/3/-1,1/0:31/1/1:5/0:19 | 2/3/-1,1/0:31/1/6:10/0:20 | 2/3/-1,1/0:31/1/11:15/0:21 | 2/3/-1,1/0:31/1/16:20/0:22 | 2/3/-1,1/0:31/1/21:22/0:23 | 2/3/-1,1/0:31/1/23/0:22 | 2/3/-1,1/0:31/2/0/0:22 | 2/3/-1,1/0:31/2/1:4/0:23 | 2/3/-1,1/0:31/2/5:9/0:24 | 2/3/-1,1/0:31/2/10:14/0:25 | 2/3/-1,1/0:31/2/15:19/0:26 | 2/3/-1,1/0:31/2/20:24/0:27 | 2/3/-1,1/0:31/2/25:28/0:28 | 2/3/-1,1/0:31/2/29/0:27 | 2/3/-2,2/0:31/0:5/0:15/0:23 | 2/3/-2,2/0:31/6:13/0:7/0:23 | 2/3/-2,2/0:31/14:17/0:15/0:17
- AtlasDetectorID::initialize_from_dictionary - OK 
-CscIdHelper          INFO MultiRange built successfully to Technology: MultiRange size is 218
-CscIdHelper          INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 257
-CscIdHelper          INFO MultiRange built successfully to cscStrip: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 CscIdHelper          INFO Initializing CSC hash indices ... 
-CscIdHelper          INFO The element hash max is 32
-CscIdHelper          INFO The detector element hash max is 64
 CscIdHelper          INFO The channel hash max is 61440
 CscIdHelper          INFO Initializing CSC hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-RpcIdHelper          INFO MultiRange built successfully to doubletR: MultiRange size is 261
-RpcIdHelper          INFO MultiRange built successfully to detectorElement: DetectorElement MultiRange size is 261
-RpcIdHelper          INFO MultiRange built successfully to rpcStrip: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 RpcIdHelper          INFO Initializing RPC hash indices ... 
-RpcIdHelper          INFO The element hash max is 600
-RpcIdHelper          INFO The detector element hash max is 1122
 RpcIdHelper          INFO Initializing RPC hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-TgcIdHelper          INFO MultiRange built successfully to Technology: MultiRange size is 218
-TgcIdHelper          INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 218
-TgcIdHelper          INFO MultiRange built successfully to channel: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 TgcIdHelper          INFO Initializing TGC hash indices ... 
-TgcIdHelper          INFO The element hash max is 1578
-TgcIdHelper          INFO The detector element hash max is 1578
 TgcIdHelper          INFO Initializing TGC hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-MdtIdHelper          INFO MultiRange built successfully to Technology: MultiRange size is 218
-MdtIdHelper          INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 261
-MdtIdHelper          INFO MultiRange built successfully to tube: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 MdtIdHelper          INFO Initializing MDT hash indices ... 
-MdtIdHelper          INFO The element hash max is 1188
-MdtIdHelper          INFO The detector element hash max is 2328
 MdtIdHelper          INFO Initializing MDT hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-sTgcIdHelper         INFO MultiRange built successfully to Technology: MultiRange size is 218
-sTgcIdHelper         INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 253
-sTgcIdHelper         INFO MultiRange built successfully to channel: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 sTgcIdHelper         INFO Initializing sTGC hash indices ... 
-sTgcIdHelper         INFO The element hash max is 96
-sTgcIdHelper         INFO The detector element hash max is 192
 sTgcIdHelper         INFO Initializing sTGC hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-MmIdHelper           INFO MultiRange built successfully to Technology: MultiRange size is 218
-MmIdHelper           INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 257
-MmIdHelper           INFO MultiRange built successfully to channel: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 MmIdHelper           INFO Initializing MicroMegas hash indices ... 
-MmIdHelper           INFO The element hash max is 64
-MmIdHelper           INFO The detector element hash max is 128
 MmIdHelper           INFO Initializing MicroMegas hash indices for finding neighbors ... 
  AtlasDetectorID::initialize_from_dictionary - OK 
-ClassIDSvc           INFO  getRegistryEntries: read 379 CLIDRegistry entries for module ALL
 test1
diff --git a/MuonSpectrometer/MuonCnv/MuonEventTPCnv/share/MM_DigitContainerCnv_p2_test.ref b/MuonSpectrometer/MuonCnv/MuonEventTPCnv/share/MM_DigitContainerCnv_p2_test.ref
index 7c761e86cccb1ba2df451664333647771bd75996..eafa59f97879b9e447a9cdea019dc6bb7238a360 100644
--- a/MuonSpectrometer/MuonCnv/MuonEventTPCnv/share/MM_DigitContainerCnv_p2_test.ref
+++ b/MuonSpectrometer/MuonCnv/MuonEventTPCnv/share/MM_DigitContainerCnv_p2_test.ref
@@ -1,18 +1,6 @@
 
 
-Initializing Gaudi ApplicationMgr using job opts /home/emoyse/master2/build/x86_64-centos7-gcc8-opt/jobOptions/MuonEventTPCnv/MuonEventTPCnv_test.txt
-JobOptionsSvc        INFO # =======> /home/emoyse/master2/build/x86_64-centos7-gcc8-opt/jobOptions/MuonEventTPCnv/MuonEventTPCnv_test.txt
-JobOptionsSvc        INFO # (1,1): ApplicationMgr.Dlls += ["StoreGate", "CLIDComps"]
-JobOptionsSvc        INFO # (2,1): ApplicationMgr.ExtSvc += ["StoreGateSvc", "StoreGateSvc/DetectorStore", "StoreGateSvc/ConditionStore", "Athena::RCUSvc"]
-JobOptionsSvc        INFO Job options successfully read in from /home/emoyse/master2/build/x86_64-centos7-gcc8-opt/jobOptions/MuonEventTPCnv/MuonEventTPCnv_test.txt
-ApplicationMgr    SUCCESS 
-====================================================================================================================================
-                                                   Welcome to ApplicationMgr (GaudiCoreSvc v34r0)
-                                          running on pcumass4 on Wed Nov  4 09:35:37 2020
-====================================================================================================================================
-ApplicationMgr       INFO Successfully loaded modules : StoreGate, CLIDComps
 ApplicationMgr       INFO Application Manager Configured successfully
-ClassIDSvc           INFO  getRegistryEntries: read 12351 CLIDRegistry entries for module ALL
 EventLoopMgr      WARNING Unable to locate service "EventSelector" 
 EventLoopMgr      WARNING No events will be processed from external input.
 ApplicationMgr       INFO Application Manager Initialized successfully
@@ -22,22 +10,7 @@ ApplicationMgr Ready
  Volume pmdum2 not found: returning 0
  Volume pmdum3 not found: returning 0
  INFO Initialize from dictionary
- DEBUG (Re)initialize
  AtlasDetectorID::initialize_from_dictionary - OK 
- DEBUG decode index and bit fields for each level: 
- DEBUG indet          decode 1 vals 2,4,5,7,10,11,12,13 mask/zero mask/shift/bits/offset 7   1fffffffffffffff 61 3  0  indexes 0 0 1 2 0 3 0 0 4 5 6 7 mode  enumerated  
- DEBUG pixel          decode 1 vals 1:3             mask/zero mask/shift/bits/offset 3   e7ffffffffffffff 59 2  3  indexes                     mode  both_bounded  
- DEBUG bec            decode 1 vals -2,0,2          mask/zero mask/shift/bits/offset 3   f9ffffffffffffff 57 2  5  indexes 0 0 1 0 2           mode  enumerated  
- DEBUG bec_shift      decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
- DEBUG lay_disk       decode 0 vals 0:2             mask/zero mask/shift/bits/offset 3   fe7fffffffffffff 55 2  7  indexes                     mode  both_bounded  
- DEBUG lay_disk_shift decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
- DEBUG phi_mod        decode 0 vals 0:51            mask/zero mask/shift/bits/offset 3f  ff81ffffffffffff 49 6  9  indexes                     mode  both_bounded  
- DEBUG phi_mod_shift  decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
- DEBUG eta_mod        decode 1 vals -6:6            mask/zero mask/shift/bits/offset f   fffe1fffffffffff 45 4  15 indexes                     mode  both_bounded  
- DEBUG eta_mod_shift  decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
- DEBUG phi_index      decode 0 vals 0:327           mask/zero mask/shift/bits/offset 1ff ffffe00fffffffff 36 9  19 indexes                     mode  both_bounded  
- DEBUG eta_index      decode 0 vals 0:191           mask/zero mask/shift/bits/offset ff  fffffff00fffffff 28 8  28 indexes                     mode  both_bounded  
- DEBUG bec_eta_mod    decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
 indet 1 2,4,5,7,10,11,12,13 7 1fffffffffffffff 61 3 0 min/max 2 13 values  2 4 5 7 10 11 12 13 indexes  0 0 1 2 0 3 0 0 4 5 6 7 indices  8 prev  0 next  0 mode  enumerated  cont mode  none  
 pixel 1 1:3 3 e7ffffffffffffff 59 2 3 min/max 1 3 values  indexes  indices  3 prev  0 next  0 mode  both_bounded  cont mode  none  
 bec 1 -2,0,2 3 f9ffffffffffffff 57 2 5 min/max -2 2 values  -2 0 2 indexes  0 0 1 0 2 indices  3 prev  0 next  0 mode  enumerated  cont mode  none  
@@ -60,85 +33,28 @@ phi_module    4
 eta_module    5
 phi_index     6
 eta_index     7
- DEBUG PixelID::initialize_from_dict Set barrel field values: 0
- DEBUG PixelID::initialize_from_dict Set dbm field values: -999,999
- DEBUG PixelID::initialize_from_dict Found field values: InDet/Pixel 2/1
- DEBUG PixelID::init_neighbors 
- DEBUG PixelID::initialize_from_dict 
- DEBUG Wafer range -> 2/1/0/0/0:21/-6:6 | 2/1/0/1/0:37/-6:6 | 2/1/0/2/0:51/-6:6 | 2/1/-2,2/0:2/0:47/0
- DEBUG Pixel range -> 2/1/0/0/0:21/-6:6/0:327/0:191 | 2/1/0/1/0:37/-6:6/0:327/0:143 | 2/1/0/2/0:51/-6:6/0:327/0:143 | 2/1/-2,2/0:2/0:47/0/0:327/0:143
 INFO SCT_ID::initialize_from_dictionary 
  AtlasDetectorID::initialize_from_dictionary - OK 
 INFO Initialize from dictionary cout 0
- DEBUG (Re)initialize
  AtlasDetectorID::initialize_from_dictionary - OK 
- DEBUG decode index and bit fields for each level: 
- DEBUG indet     decode 1 vals 2,4,5,7,10,11,12,13 mask/zero mask/shift/bits/offset 7   1fffffffffffffff 61 3  0  indexes 0 0 1 2 0 3 0 0 4 5 6 7 mode  enumerated  
- DEBUG trt       decode 1 vals 1:3             mask/zero mask/shift/bits/offset 3   e7ffffffffffffff 59 2  3  indexes                     mode  both_bounded  
- DEBUG bec       decode 1 vals -2,-1,1,2       mask/zero mask/shift/bits/offset 3   f9ffffffffffffff 57 2  5  indexes 0 1 0 2 3           mode  enumerated  
- DEBUG phi_mod   decode 0 vals 0:31            mask/zero mask/shift/bits/offset 1f  fe0fffffffffffff 52 5  7  indexes                     mode  both_bounded  
- DEBUG lay_wheel decode 0 vals 0:17            mask/zero mask/shift/bits/offset 1f  fff07fffffffffff 47 5  12 indexes                     mode  both_bounded  
- DEBUG str_lay   decode 0 vals 0:29            mask/zero mask/shift/bits/offset 1f  ffff83ffffffffff 42 5  17 indexes                     mode  both_bounded  
- DEBUG straw     decode 0 vals 0:28            mask/zero mask/shift/bits/offset 1f  fffffc1fffffffff 37 5  22 indexes                     mode  both_bounded  
- DEBUG  TRT_ID::initialize_from_dict Set barrel field values: -1,1
- DEBUG  TRT_ID::initialize_from_dict Found field values: InDet/TRT 2/3
- DEBUG Module range -> 2/3/-1,1/0:31/0 | 2/3/-1,1/0:31/1 | 2/3/-1,1/0:31/2 | 2/3/-2,2/0:31/0:5 | 2/3/-2,2/0:31/6:13 | 2/3/-2,2/0:31/14:17
- DEBUG TRT_ID::init_hashes  module hash max 1344
- DEBUG TRT_ID::init_hashes  straw layer hash max 19008
- DEBUG TRT_ID::init_hashes  straw hash max 424576
- DEBUG  TRT_ID::initialize_from_dict 
- DEBUG Module range -> 2/3/-1,1/0:31/0 | 2/3/-1,1/0:31/1 | 2/3/-1,1/0:31/2 | 2/3/-2,2/0:31/0:5 | 2/3/-2,2/0:31/6:13 | 2/3/-2,2/0:31/14:17
- DEBUG Straw layer range -> 2/3/-1,1/0:31/0/0 | 2/3/-1,1/0:31/0/1:4 | 2/3/-1,1/0:31/0/5:9 | 2/3/-1,1/0:31/0/10:14 | 2/3/-1,1/0:31/0/15:17 | 2/3/-1,1/0:31/0/18 | 2/3/-1,1/0:31/1/0 | 2/3/-1,1/0:31/1/1:5 | 2/3/-1,1/0:31/1/6:10 | 2/3/-1,1/0:31/1/11:15 | 2/3/-1,1/0:31/1/16:20 | 2/3/-1,1/0:31/1/21:22 | 2/3/-1,1/0:31/1/23 | 2/3/-1,1/0:31/2/0 | 2/3/-1,1/0:31/2/1:4 | 2/3/-1,1/0:31/2/5:9 | 2/3/-1,1/0:31/2/10:14 | 2/3/-1,1/0:31/2/15:19 | 2/3/-1,1/0:31/2/20:24 | 2/3/-1,1/0:31/2/25:28 | 2/3/-1,1/0:31/2/29 | 2/3/-2,2/0:31/0:5/0:15 | 2/3/-2,2/0:31/6:13/0:7 | 2/3/-2,2/0:31/14:17/0:15
- DEBUG Straw range -> 2/3/-1,1/0:31/0/0/0:14 | 2/3/-1,1/0:31/0/1:4/0:15 | 2/3/-1,1/0:31/0/5:9/0:16 | 2/3/-1,1/0:31/0/10:14/0:17 | 2/3/-1,1/0:31/0/15:17/0:18 | 2/3/-1,1/0:31/0/18/0:17 | 2/3/-1,1/0:31/1/0/0:18 | 2/3/-1,1/0:31/1/1:5/0:19 | 2/3/-1,1/0:31/1/6:10/0:20 | 2/3/-1,1/0:31/1/11:15/0:21 | 2/3/-1,1/0:31/1/16:20/0:22 | 2/3/-1,1/0:31/1/21:22/0:23 | 2/3/-1,1/0:31/1/23/0:22 | 2/3/-1,1/0:31/2/0/0:22 | 2/3/-1,1/0:31/2/1:4/0:23 | 2/3/-1,1/0:31/2/5:9/0:24 | 2/3/-1,1/0:31/2/10:14/0:25 | 2/3/-1,1/0:31/2/15:19/0:26 | 2/3/-1,1/0:31/2/20:24/0:27 | 2/3/-1,1/0:31/2/25:28/0:28 | 2/3/-1,1/0:31/2/29/0:27 | 2/3/-2,2/0:31/0:5/0:15/0:23 | 2/3/-2,2/0:31/6:13/0:7/0:23 | 2/3/-2,2/0:31/14:17/0:15/0:17
- AtlasDetectorID::initialize_from_dictionary - OK 
-CscIdHelper          INFO MultiRange built successfully to Technology: MultiRange size is 218
-CscIdHelper          INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 257
-CscIdHelper          INFO MultiRange built successfully to cscStrip: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 CscIdHelper          INFO Initializing CSC hash indices ... 
-CscIdHelper          INFO The element hash max is 32
-CscIdHelper          INFO The detector element hash max is 64
 CscIdHelper          INFO The channel hash max is 61440
 CscIdHelper          INFO Initializing CSC hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-RpcIdHelper          INFO MultiRange built successfully to doubletR: MultiRange size is 261
-RpcIdHelper          INFO MultiRange built successfully to detectorElement: DetectorElement MultiRange size is 261
-RpcIdHelper          INFO MultiRange built successfully to rpcStrip: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 RpcIdHelper          INFO Initializing RPC hash indices ... 
-RpcIdHelper          INFO The element hash max is 600
-RpcIdHelper          INFO The detector element hash max is 1122
 RpcIdHelper          INFO Initializing RPC hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-TgcIdHelper          INFO MultiRange built successfully to Technology: MultiRange size is 218
-TgcIdHelper          INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 218
-TgcIdHelper          INFO MultiRange built successfully to channel: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 TgcIdHelper          INFO Initializing TGC hash indices ... 
-TgcIdHelper          INFO The element hash max is 1578
-TgcIdHelper          INFO The detector element hash max is 1578
 TgcIdHelper          INFO Initializing TGC hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-MdtIdHelper          INFO MultiRange built successfully to Technology: MultiRange size is 218
-MdtIdHelper          INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 261
-MdtIdHelper          INFO MultiRange built successfully to tube: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 MdtIdHelper          INFO Initializing MDT hash indices ... 
-MdtIdHelper          INFO The element hash max is 1188
-MdtIdHelper          INFO The detector element hash max is 2328
 MdtIdHelper          INFO Initializing MDT hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-sTgcIdHelper         INFO MultiRange built successfully to Technology: MultiRange size is 218
-sTgcIdHelper         INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 253
-sTgcIdHelper         INFO MultiRange built successfully to channel: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 sTgcIdHelper         INFO Initializing sTGC hash indices ... 
-sTgcIdHelper         INFO The element hash max is 96
-sTgcIdHelper         INFO The detector element hash max is 192
 sTgcIdHelper         INFO Initializing sTGC hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-MmIdHelper           INFO MultiRange built successfully to Technology: MultiRange size is 218
-MmIdHelper           INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 257
-MmIdHelper           INFO MultiRange built successfully to channel: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 MmIdHelper           INFO Initializing MicroMegas hash indices ... 
-MmIdHelper           INFO The element hash max is 64
-MmIdHelper           INFO The detector element hash max is 128
 MmIdHelper           INFO Initializing MicroMegas hash indices for finding neighbors ... 
  AtlasDetectorID::initialize_from_dictionary - OK 
-ClassIDSvc           INFO  getRegistryEntries: read 379 CLIDRegistry entries for module ALL
 test1
diff --git a/MuonSpectrometer/MuonCnv/MuonEventTPCnv/share/MdtDriftCircleOnTrackCnv_p2_test.ref b/MuonSpectrometer/MuonCnv/MuonEventTPCnv/share/MdtDriftCircleOnTrackCnv_p2_test.ref
index bbf4b00b1aee50566dfbbeb5acbf480cf5fc497c..eafa59f97879b9e447a9cdea019dc6bb7238a360 100644
--- a/MuonSpectrometer/MuonCnv/MuonEventTPCnv/share/MdtDriftCircleOnTrackCnv_p2_test.ref
+++ b/MuonSpectrometer/MuonCnv/MuonEventTPCnv/share/MdtDriftCircleOnTrackCnv_p2_test.ref
@@ -1,18 +1,6 @@
 
 
-Initializing Gaudi ApplicationMgr using job opts /home/emoyse/master2/build/x86_64-centos7-gcc8-opt/jobOptions/MuonEventTPCnv/MuonEventTPCnv_test.txt
-JobOptionsSvc        INFO # =======> /home/emoyse/master2/build/x86_64-centos7-gcc8-opt/jobOptions/MuonEventTPCnv/MuonEventTPCnv_test.txt
-JobOptionsSvc        INFO # (1,1): ApplicationMgr.Dlls += ["StoreGate", "CLIDComps"]
-JobOptionsSvc        INFO # (2,1): ApplicationMgr.ExtSvc += ["StoreGateSvc", "StoreGateSvc/DetectorStore", "StoreGateSvc/ConditionStore", "Athena::RCUSvc"]
-JobOptionsSvc        INFO Job options successfully read in from /home/emoyse/master2/build/x86_64-centos7-gcc8-opt/jobOptions/MuonEventTPCnv/MuonEventTPCnv_test.txt
-ApplicationMgr    SUCCESS 
-====================================================================================================================================
-                                                   Welcome to ApplicationMgr (GaudiCoreSvc v34r0)
-                                          running on pcumass4 on Wed Nov  4 09:34:37 2020
-====================================================================================================================================
-ApplicationMgr       INFO Successfully loaded modules : StoreGate, CLIDComps
 ApplicationMgr       INFO Application Manager Configured successfully
-ClassIDSvc           INFO  getRegistryEntries: read 12361 CLIDRegistry entries for module ALL
 EventLoopMgr      WARNING Unable to locate service "EventSelector" 
 EventLoopMgr      WARNING No events will be processed from external input.
 ApplicationMgr       INFO Application Manager Initialized successfully
@@ -22,22 +10,7 @@ ApplicationMgr Ready
  Volume pmdum2 not found: returning 0
  Volume pmdum3 not found: returning 0
  INFO Initialize from dictionary
- DEBUG (Re)initialize
  AtlasDetectorID::initialize_from_dictionary - OK 
- DEBUG decode index and bit fields for each level: 
- DEBUG indet          decode 1 vals 2,4,5,7,10,11,12,13 mask/zero mask/shift/bits/offset 7   1fffffffffffffff 61 3  0  indexes 0 0 1 2 0 3 0 0 4 5 6 7 mode  enumerated  
- DEBUG pixel          decode 1 vals 1:3             mask/zero mask/shift/bits/offset 3   e7ffffffffffffff 59 2  3  indexes                     mode  both_bounded  
- DEBUG bec            decode 1 vals -2,0,2          mask/zero mask/shift/bits/offset 3   f9ffffffffffffff 57 2  5  indexes 0 0 1 0 2           mode  enumerated  
- DEBUG bec_shift      decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
- DEBUG lay_disk       decode 0 vals 0:2             mask/zero mask/shift/bits/offset 3   fe7fffffffffffff 55 2  7  indexes                     mode  both_bounded  
- DEBUG lay_disk_shift decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
- DEBUG phi_mod        decode 0 vals 0:51            mask/zero mask/shift/bits/offset 3f  ff81ffffffffffff 49 6  9  indexes                     mode  both_bounded  
- DEBUG phi_mod_shift  decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
- DEBUG eta_mod        decode 1 vals -6:6            mask/zero mask/shift/bits/offset f   fffe1fffffffffff 45 4  15 indexes                     mode  both_bounded  
- DEBUG eta_mod_shift  decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
- DEBUG phi_index      decode 0 vals 0:327           mask/zero mask/shift/bits/offset 1ff ffffe00fffffffff 36 9  19 indexes                     mode  both_bounded  
- DEBUG eta_index      decode 0 vals 0:191           mask/zero mask/shift/bits/offset ff  fffffff00fffffff 28 8  28 indexes                     mode  both_bounded  
- DEBUG bec_eta_mod    decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
 indet 1 2,4,5,7,10,11,12,13 7 1fffffffffffffff 61 3 0 min/max 2 13 values  2 4 5 7 10 11 12 13 indexes  0 0 1 2 0 3 0 0 4 5 6 7 indices  8 prev  0 next  0 mode  enumerated  cont mode  none  
 pixel 1 1:3 3 e7ffffffffffffff 59 2 3 min/max 1 3 values  indexes  indices  3 prev  0 next  0 mode  both_bounded  cont mode  none  
 bec 1 -2,0,2 3 f9ffffffffffffff 57 2 5 min/max -2 2 values  -2 0 2 indexes  0 0 1 0 2 indices  3 prev  0 next  0 mode  enumerated  cont mode  none  
@@ -60,87 +33,28 @@ phi_module    4
 eta_module    5
 phi_index     6
 eta_index     7
- DEBUG PixelID::initialize_from_dict Set barrel field values: 0
- DEBUG PixelID::initialize_from_dict Set dbm field values: -999,999
- DEBUG PixelID::initialize_from_dict Found field values: InDet/Pixel 2/1
- DEBUG PixelID::init_neighbors 
- DEBUG PixelID::initialize_from_dict 
- DEBUG Wafer range -> 2/1/0/0/0:21/-6:6 | 2/1/0/1/0:37/-6:6 | 2/1/0/2/0:51/-6:6 | 2/1/-2,2/0:2/0:47/0
- DEBUG Pixel range -> 2/1/0/0/0:21/-6:6/0:327/0:191 | 2/1/0/1/0:37/-6:6/0:327/0:143 | 2/1/0/2/0:51/-6:6/0:327/0:143 | 2/1/-2,2/0:2/0:47/0/0:327/0:143
 INFO SCT_ID::initialize_from_dictionary 
  AtlasDetectorID::initialize_from_dictionary - OK 
 INFO Initialize from dictionary cout 0
- DEBUG (Re)initialize
  AtlasDetectorID::initialize_from_dictionary - OK 
- DEBUG decode index and bit fields for each level: 
- DEBUG indet     decode 1 vals 2,4,5,7,10,11,12,13 mask/zero mask/shift/bits/offset 7   1fffffffffffffff 61 3  0  indexes 0 0 1 2 0 3 0 0 4 5 6 7 mode  enumerated  
- DEBUG trt       decode 1 vals 1:3             mask/zero mask/shift/bits/offset 3   e7ffffffffffffff 59 2  3  indexes                     mode  both_bounded  
- DEBUG bec       decode 1 vals -2,-1,1,2       mask/zero mask/shift/bits/offset 3   f9ffffffffffffff 57 2  5  indexes 0 1 0 2 3           mode  enumerated  
- DEBUG phi_mod   decode 0 vals 0:31            mask/zero mask/shift/bits/offset 1f  fe0fffffffffffff 52 5  7  indexes                     mode  both_bounded  
- DEBUG lay_wheel decode 0 vals 0:17            mask/zero mask/shift/bits/offset 1f  fff07fffffffffff 47 5  12 indexes                     mode  both_bounded  
- DEBUG str_lay   decode 0 vals 0:29            mask/zero mask/shift/bits/offset 1f  ffff83ffffffffff 42 5  17 indexes                     mode  both_bounded  
- DEBUG straw     decode 0 vals 0:28            mask/zero mask/shift/bits/offset 1f  fffffc1fffffffff 37 5  22 indexes                     mode  both_bounded  
- DEBUG  TRT_ID::initialize_from_dict Set barrel field values: -1,1
- DEBUG  TRT_ID::initialize_from_dict Found field values: InDet/TRT 2/3
- DEBUG Module range -> 2/3/-1,1/0:31/0 | 2/3/-1,1/0:31/1 | 2/3/-1,1/0:31/2 | 2/3/-2,2/0:31/0:5 | 2/3/-2,2/0:31/6:13 | 2/3/-2,2/0:31/14:17
- DEBUG TRT_ID::init_hashes  module hash max 1344
- DEBUG TRT_ID::init_hashes  straw layer hash max 19008
- DEBUG TRT_ID::init_hashes  straw hash max 424576
- DEBUG  TRT_ID::initialize_from_dict 
- DEBUG Module range -> 2/3/-1,1/0:31/0 | 2/3/-1,1/0:31/1 | 2/3/-1,1/0:31/2 | 2/3/-2,2/0:31/0:5 | 2/3/-2,2/0:31/6:13 | 2/3/-2,2/0:31/14:17
- DEBUG Straw layer range -> 2/3/-1,1/0:31/0/0 | 2/3/-1,1/0:31/0/1:4 | 2/3/-1,1/0:31/0/5:9 | 2/3/-1,1/0:31/0/10:14 | 2/3/-1,1/0:31/0/15:17 | 2/3/-1,1/0:31/0/18 | 2/3/-1,1/0:31/1/0 | 2/3/-1,1/0:31/1/1:5 | 2/3/-1,1/0:31/1/6:10 | 2/3/-1,1/0:31/1/11:15 | 2/3/-1,1/0:31/1/16:20 | 2/3/-1,1/0:31/1/21:22 | 2/3/-1,1/0:31/1/23 | 2/3/-1,1/0:31/2/0 | 2/3/-1,1/0:31/2/1:4 | 2/3/-1,1/0:31/2/5:9 | 2/3/-1,1/0:31/2/10:14 | 2/3/-1,1/0:31/2/15:19 | 2/3/-1,1/0:31/2/20:24 | 2/3/-1,1/0:31/2/25:28 | 2/3/-1,1/0:31/2/29 | 2/3/-2,2/0:31/0:5/0:15 | 2/3/-2,2/0:31/6:13/0:7 | 2/3/-2,2/0:31/14:17/0:15
- DEBUG Straw range -> 2/3/-1,1/0:31/0/0/0:14 | 2/3/-1,1/0:31/0/1:4/0:15 | 2/3/-1,1/0:31/0/5:9/0:16 | 2/3/-1,1/0:31/0/10:14/0:17 | 2/3/-1,1/0:31/0/15:17/0:18 | 2/3/-1,1/0:31/0/18/0:17 | 2/3/-1,1/0:31/1/0/0:18 | 2/3/-1,1/0:31/1/1:5/0:19 | 2/3/-1,1/0:31/1/6:10/0:20 | 2/3/-1,1/0:31/1/11:15/0:21 | 2/3/-1,1/0:31/1/16:20/0:22 | 2/3/-1,1/0:31/1/21:22/0:23 | 2/3/-1,1/0:31/1/23/0:22 | 2/3/-1,1/0:31/2/0/0:22 | 2/3/-1,1/0:31/2/1:4/0:23 | 2/3/-1,1/0:31/2/5:9/0:24 | 2/3/-1,1/0:31/2/10:14/0:25 | 2/3/-1,1/0:31/2/15:19/0:26 | 2/3/-1,1/0:31/2/20:24/0:27 | 2/3/-1,1/0:31/2/25:28/0:28 | 2/3/-1,1/0:31/2/29/0:27 | 2/3/-2,2/0:31/0:5/0:15/0:23 | 2/3/-2,2/0:31/6:13/0:7/0:23 | 2/3/-2,2/0:31/14:17/0:15/0:17
- AtlasDetectorID::initialize_from_dictionary - OK 
-CscIdHelper          INFO MultiRange built successfully to Technology: MultiRange size is 218
-CscIdHelper          INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 257
-CscIdHelper          INFO MultiRange built successfully to cscStrip: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 CscIdHelper          INFO Initializing CSC hash indices ... 
-CscIdHelper          INFO The element hash max is 32
-CscIdHelper          INFO The detector element hash max is 64
 CscIdHelper          INFO The channel hash max is 61440
 CscIdHelper          INFO Initializing CSC hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-RpcIdHelper          INFO MultiRange built successfully to doubletR: MultiRange size is 261
-RpcIdHelper          INFO MultiRange built successfully to detectorElement: DetectorElement MultiRange size is 261
-RpcIdHelper          INFO MultiRange built successfully to rpcStrip: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 RpcIdHelper          INFO Initializing RPC hash indices ... 
-RpcIdHelper          INFO The element hash max is 600
-RpcIdHelper          INFO The detector element hash max is 1122
 RpcIdHelper          INFO Initializing RPC hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-TgcIdHelper          INFO MultiRange built successfully to Technology: MultiRange size is 218
-TgcIdHelper          INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 218
-TgcIdHelper          INFO MultiRange built successfully to channel: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 TgcIdHelper          INFO Initializing TGC hash indices ... 
-TgcIdHelper          INFO The element hash max is 1578
-TgcIdHelper          INFO The detector element hash max is 1578
 TgcIdHelper          INFO Initializing TGC hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-MdtIdHelper          INFO MultiRange built successfully to Technology: MultiRange size is 218
-MdtIdHelper          INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 261
-MdtIdHelper          INFO MultiRange built successfully to tube: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 MdtIdHelper          INFO Initializing MDT hash indices ... 
-MdtIdHelper          INFO The element hash max is 1188
-MdtIdHelper          INFO The detector element hash max is 2328
 MdtIdHelper          INFO Initializing MDT hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-sTgcIdHelper         INFO MultiRange built successfully to Technology: MultiRange size is 218
-sTgcIdHelper         INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 253
-sTgcIdHelper         INFO MultiRange built successfully to channel: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 sTgcIdHelper         INFO Initializing sTGC hash indices ... 
-sTgcIdHelper         INFO The element hash max is 96
-sTgcIdHelper         INFO The detector element hash max is 192
 sTgcIdHelper         INFO Initializing sTGC hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-MmIdHelper           INFO MultiRange built successfully to Technology: MultiRange size is 218
-MmIdHelper           INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 257
-MmIdHelper           INFO MultiRange built successfully to channel: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 MmIdHelper           INFO Initializing MicroMegas hash indices ... 
-MmIdHelper           INFO The element hash max is 64
-MmIdHelper           INFO The detector element hash max is 128
 MmIdHelper           INFO Initializing MicroMegas hash indices for finding neighbors ... 
  AtlasDetectorID::initialize_from_dictionary - OK 
-ClassIDSvc           INFO  getRegistryEntries: read 379 CLIDRegistry entries for module ALL
 test1
-ClassIDSvc           INFO  getRegistryEntries: read 320 CLIDRegistry entries for module ALL
-ClassIDSvc           INFO  getRegistryEntries: read 170 CLIDRegistry entries for module ALL
diff --git a/MuonSpectrometer/MuonCnv/MuonEventTPCnv/share/MdtPrepDataContainerCnv_p1_test.ref b/MuonSpectrometer/MuonCnv/MuonEventTPCnv/share/MdtPrepDataContainerCnv_p1_test.ref
index 911568af82bf9370064f58b4e2d76d45e7651bbf..eafa59f97879b9e447a9cdea019dc6bb7238a360 100644
--- a/MuonSpectrometer/MuonCnv/MuonEventTPCnv/share/MdtPrepDataContainerCnv_p1_test.ref
+++ b/MuonSpectrometer/MuonCnv/MuonEventTPCnv/share/MdtPrepDataContainerCnv_p1_test.ref
@@ -1,18 +1,6 @@
 
 
-Initializing Gaudi ApplicationMgr using job opts /home/emoyse/master2/build/x86_64-centos7-gcc8-opt/jobOptions/MuonEventTPCnv/MuonEventTPCnv_test.txt
-JobOptionsSvc        INFO # =======> /home/emoyse/master2/build/x86_64-centos7-gcc8-opt/jobOptions/MuonEventTPCnv/MuonEventTPCnv_test.txt
-JobOptionsSvc        INFO # (1,1): ApplicationMgr.Dlls += ["StoreGate", "CLIDComps"]
-JobOptionsSvc        INFO # (2,1): ApplicationMgr.ExtSvc += ["StoreGateSvc", "StoreGateSvc/DetectorStore", "StoreGateSvc/ConditionStore", "Athena::RCUSvc"]
-JobOptionsSvc        INFO Job options successfully read in from /home/emoyse/master2/build/x86_64-centos7-gcc8-opt/jobOptions/MuonEventTPCnv/MuonEventTPCnv_test.txt
-ApplicationMgr    SUCCESS 
-====================================================================================================================================
-                                                   Welcome to ApplicationMgr (GaudiCoreSvc v34r0)
-                                          running on pcumass4 on Wed Nov  4 09:35:03 2020
-====================================================================================================================================
-ApplicationMgr       INFO Successfully loaded modules : StoreGate, CLIDComps
 ApplicationMgr       INFO Application Manager Configured successfully
-ClassIDSvc           INFO  getRegistryEntries: read 12360 CLIDRegistry entries for module ALL
 EventLoopMgr      WARNING Unable to locate service "EventSelector" 
 EventLoopMgr      WARNING No events will be processed from external input.
 ApplicationMgr       INFO Application Manager Initialized successfully
@@ -22,22 +10,7 @@ ApplicationMgr Ready
  Volume pmdum2 not found: returning 0
  Volume pmdum3 not found: returning 0
  INFO Initialize from dictionary
- DEBUG (Re)initialize
  AtlasDetectorID::initialize_from_dictionary - OK 
- DEBUG decode index and bit fields for each level: 
- DEBUG indet          decode 1 vals 2,4,5,7,10,11,12,13 mask/zero mask/shift/bits/offset 7   1fffffffffffffff 61 3  0  indexes 0 0 1 2 0 3 0 0 4 5 6 7 mode  enumerated  
- DEBUG pixel          decode 1 vals 1:3             mask/zero mask/shift/bits/offset 3   e7ffffffffffffff 59 2  3  indexes                     mode  both_bounded  
- DEBUG bec            decode 1 vals -2,0,2          mask/zero mask/shift/bits/offset 3   f9ffffffffffffff 57 2  5  indexes 0 0 1 0 2           mode  enumerated  
- DEBUG bec_shift      decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
- DEBUG lay_disk       decode 0 vals 0:2             mask/zero mask/shift/bits/offset 3   fe7fffffffffffff 55 2  7  indexes                     mode  both_bounded  
- DEBUG lay_disk_shift decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
- DEBUG phi_mod        decode 0 vals 0:51            mask/zero mask/shift/bits/offset 3f  ff81ffffffffffff 49 6  9  indexes                     mode  both_bounded  
- DEBUG phi_mod_shift  decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
- DEBUG eta_mod        decode 1 vals -6:6            mask/zero mask/shift/bits/offset f   fffe1fffffffffff 45 4  15 indexes                     mode  both_bounded  
- DEBUG eta_mod_shift  decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
- DEBUG phi_index      decode 0 vals 0:327           mask/zero mask/shift/bits/offset 1ff ffffe00fffffffff 36 9  19 indexes                     mode  both_bounded  
- DEBUG eta_index      decode 0 vals 0:191           mask/zero mask/shift/bits/offset ff  fffffff00fffffff 28 8  28 indexes                     mode  both_bounded  
- DEBUG bec_eta_mod    decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
 indet 1 2,4,5,7,10,11,12,13 7 1fffffffffffffff 61 3 0 min/max 2 13 values  2 4 5 7 10 11 12 13 indexes  0 0 1 2 0 3 0 0 4 5 6 7 indices  8 prev  0 next  0 mode  enumerated  cont mode  none  
 pixel 1 1:3 3 e7ffffffffffffff 59 2 3 min/max 1 3 values  indexes  indices  3 prev  0 next  0 mode  both_bounded  cont mode  none  
 bec 1 -2,0,2 3 f9ffffffffffffff 57 2 5 min/max -2 2 values  -2 0 2 indexes  0 0 1 0 2 indices  3 prev  0 next  0 mode  enumerated  cont mode  none  
@@ -60,85 +33,28 @@ phi_module    4
 eta_module    5
 phi_index     6
 eta_index     7
- DEBUG PixelID::initialize_from_dict Set barrel field values: 0
- DEBUG PixelID::initialize_from_dict Set dbm field values: -999,999
- DEBUG PixelID::initialize_from_dict Found field values: InDet/Pixel 2/1
- DEBUG PixelID::init_neighbors 
- DEBUG PixelID::initialize_from_dict 
- DEBUG Wafer range -> 2/1/0/0/0:21/-6:6 | 2/1/0/1/0:37/-6:6 | 2/1/0/2/0:51/-6:6 | 2/1/-2,2/0:2/0:47/0
- DEBUG Pixel range -> 2/1/0/0/0:21/-6:6/0:327/0:191 | 2/1/0/1/0:37/-6:6/0:327/0:143 | 2/1/0/2/0:51/-6:6/0:327/0:143 | 2/1/-2,2/0:2/0:47/0/0:327/0:143
 INFO SCT_ID::initialize_from_dictionary 
  AtlasDetectorID::initialize_from_dictionary - OK 
 INFO Initialize from dictionary cout 0
- DEBUG (Re)initialize
  AtlasDetectorID::initialize_from_dictionary - OK 
- DEBUG decode index and bit fields for each level: 
- DEBUG indet     decode 1 vals 2,4,5,7,10,11,12,13 mask/zero mask/shift/bits/offset 7   1fffffffffffffff 61 3  0  indexes 0 0 1 2 0 3 0 0 4 5 6 7 mode  enumerated  
- DEBUG trt       decode 1 vals 1:3             mask/zero mask/shift/bits/offset 3   e7ffffffffffffff 59 2  3  indexes                     mode  both_bounded  
- DEBUG bec       decode 1 vals -2,-1,1,2       mask/zero mask/shift/bits/offset 3   f9ffffffffffffff 57 2  5  indexes 0 1 0 2 3           mode  enumerated  
- DEBUG phi_mod   decode 0 vals 0:31            mask/zero mask/shift/bits/offset 1f  fe0fffffffffffff 52 5  7  indexes                     mode  both_bounded  
- DEBUG lay_wheel decode 0 vals 0:17            mask/zero mask/shift/bits/offset 1f  fff07fffffffffff 47 5  12 indexes                     mode  both_bounded  
- DEBUG str_lay   decode 0 vals 0:29            mask/zero mask/shift/bits/offset 1f  ffff83ffffffffff 42 5  17 indexes                     mode  both_bounded  
- DEBUG straw     decode 0 vals 0:28            mask/zero mask/shift/bits/offset 1f  fffffc1fffffffff 37 5  22 indexes                     mode  both_bounded  
- DEBUG  TRT_ID::initialize_from_dict Set barrel field values: -1,1
- DEBUG  TRT_ID::initialize_from_dict Found field values: InDet/TRT 2/3
- DEBUG Module range -> 2/3/-1,1/0:31/0 | 2/3/-1,1/0:31/1 | 2/3/-1,1/0:31/2 | 2/3/-2,2/0:31/0:5 | 2/3/-2,2/0:31/6:13 | 2/3/-2,2/0:31/14:17
- DEBUG TRT_ID::init_hashes  module hash max 1344
- DEBUG TRT_ID::init_hashes  straw layer hash max 19008
- DEBUG TRT_ID::init_hashes  straw hash max 424576
- DEBUG  TRT_ID::initialize_from_dict 
- DEBUG Module range -> 2/3/-1,1/0:31/0 | 2/3/-1,1/0:31/1 | 2/3/-1,1/0:31/2 | 2/3/-2,2/0:31/0:5 | 2/3/-2,2/0:31/6:13 | 2/3/-2,2/0:31/14:17
- DEBUG Straw layer range -> 2/3/-1,1/0:31/0/0 | 2/3/-1,1/0:31/0/1:4 | 2/3/-1,1/0:31/0/5:9 | 2/3/-1,1/0:31/0/10:14 | 2/3/-1,1/0:31/0/15:17 | 2/3/-1,1/0:31/0/18 | 2/3/-1,1/0:31/1/0 | 2/3/-1,1/0:31/1/1:5 | 2/3/-1,1/0:31/1/6:10 | 2/3/-1,1/0:31/1/11:15 | 2/3/-1,1/0:31/1/16:20 | 2/3/-1,1/0:31/1/21:22 | 2/3/-1,1/0:31/1/23 | 2/3/-1,1/0:31/2/0 | 2/3/-1,1/0:31/2/1:4 | 2/3/-1,1/0:31/2/5:9 | 2/3/-1,1/0:31/2/10:14 | 2/3/-1,1/0:31/2/15:19 | 2/3/-1,1/0:31/2/20:24 | 2/3/-1,1/0:31/2/25:28 | 2/3/-1,1/0:31/2/29 | 2/3/-2,2/0:31/0:5/0:15 | 2/3/-2,2/0:31/6:13/0:7 | 2/3/-2,2/0:31/14:17/0:15
- DEBUG Straw range -> 2/3/-1,1/0:31/0/0/0:14 | 2/3/-1,1/0:31/0/1:4/0:15 | 2/3/-1,1/0:31/0/5:9/0:16 | 2/3/-1,1/0:31/0/10:14/0:17 | 2/3/-1,1/0:31/0/15:17/0:18 | 2/3/-1,1/0:31/0/18/0:17 | 2/3/-1,1/0:31/1/0/0:18 | 2/3/-1,1/0:31/1/1:5/0:19 | 2/3/-1,1/0:31/1/6:10/0:20 | 2/3/-1,1/0:31/1/11:15/0:21 | 2/3/-1,1/0:31/1/16:20/0:22 | 2/3/-1,1/0:31/1/21:22/0:23 | 2/3/-1,1/0:31/1/23/0:22 | 2/3/-1,1/0:31/2/0/0:22 | 2/3/-1,1/0:31/2/1:4/0:23 | 2/3/-1,1/0:31/2/5:9/0:24 | 2/3/-1,1/0:31/2/10:14/0:25 | 2/3/-1,1/0:31/2/15:19/0:26 | 2/3/-1,1/0:31/2/20:24/0:27 | 2/3/-1,1/0:31/2/25:28/0:28 | 2/3/-1,1/0:31/2/29/0:27 | 2/3/-2,2/0:31/0:5/0:15/0:23 | 2/3/-2,2/0:31/6:13/0:7/0:23 | 2/3/-2,2/0:31/14:17/0:15/0:17
- AtlasDetectorID::initialize_from_dictionary - OK 
-CscIdHelper          INFO MultiRange built successfully to Technology: MultiRange size is 218
-CscIdHelper          INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 257
-CscIdHelper          INFO MultiRange built successfully to cscStrip: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 CscIdHelper          INFO Initializing CSC hash indices ... 
-CscIdHelper          INFO The element hash max is 32
-CscIdHelper          INFO The detector element hash max is 64
 CscIdHelper          INFO The channel hash max is 61440
 CscIdHelper          INFO Initializing CSC hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-RpcIdHelper          INFO MultiRange built successfully to doubletR: MultiRange size is 261
-RpcIdHelper          INFO MultiRange built successfully to detectorElement: DetectorElement MultiRange size is 261
-RpcIdHelper          INFO MultiRange built successfully to rpcStrip: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 RpcIdHelper          INFO Initializing RPC hash indices ... 
-RpcIdHelper          INFO The element hash max is 600
-RpcIdHelper          INFO The detector element hash max is 1122
 RpcIdHelper          INFO Initializing RPC hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-TgcIdHelper          INFO MultiRange built successfully to Technology: MultiRange size is 218
-TgcIdHelper          INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 218
-TgcIdHelper          INFO MultiRange built successfully to channel: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 TgcIdHelper          INFO Initializing TGC hash indices ... 
-TgcIdHelper          INFO The element hash max is 1578
-TgcIdHelper          INFO The detector element hash max is 1578
 TgcIdHelper          INFO Initializing TGC hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-MdtIdHelper          INFO MultiRange built successfully to Technology: MultiRange size is 218
-MdtIdHelper          INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 261
-MdtIdHelper          INFO MultiRange built successfully to tube: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 MdtIdHelper          INFO Initializing MDT hash indices ... 
-MdtIdHelper          INFO The element hash max is 1188
-MdtIdHelper          INFO The detector element hash max is 2328
 MdtIdHelper          INFO Initializing MDT hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-sTgcIdHelper         INFO MultiRange built successfully to Technology: MultiRange size is 218
-sTgcIdHelper         INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 253
-sTgcIdHelper         INFO MultiRange built successfully to channel: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 sTgcIdHelper         INFO Initializing sTGC hash indices ... 
-sTgcIdHelper         INFO The element hash max is 96
-sTgcIdHelper         INFO The detector element hash max is 192
 sTgcIdHelper         INFO Initializing sTGC hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-MmIdHelper           INFO MultiRange built successfully to Technology: MultiRange size is 218
-MmIdHelper           INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 257
-MmIdHelper           INFO MultiRange built successfully to channel: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 MmIdHelper           INFO Initializing MicroMegas hash indices ... 
-MmIdHelper           INFO The element hash max is 64
-MmIdHelper           INFO The detector element hash max is 128
 MmIdHelper           INFO Initializing MicroMegas hash indices for finding neighbors ... 
  AtlasDetectorID::initialize_from_dictionary - OK 
-ClassIDSvc           INFO  getRegistryEntries: read 379 CLIDRegistry entries for module ALL
 test1
diff --git a/MuonSpectrometer/MuonCnv/MuonEventTPCnv/share/MdtPrepDataContainerCnv_p2_test.ref b/MuonSpectrometer/MuonCnv/MuonEventTPCnv/share/MdtPrepDataContainerCnv_p2_test.ref
index 3934b603b410976ca5f8d36552efe31f9788695a..eafa59f97879b9e447a9cdea019dc6bb7238a360 100644
--- a/MuonSpectrometer/MuonCnv/MuonEventTPCnv/share/MdtPrepDataContainerCnv_p2_test.ref
+++ b/MuonSpectrometer/MuonCnv/MuonEventTPCnv/share/MdtPrepDataContainerCnv_p2_test.ref
@@ -1,18 +1,6 @@
 
 
-Initializing Gaudi ApplicationMgr using job opts /home/emoyse/master2/build/x86_64-centos7-gcc8-opt/jobOptions/MuonEventTPCnv/MuonEventTPCnv_test.txt
-JobOptionsSvc        INFO # =======> /home/emoyse/master2/build/x86_64-centos7-gcc8-opt/jobOptions/MuonEventTPCnv/MuonEventTPCnv_test.txt
-JobOptionsSvc        INFO # (1,1): ApplicationMgr.Dlls += ["StoreGate", "CLIDComps"]
-JobOptionsSvc        INFO # (2,1): ApplicationMgr.ExtSvc += ["StoreGateSvc", "StoreGateSvc/DetectorStore", "StoreGateSvc/ConditionStore", "Athena::RCUSvc"]
-JobOptionsSvc        INFO Job options successfully read in from /home/emoyse/master2/build/x86_64-centos7-gcc8-opt/jobOptions/MuonEventTPCnv/MuonEventTPCnv_test.txt
-ApplicationMgr    SUCCESS 
-====================================================================================================================================
-                                                   Welcome to ApplicationMgr (GaudiCoreSvc v34r0)
-                                          running on pcumass4 on Wed Nov  4 09:35:05 2020
-====================================================================================================================================
-ApplicationMgr       INFO Successfully loaded modules : StoreGate, CLIDComps
 ApplicationMgr       INFO Application Manager Configured successfully
-ClassIDSvc           INFO  getRegistryEntries: read 12360 CLIDRegistry entries for module ALL
 EventLoopMgr      WARNING Unable to locate service "EventSelector" 
 EventLoopMgr      WARNING No events will be processed from external input.
 ApplicationMgr       INFO Application Manager Initialized successfully
@@ -22,22 +10,7 @@ ApplicationMgr Ready
  Volume pmdum2 not found: returning 0
  Volume pmdum3 not found: returning 0
  INFO Initialize from dictionary
- DEBUG (Re)initialize
  AtlasDetectorID::initialize_from_dictionary - OK 
- DEBUG decode index and bit fields for each level: 
- DEBUG indet          decode 1 vals 2,4,5,7,10,11,12,13 mask/zero mask/shift/bits/offset 7   1fffffffffffffff 61 3  0  indexes 0 0 1 2 0 3 0 0 4 5 6 7 mode  enumerated  
- DEBUG pixel          decode 1 vals 1:3             mask/zero mask/shift/bits/offset 3   e7ffffffffffffff 59 2  3  indexes                     mode  both_bounded  
- DEBUG bec            decode 1 vals -2,0,2          mask/zero mask/shift/bits/offset 3   f9ffffffffffffff 57 2  5  indexes 0 0 1 0 2           mode  enumerated  
- DEBUG bec_shift      decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
- DEBUG lay_disk       decode 0 vals 0:2             mask/zero mask/shift/bits/offset 3   fe7fffffffffffff 55 2  7  indexes                     mode  both_bounded  
- DEBUG lay_disk_shift decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
- DEBUG phi_mod        decode 0 vals 0:51            mask/zero mask/shift/bits/offset 3f  ff81ffffffffffff 49 6  9  indexes                     mode  both_bounded  
- DEBUG phi_mod_shift  decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
- DEBUG eta_mod        decode 1 vals -6:6            mask/zero mask/shift/bits/offset f   fffe1fffffffffff 45 4  15 indexes                     mode  both_bounded  
- DEBUG eta_mod_shift  decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
- DEBUG phi_index      decode 0 vals 0:327           mask/zero mask/shift/bits/offset 1ff ffffe00fffffffff 36 9  19 indexes                     mode  both_bounded  
- DEBUG eta_index      decode 0 vals 0:191           mask/zero mask/shift/bits/offset ff  fffffff00fffffff 28 8  28 indexes                     mode  both_bounded  
- DEBUG bec_eta_mod    decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
 indet 1 2,4,5,7,10,11,12,13 7 1fffffffffffffff 61 3 0 min/max 2 13 values  2 4 5 7 10 11 12 13 indexes  0 0 1 2 0 3 0 0 4 5 6 7 indices  8 prev  0 next  0 mode  enumerated  cont mode  none  
 pixel 1 1:3 3 e7ffffffffffffff 59 2 3 min/max 1 3 values  indexes  indices  3 prev  0 next  0 mode  both_bounded  cont mode  none  
 bec 1 -2,0,2 3 f9ffffffffffffff 57 2 5 min/max -2 2 values  -2 0 2 indexes  0 0 1 0 2 indices  3 prev  0 next  0 mode  enumerated  cont mode  none  
@@ -60,85 +33,28 @@ phi_module    4
 eta_module    5
 phi_index     6
 eta_index     7
- DEBUG PixelID::initialize_from_dict Set barrel field values: 0
- DEBUG PixelID::initialize_from_dict Set dbm field values: -999,999
- DEBUG PixelID::initialize_from_dict Found field values: InDet/Pixel 2/1
- DEBUG PixelID::init_neighbors 
- DEBUG PixelID::initialize_from_dict 
- DEBUG Wafer range -> 2/1/0/0/0:21/-6:6 | 2/1/0/1/0:37/-6:6 | 2/1/0/2/0:51/-6:6 | 2/1/-2,2/0:2/0:47/0
- DEBUG Pixel range -> 2/1/0/0/0:21/-6:6/0:327/0:191 | 2/1/0/1/0:37/-6:6/0:327/0:143 | 2/1/0/2/0:51/-6:6/0:327/0:143 | 2/1/-2,2/0:2/0:47/0/0:327/0:143
 INFO SCT_ID::initialize_from_dictionary 
  AtlasDetectorID::initialize_from_dictionary - OK 
 INFO Initialize from dictionary cout 0
- DEBUG (Re)initialize
  AtlasDetectorID::initialize_from_dictionary - OK 
- DEBUG decode index and bit fields for each level: 
- DEBUG indet     decode 1 vals 2,4,5,7,10,11,12,13 mask/zero mask/shift/bits/offset 7   1fffffffffffffff 61 3  0  indexes 0 0 1 2 0 3 0 0 4 5 6 7 mode  enumerated  
- DEBUG trt       decode 1 vals 1:3             mask/zero mask/shift/bits/offset 3   e7ffffffffffffff 59 2  3  indexes                     mode  both_bounded  
- DEBUG bec       decode 1 vals -2,-1,1,2       mask/zero mask/shift/bits/offset 3   f9ffffffffffffff 57 2  5  indexes 0 1 0 2 3           mode  enumerated  
- DEBUG phi_mod   decode 0 vals 0:31            mask/zero mask/shift/bits/offset 1f  fe0fffffffffffff 52 5  7  indexes                     mode  both_bounded  
- DEBUG lay_wheel decode 0 vals 0:17            mask/zero mask/shift/bits/offset 1f  fff07fffffffffff 47 5  12 indexes                     mode  both_bounded  
- DEBUG str_lay   decode 0 vals 0:29            mask/zero mask/shift/bits/offset 1f  ffff83ffffffffff 42 5  17 indexes                     mode  both_bounded  
- DEBUG straw     decode 0 vals 0:28            mask/zero mask/shift/bits/offset 1f  fffffc1fffffffff 37 5  22 indexes                     mode  both_bounded  
- DEBUG  TRT_ID::initialize_from_dict Set barrel field values: -1,1
- DEBUG  TRT_ID::initialize_from_dict Found field values: InDet/TRT 2/3
- DEBUG Module range -> 2/3/-1,1/0:31/0 | 2/3/-1,1/0:31/1 | 2/3/-1,1/0:31/2 | 2/3/-2,2/0:31/0:5 | 2/3/-2,2/0:31/6:13 | 2/3/-2,2/0:31/14:17
- DEBUG TRT_ID::init_hashes  module hash max 1344
- DEBUG TRT_ID::init_hashes  straw layer hash max 19008
- DEBUG TRT_ID::init_hashes  straw hash max 424576
- DEBUG  TRT_ID::initialize_from_dict 
- DEBUG Module range -> 2/3/-1,1/0:31/0 | 2/3/-1,1/0:31/1 | 2/3/-1,1/0:31/2 | 2/3/-2,2/0:31/0:5 | 2/3/-2,2/0:31/6:13 | 2/3/-2,2/0:31/14:17
- DEBUG Straw layer range -> 2/3/-1,1/0:31/0/0 | 2/3/-1,1/0:31/0/1:4 | 2/3/-1,1/0:31/0/5:9 | 2/3/-1,1/0:31/0/10:14 | 2/3/-1,1/0:31/0/15:17 | 2/3/-1,1/0:31/0/18 | 2/3/-1,1/0:31/1/0 | 2/3/-1,1/0:31/1/1:5 | 2/3/-1,1/0:31/1/6:10 | 2/3/-1,1/0:31/1/11:15 | 2/3/-1,1/0:31/1/16:20 | 2/3/-1,1/0:31/1/21:22 | 2/3/-1,1/0:31/1/23 | 2/3/-1,1/0:31/2/0 | 2/3/-1,1/0:31/2/1:4 | 2/3/-1,1/0:31/2/5:9 | 2/3/-1,1/0:31/2/10:14 | 2/3/-1,1/0:31/2/15:19 | 2/3/-1,1/0:31/2/20:24 | 2/3/-1,1/0:31/2/25:28 | 2/3/-1,1/0:31/2/29 | 2/3/-2,2/0:31/0:5/0:15 | 2/3/-2,2/0:31/6:13/0:7 | 2/3/-2,2/0:31/14:17/0:15
- DEBUG Straw range -> 2/3/-1,1/0:31/0/0/0:14 | 2/3/-1,1/0:31/0/1:4/0:15 | 2/3/-1,1/0:31/0/5:9/0:16 | 2/3/-1,1/0:31/0/10:14/0:17 | 2/3/-1,1/0:31/0/15:17/0:18 | 2/3/-1,1/0:31/0/18/0:17 | 2/3/-1,1/0:31/1/0/0:18 | 2/3/-1,1/0:31/1/1:5/0:19 | 2/3/-1,1/0:31/1/6:10/0:20 | 2/3/-1,1/0:31/1/11:15/0:21 | 2/3/-1,1/0:31/1/16:20/0:22 | 2/3/-1,1/0:31/1/21:22/0:23 | 2/3/-1,1/0:31/1/23/0:22 | 2/3/-1,1/0:31/2/0/0:22 | 2/3/-1,1/0:31/2/1:4/0:23 | 2/3/-1,1/0:31/2/5:9/0:24 | 2/3/-1,1/0:31/2/10:14/0:25 | 2/3/-1,1/0:31/2/15:19/0:26 | 2/3/-1,1/0:31/2/20:24/0:27 | 2/3/-1,1/0:31/2/25:28/0:28 | 2/3/-1,1/0:31/2/29/0:27 | 2/3/-2,2/0:31/0:5/0:15/0:23 | 2/3/-2,2/0:31/6:13/0:7/0:23 | 2/3/-2,2/0:31/14:17/0:15/0:17
- AtlasDetectorID::initialize_from_dictionary - OK 
-CscIdHelper          INFO MultiRange built successfully to Technology: MultiRange size is 218
-CscIdHelper          INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 257
-CscIdHelper          INFO MultiRange built successfully to cscStrip: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 CscIdHelper          INFO Initializing CSC hash indices ... 
-CscIdHelper          INFO The element hash max is 32
-CscIdHelper          INFO The detector element hash max is 64
 CscIdHelper          INFO The channel hash max is 61440
 CscIdHelper          INFO Initializing CSC hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-RpcIdHelper          INFO MultiRange built successfully to doubletR: MultiRange size is 261
-RpcIdHelper          INFO MultiRange built successfully to detectorElement: DetectorElement MultiRange size is 261
-RpcIdHelper          INFO MultiRange built successfully to rpcStrip: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 RpcIdHelper          INFO Initializing RPC hash indices ... 
-RpcIdHelper          INFO The element hash max is 600
-RpcIdHelper          INFO The detector element hash max is 1122
 RpcIdHelper          INFO Initializing RPC hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-TgcIdHelper          INFO MultiRange built successfully to Technology: MultiRange size is 218
-TgcIdHelper          INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 218
-TgcIdHelper          INFO MultiRange built successfully to channel: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 TgcIdHelper          INFO Initializing TGC hash indices ... 
-TgcIdHelper          INFO The element hash max is 1578
-TgcIdHelper          INFO The detector element hash max is 1578
 TgcIdHelper          INFO Initializing TGC hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-MdtIdHelper          INFO MultiRange built successfully to Technology: MultiRange size is 218
-MdtIdHelper          INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 261
-MdtIdHelper          INFO MultiRange built successfully to tube: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 MdtIdHelper          INFO Initializing MDT hash indices ... 
-MdtIdHelper          INFO The element hash max is 1188
-MdtIdHelper          INFO The detector element hash max is 2328
 MdtIdHelper          INFO Initializing MDT hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-sTgcIdHelper         INFO MultiRange built successfully to Technology: MultiRange size is 218
-sTgcIdHelper         INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 253
-sTgcIdHelper         INFO MultiRange built successfully to channel: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 sTgcIdHelper         INFO Initializing sTGC hash indices ... 
-sTgcIdHelper         INFO The element hash max is 96
-sTgcIdHelper         INFO The detector element hash max is 192
 sTgcIdHelper         INFO Initializing sTGC hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-MmIdHelper           INFO MultiRange built successfully to Technology: MultiRange size is 218
-MmIdHelper           INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 257
-MmIdHelper           INFO MultiRange built successfully to channel: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 MmIdHelper           INFO Initializing MicroMegas hash indices ... 
-MmIdHelper           INFO The element hash max is 64
-MmIdHelper           INFO The detector element hash max is 128
 MmIdHelper           INFO Initializing MicroMegas hash indices for finding neighbors ... 
  AtlasDetectorID::initialize_from_dictionary - OK 
-ClassIDSvc           INFO  getRegistryEntries: read 379 CLIDRegistry entries for module ALL
 test1
diff --git a/MuonSpectrometer/MuonCnv/MuonEventTPCnv/share/RpcClusterOnTrackCnv_p3_test.ref b/MuonSpectrometer/MuonCnv/MuonEventTPCnv/share/RpcClusterOnTrackCnv_p3_test.ref
index 1a0f13b1c0c227435ce376c2e4cc5c8e01a7f8a5..eafa59f97879b9e447a9cdea019dc6bb7238a360 100644
--- a/MuonSpectrometer/MuonCnv/MuonEventTPCnv/share/RpcClusterOnTrackCnv_p3_test.ref
+++ b/MuonSpectrometer/MuonCnv/MuonEventTPCnv/share/RpcClusterOnTrackCnv_p3_test.ref
@@ -1,18 +1,6 @@
 
 
-Initializing Gaudi ApplicationMgr using job opts /home/emoyse/master2/build/x86_64-centos7-gcc8-opt/jobOptions/MuonEventTPCnv/MuonEventTPCnv_test.txt
-JobOptionsSvc        INFO # =======> /home/emoyse/master2/build/x86_64-centos7-gcc8-opt/jobOptions/MuonEventTPCnv/MuonEventTPCnv_test.txt
-JobOptionsSvc        INFO # (1,1): ApplicationMgr.Dlls += ["StoreGate", "CLIDComps"]
-JobOptionsSvc        INFO # (2,1): ApplicationMgr.ExtSvc += ["StoreGateSvc", "StoreGateSvc/DetectorStore", "StoreGateSvc/ConditionStore", "Athena::RCUSvc"]
-JobOptionsSvc        INFO Job options successfully read in from /home/emoyse/master2/build/x86_64-centos7-gcc8-opt/jobOptions/MuonEventTPCnv/MuonEventTPCnv_test.txt
-ApplicationMgr    SUCCESS 
-====================================================================================================================================
-                                                   Welcome to ApplicationMgr (GaudiCoreSvc v34r0)
-                                          running on pcumass4 on Wed Nov  4 09:34:29 2020
-====================================================================================================================================
-ApplicationMgr       INFO Successfully loaded modules : StoreGate, CLIDComps
 ApplicationMgr       INFO Application Manager Configured successfully
-ClassIDSvc           INFO  getRegistryEntries: read 12361 CLIDRegistry entries for module ALL
 EventLoopMgr      WARNING Unable to locate service "EventSelector" 
 EventLoopMgr      WARNING No events will be processed from external input.
 ApplicationMgr       INFO Application Manager Initialized successfully
@@ -22,22 +10,7 @@ ApplicationMgr Ready
  Volume pmdum2 not found: returning 0
  Volume pmdum3 not found: returning 0
  INFO Initialize from dictionary
- DEBUG (Re)initialize
  AtlasDetectorID::initialize_from_dictionary - OK 
- DEBUG decode index and bit fields for each level: 
- DEBUG indet          decode 1 vals 2,4,5,7,10,11,12,13 mask/zero mask/shift/bits/offset 7   1fffffffffffffff 61 3  0  indexes 0 0 1 2 0 3 0 0 4 5 6 7 mode  enumerated  
- DEBUG pixel          decode 1 vals 1:3             mask/zero mask/shift/bits/offset 3   e7ffffffffffffff 59 2  3  indexes                     mode  both_bounded  
- DEBUG bec            decode 1 vals -2,0,2          mask/zero mask/shift/bits/offset 3   f9ffffffffffffff 57 2  5  indexes 0 0 1 0 2           mode  enumerated  
- DEBUG bec_shift      decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
- DEBUG lay_disk       decode 0 vals 0:2             mask/zero mask/shift/bits/offset 3   fe7fffffffffffff 55 2  7  indexes                     mode  both_bounded  
- DEBUG lay_disk_shift decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
- DEBUG phi_mod        decode 0 vals 0:51            mask/zero mask/shift/bits/offset 3f  ff81ffffffffffff 49 6  9  indexes                     mode  both_bounded  
- DEBUG phi_mod_shift  decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
- DEBUG eta_mod        decode 1 vals -6:6            mask/zero mask/shift/bits/offset f   fffe1fffffffffff 45 4  15 indexes                     mode  both_bounded  
- DEBUG eta_mod_shift  decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
- DEBUG phi_index      decode 0 vals 0:327           mask/zero mask/shift/bits/offset 1ff ffffe00fffffffff 36 9  19 indexes                     mode  both_bounded  
- DEBUG eta_index      decode 0 vals 0:191           mask/zero mask/shift/bits/offset ff  fffffff00fffffff 28 8  28 indexes                     mode  both_bounded  
- DEBUG bec_eta_mod    decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
 indet 1 2,4,5,7,10,11,12,13 7 1fffffffffffffff 61 3 0 min/max 2 13 values  2 4 5 7 10 11 12 13 indexes  0 0 1 2 0 3 0 0 4 5 6 7 indices  8 prev  0 next  0 mode  enumerated  cont mode  none  
 pixel 1 1:3 3 e7ffffffffffffff 59 2 3 min/max 1 3 values  indexes  indices  3 prev  0 next  0 mode  both_bounded  cont mode  none  
 bec 1 -2,0,2 3 f9ffffffffffffff 57 2 5 min/max -2 2 values  -2 0 2 indexes  0 0 1 0 2 indices  3 prev  0 next  0 mode  enumerated  cont mode  none  
@@ -60,87 +33,28 @@ phi_module    4
 eta_module    5
 phi_index     6
 eta_index     7
- DEBUG PixelID::initialize_from_dict Set barrel field values: 0
- DEBUG PixelID::initialize_from_dict Set dbm field values: -999,999
- DEBUG PixelID::initialize_from_dict Found field values: InDet/Pixel 2/1
- DEBUG PixelID::init_neighbors 
- DEBUG PixelID::initialize_from_dict 
- DEBUG Wafer range -> 2/1/0/0/0:21/-6:6 | 2/1/0/1/0:37/-6:6 | 2/1/0/2/0:51/-6:6 | 2/1/-2,2/0:2/0:47/0
- DEBUG Pixel range -> 2/1/0/0/0:21/-6:6/0:327/0:191 | 2/1/0/1/0:37/-6:6/0:327/0:143 | 2/1/0/2/0:51/-6:6/0:327/0:143 | 2/1/-2,2/0:2/0:47/0/0:327/0:143
 INFO SCT_ID::initialize_from_dictionary 
  AtlasDetectorID::initialize_from_dictionary - OK 
 INFO Initialize from dictionary cout 0
- DEBUG (Re)initialize
  AtlasDetectorID::initialize_from_dictionary - OK 
- DEBUG decode index and bit fields for each level: 
- DEBUG indet     decode 1 vals 2,4,5,7,10,11,12,13 mask/zero mask/shift/bits/offset 7   1fffffffffffffff 61 3  0  indexes 0 0 1 2 0 3 0 0 4 5 6 7 mode  enumerated  
- DEBUG trt       decode 1 vals 1:3             mask/zero mask/shift/bits/offset 3   e7ffffffffffffff 59 2  3  indexes                     mode  both_bounded  
- DEBUG bec       decode 1 vals -2,-1,1,2       mask/zero mask/shift/bits/offset 3   f9ffffffffffffff 57 2  5  indexes 0 1 0 2 3           mode  enumerated  
- DEBUG phi_mod   decode 0 vals 0:31            mask/zero mask/shift/bits/offset 1f  fe0fffffffffffff 52 5  7  indexes                     mode  both_bounded  
- DEBUG lay_wheel decode 0 vals 0:17            mask/zero mask/shift/bits/offset 1f  fff07fffffffffff 47 5  12 indexes                     mode  both_bounded  
- DEBUG str_lay   decode 0 vals 0:29            mask/zero mask/shift/bits/offset 1f  ffff83ffffffffff 42 5  17 indexes                     mode  both_bounded  
- DEBUG straw     decode 0 vals 0:28            mask/zero mask/shift/bits/offset 1f  fffffc1fffffffff 37 5  22 indexes                     mode  both_bounded  
- DEBUG  TRT_ID::initialize_from_dict Set barrel field values: -1,1
- DEBUG  TRT_ID::initialize_from_dict Found field values: InDet/TRT 2/3
- DEBUG Module range -> 2/3/-1,1/0:31/0 | 2/3/-1,1/0:31/1 | 2/3/-1,1/0:31/2 | 2/3/-2,2/0:31/0:5 | 2/3/-2,2/0:31/6:13 | 2/3/-2,2/0:31/14:17
- DEBUG TRT_ID::init_hashes  module hash max 1344
- DEBUG TRT_ID::init_hashes  straw layer hash max 19008
- DEBUG TRT_ID::init_hashes  straw hash max 424576
- DEBUG  TRT_ID::initialize_from_dict 
- DEBUG Module range -> 2/3/-1,1/0:31/0 | 2/3/-1,1/0:31/1 | 2/3/-1,1/0:31/2 | 2/3/-2,2/0:31/0:5 | 2/3/-2,2/0:31/6:13 | 2/3/-2,2/0:31/14:17
- DEBUG Straw layer range -> 2/3/-1,1/0:31/0/0 | 2/3/-1,1/0:31/0/1:4 | 2/3/-1,1/0:31/0/5:9 | 2/3/-1,1/0:31/0/10:14 | 2/3/-1,1/0:31/0/15:17 | 2/3/-1,1/0:31/0/18 | 2/3/-1,1/0:31/1/0 | 2/3/-1,1/0:31/1/1:5 | 2/3/-1,1/0:31/1/6:10 | 2/3/-1,1/0:31/1/11:15 | 2/3/-1,1/0:31/1/16:20 | 2/3/-1,1/0:31/1/21:22 | 2/3/-1,1/0:31/1/23 | 2/3/-1,1/0:31/2/0 | 2/3/-1,1/0:31/2/1:4 | 2/3/-1,1/0:31/2/5:9 | 2/3/-1,1/0:31/2/10:14 | 2/3/-1,1/0:31/2/15:19 | 2/3/-1,1/0:31/2/20:24 | 2/3/-1,1/0:31/2/25:28 | 2/3/-1,1/0:31/2/29 | 2/3/-2,2/0:31/0:5/0:15 | 2/3/-2,2/0:31/6:13/0:7 | 2/3/-2,2/0:31/14:17/0:15
- DEBUG Straw range -> 2/3/-1,1/0:31/0/0/0:14 | 2/3/-1,1/0:31/0/1:4/0:15 | 2/3/-1,1/0:31/0/5:9/0:16 | 2/3/-1,1/0:31/0/10:14/0:17 | 2/3/-1,1/0:31/0/15:17/0:18 | 2/3/-1,1/0:31/0/18/0:17 | 2/3/-1,1/0:31/1/0/0:18 | 2/3/-1,1/0:31/1/1:5/0:19 | 2/3/-1,1/0:31/1/6:10/0:20 | 2/3/-1,1/0:31/1/11:15/0:21 | 2/3/-1,1/0:31/1/16:20/0:22 | 2/3/-1,1/0:31/1/21:22/0:23 | 2/3/-1,1/0:31/1/23/0:22 | 2/3/-1,1/0:31/2/0/0:22 | 2/3/-1,1/0:31/2/1:4/0:23 | 2/3/-1,1/0:31/2/5:9/0:24 | 2/3/-1,1/0:31/2/10:14/0:25 | 2/3/-1,1/0:31/2/15:19/0:26 | 2/3/-1,1/0:31/2/20:24/0:27 | 2/3/-1,1/0:31/2/25:28/0:28 | 2/3/-1,1/0:31/2/29/0:27 | 2/3/-2,2/0:31/0:5/0:15/0:23 | 2/3/-2,2/0:31/6:13/0:7/0:23 | 2/3/-2,2/0:31/14:17/0:15/0:17
- AtlasDetectorID::initialize_from_dictionary - OK 
-CscIdHelper          INFO MultiRange built successfully to Technology: MultiRange size is 218
-CscIdHelper          INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 257
-CscIdHelper          INFO MultiRange built successfully to cscStrip: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 CscIdHelper          INFO Initializing CSC hash indices ... 
-CscIdHelper          INFO The element hash max is 32
-CscIdHelper          INFO The detector element hash max is 64
 CscIdHelper          INFO The channel hash max is 61440
 CscIdHelper          INFO Initializing CSC hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-RpcIdHelper          INFO MultiRange built successfully to doubletR: MultiRange size is 261
-RpcIdHelper          INFO MultiRange built successfully to detectorElement: DetectorElement MultiRange size is 261
-RpcIdHelper          INFO MultiRange built successfully to rpcStrip: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 RpcIdHelper          INFO Initializing RPC hash indices ... 
-RpcIdHelper          INFO The element hash max is 600
-RpcIdHelper          INFO The detector element hash max is 1122
 RpcIdHelper          INFO Initializing RPC hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-TgcIdHelper          INFO MultiRange built successfully to Technology: MultiRange size is 218
-TgcIdHelper          INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 218
-TgcIdHelper          INFO MultiRange built successfully to channel: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 TgcIdHelper          INFO Initializing TGC hash indices ... 
-TgcIdHelper          INFO The element hash max is 1578
-TgcIdHelper          INFO The detector element hash max is 1578
 TgcIdHelper          INFO Initializing TGC hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-MdtIdHelper          INFO MultiRange built successfully to Technology: MultiRange size is 218
-MdtIdHelper          INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 261
-MdtIdHelper          INFO MultiRange built successfully to tube: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 MdtIdHelper          INFO Initializing MDT hash indices ... 
-MdtIdHelper          INFO The element hash max is 1188
-MdtIdHelper          INFO The detector element hash max is 2328
 MdtIdHelper          INFO Initializing MDT hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-sTgcIdHelper         INFO MultiRange built successfully to Technology: MultiRange size is 218
-sTgcIdHelper         INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 253
-sTgcIdHelper         INFO MultiRange built successfully to channel: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 sTgcIdHelper         INFO Initializing sTGC hash indices ... 
-sTgcIdHelper         INFO The element hash max is 96
-sTgcIdHelper         INFO The detector element hash max is 192
 sTgcIdHelper         INFO Initializing sTGC hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-MmIdHelper           INFO MultiRange built successfully to Technology: MultiRange size is 218
-MmIdHelper           INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 257
-MmIdHelper           INFO MultiRange built successfully to channel: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 MmIdHelper           INFO Initializing MicroMegas hash indices ... 
-MmIdHelper           INFO The element hash max is 64
-MmIdHelper           INFO The detector element hash max is 128
 MmIdHelper           INFO Initializing MicroMegas hash indices for finding neighbors ... 
  AtlasDetectorID::initialize_from_dictionary - OK 
-ClassIDSvc           INFO  getRegistryEntries: read 379 CLIDRegistry entries for module ALL
 test1
-ClassIDSvc           INFO  getRegistryEntries: read 320 CLIDRegistry entries for module ALL
-ClassIDSvc           INFO  getRegistryEntries: read 170 CLIDRegistry entries for module ALL
diff --git a/MuonSpectrometer/MuonCnv/MuonEventTPCnv/share/RpcCoinDataContainerCnv_p1_test.ref b/MuonSpectrometer/MuonCnv/MuonEventTPCnv/share/RpcCoinDataContainerCnv_p1_test.ref
index 37d3bc57a50bddab07999e2574bfcba359b79c0b..eafa59f97879b9e447a9cdea019dc6bb7238a360 100644
--- a/MuonSpectrometer/MuonCnv/MuonEventTPCnv/share/RpcCoinDataContainerCnv_p1_test.ref
+++ b/MuonSpectrometer/MuonCnv/MuonEventTPCnv/share/RpcCoinDataContainerCnv_p1_test.ref
@@ -1,18 +1,6 @@
 
 
-Initializing Gaudi ApplicationMgr using job opts /home/emoyse/master2/build/x86_64-centos7-gcc8-opt/jobOptions/MuonEventTPCnv/MuonEventTPCnv_test.txt
-JobOptionsSvc        INFO # =======> /home/emoyse/master2/build/x86_64-centos7-gcc8-opt/jobOptions/MuonEventTPCnv/MuonEventTPCnv_test.txt
-JobOptionsSvc        INFO # (1,1): ApplicationMgr.Dlls += ["StoreGate", "CLIDComps"]
-JobOptionsSvc        INFO # (2,1): ApplicationMgr.ExtSvc += ["StoreGateSvc", "StoreGateSvc/DetectorStore", "StoreGateSvc/ConditionStore", "Athena::RCUSvc"]
-JobOptionsSvc        INFO Job options successfully read in from /home/emoyse/master2/build/x86_64-centos7-gcc8-opt/jobOptions/MuonEventTPCnv/MuonEventTPCnv_test.txt
-ApplicationMgr    SUCCESS 
-====================================================================================================================================
-                                                   Welcome to ApplicationMgr (GaudiCoreSvc v34r0)
-                                          running on pcumass4 on Wed Nov  4 09:35:26 2020
-====================================================================================================================================
-ApplicationMgr       INFO Successfully loaded modules : StoreGate, CLIDComps
 ApplicationMgr       INFO Application Manager Configured successfully
-ClassIDSvc           INFO  getRegistryEntries: read 12350 CLIDRegistry entries for module ALL
 EventLoopMgr      WARNING Unable to locate service "EventSelector" 
 EventLoopMgr      WARNING No events will be processed from external input.
 ApplicationMgr       INFO Application Manager Initialized successfully
@@ -22,22 +10,7 @@ ApplicationMgr Ready
  Volume pmdum2 not found: returning 0
  Volume pmdum3 not found: returning 0
  INFO Initialize from dictionary
- DEBUG (Re)initialize
  AtlasDetectorID::initialize_from_dictionary - OK 
- DEBUG decode index and bit fields for each level: 
- DEBUG indet          decode 1 vals 2,4,5,7,10,11,12,13 mask/zero mask/shift/bits/offset 7   1fffffffffffffff 61 3  0  indexes 0 0 1 2 0 3 0 0 4 5 6 7 mode  enumerated  
- DEBUG pixel          decode 1 vals 1:3             mask/zero mask/shift/bits/offset 3   e7ffffffffffffff 59 2  3  indexes                     mode  both_bounded  
- DEBUG bec            decode 1 vals -2,0,2          mask/zero mask/shift/bits/offset 3   f9ffffffffffffff 57 2  5  indexes 0 0 1 0 2           mode  enumerated  
- DEBUG bec_shift      decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
- DEBUG lay_disk       decode 0 vals 0:2             mask/zero mask/shift/bits/offset 3   fe7fffffffffffff 55 2  7  indexes                     mode  both_bounded  
- DEBUG lay_disk_shift decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
- DEBUG phi_mod        decode 0 vals 0:51            mask/zero mask/shift/bits/offset 3f  ff81ffffffffffff 49 6  9  indexes                     mode  both_bounded  
- DEBUG phi_mod_shift  decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
- DEBUG eta_mod        decode 1 vals -6:6            mask/zero mask/shift/bits/offset f   fffe1fffffffffff 45 4  15 indexes                     mode  both_bounded  
- DEBUG eta_mod_shift  decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
- DEBUG phi_index      decode 0 vals 0:327           mask/zero mask/shift/bits/offset 1ff ffffe00fffffffff 36 9  19 indexes                     mode  both_bounded  
- DEBUG eta_index      decode 0 vals 0:191           mask/zero mask/shift/bits/offset ff  fffffff00fffffff 28 8  28 indexes                     mode  both_bounded  
- DEBUG bec_eta_mod    decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
 indet 1 2,4,5,7,10,11,12,13 7 1fffffffffffffff 61 3 0 min/max 2 13 values  2 4 5 7 10 11 12 13 indexes  0 0 1 2 0 3 0 0 4 5 6 7 indices  8 prev  0 next  0 mode  enumerated  cont mode  none  
 pixel 1 1:3 3 e7ffffffffffffff 59 2 3 min/max 1 3 values  indexes  indices  3 prev  0 next  0 mode  both_bounded  cont mode  none  
 bec 1 -2,0,2 3 f9ffffffffffffff 57 2 5 min/max -2 2 values  -2 0 2 indexes  0 0 1 0 2 indices  3 prev  0 next  0 mode  enumerated  cont mode  none  
@@ -60,85 +33,28 @@ phi_module    4
 eta_module    5
 phi_index     6
 eta_index     7
- DEBUG PixelID::initialize_from_dict Set barrel field values: 0
- DEBUG PixelID::initialize_from_dict Set dbm field values: -999,999
- DEBUG PixelID::initialize_from_dict Found field values: InDet/Pixel 2/1
- DEBUG PixelID::init_neighbors 
- DEBUG PixelID::initialize_from_dict 
- DEBUG Wafer range -> 2/1/0/0/0:21/-6:6 | 2/1/0/1/0:37/-6:6 | 2/1/0/2/0:51/-6:6 | 2/1/-2,2/0:2/0:47/0
- DEBUG Pixel range -> 2/1/0/0/0:21/-6:6/0:327/0:191 | 2/1/0/1/0:37/-6:6/0:327/0:143 | 2/1/0/2/0:51/-6:6/0:327/0:143 | 2/1/-2,2/0:2/0:47/0/0:327/0:143
 INFO SCT_ID::initialize_from_dictionary 
  AtlasDetectorID::initialize_from_dictionary - OK 
 INFO Initialize from dictionary cout 0
- DEBUG (Re)initialize
  AtlasDetectorID::initialize_from_dictionary - OK 
- DEBUG decode index and bit fields for each level: 
- DEBUG indet     decode 1 vals 2,4,5,7,10,11,12,13 mask/zero mask/shift/bits/offset 7   1fffffffffffffff 61 3  0  indexes 0 0 1 2 0 3 0 0 4 5 6 7 mode  enumerated  
- DEBUG trt       decode 1 vals 1:3             mask/zero mask/shift/bits/offset 3   e7ffffffffffffff 59 2  3  indexes                     mode  both_bounded  
- DEBUG bec       decode 1 vals -2,-1,1,2       mask/zero mask/shift/bits/offset 3   f9ffffffffffffff 57 2  5  indexes 0 1 0 2 3           mode  enumerated  
- DEBUG phi_mod   decode 0 vals 0:31            mask/zero mask/shift/bits/offset 1f  fe0fffffffffffff 52 5  7  indexes                     mode  both_bounded  
- DEBUG lay_wheel decode 0 vals 0:17            mask/zero mask/shift/bits/offset 1f  fff07fffffffffff 47 5  12 indexes                     mode  both_bounded  
- DEBUG str_lay   decode 0 vals 0:29            mask/zero mask/shift/bits/offset 1f  ffff83ffffffffff 42 5  17 indexes                     mode  both_bounded  
- DEBUG straw     decode 0 vals 0:28            mask/zero mask/shift/bits/offset 1f  fffffc1fffffffff 37 5  22 indexes                     mode  both_bounded  
- DEBUG  TRT_ID::initialize_from_dict Set barrel field values: -1,1
- DEBUG  TRT_ID::initialize_from_dict Found field values: InDet/TRT 2/3
- DEBUG Module range -> 2/3/-1,1/0:31/0 | 2/3/-1,1/0:31/1 | 2/3/-1,1/0:31/2 | 2/3/-2,2/0:31/0:5 | 2/3/-2,2/0:31/6:13 | 2/3/-2,2/0:31/14:17
- DEBUG TRT_ID::init_hashes  module hash max 1344
- DEBUG TRT_ID::init_hashes  straw layer hash max 19008
- DEBUG TRT_ID::init_hashes  straw hash max 424576
- DEBUG  TRT_ID::initialize_from_dict 
- DEBUG Module range -> 2/3/-1,1/0:31/0 | 2/3/-1,1/0:31/1 | 2/3/-1,1/0:31/2 | 2/3/-2,2/0:31/0:5 | 2/3/-2,2/0:31/6:13 | 2/3/-2,2/0:31/14:17
- DEBUG Straw layer range -> 2/3/-1,1/0:31/0/0 | 2/3/-1,1/0:31/0/1:4 | 2/3/-1,1/0:31/0/5:9 | 2/3/-1,1/0:31/0/10:14 | 2/3/-1,1/0:31/0/15:17 | 2/3/-1,1/0:31/0/18 | 2/3/-1,1/0:31/1/0 | 2/3/-1,1/0:31/1/1:5 | 2/3/-1,1/0:31/1/6:10 | 2/3/-1,1/0:31/1/11:15 | 2/3/-1,1/0:31/1/16:20 | 2/3/-1,1/0:31/1/21:22 | 2/3/-1,1/0:31/1/23 | 2/3/-1,1/0:31/2/0 | 2/3/-1,1/0:31/2/1:4 | 2/3/-1,1/0:31/2/5:9 | 2/3/-1,1/0:31/2/10:14 | 2/3/-1,1/0:31/2/15:19 | 2/3/-1,1/0:31/2/20:24 | 2/3/-1,1/0:31/2/25:28 | 2/3/-1,1/0:31/2/29 | 2/3/-2,2/0:31/0:5/0:15 | 2/3/-2,2/0:31/6:13/0:7 | 2/3/-2,2/0:31/14:17/0:15
- DEBUG Straw range -> 2/3/-1,1/0:31/0/0/0:14 | 2/3/-1,1/0:31/0/1:4/0:15 | 2/3/-1,1/0:31/0/5:9/0:16 | 2/3/-1,1/0:31/0/10:14/0:17 | 2/3/-1,1/0:31/0/15:17/0:18 | 2/3/-1,1/0:31/0/18/0:17 | 2/3/-1,1/0:31/1/0/0:18 | 2/3/-1,1/0:31/1/1:5/0:19 | 2/3/-1,1/0:31/1/6:10/0:20 | 2/3/-1,1/0:31/1/11:15/0:21 | 2/3/-1,1/0:31/1/16:20/0:22 | 2/3/-1,1/0:31/1/21:22/0:23 | 2/3/-1,1/0:31/1/23/0:22 | 2/3/-1,1/0:31/2/0/0:22 | 2/3/-1,1/0:31/2/1:4/0:23 | 2/3/-1,1/0:31/2/5:9/0:24 | 2/3/-1,1/0:31/2/10:14/0:25 | 2/3/-1,1/0:31/2/15:19/0:26 | 2/3/-1,1/0:31/2/20:24/0:27 | 2/3/-1,1/0:31/2/25:28/0:28 | 2/3/-1,1/0:31/2/29/0:27 | 2/3/-2,2/0:31/0:5/0:15/0:23 | 2/3/-2,2/0:31/6:13/0:7/0:23 | 2/3/-2,2/0:31/14:17/0:15/0:17
- AtlasDetectorID::initialize_from_dictionary - OK 
-CscIdHelper          INFO MultiRange built successfully to Technology: MultiRange size is 218
-CscIdHelper          INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 257
-CscIdHelper          INFO MultiRange built successfully to cscStrip: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 CscIdHelper          INFO Initializing CSC hash indices ... 
-CscIdHelper          INFO The element hash max is 32
-CscIdHelper          INFO The detector element hash max is 64
 CscIdHelper          INFO The channel hash max is 61440
 CscIdHelper          INFO Initializing CSC hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-RpcIdHelper          INFO MultiRange built successfully to doubletR: MultiRange size is 261
-RpcIdHelper          INFO MultiRange built successfully to detectorElement: DetectorElement MultiRange size is 261
-RpcIdHelper          INFO MultiRange built successfully to rpcStrip: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 RpcIdHelper          INFO Initializing RPC hash indices ... 
-RpcIdHelper          INFO The element hash max is 600
-RpcIdHelper          INFO The detector element hash max is 1122
 RpcIdHelper          INFO Initializing RPC hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-TgcIdHelper          INFO MultiRange built successfully to Technology: MultiRange size is 218
-TgcIdHelper          INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 218
-TgcIdHelper          INFO MultiRange built successfully to channel: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 TgcIdHelper          INFO Initializing TGC hash indices ... 
-TgcIdHelper          INFO The element hash max is 1578
-TgcIdHelper          INFO The detector element hash max is 1578
 TgcIdHelper          INFO Initializing TGC hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-MdtIdHelper          INFO MultiRange built successfully to Technology: MultiRange size is 218
-MdtIdHelper          INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 261
-MdtIdHelper          INFO MultiRange built successfully to tube: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 MdtIdHelper          INFO Initializing MDT hash indices ... 
-MdtIdHelper          INFO The element hash max is 1188
-MdtIdHelper          INFO The detector element hash max is 2328
 MdtIdHelper          INFO Initializing MDT hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-sTgcIdHelper         INFO MultiRange built successfully to Technology: MultiRange size is 218
-sTgcIdHelper         INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 253
-sTgcIdHelper         INFO MultiRange built successfully to channel: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 sTgcIdHelper         INFO Initializing sTGC hash indices ... 
-sTgcIdHelper         INFO The element hash max is 96
-sTgcIdHelper         INFO The detector element hash max is 192
 sTgcIdHelper         INFO Initializing sTGC hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-MmIdHelper           INFO MultiRange built successfully to Technology: MultiRange size is 218
-MmIdHelper           INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 257
-MmIdHelper           INFO MultiRange built successfully to channel: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 MmIdHelper           INFO Initializing MicroMegas hash indices ... 
-MmIdHelper           INFO The element hash max is 64
-MmIdHelper           INFO The detector element hash max is 128
 MmIdHelper           INFO Initializing MicroMegas hash indices for finding neighbors ... 
  AtlasDetectorID::initialize_from_dictionary - OK 
-ClassIDSvc           INFO  getRegistryEntries: read 379 CLIDRegistry entries for module ALL
 test1
diff --git a/MuonSpectrometer/MuonCnv/MuonEventTPCnv/share/RpcPrepDataContainerCnv_p1_test.ref b/MuonSpectrometer/MuonCnv/MuonEventTPCnv/share/RpcPrepDataContainerCnv_p1_test.ref
index 5636415539d52778261301827ad0f11a8a8290c7..eafa59f97879b9e447a9cdea019dc6bb7238a360 100644
--- a/MuonSpectrometer/MuonCnv/MuonEventTPCnv/share/RpcPrepDataContainerCnv_p1_test.ref
+++ b/MuonSpectrometer/MuonCnv/MuonEventTPCnv/share/RpcPrepDataContainerCnv_p1_test.ref
@@ -1,18 +1,6 @@
 
 
-Initializing Gaudi ApplicationMgr using job opts /home/emoyse/master2/build/x86_64-centos7-gcc8-opt/jobOptions/MuonEventTPCnv/MuonEventTPCnv_test.txt
-JobOptionsSvc        INFO # =======> /home/emoyse/master2/build/x86_64-centos7-gcc8-opt/jobOptions/MuonEventTPCnv/MuonEventTPCnv_test.txt
-JobOptionsSvc        INFO # (1,1): ApplicationMgr.Dlls += ["StoreGate", "CLIDComps"]
-JobOptionsSvc        INFO # (2,1): ApplicationMgr.ExtSvc += ["StoreGateSvc", "StoreGateSvc/DetectorStore", "StoreGateSvc/ConditionStore", "Athena::RCUSvc"]
-JobOptionsSvc        INFO Job options successfully read in from /home/emoyse/master2/build/x86_64-centos7-gcc8-opt/jobOptions/MuonEventTPCnv/MuonEventTPCnv_test.txt
-ApplicationMgr    SUCCESS 
-====================================================================================================================================
-                                                   Welcome to ApplicationMgr (GaudiCoreSvc v34r0)
-                                          running on pcumass4 on Wed Nov  4 09:35:06 2020
-====================================================================================================================================
-ApplicationMgr       INFO Successfully loaded modules : StoreGate, CLIDComps
 ApplicationMgr       INFO Application Manager Configured successfully
-ClassIDSvc           INFO  getRegistryEntries: read 12360 CLIDRegistry entries for module ALL
 EventLoopMgr      WARNING Unable to locate service "EventSelector" 
 EventLoopMgr      WARNING No events will be processed from external input.
 ApplicationMgr       INFO Application Manager Initialized successfully
@@ -22,22 +10,7 @@ ApplicationMgr Ready
  Volume pmdum2 not found: returning 0
  Volume pmdum3 not found: returning 0
  INFO Initialize from dictionary
- DEBUG (Re)initialize
  AtlasDetectorID::initialize_from_dictionary - OK 
- DEBUG decode index and bit fields for each level: 
- DEBUG indet          decode 1 vals 2,4,5,7,10,11,12,13 mask/zero mask/shift/bits/offset 7   1fffffffffffffff 61 3  0  indexes 0 0 1 2 0 3 0 0 4 5 6 7 mode  enumerated  
- DEBUG pixel          decode 1 vals 1:3             mask/zero mask/shift/bits/offset 3   e7ffffffffffffff 59 2  3  indexes                     mode  both_bounded  
- DEBUG bec            decode 1 vals -2,0,2          mask/zero mask/shift/bits/offset 3   f9ffffffffffffff 57 2  5  indexes 0 0 1 0 2           mode  enumerated  
- DEBUG bec_shift      decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
- DEBUG lay_disk       decode 0 vals 0:2             mask/zero mask/shift/bits/offset 3   fe7fffffffffffff 55 2  7  indexes                     mode  both_bounded  
- DEBUG lay_disk_shift decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
- DEBUG phi_mod        decode 0 vals 0:51            mask/zero mask/shift/bits/offset 3f  ff81ffffffffffff 49 6  9  indexes                     mode  both_bounded  
- DEBUG phi_mod_shift  decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
- DEBUG eta_mod        decode 1 vals -6:6            mask/zero mask/shift/bits/offset f   fffe1fffffffffff 45 4  15 indexes                     mode  both_bounded  
- DEBUG eta_mod_shift  decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
- DEBUG phi_index      decode 0 vals 0:327           mask/zero mask/shift/bits/offset 1ff ffffe00fffffffff 36 9  19 indexes                     mode  both_bounded  
- DEBUG eta_index      decode 0 vals 0:191           mask/zero mask/shift/bits/offset ff  fffffff00fffffff 28 8  28 indexes                     mode  both_bounded  
- DEBUG bec_eta_mod    decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
 indet 1 2,4,5,7,10,11,12,13 7 1fffffffffffffff 61 3 0 min/max 2 13 values  2 4 5 7 10 11 12 13 indexes  0 0 1 2 0 3 0 0 4 5 6 7 indices  8 prev  0 next  0 mode  enumerated  cont mode  none  
 pixel 1 1:3 3 e7ffffffffffffff 59 2 3 min/max 1 3 values  indexes  indices  3 prev  0 next  0 mode  both_bounded  cont mode  none  
 bec 1 -2,0,2 3 f9ffffffffffffff 57 2 5 min/max -2 2 values  -2 0 2 indexes  0 0 1 0 2 indices  3 prev  0 next  0 mode  enumerated  cont mode  none  
@@ -60,85 +33,28 @@ phi_module    4
 eta_module    5
 phi_index     6
 eta_index     7
- DEBUG PixelID::initialize_from_dict Set barrel field values: 0
- DEBUG PixelID::initialize_from_dict Set dbm field values: -999,999
- DEBUG PixelID::initialize_from_dict Found field values: InDet/Pixel 2/1
- DEBUG PixelID::init_neighbors 
- DEBUG PixelID::initialize_from_dict 
- DEBUG Wafer range -> 2/1/0/0/0:21/-6:6 | 2/1/0/1/0:37/-6:6 | 2/1/0/2/0:51/-6:6 | 2/1/-2,2/0:2/0:47/0
- DEBUG Pixel range -> 2/1/0/0/0:21/-6:6/0:327/0:191 | 2/1/0/1/0:37/-6:6/0:327/0:143 | 2/1/0/2/0:51/-6:6/0:327/0:143 | 2/1/-2,2/0:2/0:47/0/0:327/0:143
 INFO SCT_ID::initialize_from_dictionary 
  AtlasDetectorID::initialize_from_dictionary - OK 
 INFO Initialize from dictionary cout 0
- DEBUG (Re)initialize
  AtlasDetectorID::initialize_from_dictionary - OK 
- DEBUG decode index and bit fields for each level: 
- DEBUG indet     decode 1 vals 2,4,5,7,10,11,12,13 mask/zero mask/shift/bits/offset 7   1fffffffffffffff 61 3  0  indexes 0 0 1 2 0 3 0 0 4 5 6 7 mode  enumerated  
- DEBUG trt       decode 1 vals 1:3             mask/zero mask/shift/bits/offset 3   e7ffffffffffffff 59 2  3  indexes                     mode  both_bounded  
- DEBUG bec       decode 1 vals -2,-1,1,2       mask/zero mask/shift/bits/offset 3   f9ffffffffffffff 57 2  5  indexes 0 1 0 2 3           mode  enumerated  
- DEBUG phi_mod   decode 0 vals 0:31            mask/zero mask/shift/bits/offset 1f  fe0fffffffffffff 52 5  7  indexes                     mode  both_bounded  
- DEBUG lay_wheel decode 0 vals 0:17            mask/zero mask/shift/bits/offset 1f  fff07fffffffffff 47 5  12 indexes                     mode  both_bounded  
- DEBUG str_lay   decode 0 vals 0:29            mask/zero mask/shift/bits/offset 1f  ffff83ffffffffff 42 5  17 indexes                     mode  both_bounded  
- DEBUG straw     decode 0 vals 0:28            mask/zero mask/shift/bits/offset 1f  fffffc1fffffffff 37 5  22 indexes                     mode  both_bounded  
- DEBUG  TRT_ID::initialize_from_dict Set barrel field values: -1,1
- DEBUG  TRT_ID::initialize_from_dict Found field values: InDet/TRT 2/3
- DEBUG Module range -> 2/3/-1,1/0:31/0 | 2/3/-1,1/0:31/1 | 2/3/-1,1/0:31/2 | 2/3/-2,2/0:31/0:5 | 2/3/-2,2/0:31/6:13 | 2/3/-2,2/0:31/14:17
- DEBUG TRT_ID::init_hashes  module hash max 1344
- DEBUG TRT_ID::init_hashes  straw layer hash max 19008
- DEBUG TRT_ID::init_hashes  straw hash max 424576
- DEBUG  TRT_ID::initialize_from_dict 
- DEBUG Module range -> 2/3/-1,1/0:31/0 | 2/3/-1,1/0:31/1 | 2/3/-1,1/0:31/2 | 2/3/-2,2/0:31/0:5 | 2/3/-2,2/0:31/6:13 | 2/3/-2,2/0:31/14:17
- DEBUG Straw layer range -> 2/3/-1,1/0:31/0/0 | 2/3/-1,1/0:31/0/1:4 | 2/3/-1,1/0:31/0/5:9 | 2/3/-1,1/0:31/0/10:14 | 2/3/-1,1/0:31/0/15:17 | 2/3/-1,1/0:31/0/18 | 2/3/-1,1/0:31/1/0 | 2/3/-1,1/0:31/1/1:5 | 2/3/-1,1/0:31/1/6:10 | 2/3/-1,1/0:31/1/11:15 | 2/3/-1,1/0:31/1/16:20 | 2/3/-1,1/0:31/1/21:22 | 2/3/-1,1/0:31/1/23 | 2/3/-1,1/0:31/2/0 | 2/3/-1,1/0:31/2/1:4 | 2/3/-1,1/0:31/2/5:9 | 2/3/-1,1/0:31/2/10:14 | 2/3/-1,1/0:31/2/15:19 | 2/3/-1,1/0:31/2/20:24 | 2/3/-1,1/0:31/2/25:28 | 2/3/-1,1/0:31/2/29 | 2/3/-2,2/0:31/0:5/0:15 | 2/3/-2,2/0:31/6:13/0:7 | 2/3/-2,2/0:31/14:17/0:15
- DEBUG Straw range -> 2/3/-1,1/0:31/0/0/0:14 | 2/3/-1,1/0:31/0/1:4/0:15 | 2/3/-1,1/0:31/0/5:9/0:16 | 2/3/-1,1/0:31/0/10:14/0:17 | 2/3/-1,1/0:31/0/15:17/0:18 | 2/3/-1,1/0:31/0/18/0:17 | 2/3/-1,1/0:31/1/0/0:18 | 2/3/-1,1/0:31/1/1:5/0:19 | 2/3/-1,1/0:31/1/6:10/0:20 | 2/3/-1,1/0:31/1/11:15/0:21 | 2/3/-1,1/0:31/1/16:20/0:22 | 2/3/-1,1/0:31/1/21:22/0:23 | 2/3/-1,1/0:31/1/23/0:22 | 2/3/-1,1/0:31/2/0/0:22 | 2/3/-1,1/0:31/2/1:4/0:23 | 2/3/-1,1/0:31/2/5:9/0:24 | 2/3/-1,1/0:31/2/10:14/0:25 | 2/3/-1,1/0:31/2/15:19/0:26 | 2/3/-1,1/0:31/2/20:24/0:27 | 2/3/-1,1/0:31/2/25:28/0:28 | 2/3/-1,1/0:31/2/29/0:27 | 2/3/-2,2/0:31/0:5/0:15/0:23 | 2/3/-2,2/0:31/6:13/0:7/0:23 | 2/3/-2,2/0:31/14:17/0:15/0:17
- AtlasDetectorID::initialize_from_dictionary - OK 
-CscIdHelper          INFO MultiRange built successfully to Technology: MultiRange size is 218
-CscIdHelper          INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 257
-CscIdHelper          INFO MultiRange built successfully to cscStrip: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 CscIdHelper          INFO Initializing CSC hash indices ... 
-CscIdHelper          INFO The element hash max is 32
-CscIdHelper          INFO The detector element hash max is 64
 CscIdHelper          INFO The channel hash max is 61440
 CscIdHelper          INFO Initializing CSC hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-RpcIdHelper          INFO MultiRange built successfully to doubletR: MultiRange size is 261
-RpcIdHelper          INFO MultiRange built successfully to detectorElement: DetectorElement MultiRange size is 261
-RpcIdHelper          INFO MultiRange built successfully to rpcStrip: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 RpcIdHelper          INFO Initializing RPC hash indices ... 
-RpcIdHelper          INFO The element hash max is 600
-RpcIdHelper          INFO The detector element hash max is 1122
 RpcIdHelper          INFO Initializing RPC hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-TgcIdHelper          INFO MultiRange built successfully to Technology: MultiRange size is 218
-TgcIdHelper          INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 218
-TgcIdHelper          INFO MultiRange built successfully to channel: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 TgcIdHelper          INFO Initializing TGC hash indices ... 
-TgcIdHelper          INFO The element hash max is 1578
-TgcIdHelper          INFO The detector element hash max is 1578
 TgcIdHelper          INFO Initializing TGC hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-MdtIdHelper          INFO MultiRange built successfully to Technology: MultiRange size is 218
-MdtIdHelper          INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 261
-MdtIdHelper          INFO MultiRange built successfully to tube: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 MdtIdHelper          INFO Initializing MDT hash indices ... 
-MdtIdHelper          INFO The element hash max is 1188
-MdtIdHelper          INFO The detector element hash max is 2328
 MdtIdHelper          INFO Initializing MDT hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-sTgcIdHelper         INFO MultiRange built successfully to Technology: MultiRange size is 218
-sTgcIdHelper         INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 253
-sTgcIdHelper         INFO MultiRange built successfully to channel: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 sTgcIdHelper         INFO Initializing sTGC hash indices ... 
-sTgcIdHelper         INFO The element hash max is 96
-sTgcIdHelper         INFO The detector element hash max is 192
 sTgcIdHelper         INFO Initializing sTGC hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-MmIdHelper           INFO MultiRange built successfully to Technology: MultiRange size is 218
-MmIdHelper           INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 257
-MmIdHelper           INFO MultiRange built successfully to channel: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 MmIdHelper           INFO Initializing MicroMegas hash indices ... 
-MmIdHelper           INFO The element hash max is 64
-MmIdHelper           INFO The detector element hash max is 128
 MmIdHelper           INFO Initializing MicroMegas hash indices for finding neighbors ... 
  AtlasDetectorID::initialize_from_dictionary - OK 
-ClassIDSvc           INFO  getRegistryEntries: read 379 CLIDRegistry entries for module ALL
 test1
diff --git a/MuonSpectrometer/MuonCnv/MuonEventTPCnv/share/RpcPrepDataContainerCnv_p2_test.ref b/MuonSpectrometer/MuonCnv/MuonEventTPCnv/share/RpcPrepDataContainerCnv_p2_test.ref
index 997bc0557f5f592867d15fea25ef3d70677acc51..eafa59f97879b9e447a9cdea019dc6bb7238a360 100644
--- a/MuonSpectrometer/MuonCnv/MuonEventTPCnv/share/RpcPrepDataContainerCnv_p2_test.ref
+++ b/MuonSpectrometer/MuonCnv/MuonEventTPCnv/share/RpcPrepDataContainerCnv_p2_test.ref
@@ -1,18 +1,6 @@
 
 
-Initializing Gaudi ApplicationMgr using job opts /home/emoyse/master2/build/x86_64-centos7-gcc8-opt/jobOptions/MuonEventTPCnv/MuonEventTPCnv_test.txt
-JobOptionsSvc        INFO # =======> /home/emoyse/master2/build/x86_64-centos7-gcc8-opt/jobOptions/MuonEventTPCnv/MuonEventTPCnv_test.txt
-JobOptionsSvc        INFO # (1,1): ApplicationMgr.Dlls += ["StoreGate", "CLIDComps"]
-JobOptionsSvc        INFO # (2,1): ApplicationMgr.ExtSvc += ["StoreGateSvc", "StoreGateSvc/DetectorStore", "StoreGateSvc/ConditionStore", "Athena::RCUSvc"]
-JobOptionsSvc        INFO Job options successfully read in from /home/emoyse/master2/build/x86_64-centos7-gcc8-opt/jobOptions/MuonEventTPCnv/MuonEventTPCnv_test.txt
-ApplicationMgr    SUCCESS 
-====================================================================================================================================
-                                                   Welcome to ApplicationMgr (GaudiCoreSvc v34r0)
-                                          running on pcumass4 on Wed Nov  4 09:35:08 2020
-====================================================================================================================================
-ApplicationMgr       INFO Successfully loaded modules : StoreGate, CLIDComps
 ApplicationMgr       INFO Application Manager Configured successfully
-ClassIDSvc           INFO  getRegistryEntries: read 12360 CLIDRegistry entries for module ALL
 EventLoopMgr      WARNING Unable to locate service "EventSelector" 
 EventLoopMgr      WARNING No events will be processed from external input.
 ApplicationMgr       INFO Application Manager Initialized successfully
@@ -22,22 +10,7 @@ ApplicationMgr Ready
  Volume pmdum2 not found: returning 0
  Volume pmdum3 not found: returning 0
  INFO Initialize from dictionary
- DEBUG (Re)initialize
  AtlasDetectorID::initialize_from_dictionary - OK 
- DEBUG decode index and bit fields for each level: 
- DEBUG indet          decode 1 vals 2,4,5,7,10,11,12,13 mask/zero mask/shift/bits/offset 7   1fffffffffffffff 61 3  0  indexes 0 0 1 2 0 3 0 0 4 5 6 7 mode  enumerated  
- DEBUG pixel          decode 1 vals 1:3             mask/zero mask/shift/bits/offset 3   e7ffffffffffffff 59 2  3  indexes                     mode  both_bounded  
- DEBUG bec            decode 1 vals -2,0,2          mask/zero mask/shift/bits/offset 3   f9ffffffffffffff 57 2  5  indexes 0 0 1 0 2           mode  enumerated  
- DEBUG bec_shift      decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
- DEBUG lay_disk       decode 0 vals 0:2             mask/zero mask/shift/bits/offset 3   fe7fffffffffffff 55 2  7  indexes                     mode  both_bounded  
- DEBUG lay_disk_shift decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
- DEBUG phi_mod        decode 0 vals 0:51            mask/zero mask/shift/bits/offset 3f  ff81ffffffffffff 49 6  9  indexes                     mode  both_bounded  
- DEBUG phi_mod_shift  decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
- DEBUG eta_mod        decode 1 vals -6:6            mask/zero mask/shift/bits/offset f   fffe1fffffffffff 45 4  15 indexes                     mode  both_bounded  
- DEBUG eta_mod_shift  decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
- DEBUG phi_index      decode 0 vals 0:327           mask/zero mask/shift/bits/offset 1ff ffffe00fffffffff 36 9  19 indexes                     mode  both_bounded  
- DEBUG eta_index      decode 0 vals 0:191           mask/zero mask/shift/bits/offset ff  fffffff00fffffff 28 8  28 indexes                     mode  both_bounded  
- DEBUG bec_eta_mod    decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
 indet 1 2,4,5,7,10,11,12,13 7 1fffffffffffffff 61 3 0 min/max 2 13 values  2 4 5 7 10 11 12 13 indexes  0 0 1 2 0 3 0 0 4 5 6 7 indices  8 prev  0 next  0 mode  enumerated  cont mode  none  
 pixel 1 1:3 3 e7ffffffffffffff 59 2 3 min/max 1 3 values  indexes  indices  3 prev  0 next  0 mode  both_bounded  cont mode  none  
 bec 1 -2,0,2 3 f9ffffffffffffff 57 2 5 min/max -2 2 values  -2 0 2 indexes  0 0 1 0 2 indices  3 prev  0 next  0 mode  enumerated  cont mode  none  
@@ -60,85 +33,28 @@ phi_module    4
 eta_module    5
 phi_index     6
 eta_index     7
- DEBUG PixelID::initialize_from_dict Set barrel field values: 0
- DEBUG PixelID::initialize_from_dict Set dbm field values: -999,999
- DEBUG PixelID::initialize_from_dict Found field values: InDet/Pixel 2/1
- DEBUG PixelID::init_neighbors 
- DEBUG PixelID::initialize_from_dict 
- DEBUG Wafer range -> 2/1/0/0/0:21/-6:6 | 2/1/0/1/0:37/-6:6 | 2/1/0/2/0:51/-6:6 | 2/1/-2,2/0:2/0:47/0
- DEBUG Pixel range -> 2/1/0/0/0:21/-6:6/0:327/0:191 | 2/1/0/1/0:37/-6:6/0:327/0:143 | 2/1/0/2/0:51/-6:6/0:327/0:143 | 2/1/-2,2/0:2/0:47/0/0:327/0:143
 INFO SCT_ID::initialize_from_dictionary 
  AtlasDetectorID::initialize_from_dictionary - OK 
 INFO Initialize from dictionary cout 0
- DEBUG (Re)initialize
  AtlasDetectorID::initialize_from_dictionary - OK 
- DEBUG decode index and bit fields for each level: 
- DEBUG indet     decode 1 vals 2,4,5,7,10,11,12,13 mask/zero mask/shift/bits/offset 7   1fffffffffffffff 61 3  0  indexes 0 0 1 2 0 3 0 0 4 5 6 7 mode  enumerated  
- DEBUG trt       decode 1 vals 1:3             mask/zero mask/shift/bits/offset 3   e7ffffffffffffff 59 2  3  indexes                     mode  both_bounded  
- DEBUG bec       decode 1 vals -2,-1,1,2       mask/zero mask/shift/bits/offset 3   f9ffffffffffffff 57 2  5  indexes 0 1 0 2 3           mode  enumerated  
- DEBUG phi_mod   decode 0 vals 0:31            mask/zero mask/shift/bits/offset 1f  fe0fffffffffffff 52 5  7  indexes                     mode  both_bounded  
- DEBUG lay_wheel decode 0 vals 0:17            mask/zero mask/shift/bits/offset 1f  fff07fffffffffff 47 5  12 indexes                     mode  both_bounded  
- DEBUG str_lay   decode 0 vals 0:29            mask/zero mask/shift/bits/offset 1f  ffff83ffffffffff 42 5  17 indexes                     mode  both_bounded  
- DEBUG straw     decode 0 vals 0:28            mask/zero mask/shift/bits/offset 1f  fffffc1fffffffff 37 5  22 indexes                     mode  both_bounded  
- DEBUG  TRT_ID::initialize_from_dict Set barrel field values: -1,1
- DEBUG  TRT_ID::initialize_from_dict Found field values: InDet/TRT 2/3
- DEBUG Module range -> 2/3/-1,1/0:31/0 | 2/3/-1,1/0:31/1 | 2/3/-1,1/0:31/2 | 2/3/-2,2/0:31/0:5 | 2/3/-2,2/0:31/6:13 | 2/3/-2,2/0:31/14:17
- DEBUG TRT_ID::init_hashes  module hash max 1344
- DEBUG TRT_ID::init_hashes  straw layer hash max 19008
- DEBUG TRT_ID::init_hashes  straw hash max 424576
- DEBUG  TRT_ID::initialize_from_dict 
- DEBUG Module range -> 2/3/-1,1/0:31/0 | 2/3/-1,1/0:31/1 | 2/3/-1,1/0:31/2 | 2/3/-2,2/0:31/0:5 | 2/3/-2,2/0:31/6:13 | 2/3/-2,2/0:31/14:17
- DEBUG Straw layer range -> 2/3/-1,1/0:31/0/0 | 2/3/-1,1/0:31/0/1:4 | 2/3/-1,1/0:31/0/5:9 | 2/3/-1,1/0:31/0/10:14 | 2/3/-1,1/0:31/0/15:17 | 2/3/-1,1/0:31/0/18 | 2/3/-1,1/0:31/1/0 | 2/3/-1,1/0:31/1/1:5 | 2/3/-1,1/0:31/1/6:10 | 2/3/-1,1/0:31/1/11:15 | 2/3/-1,1/0:31/1/16:20 | 2/3/-1,1/0:31/1/21:22 | 2/3/-1,1/0:31/1/23 | 2/3/-1,1/0:31/2/0 | 2/3/-1,1/0:31/2/1:4 | 2/3/-1,1/0:31/2/5:9 | 2/3/-1,1/0:31/2/10:14 | 2/3/-1,1/0:31/2/15:19 | 2/3/-1,1/0:31/2/20:24 | 2/3/-1,1/0:31/2/25:28 | 2/3/-1,1/0:31/2/29 | 2/3/-2,2/0:31/0:5/0:15 | 2/3/-2,2/0:31/6:13/0:7 | 2/3/-2,2/0:31/14:17/0:15
- DEBUG Straw range -> 2/3/-1,1/0:31/0/0/0:14 | 2/3/-1,1/0:31/0/1:4/0:15 | 2/3/-1,1/0:31/0/5:9/0:16 | 2/3/-1,1/0:31/0/10:14/0:17 | 2/3/-1,1/0:31/0/15:17/0:18 | 2/3/-1,1/0:31/0/18/0:17 | 2/3/-1,1/0:31/1/0/0:18 | 2/3/-1,1/0:31/1/1:5/0:19 | 2/3/-1,1/0:31/1/6:10/0:20 | 2/3/-1,1/0:31/1/11:15/0:21 | 2/3/-1,1/0:31/1/16:20/0:22 | 2/3/-1,1/0:31/1/21:22/0:23 | 2/3/-1,1/0:31/1/23/0:22 | 2/3/-1,1/0:31/2/0/0:22 | 2/3/-1,1/0:31/2/1:4/0:23 | 2/3/-1,1/0:31/2/5:9/0:24 | 2/3/-1,1/0:31/2/10:14/0:25 | 2/3/-1,1/0:31/2/15:19/0:26 | 2/3/-1,1/0:31/2/20:24/0:27 | 2/3/-1,1/0:31/2/25:28/0:28 | 2/3/-1,1/0:31/2/29/0:27 | 2/3/-2,2/0:31/0:5/0:15/0:23 | 2/3/-2,2/0:31/6:13/0:7/0:23 | 2/3/-2,2/0:31/14:17/0:15/0:17
- AtlasDetectorID::initialize_from_dictionary - OK 
-CscIdHelper          INFO MultiRange built successfully to Technology: MultiRange size is 218
-CscIdHelper          INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 257
-CscIdHelper          INFO MultiRange built successfully to cscStrip: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 CscIdHelper          INFO Initializing CSC hash indices ... 
-CscIdHelper          INFO The element hash max is 32
-CscIdHelper          INFO The detector element hash max is 64
 CscIdHelper          INFO The channel hash max is 61440
 CscIdHelper          INFO Initializing CSC hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-RpcIdHelper          INFO MultiRange built successfully to doubletR: MultiRange size is 261
-RpcIdHelper          INFO MultiRange built successfully to detectorElement: DetectorElement MultiRange size is 261
-RpcIdHelper          INFO MultiRange built successfully to rpcStrip: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 RpcIdHelper          INFO Initializing RPC hash indices ... 
-RpcIdHelper          INFO The element hash max is 600
-RpcIdHelper          INFO The detector element hash max is 1122
 RpcIdHelper          INFO Initializing RPC hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-TgcIdHelper          INFO MultiRange built successfully to Technology: MultiRange size is 218
-TgcIdHelper          INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 218
-TgcIdHelper          INFO MultiRange built successfully to channel: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 TgcIdHelper          INFO Initializing TGC hash indices ... 
-TgcIdHelper          INFO The element hash max is 1578
-TgcIdHelper          INFO The detector element hash max is 1578
 TgcIdHelper          INFO Initializing TGC hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-MdtIdHelper          INFO MultiRange built successfully to Technology: MultiRange size is 218
-MdtIdHelper          INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 261
-MdtIdHelper          INFO MultiRange built successfully to tube: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 MdtIdHelper          INFO Initializing MDT hash indices ... 
-MdtIdHelper          INFO The element hash max is 1188
-MdtIdHelper          INFO The detector element hash max is 2328
 MdtIdHelper          INFO Initializing MDT hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-sTgcIdHelper         INFO MultiRange built successfully to Technology: MultiRange size is 218
-sTgcIdHelper         INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 253
-sTgcIdHelper         INFO MultiRange built successfully to channel: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 sTgcIdHelper         INFO Initializing sTGC hash indices ... 
-sTgcIdHelper         INFO The element hash max is 96
-sTgcIdHelper         INFO The detector element hash max is 192
 sTgcIdHelper         INFO Initializing sTGC hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-MmIdHelper           INFO MultiRange built successfully to Technology: MultiRange size is 218
-MmIdHelper           INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 257
-MmIdHelper           INFO MultiRange built successfully to channel: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 MmIdHelper           INFO Initializing MicroMegas hash indices ... 
-MmIdHelper           INFO The element hash max is 64
-MmIdHelper           INFO The detector element hash max is 128
 MmIdHelper           INFO Initializing MicroMegas hash indices for finding neighbors ... 
  AtlasDetectorID::initialize_from_dictionary - OK 
-ClassIDSvc           INFO  getRegistryEntries: read 379 CLIDRegistry entries for module ALL
 test1
diff --git a/MuonSpectrometer/MuonCnv/MuonEventTPCnv/share/RpcPrepDataContainerCnv_p3_test.ref b/MuonSpectrometer/MuonCnv/MuonEventTPCnv/share/RpcPrepDataContainerCnv_p3_test.ref
index 7f8be9acd74deb1ce4dbb998df15218e3264ad49..eafa59f97879b9e447a9cdea019dc6bb7238a360 100644
--- a/MuonSpectrometer/MuonCnv/MuonEventTPCnv/share/RpcPrepDataContainerCnv_p3_test.ref
+++ b/MuonSpectrometer/MuonCnv/MuonEventTPCnv/share/RpcPrepDataContainerCnv_p3_test.ref
@@ -1,18 +1,6 @@
 
 
-Initializing Gaudi ApplicationMgr using job opts /home/emoyse/master2/build/x86_64-centos7-gcc8-opt/jobOptions/MuonEventTPCnv/MuonEventTPCnv_test.txt
-JobOptionsSvc        INFO # =======> /home/emoyse/master2/build/x86_64-centos7-gcc8-opt/jobOptions/MuonEventTPCnv/MuonEventTPCnv_test.txt
-JobOptionsSvc        INFO # (1,1): ApplicationMgr.Dlls += ["StoreGate", "CLIDComps"]
-JobOptionsSvc        INFO # (2,1): ApplicationMgr.ExtSvc += ["StoreGateSvc", "StoreGateSvc/DetectorStore", "StoreGateSvc/ConditionStore", "Athena::RCUSvc"]
-JobOptionsSvc        INFO Job options successfully read in from /home/emoyse/master2/build/x86_64-centos7-gcc8-opt/jobOptions/MuonEventTPCnv/MuonEventTPCnv_test.txt
-ApplicationMgr    SUCCESS 
-====================================================================================================================================
-                                                   Welcome to ApplicationMgr (GaudiCoreSvc v34r0)
-                                          running on pcumass4 on Wed Nov  4 09:35:10 2020
-====================================================================================================================================
-ApplicationMgr       INFO Successfully loaded modules : StoreGate, CLIDComps
 ApplicationMgr       INFO Application Manager Configured successfully
-ClassIDSvc           INFO  getRegistryEntries: read 12360 CLIDRegistry entries for module ALL
 EventLoopMgr      WARNING Unable to locate service "EventSelector" 
 EventLoopMgr      WARNING No events will be processed from external input.
 ApplicationMgr       INFO Application Manager Initialized successfully
@@ -22,22 +10,7 @@ ApplicationMgr Ready
  Volume pmdum2 not found: returning 0
  Volume pmdum3 not found: returning 0
  INFO Initialize from dictionary
- DEBUG (Re)initialize
  AtlasDetectorID::initialize_from_dictionary - OK 
- DEBUG decode index and bit fields for each level: 
- DEBUG indet          decode 1 vals 2,4,5,7,10,11,12,13 mask/zero mask/shift/bits/offset 7   1fffffffffffffff 61 3  0  indexes 0 0 1 2 0 3 0 0 4 5 6 7 mode  enumerated  
- DEBUG pixel          decode 1 vals 1:3             mask/zero mask/shift/bits/offset 3   e7ffffffffffffff 59 2  3  indexes                     mode  both_bounded  
- DEBUG bec            decode 1 vals -2,0,2          mask/zero mask/shift/bits/offset 3   f9ffffffffffffff 57 2  5  indexes 0 0 1 0 2           mode  enumerated  
- DEBUG bec_shift      decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
- DEBUG lay_disk       decode 0 vals 0:2             mask/zero mask/shift/bits/offset 3   fe7fffffffffffff 55 2  7  indexes                     mode  both_bounded  
- DEBUG lay_disk_shift decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
- DEBUG phi_mod        decode 0 vals 0:51            mask/zero mask/shift/bits/offset 3f  ff81ffffffffffff 49 6  9  indexes                     mode  both_bounded  
- DEBUG phi_mod_shift  decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
- DEBUG eta_mod        decode 1 vals -6:6            mask/zero mask/shift/bits/offset f   fffe1fffffffffff 45 4  15 indexes                     mode  both_bounded  
- DEBUG eta_mod_shift  decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
- DEBUG phi_index      decode 0 vals 0:327           mask/zero mask/shift/bits/offset 1ff ffffe00fffffffff 36 9  19 indexes                     mode  both_bounded  
- DEBUG eta_index      decode 0 vals 0:191           mask/zero mask/shift/bits/offset ff  fffffff00fffffff 28 8  28 indexes                     mode  both_bounded  
- DEBUG bec_eta_mod    decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
 indet 1 2,4,5,7,10,11,12,13 7 1fffffffffffffff 61 3 0 min/max 2 13 values  2 4 5 7 10 11 12 13 indexes  0 0 1 2 0 3 0 0 4 5 6 7 indices  8 prev  0 next  0 mode  enumerated  cont mode  none  
 pixel 1 1:3 3 e7ffffffffffffff 59 2 3 min/max 1 3 values  indexes  indices  3 prev  0 next  0 mode  both_bounded  cont mode  none  
 bec 1 -2,0,2 3 f9ffffffffffffff 57 2 5 min/max -2 2 values  -2 0 2 indexes  0 0 1 0 2 indices  3 prev  0 next  0 mode  enumerated  cont mode  none  
@@ -60,85 +33,28 @@ phi_module    4
 eta_module    5
 phi_index     6
 eta_index     7
- DEBUG PixelID::initialize_from_dict Set barrel field values: 0
- DEBUG PixelID::initialize_from_dict Set dbm field values: -999,999
- DEBUG PixelID::initialize_from_dict Found field values: InDet/Pixel 2/1
- DEBUG PixelID::init_neighbors 
- DEBUG PixelID::initialize_from_dict 
- DEBUG Wafer range -> 2/1/0/0/0:21/-6:6 | 2/1/0/1/0:37/-6:6 | 2/1/0/2/0:51/-6:6 | 2/1/-2,2/0:2/0:47/0
- DEBUG Pixel range -> 2/1/0/0/0:21/-6:6/0:327/0:191 | 2/1/0/1/0:37/-6:6/0:327/0:143 | 2/1/0/2/0:51/-6:6/0:327/0:143 | 2/1/-2,2/0:2/0:47/0/0:327/0:143
 INFO SCT_ID::initialize_from_dictionary 
  AtlasDetectorID::initialize_from_dictionary - OK 
 INFO Initialize from dictionary cout 0
- DEBUG (Re)initialize
  AtlasDetectorID::initialize_from_dictionary - OK 
- DEBUG decode index and bit fields for each level: 
- DEBUG indet     decode 1 vals 2,4,5,7,10,11,12,13 mask/zero mask/shift/bits/offset 7   1fffffffffffffff 61 3  0  indexes 0 0 1 2 0 3 0 0 4 5 6 7 mode  enumerated  
- DEBUG trt       decode 1 vals 1:3             mask/zero mask/shift/bits/offset 3   e7ffffffffffffff 59 2  3  indexes                     mode  both_bounded  
- DEBUG bec       decode 1 vals -2,-1,1,2       mask/zero mask/shift/bits/offset 3   f9ffffffffffffff 57 2  5  indexes 0 1 0 2 3           mode  enumerated  
- DEBUG phi_mod   decode 0 vals 0:31            mask/zero mask/shift/bits/offset 1f  fe0fffffffffffff 52 5  7  indexes                     mode  both_bounded  
- DEBUG lay_wheel decode 0 vals 0:17            mask/zero mask/shift/bits/offset 1f  fff07fffffffffff 47 5  12 indexes                     mode  both_bounded  
- DEBUG str_lay   decode 0 vals 0:29            mask/zero mask/shift/bits/offset 1f  ffff83ffffffffff 42 5  17 indexes                     mode  both_bounded  
- DEBUG straw     decode 0 vals 0:28            mask/zero mask/shift/bits/offset 1f  fffffc1fffffffff 37 5  22 indexes                     mode  both_bounded  
- DEBUG  TRT_ID::initialize_from_dict Set barrel field values: -1,1
- DEBUG  TRT_ID::initialize_from_dict Found field values: InDet/TRT 2/3
- DEBUG Module range -> 2/3/-1,1/0:31/0 | 2/3/-1,1/0:31/1 | 2/3/-1,1/0:31/2 | 2/3/-2,2/0:31/0:5 | 2/3/-2,2/0:31/6:13 | 2/3/-2,2/0:31/14:17
- DEBUG TRT_ID::init_hashes  module hash max 1344
- DEBUG TRT_ID::init_hashes  straw layer hash max 19008
- DEBUG TRT_ID::init_hashes  straw hash max 424576
- DEBUG  TRT_ID::initialize_from_dict 
- DEBUG Module range -> 2/3/-1,1/0:31/0 | 2/3/-1,1/0:31/1 | 2/3/-1,1/0:31/2 | 2/3/-2,2/0:31/0:5 | 2/3/-2,2/0:31/6:13 | 2/3/-2,2/0:31/14:17
- DEBUG Straw layer range -> 2/3/-1,1/0:31/0/0 | 2/3/-1,1/0:31/0/1:4 | 2/3/-1,1/0:31/0/5:9 | 2/3/-1,1/0:31/0/10:14 | 2/3/-1,1/0:31/0/15:17 | 2/3/-1,1/0:31/0/18 | 2/3/-1,1/0:31/1/0 | 2/3/-1,1/0:31/1/1:5 | 2/3/-1,1/0:31/1/6:10 | 2/3/-1,1/0:31/1/11:15 | 2/3/-1,1/0:31/1/16:20 | 2/3/-1,1/0:31/1/21:22 | 2/3/-1,1/0:31/1/23 | 2/3/-1,1/0:31/2/0 | 2/3/-1,1/0:31/2/1:4 | 2/3/-1,1/0:31/2/5:9 | 2/3/-1,1/0:31/2/10:14 | 2/3/-1,1/0:31/2/15:19 | 2/3/-1,1/0:31/2/20:24 | 2/3/-1,1/0:31/2/25:28 | 2/3/-1,1/0:31/2/29 | 2/3/-2,2/0:31/0:5/0:15 | 2/3/-2,2/0:31/6:13/0:7 | 2/3/-2,2/0:31/14:17/0:15
- DEBUG Straw range -> 2/3/-1,1/0:31/0/0/0:14 | 2/3/-1,1/0:31/0/1:4/0:15 | 2/3/-1,1/0:31/0/5:9/0:16 | 2/3/-1,1/0:31/0/10:14/0:17 | 2/3/-1,1/0:31/0/15:17/0:18 | 2/3/-1,1/0:31/0/18/0:17 | 2/3/-1,1/0:31/1/0/0:18 | 2/3/-1,1/0:31/1/1:5/0:19 | 2/3/-1,1/0:31/1/6:10/0:20 | 2/3/-1,1/0:31/1/11:15/0:21 | 2/3/-1,1/0:31/1/16:20/0:22 | 2/3/-1,1/0:31/1/21:22/0:23 | 2/3/-1,1/0:31/1/23/0:22 | 2/3/-1,1/0:31/2/0/0:22 | 2/3/-1,1/0:31/2/1:4/0:23 | 2/3/-1,1/0:31/2/5:9/0:24 | 2/3/-1,1/0:31/2/10:14/0:25 | 2/3/-1,1/0:31/2/15:19/0:26 | 2/3/-1,1/0:31/2/20:24/0:27 | 2/3/-1,1/0:31/2/25:28/0:28 | 2/3/-1,1/0:31/2/29/0:27 | 2/3/-2,2/0:31/0:5/0:15/0:23 | 2/3/-2,2/0:31/6:13/0:7/0:23 | 2/3/-2,2/0:31/14:17/0:15/0:17
- AtlasDetectorID::initialize_from_dictionary - OK 
-CscIdHelper          INFO MultiRange built successfully to Technology: MultiRange size is 218
-CscIdHelper          INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 257
-CscIdHelper          INFO MultiRange built successfully to cscStrip: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 CscIdHelper          INFO Initializing CSC hash indices ... 
-CscIdHelper          INFO The element hash max is 32
-CscIdHelper          INFO The detector element hash max is 64
 CscIdHelper          INFO The channel hash max is 61440
 CscIdHelper          INFO Initializing CSC hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-RpcIdHelper          INFO MultiRange built successfully to doubletR: MultiRange size is 261
-RpcIdHelper          INFO MultiRange built successfully to detectorElement: DetectorElement MultiRange size is 261
-RpcIdHelper          INFO MultiRange built successfully to rpcStrip: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 RpcIdHelper          INFO Initializing RPC hash indices ... 
-RpcIdHelper          INFO The element hash max is 600
-RpcIdHelper          INFO The detector element hash max is 1122
 RpcIdHelper          INFO Initializing RPC hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-TgcIdHelper          INFO MultiRange built successfully to Technology: MultiRange size is 218
-TgcIdHelper          INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 218
-TgcIdHelper          INFO MultiRange built successfully to channel: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 TgcIdHelper          INFO Initializing TGC hash indices ... 
-TgcIdHelper          INFO The element hash max is 1578
-TgcIdHelper          INFO The detector element hash max is 1578
 TgcIdHelper          INFO Initializing TGC hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-MdtIdHelper          INFO MultiRange built successfully to Technology: MultiRange size is 218
-MdtIdHelper          INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 261
-MdtIdHelper          INFO MultiRange built successfully to tube: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 MdtIdHelper          INFO Initializing MDT hash indices ... 
-MdtIdHelper          INFO The element hash max is 1188
-MdtIdHelper          INFO The detector element hash max is 2328
 MdtIdHelper          INFO Initializing MDT hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-sTgcIdHelper         INFO MultiRange built successfully to Technology: MultiRange size is 218
-sTgcIdHelper         INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 253
-sTgcIdHelper         INFO MultiRange built successfully to channel: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 sTgcIdHelper         INFO Initializing sTGC hash indices ... 
-sTgcIdHelper         INFO The element hash max is 96
-sTgcIdHelper         INFO The detector element hash max is 192
 sTgcIdHelper         INFO Initializing sTGC hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-MmIdHelper           INFO MultiRange built successfully to Technology: MultiRange size is 218
-MmIdHelper           INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 257
-MmIdHelper           INFO MultiRange built successfully to channel: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 MmIdHelper           INFO Initializing MicroMegas hash indices ... 
-MmIdHelper           INFO The element hash max is 64
-MmIdHelper           INFO The detector element hash max is 128
 MmIdHelper           INFO Initializing MicroMegas hash indices for finding neighbors ... 
  AtlasDetectorID::initialize_from_dictionary - OK 
-ClassIDSvc           INFO  getRegistryEntries: read 379 CLIDRegistry entries for module ALL
 test1
diff --git a/MuonSpectrometer/MuonCnv/MuonEventTPCnv/share/STGC_ClusterOnTrackCnv_p1_test.ref b/MuonSpectrometer/MuonCnv/MuonEventTPCnv/share/STGC_ClusterOnTrackCnv_p1_test.ref
index e9908470fc969545fb3be6a0c793add316c2c4ba..eafa59f97879b9e447a9cdea019dc6bb7238a360 100644
--- a/MuonSpectrometer/MuonCnv/MuonEventTPCnv/share/STGC_ClusterOnTrackCnv_p1_test.ref
+++ b/MuonSpectrometer/MuonCnv/MuonEventTPCnv/share/STGC_ClusterOnTrackCnv_p1_test.ref
@@ -1,18 +1,6 @@
 
 
-Initializing Gaudi ApplicationMgr using job opts /home/emoyse/master2/build/x86_64-centos7-gcc8-opt/jobOptions/MuonEventTPCnv/MuonEventTPCnv_test.txt
-JobOptionsSvc        INFO # =======> /home/emoyse/master2/build/x86_64-centos7-gcc8-opt/jobOptions/MuonEventTPCnv/MuonEventTPCnv_test.txt
-JobOptionsSvc        INFO # (1,1): ApplicationMgr.Dlls += ["StoreGate", "CLIDComps"]
-JobOptionsSvc        INFO # (2,1): ApplicationMgr.ExtSvc += ["StoreGateSvc", "StoreGateSvc/DetectorStore", "StoreGateSvc/ConditionStore", "Athena::RCUSvc"]
-JobOptionsSvc        INFO Job options successfully read in from /home/emoyse/master2/build/x86_64-centos7-gcc8-opt/jobOptions/MuonEventTPCnv/MuonEventTPCnv_test.txt
-ApplicationMgr    SUCCESS 
-====================================================================================================================================
-                                                   Welcome to ApplicationMgr (GaudiCoreSvc v34r0)
-                                          running on pcumass4 on Wed Nov  4 09:34:35 2020
-====================================================================================================================================
-ApplicationMgr       INFO Successfully loaded modules : StoreGate, CLIDComps
 ApplicationMgr       INFO Application Manager Configured successfully
-ClassIDSvc           INFO  getRegistryEntries: read 12361 CLIDRegistry entries for module ALL
 EventLoopMgr      WARNING Unable to locate service "EventSelector" 
 EventLoopMgr      WARNING No events will be processed from external input.
 ApplicationMgr       INFO Application Manager Initialized successfully
@@ -22,22 +10,7 @@ ApplicationMgr Ready
  Volume pmdum2 not found: returning 0
  Volume pmdum3 not found: returning 0
  INFO Initialize from dictionary
- DEBUG (Re)initialize
  AtlasDetectorID::initialize_from_dictionary - OK 
- DEBUG decode index and bit fields for each level: 
- DEBUG indet          decode 1 vals 2,4,5,7,10,11,12,13 mask/zero mask/shift/bits/offset 7   1fffffffffffffff 61 3  0  indexes 0 0 1 2 0 3 0 0 4 5 6 7 mode  enumerated  
- DEBUG pixel          decode 1 vals 1:3             mask/zero mask/shift/bits/offset 3   e7ffffffffffffff 59 2  3  indexes                     mode  both_bounded  
- DEBUG bec            decode 1 vals -2,0,2          mask/zero mask/shift/bits/offset 3   f9ffffffffffffff 57 2  5  indexes 0 0 1 0 2           mode  enumerated  
- DEBUG bec_shift      decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
- DEBUG lay_disk       decode 0 vals 0:2             mask/zero mask/shift/bits/offset 3   fe7fffffffffffff 55 2  7  indexes                     mode  both_bounded  
- DEBUG lay_disk_shift decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
- DEBUG phi_mod        decode 0 vals 0:51            mask/zero mask/shift/bits/offset 3f  ff81ffffffffffff 49 6  9  indexes                     mode  both_bounded  
- DEBUG phi_mod_shift  decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
- DEBUG eta_mod        decode 1 vals -6:6            mask/zero mask/shift/bits/offset f   fffe1fffffffffff 45 4  15 indexes                     mode  both_bounded  
- DEBUG eta_mod_shift  decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
- DEBUG phi_index      decode 0 vals 0:327           mask/zero mask/shift/bits/offset 1ff ffffe00fffffffff 36 9  19 indexes                     mode  both_bounded  
- DEBUG eta_index      decode 0 vals 0:191           mask/zero mask/shift/bits/offset ff  fffffff00fffffff 28 8  28 indexes                     mode  both_bounded  
- DEBUG bec_eta_mod    decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
 indet 1 2,4,5,7,10,11,12,13 7 1fffffffffffffff 61 3 0 min/max 2 13 values  2 4 5 7 10 11 12 13 indexes  0 0 1 2 0 3 0 0 4 5 6 7 indices  8 prev  0 next  0 mode  enumerated  cont mode  none  
 pixel 1 1:3 3 e7ffffffffffffff 59 2 3 min/max 1 3 values  indexes  indices  3 prev  0 next  0 mode  both_bounded  cont mode  none  
 bec 1 -2,0,2 3 f9ffffffffffffff 57 2 5 min/max -2 2 values  -2 0 2 indexes  0 0 1 0 2 indices  3 prev  0 next  0 mode  enumerated  cont mode  none  
@@ -60,87 +33,28 @@ phi_module    4
 eta_module    5
 phi_index     6
 eta_index     7
- DEBUG PixelID::initialize_from_dict Set barrel field values: 0
- DEBUG PixelID::initialize_from_dict Set dbm field values: -999,999
- DEBUG PixelID::initialize_from_dict Found field values: InDet/Pixel 2/1
- DEBUG PixelID::init_neighbors 
- DEBUG PixelID::initialize_from_dict 
- DEBUG Wafer range -> 2/1/0/0/0:21/-6:6 | 2/1/0/1/0:37/-6:6 | 2/1/0/2/0:51/-6:6 | 2/1/-2,2/0:2/0:47/0
- DEBUG Pixel range -> 2/1/0/0/0:21/-6:6/0:327/0:191 | 2/1/0/1/0:37/-6:6/0:327/0:143 | 2/1/0/2/0:51/-6:6/0:327/0:143 | 2/1/-2,2/0:2/0:47/0/0:327/0:143
 INFO SCT_ID::initialize_from_dictionary 
  AtlasDetectorID::initialize_from_dictionary - OK 
 INFO Initialize from dictionary cout 0
- DEBUG (Re)initialize
  AtlasDetectorID::initialize_from_dictionary - OK 
- DEBUG decode index and bit fields for each level: 
- DEBUG indet     decode 1 vals 2,4,5,7,10,11,12,13 mask/zero mask/shift/bits/offset 7   1fffffffffffffff 61 3  0  indexes 0 0 1 2 0 3 0 0 4 5 6 7 mode  enumerated  
- DEBUG trt       decode 1 vals 1:3             mask/zero mask/shift/bits/offset 3   e7ffffffffffffff 59 2  3  indexes                     mode  both_bounded  
- DEBUG bec       decode 1 vals -2,-1,1,2       mask/zero mask/shift/bits/offset 3   f9ffffffffffffff 57 2  5  indexes 0 1 0 2 3           mode  enumerated  
- DEBUG phi_mod   decode 0 vals 0:31            mask/zero mask/shift/bits/offset 1f  fe0fffffffffffff 52 5  7  indexes                     mode  both_bounded  
- DEBUG lay_wheel decode 0 vals 0:17            mask/zero mask/shift/bits/offset 1f  fff07fffffffffff 47 5  12 indexes                     mode  both_bounded  
- DEBUG str_lay   decode 0 vals 0:29            mask/zero mask/shift/bits/offset 1f  ffff83ffffffffff 42 5  17 indexes                     mode  both_bounded  
- DEBUG straw     decode 0 vals 0:28            mask/zero mask/shift/bits/offset 1f  fffffc1fffffffff 37 5  22 indexes                     mode  both_bounded  
- DEBUG  TRT_ID::initialize_from_dict Set barrel field values: -1,1
- DEBUG  TRT_ID::initialize_from_dict Found field values: InDet/TRT 2/3
- DEBUG Module range -> 2/3/-1,1/0:31/0 | 2/3/-1,1/0:31/1 | 2/3/-1,1/0:31/2 | 2/3/-2,2/0:31/0:5 | 2/3/-2,2/0:31/6:13 | 2/3/-2,2/0:31/14:17
- DEBUG TRT_ID::init_hashes  module hash max 1344
- DEBUG TRT_ID::init_hashes  straw layer hash max 19008
- DEBUG TRT_ID::init_hashes  straw hash max 424576
- DEBUG  TRT_ID::initialize_from_dict 
- DEBUG Module range -> 2/3/-1,1/0:31/0 | 2/3/-1,1/0:31/1 | 2/3/-1,1/0:31/2 | 2/3/-2,2/0:31/0:5 | 2/3/-2,2/0:31/6:13 | 2/3/-2,2/0:31/14:17
- DEBUG Straw layer range -> 2/3/-1,1/0:31/0/0 | 2/3/-1,1/0:31/0/1:4 | 2/3/-1,1/0:31/0/5:9 | 2/3/-1,1/0:31/0/10:14 | 2/3/-1,1/0:31/0/15:17 | 2/3/-1,1/0:31/0/18 | 2/3/-1,1/0:31/1/0 | 2/3/-1,1/0:31/1/1:5 | 2/3/-1,1/0:31/1/6:10 | 2/3/-1,1/0:31/1/11:15 | 2/3/-1,1/0:31/1/16:20 | 2/3/-1,1/0:31/1/21:22 | 2/3/-1,1/0:31/1/23 | 2/3/-1,1/0:31/2/0 | 2/3/-1,1/0:31/2/1:4 | 2/3/-1,1/0:31/2/5:9 | 2/3/-1,1/0:31/2/10:14 | 2/3/-1,1/0:31/2/15:19 | 2/3/-1,1/0:31/2/20:24 | 2/3/-1,1/0:31/2/25:28 | 2/3/-1,1/0:31/2/29 | 2/3/-2,2/0:31/0:5/0:15 | 2/3/-2,2/0:31/6:13/0:7 | 2/3/-2,2/0:31/14:17/0:15
- DEBUG Straw range -> 2/3/-1,1/0:31/0/0/0:14 | 2/3/-1,1/0:31/0/1:4/0:15 | 2/3/-1,1/0:31/0/5:9/0:16 | 2/3/-1,1/0:31/0/10:14/0:17 | 2/3/-1,1/0:31/0/15:17/0:18 | 2/3/-1,1/0:31/0/18/0:17 | 2/3/-1,1/0:31/1/0/0:18 | 2/3/-1,1/0:31/1/1:5/0:19 | 2/3/-1,1/0:31/1/6:10/0:20 | 2/3/-1,1/0:31/1/11:15/0:21 | 2/3/-1,1/0:31/1/16:20/0:22 | 2/3/-1,1/0:31/1/21:22/0:23 | 2/3/-1,1/0:31/1/23/0:22 | 2/3/-1,1/0:31/2/0/0:22 | 2/3/-1,1/0:31/2/1:4/0:23 | 2/3/-1,1/0:31/2/5:9/0:24 | 2/3/-1,1/0:31/2/10:14/0:25 | 2/3/-1,1/0:31/2/15:19/0:26 | 2/3/-1,1/0:31/2/20:24/0:27 | 2/3/-1,1/0:31/2/25:28/0:28 | 2/3/-1,1/0:31/2/29/0:27 | 2/3/-2,2/0:31/0:5/0:15/0:23 | 2/3/-2,2/0:31/6:13/0:7/0:23 | 2/3/-2,2/0:31/14:17/0:15/0:17
- AtlasDetectorID::initialize_from_dictionary - OK 
-CscIdHelper          INFO MultiRange built successfully to Technology: MultiRange size is 218
-CscIdHelper          INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 257
-CscIdHelper          INFO MultiRange built successfully to cscStrip: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 CscIdHelper          INFO Initializing CSC hash indices ... 
-CscIdHelper          INFO The element hash max is 32
-CscIdHelper          INFO The detector element hash max is 64
 CscIdHelper          INFO The channel hash max is 61440
 CscIdHelper          INFO Initializing CSC hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-RpcIdHelper          INFO MultiRange built successfully to doubletR: MultiRange size is 261
-RpcIdHelper          INFO MultiRange built successfully to detectorElement: DetectorElement MultiRange size is 261
-RpcIdHelper          INFO MultiRange built successfully to rpcStrip: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 RpcIdHelper          INFO Initializing RPC hash indices ... 
-RpcIdHelper          INFO The element hash max is 600
-RpcIdHelper          INFO The detector element hash max is 1122
 RpcIdHelper          INFO Initializing RPC hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-TgcIdHelper          INFO MultiRange built successfully to Technology: MultiRange size is 218
-TgcIdHelper          INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 218
-TgcIdHelper          INFO MultiRange built successfully to channel: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 TgcIdHelper          INFO Initializing TGC hash indices ... 
-TgcIdHelper          INFO The element hash max is 1578
-TgcIdHelper          INFO The detector element hash max is 1578
 TgcIdHelper          INFO Initializing TGC hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-MdtIdHelper          INFO MultiRange built successfully to Technology: MultiRange size is 218
-MdtIdHelper          INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 261
-MdtIdHelper          INFO MultiRange built successfully to tube: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 MdtIdHelper          INFO Initializing MDT hash indices ... 
-MdtIdHelper          INFO The element hash max is 1188
-MdtIdHelper          INFO The detector element hash max is 2328
 MdtIdHelper          INFO Initializing MDT hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-sTgcIdHelper         INFO MultiRange built successfully to Technology: MultiRange size is 218
-sTgcIdHelper         INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 253
-sTgcIdHelper         INFO MultiRange built successfully to channel: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 sTgcIdHelper         INFO Initializing sTGC hash indices ... 
-sTgcIdHelper         INFO The element hash max is 96
-sTgcIdHelper         INFO The detector element hash max is 192
 sTgcIdHelper         INFO Initializing sTGC hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-MmIdHelper           INFO MultiRange built successfully to Technology: MultiRange size is 218
-MmIdHelper           INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 257
-MmIdHelper           INFO MultiRange built successfully to channel: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 MmIdHelper           INFO Initializing MicroMegas hash indices ... 
-MmIdHelper           INFO The element hash max is 64
-MmIdHelper           INFO The detector element hash max is 128
 MmIdHelper           INFO Initializing MicroMegas hash indices for finding neighbors ... 
  AtlasDetectorID::initialize_from_dictionary - OK 
-ClassIDSvc           INFO  getRegistryEntries: read 379 CLIDRegistry entries for module ALL
 test1
-ClassIDSvc           INFO  getRegistryEntries: read 320 CLIDRegistry entries for module ALL
-ClassIDSvc           INFO  getRegistryEntries: read 170 CLIDRegistry entries for module ALL
diff --git a/MuonSpectrometer/MuonCnv/MuonEventTPCnv/share/STGC_DigitContainerCnv_p1_test.ref b/MuonSpectrometer/MuonCnv/MuonEventTPCnv/share/STGC_DigitContainerCnv_p1_test.ref
index cb664f54651404e964537757e952f5e504da71f1..eafa59f97879b9e447a9cdea019dc6bb7238a360 100644
--- a/MuonSpectrometer/MuonCnv/MuonEventTPCnv/share/STGC_DigitContainerCnv_p1_test.ref
+++ b/MuonSpectrometer/MuonCnv/MuonEventTPCnv/share/STGC_DigitContainerCnv_p1_test.ref
@@ -1,18 +1,6 @@
 
 
-Initializing Gaudi ApplicationMgr using job opts /home/emoyse/master2/build/x86_64-centos7-gcc8-opt/jobOptions/MuonEventTPCnv/MuonEventTPCnv_test.txt
-JobOptionsSvc        INFO # =======> /home/emoyse/master2/build/x86_64-centos7-gcc8-opt/jobOptions/MuonEventTPCnv/MuonEventTPCnv_test.txt
-JobOptionsSvc        INFO # (1,1): ApplicationMgr.Dlls += ["StoreGate", "CLIDComps"]
-JobOptionsSvc        INFO # (2,1): ApplicationMgr.ExtSvc += ["StoreGateSvc", "StoreGateSvc/DetectorStore", "StoreGateSvc/ConditionStore", "Athena::RCUSvc"]
-JobOptionsSvc        INFO Job options successfully read in from /home/emoyse/master2/build/x86_64-centos7-gcc8-opt/jobOptions/MuonEventTPCnv/MuonEventTPCnv_test.txt
-ApplicationMgr    SUCCESS 
-====================================================================================================================================
-                                                   Welcome to ApplicationMgr (GaudiCoreSvc v34r0)
-                                          running on pcumass4 on Wed Nov  4 09:35:40 2020
-====================================================================================================================================
-ApplicationMgr       INFO Successfully loaded modules : StoreGate, CLIDComps
 ApplicationMgr       INFO Application Manager Configured successfully
-ClassIDSvc           INFO  getRegistryEntries: read 12351 CLIDRegistry entries for module ALL
 EventLoopMgr      WARNING Unable to locate service "EventSelector" 
 EventLoopMgr      WARNING No events will be processed from external input.
 ApplicationMgr       INFO Application Manager Initialized successfully
@@ -22,22 +10,7 @@ ApplicationMgr Ready
  Volume pmdum2 not found: returning 0
  Volume pmdum3 not found: returning 0
  INFO Initialize from dictionary
- DEBUG (Re)initialize
  AtlasDetectorID::initialize_from_dictionary - OK 
- DEBUG decode index and bit fields for each level: 
- DEBUG indet          decode 1 vals 2,4,5,7,10,11,12,13 mask/zero mask/shift/bits/offset 7   1fffffffffffffff 61 3  0  indexes 0 0 1 2 0 3 0 0 4 5 6 7 mode  enumerated  
- DEBUG pixel          decode 1 vals 1:3             mask/zero mask/shift/bits/offset 3   e7ffffffffffffff 59 2  3  indexes                     mode  both_bounded  
- DEBUG bec            decode 1 vals -2,0,2          mask/zero mask/shift/bits/offset 3   f9ffffffffffffff 57 2  5  indexes 0 0 1 0 2           mode  enumerated  
- DEBUG bec_shift      decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
- DEBUG lay_disk       decode 0 vals 0:2             mask/zero mask/shift/bits/offset 3   fe7fffffffffffff 55 2  7  indexes                     mode  both_bounded  
- DEBUG lay_disk_shift decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
- DEBUG phi_mod        decode 0 vals 0:51            mask/zero mask/shift/bits/offset 3f  ff81ffffffffffff 49 6  9  indexes                     mode  both_bounded  
- DEBUG phi_mod_shift  decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
- DEBUG eta_mod        decode 1 vals -6:6            mask/zero mask/shift/bits/offset f   fffe1fffffffffff 45 4  15 indexes                     mode  both_bounded  
- DEBUG eta_mod_shift  decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
- DEBUG phi_index      decode 0 vals 0:327           mask/zero mask/shift/bits/offset 1ff ffffe00fffffffff 36 9  19 indexes                     mode  both_bounded  
- DEBUG eta_index      decode 0 vals 0:191           mask/zero mask/shift/bits/offset ff  fffffff00fffffff 28 8  28 indexes                     mode  both_bounded  
- DEBUG bec_eta_mod    decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
 indet 1 2,4,5,7,10,11,12,13 7 1fffffffffffffff 61 3 0 min/max 2 13 values  2 4 5 7 10 11 12 13 indexes  0 0 1 2 0 3 0 0 4 5 6 7 indices  8 prev  0 next  0 mode  enumerated  cont mode  none  
 pixel 1 1:3 3 e7ffffffffffffff 59 2 3 min/max 1 3 values  indexes  indices  3 prev  0 next  0 mode  both_bounded  cont mode  none  
 bec 1 -2,0,2 3 f9ffffffffffffff 57 2 5 min/max -2 2 values  -2 0 2 indexes  0 0 1 0 2 indices  3 prev  0 next  0 mode  enumerated  cont mode  none  
@@ -60,85 +33,28 @@ phi_module    4
 eta_module    5
 phi_index     6
 eta_index     7
- DEBUG PixelID::initialize_from_dict Set barrel field values: 0
- DEBUG PixelID::initialize_from_dict Set dbm field values: -999,999
- DEBUG PixelID::initialize_from_dict Found field values: InDet/Pixel 2/1
- DEBUG PixelID::init_neighbors 
- DEBUG PixelID::initialize_from_dict 
- DEBUG Wafer range -> 2/1/0/0/0:21/-6:6 | 2/1/0/1/0:37/-6:6 | 2/1/0/2/0:51/-6:6 | 2/1/-2,2/0:2/0:47/0
- DEBUG Pixel range -> 2/1/0/0/0:21/-6:6/0:327/0:191 | 2/1/0/1/0:37/-6:6/0:327/0:143 | 2/1/0/2/0:51/-6:6/0:327/0:143 | 2/1/-2,2/0:2/0:47/0/0:327/0:143
 INFO SCT_ID::initialize_from_dictionary 
  AtlasDetectorID::initialize_from_dictionary - OK 
 INFO Initialize from dictionary cout 0
- DEBUG (Re)initialize
  AtlasDetectorID::initialize_from_dictionary - OK 
- DEBUG decode index and bit fields for each level: 
- DEBUG indet     decode 1 vals 2,4,5,7,10,11,12,13 mask/zero mask/shift/bits/offset 7   1fffffffffffffff 61 3  0  indexes 0 0 1 2 0 3 0 0 4 5 6 7 mode  enumerated  
- DEBUG trt       decode 1 vals 1:3             mask/zero mask/shift/bits/offset 3   e7ffffffffffffff 59 2  3  indexes                     mode  both_bounded  
- DEBUG bec       decode 1 vals -2,-1,1,2       mask/zero mask/shift/bits/offset 3   f9ffffffffffffff 57 2  5  indexes 0 1 0 2 3           mode  enumerated  
- DEBUG phi_mod   decode 0 vals 0:31            mask/zero mask/shift/bits/offset 1f  fe0fffffffffffff 52 5  7  indexes                     mode  both_bounded  
- DEBUG lay_wheel decode 0 vals 0:17            mask/zero mask/shift/bits/offset 1f  fff07fffffffffff 47 5  12 indexes                     mode  both_bounded  
- DEBUG str_lay   decode 0 vals 0:29            mask/zero mask/shift/bits/offset 1f  ffff83ffffffffff 42 5  17 indexes                     mode  both_bounded  
- DEBUG straw     decode 0 vals 0:28            mask/zero mask/shift/bits/offset 1f  fffffc1fffffffff 37 5  22 indexes                     mode  both_bounded  
- DEBUG  TRT_ID::initialize_from_dict Set barrel field values: -1,1
- DEBUG  TRT_ID::initialize_from_dict Found field values: InDet/TRT 2/3
- DEBUG Module range -> 2/3/-1,1/0:31/0 | 2/3/-1,1/0:31/1 | 2/3/-1,1/0:31/2 | 2/3/-2,2/0:31/0:5 | 2/3/-2,2/0:31/6:13 | 2/3/-2,2/0:31/14:17
- DEBUG TRT_ID::init_hashes  module hash max 1344
- DEBUG TRT_ID::init_hashes  straw layer hash max 19008
- DEBUG TRT_ID::init_hashes  straw hash max 424576
- DEBUG  TRT_ID::initialize_from_dict 
- DEBUG Module range -> 2/3/-1,1/0:31/0 | 2/3/-1,1/0:31/1 | 2/3/-1,1/0:31/2 | 2/3/-2,2/0:31/0:5 | 2/3/-2,2/0:31/6:13 | 2/3/-2,2/0:31/14:17
- DEBUG Straw layer range -> 2/3/-1,1/0:31/0/0 | 2/3/-1,1/0:31/0/1:4 | 2/3/-1,1/0:31/0/5:9 | 2/3/-1,1/0:31/0/10:14 | 2/3/-1,1/0:31/0/15:17 | 2/3/-1,1/0:31/0/18 | 2/3/-1,1/0:31/1/0 | 2/3/-1,1/0:31/1/1:5 | 2/3/-1,1/0:31/1/6:10 | 2/3/-1,1/0:31/1/11:15 | 2/3/-1,1/0:31/1/16:20 | 2/3/-1,1/0:31/1/21:22 | 2/3/-1,1/0:31/1/23 | 2/3/-1,1/0:31/2/0 | 2/3/-1,1/0:31/2/1:4 | 2/3/-1,1/0:31/2/5:9 | 2/3/-1,1/0:31/2/10:14 | 2/3/-1,1/0:31/2/15:19 | 2/3/-1,1/0:31/2/20:24 | 2/3/-1,1/0:31/2/25:28 | 2/3/-1,1/0:31/2/29 | 2/3/-2,2/0:31/0:5/0:15 | 2/3/-2,2/0:31/6:13/0:7 | 2/3/-2,2/0:31/14:17/0:15
- DEBUG Straw range -> 2/3/-1,1/0:31/0/0/0:14 | 2/3/-1,1/0:31/0/1:4/0:15 | 2/3/-1,1/0:31/0/5:9/0:16 | 2/3/-1,1/0:31/0/10:14/0:17 | 2/3/-1,1/0:31/0/15:17/0:18 | 2/3/-1,1/0:31/0/18/0:17 | 2/3/-1,1/0:31/1/0/0:18 | 2/3/-1,1/0:31/1/1:5/0:19 | 2/3/-1,1/0:31/1/6:10/0:20 | 2/3/-1,1/0:31/1/11:15/0:21 | 2/3/-1,1/0:31/1/16:20/0:22 | 2/3/-1,1/0:31/1/21:22/0:23 | 2/3/-1,1/0:31/1/23/0:22 | 2/3/-1,1/0:31/2/0/0:22 | 2/3/-1,1/0:31/2/1:4/0:23 | 2/3/-1,1/0:31/2/5:9/0:24 | 2/3/-1,1/0:31/2/10:14/0:25 | 2/3/-1,1/0:31/2/15:19/0:26 | 2/3/-1,1/0:31/2/20:24/0:27 | 2/3/-1,1/0:31/2/25:28/0:28 | 2/3/-1,1/0:31/2/29/0:27 | 2/3/-2,2/0:31/0:5/0:15/0:23 | 2/3/-2,2/0:31/6:13/0:7/0:23 | 2/3/-2,2/0:31/14:17/0:15/0:17
- AtlasDetectorID::initialize_from_dictionary - OK 
-CscIdHelper          INFO MultiRange built successfully to Technology: MultiRange size is 218
-CscIdHelper          INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 257
-CscIdHelper          INFO MultiRange built successfully to cscStrip: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 CscIdHelper          INFO Initializing CSC hash indices ... 
-CscIdHelper          INFO The element hash max is 32
-CscIdHelper          INFO The detector element hash max is 64
 CscIdHelper          INFO The channel hash max is 61440
 CscIdHelper          INFO Initializing CSC hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-RpcIdHelper          INFO MultiRange built successfully to doubletR: MultiRange size is 261
-RpcIdHelper          INFO MultiRange built successfully to detectorElement: DetectorElement MultiRange size is 261
-RpcIdHelper          INFO MultiRange built successfully to rpcStrip: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 RpcIdHelper          INFO Initializing RPC hash indices ... 
-RpcIdHelper          INFO The element hash max is 600
-RpcIdHelper          INFO The detector element hash max is 1122
 RpcIdHelper          INFO Initializing RPC hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-TgcIdHelper          INFO MultiRange built successfully to Technology: MultiRange size is 218
-TgcIdHelper          INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 218
-TgcIdHelper          INFO MultiRange built successfully to channel: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 TgcIdHelper          INFO Initializing TGC hash indices ... 
-TgcIdHelper          INFO The element hash max is 1578
-TgcIdHelper          INFO The detector element hash max is 1578
 TgcIdHelper          INFO Initializing TGC hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-MdtIdHelper          INFO MultiRange built successfully to Technology: MultiRange size is 218
-MdtIdHelper          INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 261
-MdtIdHelper          INFO MultiRange built successfully to tube: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 MdtIdHelper          INFO Initializing MDT hash indices ... 
-MdtIdHelper          INFO The element hash max is 1188
-MdtIdHelper          INFO The detector element hash max is 2328
 MdtIdHelper          INFO Initializing MDT hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-sTgcIdHelper         INFO MultiRange built successfully to Technology: MultiRange size is 218
-sTgcIdHelper         INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 253
-sTgcIdHelper         INFO MultiRange built successfully to channel: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 sTgcIdHelper         INFO Initializing sTGC hash indices ... 
-sTgcIdHelper         INFO The element hash max is 96
-sTgcIdHelper         INFO The detector element hash max is 192
 sTgcIdHelper         INFO Initializing sTGC hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-MmIdHelper           INFO MultiRange built successfully to Technology: MultiRange size is 218
-MmIdHelper           INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 257
-MmIdHelper           INFO MultiRange built successfully to channel: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 MmIdHelper           INFO Initializing MicroMegas hash indices ... 
-MmIdHelper           INFO The element hash max is 64
-MmIdHelper           INFO The detector element hash max is 128
 MmIdHelper           INFO Initializing MicroMegas hash indices for finding neighbors ... 
  AtlasDetectorID::initialize_from_dictionary - OK 
-ClassIDSvc           INFO  getRegistryEntries: read 379 CLIDRegistry entries for module ALL
 test1
diff --git a/MuonSpectrometer/MuonCnv/MuonEventTPCnv/share/STGC_RawDataContainerCnv_p1_test.ref b/MuonSpectrometer/MuonCnv/MuonEventTPCnv/share/STGC_RawDataContainerCnv_p1_test.ref
index 54c3f168fdbbed6cb04a47a8adebae4bc48f81e3..d23421fb19a6f208fb187d09c9984383a4ab247b 100644
--- a/MuonSpectrometer/MuonCnv/MuonEventTPCnv/share/STGC_RawDataContainerCnv_p1_test.ref
+++ b/MuonSpectrometer/MuonCnv/MuonEventTPCnv/share/STGC_RawDataContainerCnv_p1_test.ref
@@ -1,18 +1,6 @@
 
 
-Initializing Gaudi ApplicationMgr using job opts /home/emoyse/master2/build/x86_64-centos7-gcc8-opt/jobOptions/MuonEventTPCnv/MuonEventTPCnv_test.txt
-JobOptionsSvc        INFO # =======> /home/emoyse/master2/build/x86_64-centos7-gcc8-opt/jobOptions/MuonEventTPCnv/MuonEventTPCnv_test.txt
-JobOptionsSvc        INFO # (1,1): ApplicationMgr.Dlls += ["StoreGate", "CLIDComps"]
-JobOptionsSvc        INFO # (2,1): ApplicationMgr.ExtSvc += ["StoreGateSvc", "StoreGateSvc/DetectorStore", "StoreGateSvc/ConditionStore", "Athena::RCUSvc"]
-JobOptionsSvc        INFO Job options successfully read in from /home/emoyse/master2/build/x86_64-centos7-gcc8-opt/jobOptions/MuonEventTPCnv/MuonEventTPCnv_test.txt
-ApplicationMgr    SUCCESS 
-====================================================================================================================================
-                                                   Welcome to ApplicationMgr (GaudiCoreSvc v34r0)
-                                          running on pcumass4 on Wed Nov  4 09:35:42 2020
-====================================================================================================================================
-ApplicationMgr       INFO Successfully loaded modules : StoreGate, CLIDComps
 ApplicationMgr       INFO Application Manager Configured successfully
-ClassIDSvc           INFO  getRegistryEntries: read 12350 CLIDRegistry entries for module ALL
 EventLoopMgr      WARNING Unable to locate service "EventSelector" 
 EventLoopMgr      WARNING No events will be processed from external input.
 ApplicationMgr       INFO Application Manager Initialized successfully
@@ -22,22 +10,7 @@ ApplicationMgr Ready
  Volume pmdum2 not found: returning 0
  Volume pmdum3 not found: returning 0
  INFO Initialize from dictionary
- DEBUG (Re)initialize
  AtlasDetectorID::initialize_from_dictionary - OK 
- DEBUG decode index and bit fields for each level: 
- DEBUG indet          decode 1 vals 2,4,5,7,10,11,12,13 mask/zero mask/shift/bits/offset 7   1fffffffffffffff 61 3  0  indexes 0 0 1 2 0 3 0 0 4 5 6 7 mode  enumerated  
- DEBUG pixel          decode 1 vals 1:3             mask/zero mask/shift/bits/offset 3   e7ffffffffffffff 59 2  3  indexes                     mode  both_bounded  
- DEBUG bec            decode 1 vals -2,0,2          mask/zero mask/shift/bits/offset 3   f9ffffffffffffff 57 2  5  indexes 0 0 1 0 2           mode  enumerated  
- DEBUG bec_shift      decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
- DEBUG lay_disk       decode 0 vals 0:2             mask/zero mask/shift/bits/offset 3   fe7fffffffffffff 55 2  7  indexes                     mode  both_bounded  
- DEBUG lay_disk_shift decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
- DEBUG phi_mod        decode 0 vals 0:51            mask/zero mask/shift/bits/offset 3f  ff81ffffffffffff 49 6  9  indexes                     mode  both_bounded  
- DEBUG phi_mod_shift  decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
- DEBUG eta_mod        decode 1 vals -6:6            mask/zero mask/shift/bits/offset f   fffe1fffffffffff 45 4  15 indexes                     mode  both_bounded  
- DEBUG eta_mod_shift  decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
- DEBUG phi_index      decode 0 vals 0:327           mask/zero mask/shift/bits/offset 1ff ffffe00fffffffff 36 9  19 indexes                     mode  both_bounded  
- DEBUG eta_index      decode 0 vals 0:191           mask/zero mask/shift/bits/offset ff  fffffff00fffffff 28 8  28 indexes                     mode  both_bounded  
- DEBUG bec_eta_mod    decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
 indet 1 2,4,5,7,10,11,12,13 7 1fffffffffffffff 61 3 0 min/max 2 13 values  2 4 5 7 10 11 12 13 indexes  0 0 1 2 0 3 0 0 4 5 6 7 indices  8 prev  0 next  0 mode  enumerated  cont mode  none  
 pixel 1 1:3 3 e7ffffffffffffff 59 2 3 min/max 1 3 values  indexes  indices  3 prev  0 next  0 mode  both_bounded  cont mode  none  
 bec 1 -2,0,2 3 f9ffffffffffffff 57 2 5 min/max -2 2 values  -2 0 2 indexes  0 0 1 0 2 indices  3 prev  0 next  0 mode  enumerated  cont mode  none  
@@ -60,87 +33,30 @@ phi_module    4
 eta_module    5
 phi_index     6
 eta_index     7
- DEBUG PixelID::initialize_from_dict Set barrel field values: 0
- DEBUG PixelID::initialize_from_dict Set dbm field values: -999,999
- DEBUG PixelID::initialize_from_dict Found field values: InDet/Pixel 2/1
- DEBUG PixelID::init_neighbors 
- DEBUG PixelID::initialize_from_dict 
- DEBUG Wafer range -> 2/1/0/0/0:21/-6:6 | 2/1/0/1/0:37/-6:6 | 2/1/0/2/0:51/-6:6 | 2/1/-2,2/0:2/0:47/0
- DEBUG Pixel range -> 2/1/0/0/0:21/-6:6/0:327/0:191 | 2/1/0/1/0:37/-6:6/0:327/0:143 | 2/1/0/2/0:51/-6:6/0:327/0:143 | 2/1/-2,2/0:2/0:47/0/0:327/0:143
 INFO SCT_ID::initialize_from_dictionary 
  AtlasDetectorID::initialize_from_dictionary - OK 
 INFO Initialize from dictionary cout 0
- DEBUG (Re)initialize
  AtlasDetectorID::initialize_from_dictionary - OK 
- DEBUG decode index and bit fields for each level: 
- DEBUG indet     decode 1 vals 2,4,5,7,10,11,12,13 mask/zero mask/shift/bits/offset 7   1fffffffffffffff 61 3  0  indexes 0 0 1 2 0 3 0 0 4 5 6 7 mode  enumerated  
- DEBUG trt       decode 1 vals 1:3             mask/zero mask/shift/bits/offset 3   e7ffffffffffffff 59 2  3  indexes                     mode  both_bounded  
- DEBUG bec       decode 1 vals -2,-1,1,2       mask/zero mask/shift/bits/offset 3   f9ffffffffffffff 57 2  5  indexes 0 1 0 2 3           mode  enumerated  
- DEBUG phi_mod   decode 0 vals 0:31            mask/zero mask/shift/bits/offset 1f  fe0fffffffffffff 52 5  7  indexes                     mode  both_bounded  
- DEBUG lay_wheel decode 0 vals 0:17            mask/zero mask/shift/bits/offset 1f  fff07fffffffffff 47 5  12 indexes                     mode  both_bounded  
- DEBUG str_lay   decode 0 vals 0:29            mask/zero mask/shift/bits/offset 1f  ffff83ffffffffff 42 5  17 indexes                     mode  both_bounded  
- DEBUG straw     decode 0 vals 0:28            mask/zero mask/shift/bits/offset 1f  fffffc1fffffffff 37 5  22 indexes                     mode  both_bounded  
- DEBUG  TRT_ID::initialize_from_dict Set barrel field values: -1,1
- DEBUG  TRT_ID::initialize_from_dict Found field values: InDet/TRT 2/3
- DEBUG Module range -> 2/3/-1,1/0:31/0 | 2/3/-1,1/0:31/1 | 2/3/-1,1/0:31/2 | 2/3/-2,2/0:31/0:5 | 2/3/-2,2/0:31/6:13 | 2/3/-2,2/0:31/14:17
- DEBUG TRT_ID::init_hashes  module hash max 1344
- DEBUG TRT_ID::init_hashes  straw layer hash max 19008
- DEBUG TRT_ID::init_hashes  straw hash max 424576
- DEBUG  TRT_ID::initialize_from_dict 
- DEBUG Module range -> 2/3/-1,1/0:31/0 | 2/3/-1,1/0:31/1 | 2/3/-1,1/0:31/2 | 2/3/-2,2/0:31/0:5 | 2/3/-2,2/0:31/6:13 | 2/3/-2,2/0:31/14:17
- DEBUG Straw layer range -> 2/3/-1,1/0:31/0/0 | 2/3/-1,1/0:31/0/1:4 | 2/3/-1,1/0:31/0/5:9 | 2/3/-1,1/0:31/0/10:14 | 2/3/-1,1/0:31/0/15:17 | 2/3/-1,1/0:31/0/18 | 2/3/-1,1/0:31/1/0 | 2/3/-1,1/0:31/1/1:5 | 2/3/-1,1/0:31/1/6:10 | 2/3/-1,1/0:31/1/11:15 | 2/3/-1,1/0:31/1/16:20 | 2/3/-1,1/0:31/1/21:22 | 2/3/-1,1/0:31/1/23 | 2/3/-1,1/0:31/2/0 | 2/3/-1,1/0:31/2/1:4 | 2/3/-1,1/0:31/2/5:9 | 2/3/-1,1/0:31/2/10:14 | 2/3/-1,1/0:31/2/15:19 | 2/3/-1,1/0:31/2/20:24 | 2/3/-1,1/0:31/2/25:28 | 2/3/-1,1/0:31/2/29 | 2/3/-2,2/0:31/0:5/0:15 | 2/3/-2,2/0:31/6:13/0:7 | 2/3/-2,2/0:31/14:17/0:15
- DEBUG Straw range -> 2/3/-1,1/0:31/0/0/0:14 | 2/3/-1,1/0:31/0/1:4/0:15 | 2/3/-1,1/0:31/0/5:9/0:16 | 2/3/-1,1/0:31/0/10:14/0:17 | 2/3/-1,1/0:31/0/15:17/0:18 | 2/3/-1,1/0:31/0/18/0:17 | 2/3/-1,1/0:31/1/0/0:18 | 2/3/-1,1/0:31/1/1:5/0:19 | 2/3/-1,1/0:31/1/6:10/0:20 | 2/3/-1,1/0:31/1/11:15/0:21 | 2/3/-1,1/0:31/1/16:20/0:22 | 2/3/-1,1/0:31/1/21:22/0:23 | 2/3/-1,1/0:31/1/23/0:22 | 2/3/-1,1/0:31/2/0/0:22 | 2/3/-1,1/0:31/2/1:4/0:23 | 2/3/-1,1/0:31/2/5:9/0:24 | 2/3/-1,1/0:31/2/10:14/0:25 | 2/3/-1,1/0:31/2/15:19/0:26 | 2/3/-1,1/0:31/2/20:24/0:27 | 2/3/-1,1/0:31/2/25:28/0:28 | 2/3/-1,1/0:31/2/29/0:27 | 2/3/-2,2/0:31/0:5/0:15/0:23 | 2/3/-2,2/0:31/6:13/0:7/0:23 | 2/3/-2,2/0:31/14:17/0:15/0:17
- AtlasDetectorID::initialize_from_dictionary - OK 
-CscIdHelper          INFO MultiRange built successfully to Technology: MultiRange size is 218
-CscIdHelper          INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 257
-CscIdHelper          INFO MultiRange built successfully to cscStrip: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 CscIdHelper          INFO Initializing CSC hash indices ... 
-CscIdHelper          INFO The element hash max is 32
-CscIdHelper          INFO The detector element hash max is 64
 CscIdHelper          INFO The channel hash max is 61440
 CscIdHelper          INFO Initializing CSC hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-RpcIdHelper          INFO MultiRange built successfully to doubletR: MultiRange size is 261
-RpcIdHelper          INFO MultiRange built successfully to detectorElement: DetectorElement MultiRange size is 261
-RpcIdHelper          INFO MultiRange built successfully to rpcStrip: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 RpcIdHelper          INFO Initializing RPC hash indices ... 
-RpcIdHelper          INFO The element hash max is 600
-RpcIdHelper          INFO The detector element hash max is 1122
 RpcIdHelper          INFO Initializing RPC hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-TgcIdHelper          INFO MultiRange built successfully to Technology: MultiRange size is 218
-TgcIdHelper          INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 218
-TgcIdHelper          INFO MultiRange built successfully to channel: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 TgcIdHelper          INFO Initializing TGC hash indices ... 
-TgcIdHelper          INFO The element hash max is 1578
-TgcIdHelper          INFO The detector element hash max is 1578
 TgcIdHelper          INFO Initializing TGC hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-MdtIdHelper          INFO MultiRange built successfully to Technology: MultiRange size is 218
-MdtIdHelper          INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 261
-MdtIdHelper          INFO MultiRange built successfully to tube: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 MdtIdHelper          INFO Initializing MDT hash indices ... 
-MdtIdHelper          INFO The element hash max is 1188
-MdtIdHelper          INFO The detector element hash max is 2328
 MdtIdHelper          INFO Initializing MDT hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-sTgcIdHelper         INFO MultiRange built successfully to Technology: MultiRange size is 218
-sTgcIdHelper         INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 253
-sTgcIdHelper         INFO MultiRange built successfully to channel: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 sTgcIdHelper         INFO Initializing sTGC hash indices ... 
-sTgcIdHelper         INFO The element hash max is 96
-sTgcIdHelper         INFO The detector element hash max is 192
 sTgcIdHelper         INFO Initializing sTGC hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-MmIdHelper           INFO MultiRange built successfully to Technology: MultiRange size is 218
-MmIdHelper           INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 257
-MmIdHelper           INFO MultiRange built successfully to channel: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 MmIdHelper           INFO Initializing MicroMegas hash indices ... 
-MmIdHelper           INFO The element hash max is 64
-MmIdHelper           INFO The detector element hash max is 128
 MmIdHelper           INFO Initializing MicroMegas hash indices for finding neighbors ... 
  AtlasDetectorID::initialize_from_dictionary - OK 
-ClassIDSvc           INFO  getRegistryEntries: read 379 CLIDRegistry entries for module ALL
 test1
  Before has size: 2, after has size: 2
 Collection #1
diff --git a/MuonSpectrometer/MuonCnv/MuonEventTPCnv/share/TgcClusterOnTrackCnv_p2_test.ref b/MuonSpectrometer/MuonCnv/MuonEventTPCnv/share/TgcClusterOnTrackCnv_p2_test.ref
index a216b0a3c4c5fb12f88a79d4d1abd15c9cfa1e37..eafa59f97879b9e447a9cdea019dc6bb7238a360 100644
--- a/MuonSpectrometer/MuonCnv/MuonEventTPCnv/share/TgcClusterOnTrackCnv_p2_test.ref
+++ b/MuonSpectrometer/MuonCnv/MuonEventTPCnv/share/TgcClusterOnTrackCnv_p2_test.ref
@@ -1,18 +1,6 @@
 
 
-Initializing Gaudi ApplicationMgr using job opts /home/emoyse/master2/build/x86_64-centos7-gcc8-opt/jobOptions/MuonEventTPCnv/MuonEventTPCnv_test.txt
-JobOptionsSvc        INFO # =======> /home/emoyse/master2/build/x86_64-centos7-gcc8-opt/jobOptions/MuonEventTPCnv/MuonEventTPCnv_test.txt
-JobOptionsSvc        INFO # (1,1): ApplicationMgr.Dlls += ["StoreGate", "CLIDComps"]
-JobOptionsSvc        INFO # (2,1): ApplicationMgr.ExtSvc += ["StoreGateSvc", "StoreGateSvc/DetectorStore", "StoreGateSvc/ConditionStore", "Athena::RCUSvc"]
-JobOptionsSvc        INFO Job options successfully read in from /home/emoyse/master2/build/x86_64-centos7-gcc8-opt/jobOptions/MuonEventTPCnv/MuonEventTPCnv_test.txt
-ApplicationMgr    SUCCESS 
-====================================================================================================================================
-                                                   Welcome to ApplicationMgr (GaudiCoreSvc v34r0)
-                                          running on pcumass4 on Wed Nov  4 09:34:31 2020
-====================================================================================================================================
-ApplicationMgr       INFO Successfully loaded modules : StoreGate, CLIDComps
 ApplicationMgr       INFO Application Manager Configured successfully
-ClassIDSvc           INFO  getRegistryEntries: read 12361 CLIDRegistry entries for module ALL
 EventLoopMgr      WARNING Unable to locate service "EventSelector" 
 EventLoopMgr      WARNING No events will be processed from external input.
 ApplicationMgr       INFO Application Manager Initialized successfully
@@ -22,22 +10,7 @@ ApplicationMgr Ready
  Volume pmdum2 not found: returning 0
  Volume pmdum3 not found: returning 0
  INFO Initialize from dictionary
- DEBUG (Re)initialize
  AtlasDetectorID::initialize_from_dictionary - OK 
- DEBUG decode index and bit fields for each level: 
- DEBUG indet          decode 1 vals 2,4,5,7,10,11,12,13 mask/zero mask/shift/bits/offset 7   1fffffffffffffff 61 3  0  indexes 0 0 1 2 0 3 0 0 4 5 6 7 mode  enumerated  
- DEBUG pixel          decode 1 vals 1:3             mask/zero mask/shift/bits/offset 3   e7ffffffffffffff 59 2  3  indexes                     mode  both_bounded  
- DEBUG bec            decode 1 vals -2,0,2          mask/zero mask/shift/bits/offset 3   f9ffffffffffffff 57 2  5  indexes 0 0 1 0 2           mode  enumerated  
- DEBUG bec_shift      decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
- DEBUG lay_disk       decode 0 vals 0:2             mask/zero mask/shift/bits/offset 3   fe7fffffffffffff 55 2  7  indexes                     mode  both_bounded  
- DEBUG lay_disk_shift decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
- DEBUG phi_mod        decode 0 vals 0:51            mask/zero mask/shift/bits/offset 3f  ff81ffffffffffff 49 6  9  indexes                     mode  both_bounded  
- DEBUG phi_mod_shift  decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
- DEBUG eta_mod        decode 1 vals -6:6            mask/zero mask/shift/bits/offset f   fffe1fffffffffff 45 4  15 indexes                     mode  both_bounded  
- DEBUG eta_mod_shift  decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
- DEBUG phi_index      decode 0 vals 0:327           mask/zero mask/shift/bits/offset 1ff ffffe00fffffffff 36 9  19 indexes                     mode  both_bounded  
- DEBUG eta_index      decode 0 vals 0:191           mask/zero mask/shift/bits/offset ff  fffffff00fffffff 28 8  28 indexes                     mode  both_bounded  
- DEBUG bec_eta_mod    decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
 indet 1 2,4,5,7,10,11,12,13 7 1fffffffffffffff 61 3 0 min/max 2 13 values  2 4 5 7 10 11 12 13 indexes  0 0 1 2 0 3 0 0 4 5 6 7 indices  8 prev  0 next  0 mode  enumerated  cont mode  none  
 pixel 1 1:3 3 e7ffffffffffffff 59 2 3 min/max 1 3 values  indexes  indices  3 prev  0 next  0 mode  both_bounded  cont mode  none  
 bec 1 -2,0,2 3 f9ffffffffffffff 57 2 5 min/max -2 2 values  -2 0 2 indexes  0 0 1 0 2 indices  3 prev  0 next  0 mode  enumerated  cont mode  none  
@@ -60,87 +33,28 @@ phi_module    4
 eta_module    5
 phi_index     6
 eta_index     7
- DEBUG PixelID::initialize_from_dict Set barrel field values: 0
- DEBUG PixelID::initialize_from_dict Set dbm field values: -999,999
- DEBUG PixelID::initialize_from_dict Found field values: InDet/Pixel 2/1
- DEBUG PixelID::init_neighbors 
- DEBUG PixelID::initialize_from_dict 
- DEBUG Wafer range -> 2/1/0/0/0:21/-6:6 | 2/1/0/1/0:37/-6:6 | 2/1/0/2/0:51/-6:6 | 2/1/-2,2/0:2/0:47/0
- DEBUG Pixel range -> 2/1/0/0/0:21/-6:6/0:327/0:191 | 2/1/0/1/0:37/-6:6/0:327/0:143 | 2/1/0/2/0:51/-6:6/0:327/0:143 | 2/1/-2,2/0:2/0:47/0/0:327/0:143
 INFO SCT_ID::initialize_from_dictionary 
  AtlasDetectorID::initialize_from_dictionary - OK 
 INFO Initialize from dictionary cout 0
- DEBUG (Re)initialize
  AtlasDetectorID::initialize_from_dictionary - OK 
- DEBUG decode index and bit fields for each level: 
- DEBUG indet     decode 1 vals 2,4,5,7,10,11,12,13 mask/zero mask/shift/bits/offset 7   1fffffffffffffff 61 3  0  indexes 0 0 1 2 0 3 0 0 4 5 6 7 mode  enumerated  
- DEBUG trt       decode 1 vals 1:3             mask/zero mask/shift/bits/offset 3   e7ffffffffffffff 59 2  3  indexes                     mode  both_bounded  
- DEBUG bec       decode 1 vals -2,-1,1,2       mask/zero mask/shift/bits/offset 3   f9ffffffffffffff 57 2  5  indexes 0 1 0 2 3           mode  enumerated  
- DEBUG phi_mod   decode 0 vals 0:31            mask/zero mask/shift/bits/offset 1f  fe0fffffffffffff 52 5  7  indexes                     mode  both_bounded  
- DEBUG lay_wheel decode 0 vals 0:17            mask/zero mask/shift/bits/offset 1f  fff07fffffffffff 47 5  12 indexes                     mode  both_bounded  
- DEBUG str_lay   decode 0 vals 0:29            mask/zero mask/shift/bits/offset 1f  ffff83ffffffffff 42 5  17 indexes                     mode  both_bounded  
- DEBUG straw     decode 0 vals 0:28            mask/zero mask/shift/bits/offset 1f  fffffc1fffffffff 37 5  22 indexes                     mode  both_bounded  
- DEBUG  TRT_ID::initialize_from_dict Set barrel field values: -1,1
- DEBUG  TRT_ID::initialize_from_dict Found field values: InDet/TRT 2/3
- DEBUG Module range -> 2/3/-1,1/0:31/0 | 2/3/-1,1/0:31/1 | 2/3/-1,1/0:31/2 | 2/3/-2,2/0:31/0:5 | 2/3/-2,2/0:31/6:13 | 2/3/-2,2/0:31/14:17
- DEBUG TRT_ID::init_hashes  module hash max 1344
- DEBUG TRT_ID::init_hashes  straw layer hash max 19008
- DEBUG TRT_ID::init_hashes  straw hash max 424576
- DEBUG  TRT_ID::initialize_from_dict 
- DEBUG Module range -> 2/3/-1,1/0:31/0 | 2/3/-1,1/0:31/1 | 2/3/-1,1/0:31/2 | 2/3/-2,2/0:31/0:5 | 2/3/-2,2/0:31/6:13 | 2/3/-2,2/0:31/14:17
- DEBUG Straw layer range -> 2/3/-1,1/0:31/0/0 | 2/3/-1,1/0:31/0/1:4 | 2/3/-1,1/0:31/0/5:9 | 2/3/-1,1/0:31/0/10:14 | 2/3/-1,1/0:31/0/15:17 | 2/3/-1,1/0:31/0/18 | 2/3/-1,1/0:31/1/0 | 2/3/-1,1/0:31/1/1:5 | 2/3/-1,1/0:31/1/6:10 | 2/3/-1,1/0:31/1/11:15 | 2/3/-1,1/0:31/1/16:20 | 2/3/-1,1/0:31/1/21:22 | 2/3/-1,1/0:31/1/23 | 2/3/-1,1/0:31/2/0 | 2/3/-1,1/0:31/2/1:4 | 2/3/-1,1/0:31/2/5:9 | 2/3/-1,1/0:31/2/10:14 | 2/3/-1,1/0:31/2/15:19 | 2/3/-1,1/0:31/2/20:24 | 2/3/-1,1/0:31/2/25:28 | 2/3/-1,1/0:31/2/29 | 2/3/-2,2/0:31/0:5/0:15 | 2/3/-2,2/0:31/6:13/0:7 | 2/3/-2,2/0:31/14:17/0:15
- DEBUG Straw range -> 2/3/-1,1/0:31/0/0/0:14 | 2/3/-1,1/0:31/0/1:4/0:15 | 2/3/-1,1/0:31/0/5:9/0:16 | 2/3/-1,1/0:31/0/10:14/0:17 | 2/3/-1,1/0:31/0/15:17/0:18 | 2/3/-1,1/0:31/0/18/0:17 | 2/3/-1,1/0:31/1/0/0:18 | 2/3/-1,1/0:31/1/1:5/0:19 | 2/3/-1,1/0:31/1/6:10/0:20 | 2/3/-1,1/0:31/1/11:15/0:21 | 2/3/-1,1/0:31/1/16:20/0:22 | 2/3/-1,1/0:31/1/21:22/0:23 | 2/3/-1,1/0:31/1/23/0:22 | 2/3/-1,1/0:31/2/0/0:22 | 2/3/-1,1/0:31/2/1:4/0:23 | 2/3/-1,1/0:31/2/5:9/0:24 | 2/3/-1,1/0:31/2/10:14/0:25 | 2/3/-1,1/0:31/2/15:19/0:26 | 2/3/-1,1/0:31/2/20:24/0:27 | 2/3/-1,1/0:31/2/25:28/0:28 | 2/3/-1,1/0:31/2/29/0:27 | 2/3/-2,2/0:31/0:5/0:15/0:23 | 2/3/-2,2/0:31/6:13/0:7/0:23 | 2/3/-2,2/0:31/14:17/0:15/0:17
- AtlasDetectorID::initialize_from_dictionary - OK 
-CscIdHelper          INFO MultiRange built successfully to Technology: MultiRange size is 218
-CscIdHelper          INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 257
-CscIdHelper          INFO MultiRange built successfully to cscStrip: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 CscIdHelper          INFO Initializing CSC hash indices ... 
-CscIdHelper          INFO The element hash max is 32
-CscIdHelper          INFO The detector element hash max is 64
 CscIdHelper          INFO The channel hash max is 61440
 CscIdHelper          INFO Initializing CSC hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-RpcIdHelper          INFO MultiRange built successfully to doubletR: MultiRange size is 261
-RpcIdHelper          INFO MultiRange built successfully to detectorElement: DetectorElement MultiRange size is 261
-RpcIdHelper          INFO MultiRange built successfully to rpcStrip: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 RpcIdHelper          INFO Initializing RPC hash indices ... 
-RpcIdHelper          INFO The element hash max is 600
-RpcIdHelper          INFO The detector element hash max is 1122
 RpcIdHelper          INFO Initializing RPC hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-TgcIdHelper          INFO MultiRange built successfully to Technology: MultiRange size is 218
-TgcIdHelper          INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 218
-TgcIdHelper          INFO MultiRange built successfully to channel: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 TgcIdHelper          INFO Initializing TGC hash indices ... 
-TgcIdHelper          INFO The element hash max is 1578
-TgcIdHelper          INFO The detector element hash max is 1578
 TgcIdHelper          INFO Initializing TGC hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-MdtIdHelper          INFO MultiRange built successfully to Technology: MultiRange size is 218
-MdtIdHelper          INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 261
-MdtIdHelper          INFO MultiRange built successfully to tube: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 MdtIdHelper          INFO Initializing MDT hash indices ... 
-MdtIdHelper          INFO The element hash max is 1188
-MdtIdHelper          INFO The detector element hash max is 2328
 MdtIdHelper          INFO Initializing MDT hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-sTgcIdHelper         INFO MultiRange built successfully to Technology: MultiRange size is 218
-sTgcIdHelper         INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 253
-sTgcIdHelper         INFO MultiRange built successfully to channel: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 sTgcIdHelper         INFO Initializing sTGC hash indices ... 
-sTgcIdHelper         INFO The element hash max is 96
-sTgcIdHelper         INFO The detector element hash max is 192
 sTgcIdHelper         INFO Initializing sTGC hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-MmIdHelper           INFO MultiRange built successfully to Technology: MultiRange size is 218
-MmIdHelper           INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 257
-MmIdHelper           INFO MultiRange built successfully to channel: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 MmIdHelper           INFO Initializing MicroMegas hash indices ... 
-MmIdHelper           INFO The element hash max is 64
-MmIdHelper           INFO The detector element hash max is 128
 MmIdHelper           INFO Initializing MicroMegas hash indices for finding neighbors ... 
  AtlasDetectorID::initialize_from_dictionary - OK 
-ClassIDSvc           INFO  getRegistryEntries: read 379 CLIDRegistry entries for module ALL
 test1
-ClassIDSvc           INFO  getRegistryEntries: read 320 CLIDRegistry entries for module ALL
-ClassIDSvc           INFO  getRegistryEntries: read 170 CLIDRegistry entries for module ALL
diff --git a/MuonSpectrometer/MuonCnv/MuonEventTPCnv/share/TgcCoinDataContainerCnv_p1_test.ref b/MuonSpectrometer/MuonCnv/MuonEventTPCnv/share/TgcCoinDataContainerCnv_p1_test.ref
index fe8dd235360ef206269804df65cfa2414a93839b..eafa59f97879b9e447a9cdea019dc6bb7238a360 100644
--- a/MuonSpectrometer/MuonCnv/MuonEventTPCnv/share/TgcCoinDataContainerCnv_p1_test.ref
+++ b/MuonSpectrometer/MuonCnv/MuonEventTPCnv/share/TgcCoinDataContainerCnv_p1_test.ref
@@ -1,18 +1,6 @@
 
 
-Initializing Gaudi ApplicationMgr using job opts /home/emoyse/master2/build/x86_64-centos7-gcc8-opt/jobOptions/MuonEventTPCnv/MuonEventTPCnv_test.txt
-JobOptionsSvc        INFO # =======> /home/emoyse/master2/build/x86_64-centos7-gcc8-opt/jobOptions/MuonEventTPCnv/MuonEventTPCnv_test.txt
-JobOptionsSvc        INFO # (1,1): ApplicationMgr.Dlls += ["StoreGate", "CLIDComps"]
-JobOptionsSvc        INFO # (2,1): ApplicationMgr.ExtSvc += ["StoreGateSvc", "StoreGateSvc/DetectorStore", "StoreGateSvc/ConditionStore", "Athena::RCUSvc"]
-JobOptionsSvc        INFO Job options successfully read in from /home/emoyse/master2/build/x86_64-centos7-gcc8-opt/jobOptions/MuonEventTPCnv/MuonEventTPCnv_test.txt
-ApplicationMgr    SUCCESS 
-====================================================================================================================================
-                                                   Welcome to ApplicationMgr (GaudiCoreSvc v34r0)
-                                          running on pcumass4 on Wed Nov  4 09:35:27 2020
-====================================================================================================================================
-ApplicationMgr       INFO Successfully loaded modules : StoreGate, CLIDComps
 ApplicationMgr       INFO Application Manager Configured successfully
-ClassIDSvc           INFO  getRegistryEntries: read 12350 CLIDRegistry entries for module ALL
 EventLoopMgr      WARNING Unable to locate service "EventSelector" 
 EventLoopMgr      WARNING No events will be processed from external input.
 ApplicationMgr       INFO Application Manager Initialized successfully
@@ -22,22 +10,7 @@ ApplicationMgr Ready
  Volume pmdum2 not found: returning 0
  Volume pmdum3 not found: returning 0
  INFO Initialize from dictionary
- DEBUG (Re)initialize
  AtlasDetectorID::initialize_from_dictionary - OK 
- DEBUG decode index and bit fields for each level: 
- DEBUG indet          decode 1 vals 2,4,5,7,10,11,12,13 mask/zero mask/shift/bits/offset 7   1fffffffffffffff 61 3  0  indexes 0 0 1 2 0 3 0 0 4 5 6 7 mode  enumerated  
- DEBUG pixel          decode 1 vals 1:3             mask/zero mask/shift/bits/offset 3   e7ffffffffffffff 59 2  3  indexes                     mode  both_bounded  
- DEBUG bec            decode 1 vals -2,0,2          mask/zero mask/shift/bits/offset 3   f9ffffffffffffff 57 2  5  indexes 0 0 1 0 2           mode  enumerated  
- DEBUG bec_shift      decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
- DEBUG lay_disk       decode 0 vals 0:2             mask/zero mask/shift/bits/offset 3   fe7fffffffffffff 55 2  7  indexes                     mode  both_bounded  
- DEBUG lay_disk_shift decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
- DEBUG phi_mod        decode 0 vals 0:51            mask/zero mask/shift/bits/offset 3f  ff81ffffffffffff 49 6  9  indexes                     mode  both_bounded  
- DEBUG phi_mod_shift  decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
- DEBUG eta_mod        decode 1 vals -6:6            mask/zero mask/shift/bits/offset f   fffe1fffffffffff 45 4  15 indexes                     mode  both_bounded  
- DEBUG eta_mod_shift  decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
- DEBUG phi_index      decode 0 vals 0:327           mask/zero mask/shift/bits/offset 1ff ffffe00fffffffff 36 9  19 indexes                     mode  both_bounded  
- DEBUG eta_index      decode 0 vals 0:191           mask/zero mask/shift/bits/offset ff  fffffff00fffffff 28 8  28 indexes                     mode  both_bounded  
- DEBUG bec_eta_mod    decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
 indet 1 2,4,5,7,10,11,12,13 7 1fffffffffffffff 61 3 0 min/max 2 13 values  2 4 5 7 10 11 12 13 indexes  0 0 1 2 0 3 0 0 4 5 6 7 indices  8 prev  0 next  0 mode  enumerated  cont mode  none  
 pixel 1 1:3 3 e7ffffffffffffff 59 2 3 min/max 1 3 values  indexes  indices  3 prev  0 next  0 mode  both_bounded  cont mode  none  
 bec 1 -2,0,2 3 f9ffffffffffffff 57 2 5 min/max -2 2 values  -2 0 2 indexes  0 0 1 0 2 indices  3 prev  0 next  0 mode  enumerated  cont mode  none  
@@ -60,85 +33,28 @@ phi_module    4
 eta_module    5
 phi_index     6
 eta_index     7
- DEBUG PixelID::initialize_from_dict Set barrel field values: 0
- DEBUG PixelID::initialize_from_dict Set dbm field values: -999,999
- DEBUG PixelID::initialize_from_dict Found field values: InDet/Pixel 2/1
- DEBUG PixelID::init_neighbors 
- DEBUG PixelID::initialize_from_dict 
- DEBUG Wafer range -> 2/1/0/0/0:21/-6:6 | 2/1/0/1/0:37/-6:6 | 2/1/0/2/0:51/-6:6 | 2/1/-2,2/0:2/0:47/0
- DEBUG Pixel range -> 2/1/0/0/0:21/-6:6/0:327/0:191 | 2/1/0/1/0:37/-6:6/0:327/0:143 | 2/1/0/2/0:51/-6:6/0:327/0:143 | 2/1/-2,2/0:2/0:47/0/0:327/0:143
 INFO SCT_ID::initialize_from_dictionary 
  AtlasDetectorID::initialize_from_dictionary - OK 
 INFO Initialize from dictionary cout 0
- DEBUG (Re)initialize
  AtlasDetectorID::initialize_from_dictionary - OK 
- DEBUG decode index and bit fields for each level: 
- DEBUG indet     decode 1 vals 2,4,5,7,10,11,12,13 mask/zero mask/shift/bits/offset 7   1fffffffffffffff 61 3  0  indexes 0 0 1 2 0 3 0 0 4 5 6 7 mode  enumerated  
- DEBUG trt       decode 1 vals 1:3             mask/zero mask/shift/bits/offset 3   e7ffffffffffffff 59 2  3  indexes                     mode  both_bounded  
- DEBUG bec       decode 1 vals -2,-1,1,2       mask/zero mask/shift/bits/offset 3   f9ffffffffffffff 57 2  5  indexes 0 1 0 2 3           mode  enumerated  
- DEBUG phi_mod   decode 0 vals 0:31            mask/zero mask/shift/bits/offset 1f  fe0fffffffffffff 52 5  7  indexes                     mode  both_bounded  
- DEBUG lay_wheel decode 0 vals 0:17            mask/zero mask/shift/bits/offset 1f  fff07fffffffffff 47 5  12 indexes                     mode  both_bounded  
- DEBUG str_lay   decode 0 vals 0:29            mask/zero mask/shift/bits/offset 1f  ffff83ffffffffff 42 5  17 indexes                     mode  both_bounded  
- DEBUG straw     decode 0 vals 0:28            mask/zero mask/shift/bits/offset 1f  fffffc1fffffffff 37 5  22 indexes                     mode  both_bounded  
- DEBUG  TRT_ID::initialize_from_dict Set barrel field values: -1,1
- DEBUG  TRT_ID::initialize_from_dict Found field values: InDet/TRT 2/3
- DEBUG Module range -> 2/3/-1,1/0:31/0 | 2/3/-1,1/0:31/1 | 2/3/-1,1/0:31/2 | 2/3/-2,2/0:31/0:5 | 2/3/-2,2/0:31/6:13 | 2/3/-2,2/0:31/14:17
- DEBUG TRT_ID::init_hashes  module hash max 1344
- DEBUG TRT_ID::init_hashes  straw layer hash max 19008
- DEBUG TRT_ID::init_hashes  straw hash max 424576
- DEBUG  TRT_ID::initialize_from_dict 
- DEBUG Module range -> 2/3/-1,1/0:31/0 | 2/3/-1,1/0:31/1 | 2/3/-1,1/0:31/2 | 2/3/-2,2/0:31/0:5 | 2/3/-2,2/0:31/6:13 | 2/3/-2,2/0:31/14:17
- DEBUG Straw layer range -> 2/3/-1,1/0:31/0/0 | 2/3/-1,1/0:31/0/1:4 | 2/3/-1,1/0:31/0/5:9 | 2/3/-1,1/0:31/0/10:14 | 2/3/-1,1/0:31/0/15:17 | 2/3/-1,1/0:31/0/18 | 2/3/-1,1/0:31/1/0 | 2/3/-1,1/0:31/1/1:5 | 2/3/-1,1/0:31/1/6:10 | 2/3/-1,1/0:31/1/11:15 | 2/3/-1,1/0:31/1/16:20 | 2/3/-1,1/0:31/1/21:22 | 2/3/-1,1/0:31/1/23 | 2/3/-1,1/0:31/2/0 | 2/3/-1,1/0:31/2/1:4 | 2/3/-1,1/0:31/2/5:9 | 2/3/-1,1/0:31/2/10:14 | 2/3/-1,1/0:31/2/15:19 | 2/3/-1,1/0:31/2/20:24 | 2/3/-1,1/0:31/2/25:28 | 2/3/-1,1/0:31/2/29 | 2/3/-2,2/0:31/0:5/0:15 | 2/3/-2,2/0:31/6:13/0:7 | 2/3/-2,2/0:31/14:17/0:15
- DEBUG Straw range -> 2/3/-1,1/0:31/0/0/0:14 | 2/3/-1,1/0:31/0/1:4/0:15 | 2/3/-1,1/0:31/0/5:9/0:16 | 2/3/-1,1/0:31/0/10:14/0:17 | 2/3/-1,1/0:31/0/15:17/0:18 | 2/3/-1,1/0:31/0/18/0:17 | 2/3/-1,1/0:31/1/0/0:18 | 2/3/-1,1/0:31/1/1:5/0:19 | 2/3/-1,1/0:31/1/6:10/0:20 | 2/3/-1,1/0:31/1/11:15/0:21 | 2/3/-1,1/0:31/1/16:20/0:22 | 2/3/-1,1/0:31/1/21:22/0:23 | 2/3/-1,1/0:31/1/23/0:22 | 2/3/-1,1/0:31/2/0/0:22 | 2/3/-1,1/0:31/2/1:4/0:23 | 2/3/-1,1/0:31/2/5:9/0:24 | 2/3/-1,1/0:31/2/10:14/0:25 | 2/3/-1,1/0:31/2/15:19/0:26 | 2/3/-1,1/0:31/2/20:24/0:27 | 2/3/-1,1/0:31/2/25:28/0:28 | 2/3/-1,1/0:31/2/29/0:27 | 2/3/-2,2/0:31/0:5/0:15/0:23 | 2/3/-2,2/0:31/6:13/0:7/0:23 | 2/3/-2,2/0:31/14:17/0:15/0:17
- AtlasDetectorID::initialize_from_dictionary - OK 
-CscIdHelper          INFO MultiRange built successfully to Technology: MultiRange size is 218
-CscIdHelper          INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 257
-CscIdHelper          INFO MultiRange built successfully to cscStrip: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 CscIdHelper          INFO Initializing CSC hash indices ... 
-CscIdHelper          INFO The element hash max is 32
-CscIdHelper          INFO The detector element hash max is 64
 CscIdHelper          INFO The channel hash max is 61440
 CscIdHelper          INFO Initializing CSC hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-RpcIdHelper          INFO MultiRange built successfully to doubletR: MultiRange size is 261
-RpcIdHelper          INFO MultiRange built successfully to detectorElement: DetectorElement MultiRange size is 261
-RpcIdHelper          INFO MultiRange built successfully to rpcStrip: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 RpcIdHelper          INFO Initializing RPC hash indices ... 
-RpcIdHelper          INFO The element hash max is 600
-RpcIdHelper          INFO The detector element hash max is 1122
 RpcIdHelper          INFO Initializing RPC hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-TgcIdHelper          INFO MultiRange built successfully to Technology: MultiRange size is 218
-TgcIdHelper          INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 218
-TgcIdHelper          INFO MultiRange built successfully to channel: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 TgcIdHelper          INFO Initializing TGC hash indices ... 
-TgcIdHelper          INFO The element hash max is 1578
-TgcIdHelper          INFO The detector element hash max is 1578
 TgcIdHelper          INFO Initializing TGC hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-MdtIdHelper          INFO MultiRange built successfully to Technology: MultiRange size is 218
-MdtIdHelper          INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 261
-MdtIdHelper          INFO MultiRange built successfully to tube: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 MdtIdHelper          INFO Initializing MDT hash indices ... 
-MdtIdHelper          INFO The element hash max is 1188
-MdtIdHelper          INFO The detector element hash max is 2328
 MdtIdHelper          INFO Initializing MDT hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-sTgcIdHelper         INFO MultiRange built successfully to Technology: MultiRange size is 218
-sTgcIdHelper         INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 253
-sTgcIdHelper         INFO MultiRange built successfully to channel: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 sTgcIdHelper         INFO Initializing sTGC hash indices ... 
-sTgcIdHelper         INFO The element hash max is 96
-sTgcIdHelper         INFO The detector element hash max is 192
 sTgcIdHelper         INFO Initializing sTGC hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-MmIdHelper           INFO MultiRange built successfully to Technology: MultiRange size is 218
-MmIdHelper           INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 257
-MmIdHelper           INFO MultiRange built successfully to channel: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 MmIdHelper           INFO Initializing MicroMegas hash indices ... 
-MmIdHelper           INFO The element hash max is 64
-MmIdHelper           INFO The detector element hash max is 128
 MmIdHelper           INFO Initializing MicroMegas hash indices for finding neighbors ... 
  AtlasDetectorID::initialize_from_dictionary - OK 
-ClassIDSvc           INFO  getRegistryEntries: read 379 CLIDRegistry entries for module ALL
 test1
diff --git a/MuonSpectrometer/MuonCnv/MuonEventTPCnv/share/TgcCoinDataContainerCnv_p2_test.ref b/MuonSpectrometer/MuonCnv/MuonEventTPCnv/share/TgcCoinDataContainerCnv_p2_test.ref
index 7e2ea0595251a74c2261f9fa6cb21779e7215f1d..eafa59f97879b9e447a9cdea019dc6bb7238a360 100644
--- a/MuonSpectrometer/MuonCnv/MuonEventTPCnv/share/TgcCoinDataContainerCnv_p2_test.ref
+++ b/MuonSpectrometer/MuonCnv/MuonEventTPCnv/share/TgcCoinDataContainerCnv_p2_test.ref
@@ -1,18 +1,6 @@
 
 
-Initializing Gaudi ApplicationMgr using job opts /home/emoyse/master2/build/x86_64-centos7-gcc8-opt/jobOptions/MuonEventTPCnv/MuonEventTPCnv_test.txt
-JobOptionsSvc        INFO # =======> /home/emoyse/master2/build/x86_64-centos7-gcc8-opt/jobOptions/MuonEventTPCnv/MuonEventTPCnv_test.txt
-JobOptionsSvc        INFO # (1,1): ApplicationMgr.Dlls += ["StoreGate", "CLIDComps"]
-JobOptionsSvc        INFO # (2,1): ApplicationMgr.ExtSvc += ["StoreGateSvc", "StoreGateSvc/DetectorStore", "StoreGateSvc/ConditionStore", "Athena::RCUSvc"]
-JobOptionsSvc        INFO Job options successfully read in from /home/emoyse/master2/build/x86_64-centos7-gcc8-opt/jobOptions/MuonEventTPCnv/MuonEventTPCnv_test.txt
-ApplicationMgr    SUCCESS 
-====================================================================================================================================
-                                                   Welcome to ApplicationMgr (GaudiCoreSvc v34r0)
-                                          running on pcumass4 on Wed Nov  4 09:35:29 2020
-====================================================================================================================================
-ApplicationMgr       INFO Successfully loaded modules : StoreGate, CLIDComps
 ApplicationMgr       INFO Application Manager Configured successfully
-ClassIDSvc           INFO  getRegistryEntries: read 12350 CLIDRegistry entries for module ALL
 EventLoopMgr      WARNING Unable to locate service "EventSelector" 
 EventLoopMgr      WARNING No events will be processed from external input.
 ApplicationMgr       INFO Application Manager Initialized successfully
@@ -22,22 +10,7 @@ ApplicationMgr Ready
  Volume pmdum2 not found: returning 0
  Volume pmdum3 not found: returning 0
  INFO Initialize from dictionary
- DEBUG (Re)initialize
  AtlasDetectorID::initialize_from_dictionary - OK 
- DEBUG decode index and bit fields for each level: 
- DEBUG indet          decode 1 vals 2,4,5,7,10,11,12,13 mask/zero mask/shift/bits/offset 7   1fffffffffffffff 61 3  0  indexes 0 0 1 2 0 3 0 0 4 5 6 7 mode  enumerated  
- DEBUG pixel          decode 1 vals 1:3             mask/zero mask/shift/bits/offset 3   e7ffffffffffffff 59 2  3  indexes                     mode  both_bounded  
- DEBUG bec            decode 1 vals -2,0,2          mask/zero mask/shift/bits/offset 3   f9ffffffffffffff 57 2  5  indexes 0 0 1 0 2           mode  enumerated  
- DEBUG bec_shift      decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
- DEBUG lay_disk       decode 0 vals 0:2             mask/zero mask/shift/bits/offset 3   fe7fffffffffffff 55 2  7  indexes                     mode  both_bounded  
- DEBUG lay_disk_shift decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
- DEBUG phi_mod        decode 0 vals 0:51            mask/zero mask/shift/bits/offset 3f  ff81ffffffffffff 49 6  9  indexes                     mode  both_bounded  
- DEBUG phi_mod_shift  decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
- DEBUG eta_mod        decode 1 vals -6:6            mask/zero mask/shift/bits/offset f   fffe1fffffffffff 45 4  15 indexes                     mode  both_bounded  
- DEBUG eta_mod_shift  decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
- DEBUG phi_index      decode 0 vals 0:327           mask/zero mask/shift/bits/offset 1ff ffffe00fffffffff 36 9  19 indexes                     mode  both_bounded  
- DEBUG eta_index      decode 0 vals 0:191           mask/zero mask/shift/bits/offset ff  fffffff00fffffff 28 8  28 indexes                     mode  both_bounded  
- DEBUG bec_eta_mod    decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
 indet 1 2,4,5,7,10,11,12,13 7 1fffffffffffffff 61 3 0 min/max 2 13 values  2 4 5 7 10 11 12 13 indexes  0 0 1 2 0 3 0 0 4 5 6 7 indices  8 prev  0 next  0 mode  enumerated  cont mode  none  
 pixel 1 1:3 3 e7ffffffffffffff 59 2 3 min/max 1 3 values  indexes  indices  3 prev  0 next  0 mode  both_bounded  cont mode  none  
 bec 1 -2,0,2 3 f9ffffffffffffff 57 2 5 min/max -2 2 values  -2 0 2 indexes  0 0 1 0 2 indices  3 prev  0 next  0 mode  enumerated  cont mode  none  
@@ -60,85 +33,28 @@ phi_module    4
 eta_module    5
 phi_index     6
 eta_index     7
- DEBUG PixelID::initialize_from_dict Set barrel field values: 0
- DEBUG PixelID::initialize_from_dict Set dbm field values: -999,999
- DEBUG PixelID::initialize_from_dict Found field values: InDet/Pixel 2/1
- DEBUG PixelID::init_neighbors 
- DEBUG PixelID::initialize_from_dict 
- DEBUG Wafer range -> 2/1/0/0/0:21/-6:6 | 2/1/0/1/0:37/-6:6 | 2/1/0/2/0:51/-6:6 | 2/1/-2,2/0:2/0:47/0
- DEBUG Pixel range -> 2/1/0/0/0:21/-6:6/0:327/0:191 | 2/1/0/1/0:37/-6:6/0:327/0:143 | 2/1/0/2/0:51/-6:6/0:327/0:143 | 2/1/-2,2/0:2/0:47/0/0:327/0:143
 INFO SCT_ID::initialize_from_dictionary 
  AtlasDetectorID::initialize_from_dictionary - OK 
 INFO Initialize from dictionary cout 0
- DEBUG (Re)initialize
  AtlasDetectorID::initialize_from_dictionary - OK 
- DEBUG decode index and bit fields for each level: 
- DEBUG indet     decode 1 vals 2,4,5,7,10,11,12,13 mask/zero mask/shift/bits/offset 7   1fffffffffffffff 61 3  0  indexes 0 0 1 2 0 3 0 0 4 5 6 7 mode  enumerated  
- DEBUG trt       decode 1 vals 1:3             mask/zero mask/shift/bits/offset 3   e7ffffffffffffff 59 2  3  indexes                     mode  both_bounded  
- DEBUG bec       decode 1 vals -2,-1,1,2       mask/zero mask/shift/bits/offset 3   f9ffffffffffffff 57 2  5  indexes 0 1 0 2 3           mode  enumerated  
- DEBUG phi_mod   decode 0 vals 0:31            mask/zero mask/shift/bits/offset 1f  fe0fffffffffffff 52 5  7  indexes                     mode  both_bounded  
- DEBUG lay_wheel decode 0 vals 0:17            mask/zero mask/shift/bits/offset 1f  fff07fffffffffff 47 5  12 indexes                     mode  both_bounded  
- DEBUG str_lay   decode 0 vals 0:29            mask/zero mask/shift/bits/offset 1f  ffff83ffffffffff 42 5  17 indexes                     mode  both_bounded  
- DEBUG straw     decode 0 vals 0:28            mask/zero mask/shift/bits/offset 1f  fffffc1fffffffff 37 5  22 indexes                     mode  both_bounded  
- DEBUG  TRT_ID::initialize_from_dict Set barrel field values: -1,1
- DEBUG  TRT_ID::initialize_from_dict Found field values: InDet/TRT 2/3
- DEBUG Module range -> 2/3/-1,1/0:31/0 | 2/3/-1,1/0:31/1 | 2/3/-1,1/0:31/2 | 2/3/-2,2/0:31/0:5 | 2/3/-2,2/0:31/6:13 | 2/3/-2,2/0:31/14:17
- DEBUG TRT_ID::init_hashes  module hash max 1344
- DEBUG TRT_ID::init_hashes  straw layer hash max 19008
- DEBUG TRT_ID::init_hashes  straw hash max 424576
- DEBUG  TRT_ID::initialize_from_dict 
- DEBUG Module range -> 2/3/-1,1/0:31/0 | 2/3/-1,1/0:31/1 | 2/3/-1,1/0:31/2 | 2/3/-2,2/0:31/0:5 | 2/3/-2,2/0:31/6:13 | 2/3/-2,2/0:31/14:17
- DEBUG Straw layer range -> 2/3/-1,1/0:31/0/0 | 2/3/-1,1/0:31/0/1:4 | 2/3/-1,1/0:31/0/5:9 | 2/3/-1,1/0:31/0/10:14 | 2/3/-1,1/0:31/0/15:17 | 2/3/-1,1/0:31/0/18 | 2/3/-1,1/0:31/1/0 | 2/3/-1,1/0:31/1/1:5 | 2/3/-1,1/0:31/1/6:10 | 2/3/-1,1/0:31/1/11:15 | 2/3/-1,1/0:31/1/16:20 | 2/3/-1,1/0:31/1/21:22 | 2/3/-1,1/0:31/1/23 | 2/3/-1,1/0:31/2/0 | 2/3/-1,1/0:31/2/1:4 | 2/3/-1,1/0:31/2/5:9 | 2/3/-1,1/0:31/2/10:14 | 2/3/-1,1/0:31/2/15:19 | 2/3/-1,1/0:31/2/20:24 | 2/3/-1,1/0:31/2/25:28 | 2/3/-1,1/0:31/2/29 | 2/3/-2,2/0:31/0:5/0:15 | 2/3/-2,2/0:31/6:13/0:7 | 2/3/-2,2/0:31/14:17/0:15
- DEBUG Straw range -> 2/3/-1,1/0:31/0/0/0:14 | 2/3/-1,1/0:31/0/1:4/0:15 | 2/3/-1,1/0:31/0/5:9/0:16 | 2/3/-1,1/0:31/0/10:14/0:17 | 2/3/-1,1/0:31/0/15:17/0:18 | 2/3/-1,1/0:31/0/18/0:17 | 2/3/-1,1/0:31/1/0/0:18 | 2/3/-1,1/0:31/1/1:5/0:19 | 2/3/-1,1/0:31/1/6:10/0:20 | 2/3/-1,1/0:31/1/11:15/0:21 | 2/3/-1,1/0:31/1/16:20/0:22 | 2/3/-1,1/0:31/1/21:22/0:23 | 2/3/-1,1/0:31/1/23/0:22 | 2/3/-1,1/0:31/2/0/0:22 | 2/3/-1,1/0:31/2/1:4/0:23 | 2/3/-1,1/0:31/2/5:9/0:24 | 2/3/-1,1/0:31/2/10:14/0:25 | 2/3/-1,1/0:31/2/15:19/0:26 | 2/3/-1,1/0:31/2/20:24/0:27 | 2/3/-1,1/0:31/2/25:28/0:28 | 2/3/-1,1/0:31/2/29/0:27 | 2/3/-2,2/0:31/0:5/0:15/0:23 | 2/3/-2,2/0:31/6:13/0:7/0:23 | 2/3/-2,2/0:31/14:17/0:15/0:17
- AtlasDetectorID::initialize_from_dictionary - OK 
-CscIdHelper          INFO MultiRange built successfully to Technology: MultiRange size is 218
-CscIdHelper          INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 257
-CscIdHelper          INFO MultiRange built successfully to cscStrip: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 CscIdHelper          INFO Initializing CSC hash indices ... 
-CscIdHelper          INFO The element hash max is 32
-CscIdHelper          INFO The detector element hash max is 64
 CscIdHelper          INFO The channel hash max is 61440
 CscIdHelper          INFO Initializing CSC hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-RpcIdHelper          INFO MultiRange built successfully to doubletR: MultiRange size is 261
-RpcIdHelper          INFO MultiRange built successfully to detectorElement: DetectorElement MultiRange size is 261
-RpcIdHelper          INFO MultiRange built successfully to rpcStrip: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 RpcIdHelper          INFO Initializing RPC hash indices ... 
-RpcIdHelper          INFO The element hash max is 600
-RpcIdHelper          INFO The detector element hash max is 1122
 RpcIdHelper          INFO Initializing RPC hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-TgcIdHelper          INFO MultiRange built successfully to Technology: MultiRange size is 218
-TgcIdHelper          INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 218
-TgcIdHelper          INFO MultiRange built successfully to channel: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 TgcIdHelper          INFO Initializing TGC hash indices ... 
-TgcIdHelper          INFO The element hash max is 1578
-TgcIdHelper          INFO The detector element hash max is 1578
 TgcIdHelper          INFO Initializing TGC hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-MdtIdHelper          INFO MultiRange built successfully to Technology: MultiRange size is 218
-MdtIdHelper          INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 261
-MdtIdHelper          INFO MultiRange built successfully to tube: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 MdtIdHelper          INFO Initializing MDT hash indices ... 
-MdtIdHelper          INFO The element hash max is 1188
-MdtIdHelper          INFO The detector element hash max is 2328
 MdtIdHelper          INFO Initializing MDT hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-sTgcIdHelper         INFO MultiRange built successfully to Technology: MultiRange size is 218
-sTgcIdHelper         INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 253
-sTgcIdHelper         INFO MultiRange built successfully to channel: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 sTgcIdHelper         INFO Initializing sTGC hash indices ... 
-sTgcIdHelper         INFO The element hash max is 96
-sTgcIdHelper         INFO The detector element hash max is 192
 sTgcIdHelper         INFO Initializing sTGC hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-MmIdHelper           INFO MultiRange built successfully to Technology: MultiRange size is 218
-MmIdHelper           INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 257
-MmIdHelper           INFO MultiRange built successfully to channel: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 MmIdHelper           INFO Initializing MicroMegas hash indices ... 
-MmIdHelper           INFO The element hash max is 64
-MmIdHelper           INFO The detector element hash max is 128
 MmIdHelper           INFO Initializing MicroMegas hash indices for finding neighbors ... 
  AtlasDetectorID::initialize_from_dictionary - OK 
-ClassIDSvc           INFO  getRegistryEntries: read 379 CLIDRegistry entries for module ALL
 test1
diff --git a/MuonSpectrometer/MuonCnv/MuonEventTPCnv/share/TgcCoinDataContainerCnv_p3_test.ref b/MuonSpectrometer/MuonCnv/MuonEventTPCnv/share/TgcCoinDataContainerCnv_p3_test.ref
index 08753e8b94b72c88e0f387016049c33fe74ea582..eafa59f97879b9e447a9cdea019dc6bb7238a360 100644
--- a/MuonSpectrometer/MuonCnv/MuonEventTPCnv/share/TgcCoinDataContainerCnv_p3_test.ref
+++ b/MuonSpectrometer/MuonCnv/MuonEventTPCnv/share/TgcCoinDataContainerCnv_p3_test.ref
@@ -1,18 +1,6 @@
 
 
-Initializing Gaudi ApplicationMgr using job opts /home/emoyse/master2/build/x86_64-centos7-gcc8-opt/jobOptions/MuonEventTPCnv/MuonEventTPCnv_test.txt
-JobOptionsSvc        INFO # =======> /home/emoyse/master2/build/x86_64-centos7-gcc8-opt/jobOptions/MuonEventTPCnv/MuonEventTPCnv_test.txt
-JobOptionsSvc        INFO # (1,1): ApplicationMgr.Dlls += ["StoreGate", "CLIDComps"]
-JobOptionsSvc        INFO # (2,1): ApplicationMgr.ExtSvc += ["StoreGateSvc", "StoreGateSvc/DetectorStore", "StoreGateSvc/ConditionStore", "Athena::RCUSvc"]
-JobOptionsSvc        INFO Job options successfully read in from /home/emoyse/master2/build/x86_64-centos7-gcc8-opt/jobOptions/MuonEventTPCnv/MuonEventTPCnv_test.txt
-ApplicationMgr    SUCCESS 
-====================================================================================================================================
-                                                   Welcome to ApplicationMgr (GaudiCoreSvc v34r0)
-                                          running on pcumass4 on Wed Nov  4 09:35:31 2020
-====================================================================================================================================
-ApplicationMgr       INFO Successfully loaded modules : StoreGate, CLIDComps
 ApplicationMgr       INFO Application Manager Configured successfully
-ClassIDSvc           INFO  getRegistryEntries: read 12350 CLIDRegistry entries for module ALL
 EventLoopMgr      WARNING Unable to locate service "EventSelector" 
 EventLoopMgr      WARNING No events will be processed from external input.
 ApplicationMgr       INFO Application Manager Initialized successfully
@@ -22,22 +10,7 @@ ApplicationMgr Ready
  Volume pmdum2 not found: returning 0
  Volume pmdum3 not found: returning 0
  INFO Initialize from dictionary
- DEBUG (Re)initialize
  AtlasDetectorID::initialize_from_dictionary - OK 
- DEBUG decode index and bit fields for each level: 
- DEBUG indet          decode 1 vals 2,4,5,7,10,11,12,13 mask/zero mask/shift/bits/offset 7   1fffffffffffffff 61 3  0  indexes 0 0 1 2 0 3 0 0 4 5 6 7 mode  enumerated  
- DEBUG pixel          decode 1 vals 1:3             mask/zero mask/shift/bits/offset 3   e7ffffffffffffff 59 2  3  indexes                     mode  both_bounded  
- DEBUG bec            decode 1 vals -2,0,2          mask/zero mask/shift/bits/offset 3   f9ffffffffffffff 57 2  5  indexes 0 0 1 0 2           mode  enumerated  
- DEBUG bec_shift      decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
- DEBUG lay_disk       decode 0 vals 0:2             mask/zero mask/shift/bits/offset 3   fe7fffffffffffff 55 2  7  indexes                     mode  both_bounded  
- DEBUG lay_disk_shift decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
- DEBUG phi_mod        decode 0 vals 0:51            mask/zero mask/shift/bits/offset 3f  ff81ffffffffffff 49 6  9  indexes                     mode  both_bounded  
- DEBUG phi_mod_shift  decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
- DEBUG eta_mod        decode 1 vals -6:6            mask/zero mask/shift/bits/offset f   fffe1fffffffffff 45 4  15 indexes                     mode  both_bounded  
- DEBUG eta_mod_shift  decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
- DEBUG phi_index      decode 0 vals 0:327           mask/zero mask/shift/bits/offset 1ff ffffe00fffffffff 36 9  19 indexes                     mode  both_bounded  
- DEBUG eta_index      decode 0 vals 0:191           mask/zero mask/shift/bits/offset ff  fffffff00fffffff 28 8  28 indexes                     mode  both_bounded  
- DEBUG bec_eta_mod    decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
 indet 1 2,4,5,7,10,11,12,13 7 1fffffffffffffff 61 3 0 min/max 2 13 values  2 4 5 7 10 11 12 13 indexes  0 0 1 2 0 3 0 0 4 5 6 7 indices  8 prev  0 next  0 mode  enumerated  cont mode  none  
 pixel 1 1:3 3 e7ffffffffffffff 59 2 3 min/max 1 3 values  indexes  indices  3 prev  0 next  0 mode  both_bounded  cont mode  none  
 bec 1 -2,0,2 3 f9ffffffffffffff 57 2 5 min/max -2 2 values  -2 0 2 indexes  0 0 1 0 2 indices  3 prev  0 next  0 mode  enumerated  cont mode  none  
@@ -60,85 +33,28 @@ phi_module    4
 eta_module    5
 phi_index     6
 eta_index     7
- DEBUG PixelID::initialize_from_dict Set barrel field values: 0
- DEBUG PixelID::initialize_from_dict Set dbm field values: -999,999
- DEBUG PixelID::initialize_from_dict Found field values: InDet/Pixel 2/1
- DEBUG PixelID::init_neighbors 
- DEBUG PixelID::initialize_from_dict 
- DEBUG Wafer range -> 2/1/0/0/0:21/-6:6 | 2/1/0/1/0:37/-6:6 | 2/1/0/2/0:51/-6:6 | 2/1/-2,2/0:2/0:47/0
- DEBUG Pixel range -> 2/1/0/0/0:21/-6:6/0:327/0:191 | 2/1/0/1/0:37/-6:6/0:327/0:143 | 2/1/0/2/0:51/-6:6/0:327/0:143 | 2/1/-2,2/0:2/0:47/0/0:327/0:143
 INFO SCT_ID::initialize_from_dictionary 
  AtlasDetectorID::initialize_from_dictionary - OK 
 INFO Initialize from dictionary cout 0
- DEBUG (Re)initialize
  AtlasDetectorID::initialize_from_dictionary - OK 
- DEBUG decode index and bit fields for each level: 
- DEBUG indet     decode 1 vals 2,4,5,7,10,11,12,13 mask/zero mask/shift/bits/offset 7   1fffffffffffffff 61 3  0  indexes 0 0 1 2 0 3 0 0 4 5 6 7 mode  enumerated  
- DEBUG trt       decode 1 vals 1:3             mask/zero mask/shift/bits/offset 3   e7ffffffffffffff 59 2  3  indexes                     mode  both_bounded  
- DEBUG bec       decode 1 vals -2,-1,1,2       mask/zero mask/shift/bits/offset 3   f9ffffffffffffff 57 2  5  indexes 0 1 0 2 3           mode  enumerated  
- DEBUG phi_mod   decode 0 vals 0:31            mask/zero mask/shift/bits/offset 1f  fe0fffffffffffff 52 5  7  indexes                     mode  both_bounded  
- DEBUG lay_wheel decode 0 vals 0:17            mask/zero mask/shift/bits/offset 1f  fff07fffffffffff 47 5  12 indexes                     mode  both_bounded  
- DEBUG str_lay   decode 0 vals 0:29            mask/zero mask/shift/bits/offset 1f  ffff83ffffffffff 42 5  17 indexes                     mode  both_bounded  
- DEBUG straw     decode 0 vals 0:28            mask/zero mask/shift/bits/offset 1f  fffffc1fffffffff 37 5  22 indexes                     mode  both_bounded  
- DEBUG  TRT_ID::initialize_from_dict Set barrel field values: -1,1
- DEBUG  TRT_ID::initialize_from_dict Found field values: InDet/TRT 2/3
- DEBUG Module range -> 2/3/-1,1/0:31/0 | 2/3/-1,1/0:31/1 | 2/3/-1,1/0:31/2 | 2/3/-2,2/0:31/0:5 | 2/3/-2,2/0:31/6:13 | 2/3/-2,2/0:31/14:17
- DEBUG TRT_ID::init_hashes  module hash max 1344
- DEBUG TRT_ID::init_hashes  straw layer hash max 19008
- DEBUG TRT_ID::init_hashes  straw hash max 424576
- DEBUG  TRT_ID::initialize_from_dict 
- DEBUG Module range -> 2/3/-1,1/0:31/0 | 2/3/-1,1/0:31/1 | 2/3/-1,1/0:31/2 | 2/3/-2,2/0:31/0:5 | 2/3/-2,2/0:31/6:13 | 2/3/-2,2/0:31/14:17
- DEBUG Straw layer range -> 2/3/-1,1/0:31/0/0 | 2/3/-1,1/0:31/0/1:4 | 2/3/-1,1/0:31/0/5:9 | 2/3/-1,1/0:31/0/10:14 | 2/3/-1,1/0:31/0/15:17 | 2/3/-1,1/0:31/0/18 | 2/3/-1,1/0:31/1/0 | 2/3/-1,1/0:31/1/1:5 | 2/3/-1,1/0:31/1/6:10 | 2/3/-1,1/0:31/1/11:15 | 2/3/-1,1/0:31/1/16:20 | 2/3/-1,1/0:31/1/21:22 | 2/3/-1,1/0:31/1/23 | 2/3/-1,1/0:31/2/0 | 2/3/-1,1/0:31/2/1:4 | 2/3/-1,1/0:31/2/5:9 | 2/3/-1,1/0:31/2/10:14 | 2/3/-1,1/0:31/2/15:19 | 2/3/-1,1/0:31/2/20:24 | 2/3/-1,1/0:31/2/25:28 | 2/3/-1,1/0:31/2/29 | 2/3/-2,2/0:31/0:5/0:15 | 2/3/-2,2/0:31/6:13/0:7 | 2/3/-2,2/0:31/14:17/0:15
- DEBUG Straw range -> 2/3/-1,1/0:31/0/0/0:14 | 2/3/-1,1/0:31/0/1:4/0:15 | 2/3/-1,1/0:31/0/5:9/0:16 | 2/3/-1,1/0:31/0/10:14/0:17 | 2/3/-1,1/0:31/0/15:17/0:18 | 2/3/-1,1/0:31/0/18/0:17 | 2/3/-1,1/0:31/1/0/0:18 | 2/3/-1,1/0:31/1/1:5/0:19 | 2/3/-1,1/0:31/1/6:10/0:20 | 2/3/-1,1/0:31/1/11:15/0:21 | 2/3/-1,1/0:31/1/16:20/0:22 | 2/3/-1,1/0:31/1/21:22/0:23 | 2/3/-1,1/0:31/1/23/0:22 | 2/3/-1,1/0:31/2/0/0:22 | 2/3/-1,1/0:31/2/1:4/0:23 | 2/3/-1,1/0:31/2/5:9/0:24 | 2/3/-1,1/0:31/2/10:14/0:25 | 2/3/-1,1/0:31/2/15:19/0:26 | 2/3/-1,1/0:31/2/20:24/0:27 | 2/3/-1,1/0:31/2/25:28/0:28 | 2/3/-1,1/0:31/2/29/0:27 | 2/3/-2,2/0:31/0:5/0:15/0:23 | 2/3/-2,2/0:31/6:13/0:7/0:23 | 2/3/-2,2/0:31/14:17/0:15/0:17
- AtlasDetectorID::initialize_from_dictionary - OK 
-CscIdHelper          INFO MultiRange built successfully to Technology: MultiRange size is 218
-CscIdHelper          INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 257
-CscIdHelper          INFO MultiRange built successfully to cscStrip: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 CscIdHelper          INFO Initializing CSC hash indices ... 
-CscIdHelper          INFO The element hash max is 32
-CscIdHelper          INFO The detector element hash max is 64
 CscIdHelper          INFO The channel hash max is 61440
 CscIdHelper          INFO Initializing CSC hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-RpcIdHelper          INFO MultiRange built successfully to doubletR: MultiRange size is 261
-RpcIdHelper          INFO MultiRange built successfully to detectorElement: DetectorElement MultiRange size is 261
-RpcIdHelper          INFO MultiRange built successfully to rpcStrip: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 RpcIdHelper          INFO Initializing RPC hash indices ... 
-RpcIdHelper          INFO The element hash max is 600
-RpcIdHelper          INFO The detector element hash max is 1122
 RpcIdHelper          INFO Initializing RPC hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-TgcIdHelper          INFO MultiRange built successfully to Technology: MultiRange size is 218
-TgcIdHelper          INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 218
-TgcIdHelper          INFO MultiRange built successfully to channel: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 TgcIdHelper          INFO Initializing TGC hash indices ... 
-TgcIdHelper          INFO The element hash max is 1578
-TgcIdHelper          INFO The detector element hash max is 1578
 TgcIdHelper          INFO Initializing TGC hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-MdtIdHelper          INFO MultiRange built successfully to Technology: MultiRange size is 218
-MdtIdHelper          INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 261
-MdtIdHelper          INFO MultiRange built successfully to tube: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 MdtIdHelper          INFO Initializing MDT hash indices ... 
-MdtIdHelper          INFO The element hash max is 1188
-MdtIdHelper          INFO The detector element hash max is 2328
 MdtIdHelper          INFO Initializing MDT hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-sTgcIdHelper         INFO MultiRange built successfully to Technology: MultiRange size is 218
-sTgcIdHelper         INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 253
-sTgcIdHelper         INFO MultiRange built successfully to channel: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 sTgcIdHelper         INFO Initializing sTGC hash indices ... 
-sTgcIdHelper         INFO The element hash max is 96
-sTgcIdHelper         INFO The detector element hash max is 192
 sTgcIdHelper         INFO Initializing sTGC hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-MmIdHelper           INFO MultiRange built successfully to Technology: MultiRange size is 218
-MmIdHelper           INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 257
-MmIdHelper           INFO MultiRange built successfully to channel: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 MmIdHelper           INFO Initializing MicroMegas hash indices ... 
-MmIdHelper           INFO The element hash max is 64
-MmIdHelper           INFO The detector element hash max is 128
 MmIdHelper           INFO Initializing MicroMegas hash indices for finding neighbors ... 
  AtlasDetectorID::initialize_from_dictionary - OK 
-ClassIDSvc           INFO  getRegistryEntries: read 379 CLIDRegistry entries for module ALL
 test1
diff --git a/MuonSpectrometer/MuonCnv/MuonEventTPCnv/share/TgcPrepDataContainerCnv_p1_test.ref b/MuonSpectrometer/MuonCnv/MuonEventTPCnv/share/TgcPrepDataContainerCnv_p1_test.ref
index 6b326a928c9fffe92efb257b6bb87389cf012149..eafa59f97879b9e447a9cdea019dc6bb7238a360 100644
--- a/MuonSpectrometer/MuonCnv/MuonEventTPCnv/share/TgcPrepDataContainerCnv_p1_test.ref
+++ b/MuonSpectrometer/MuonCnv/MuonEventTPCnv/share/TgcPrepDataContainerCnv_p1_test.ref
@@ -1,18 +1,6 @@
 
 
-Initializing Gaudi ApplicationMgr using job opts /home/emoyse/master2/build/x86_64-centos7-gcc8-opt/jobOptions/MuonEventTPCnv/MuonEventTPCnv_test.txt
-JobOptionsSvc        INFO # =======> /home/emoyse/master2/build/x86_64-centos7-gcc8-opt/jobOptions/MuonEventTPCnv/MuonEventTPCnv_test.txt
-JobOptionsSvc        INFO # (1,1): ApplicationMgr.Dlls += ["StoreGate", "CLIDComps"]
-JobOptionsSvc        INFO # (2,1): ApplicationMgr.ExtSvc += ["StoreGateSvc", "StoreGateSvc/DetectorStore", "StoreGateSvc/ConditionStore", "Athena::RCUSvc"]
-JobOptionsSvc        INFO Job options successfully read in from /home/emoyse/master2/build/x86_64-centos7-gcc8-opt/jobOptions/MuonEventTPCnv/MuonEventTPCnv_test.txt
-ApplicationMgr    SUCCESS 
-====================================================================================================================================
-                                                   Welcome to ApplicationMgr (GaudiCoreSvc v34r0)
-                                          running on pcumass4 on Wed Nov  4 09:35:12 2020
-====================================================================================================================================
-ApplicationMgr       INFO Successfully loaded modules : StoreGate, CLIDComps
 ApplicationMgr       INFO Application Manager Configured successfully
-ClassIDSvc           INFO  getRegistryEntries: read 12360 CLIDRegistry entries for module ALL
 EventLoopMgr      WARNING Unable to locate service "EventSelector" 
 EventLoopMgr      WARNING No events will be processed from external input.
 ApplicationMgr       INFO Application Manager Initialized successfully
@@ -22,22 +10,7 @@ ApplicationMgr Ready
  Volume pmdum2 not found: returning 0
  Volume pmdum3 not found: returning 0
  INFO Initialize from dictionary
- DEBUG (Re)initialize
  AtlasDetectorID::initialize_from_dictionary - OK 
- DEBUG decode index and bit fields for each level: 
- DEBUG indet          decode 1 vals 2,4,5,7,10,11,12,13 mask/zero mask/shift/bits/offset 7   1fffffffffffffff 61 3  0  indexes 0 0 1 2 0 3 0 0 4 5 6 7 mode  enumerated  
- DEBUG pixel          decode 1 vals 1:3             mask/zero mask/shift/bits/offset 3   e7ffffffffffffff 59 2  3  indexes                     mode  both_bounded  
- DEBUG bec            decode 1 vals -2,0,2          mask/zero mask/shift/bits/offset 3   f9ffffffffffffff 57 2  5  indexes 0 0 1 0 2           mode  enumerated  
- DEBUG bec_shift      decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
- DEBUG lay_disk       decode 0 vals 0:2             mask/zero mask/shift/bits/offset 3   fe7fffffffffffff 55 2  7  indexes                     mode  both_bounded  
- DEBUG lay_disk_shift decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
- DEBUG phi_mod        decode 0 vals 0:51            mask/zero mask/shift/bits/offset 3f  ff81ffffffffffff 49 6  9  indexes                     mode  both_bounded  
- DEBUG phi_mod_shift  decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
- DEBUG eta_mod        decode 1 vals -6:6            mask/zero mask/shift/bits/offset f   fffe1fffffffffff 45 4  15 indexes                     mode  both_bounded  
- DEBUG eta_mod_shift  decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
- DEBUG phi_index      decode 0 vals 0:327           mask/zero mask/shift/bits/offset 1ff ffffe00fffffffff 36 9  19 indexes                     mode  both_bounded  
- DEBUG eta_index      decode 0 vals 0:191           mask/zero mask/shift/bits/offset ff  fffffff00fffffff 28 8  28 indexes                     mode  both_bounded  
- DEBUG bec_eta_mod    decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
 indet 1 2,4,5,7,10,11,12,13 7 1fffffffffffffff 61 3 0 min/max 2 13 values  2 4 5 7 10 11 12 13 indexes  0 0 1 2 0 3 0 0 4 5 6 7 indices  8 prev  0 next  0 mode  enumerated  cont mode  none  
 pixel 1 1:3 3 e7ffffffffffffff 59 2 3 min/max 1 3 values  indexes  indices  3 prev  0 next  0 mode  both_bounded  cont mode  none  
 bec 1 -2,0,2 3 f9ffffffffffffff 57 2 5 min/max -2 2 values  -2 0 2 indexes  0 0 1 0 2 indices  3 prev  0 next  0 mode  enumerated  cont mode  none  
@@ -60,85 +33,28 @@ phi_module    4
 eta_module    5
 phi_index     6
 eta_index     7
- DEBUG PixelID::initialize_from_dict Set barrel field values: 0
- DEBUG PixelID::initialize_from_dict Set dbm field values: -999,999
- DEBUG PixelID::initialize_from_dict Found field values: InDet/Pixel 2/1
- DEBUG PixelID::init_neighbors 
- DEBUG PixelID::initialize_from_dict 
- DEBUG Wafer range -> 2/1/0/0/0:21/-6:6 | 2/1/0/1/0:37/-6:6 | 2/1/0/2/0:51/-6:6 | 2/1/-2,2/0:2/0:47/0
- DEBUG Pixel range -> 2/1/0/0/0:21/-6:6/0:327/0:191 | 2/1/0/1/0:37/-6:6/0:327/0:143 | 2/1/0/2/0:51/-6:6/0:327/0:143 | 2/1/-2,2/0:2/0:47/0/0:327/0:143
 INFO SCT_ID::initialize_from_dictionary 
  AtlasDetectorID::initialize_from_dictionary - OK 
 INFO Initialize from dictionary cout 0
- DEBUG (Re)initialize
  AtlasDetectorID::initialize_from_dictionary - OK 
- DEBUG decode index and bit fields for each level: 
- DEBUG indet     decode 1 vals 2,4,5,7,10,11,12,13 mask/zero mask/shift/bits/offset 7   1fffffffffffffff 61 3  0  indexes 0 0 1 2 0 3 0 0 4 5 6 7 mode  enumerated  
- DEBUG trt       decode 1 vals 1:3             mask/zero mask/shift/bits/offset 3   e7ffffffffffffff 59 2  3  indexes                     mode  both_bounded  
- DEBUG bec       decode 1 vals -2,-1,1,2       mask/zero mask/shift/bits/offset 3   f9ffffffffffffff 57 2  5  indexes 0 1 0 2 3           mode  enumerated  
- DEBUG phi_mod   decode 0 vals 0:31            mask/zero mask/shift/bits/offset 1f  fe0fffffffffffff 52 5  7  indexes                     mode  both_bounded  
- DEBUG lay_wheel decode 0 vals 0:17            mask/zero mask/shift/bits/offset 1f  fff07fffffffffff 47 5  12 indexes                     mode  both_bounded  
- DEBUG str_lay   decode 0 vals 0:29            mask/zero mask/shift/bits/offset 1f  ffff83ffffffffff 42 5  17 indexes                     mode  both_bounded  
- DEBUG straw     decode 0 vals 0:28            mask/zero mask/shift/bits/offset 1f  fffffc1fffffffff 37 5  22 indexes                     mode  both_bounded  
- DEBUG  TRT_ID::initialize_from_dict Set barrel field values: -1,1
- DEBUG  TRT_ID::initialize_from_dict Found field values: InDet/TRT 2/3
- DEBUG Module range -> 2/3/-1,1/0:31/0 | 2/3/-1,1/0:31/1 | 2/3/-1,1/0:31/2 | 2/3/-2,2/0:31/0:5 | 2/3/-2,2/0:31/6:13 | 2/3/-2,2/0:31/14:17
- DEBUG TRT_ID::init_hashes  module hash max 1344
- DEBUG TRT_ID::init_hashes  straw layer hash max 19008
- DEBUG TRT_ID::init_hashes  straw hash max 424576
- DEBUG  TRT_ID::initialize_from_dict 
- DEBUG Module range -> 2/3/-1,1/0:31/0 | 2/3/-1,1/0:31/1 | 2/3/-1,1/0:31/2 | 2/3/-2,2/0:31/0:5 | 2/3/-2,2/0:31/6:13 | 2/3/-2,2/0:31/14:17
- DEBUG Straw layer range -> 2/3/-1,1/0:31/0/0 | 2/3/-1,1/0:31/0/1:4 | 2/3/-1,1/0:31/0/5:9 | 2/3/-1,1/0:31/0/10:14 | 2/3/-1,1/0:31/0/15:17 | 2/3/-1,1/0:31/0/18 | 2/3/-1,1/0:31/1/0 | 2/3/-1,1/0:31/1/1:5 | 2/3/-1,1/0:31/1/6:10 | 2/3/-1,1/0:31/1/11:15 | 2/3/-1,1/0:31/1/16:20 | 2/3/-1,1/0:31/1/21:22 | 2/3/-1,1/0:31/1/23 | 2/3/-1,1/0:31/2/0 | 2/3/-1,1/0:31/2/1:4 | 2/3/-1,1/0:31/2/5:9 | 2/3/-1,1/0:31/2/10:14 | 2/3/-1,1/0:31/2/15:19 | 2/3/-1,1/0:31/2/20:24 | 2/3/-1,1/0:31/2/25:28 | 2/3/-1,1/0:31/2/29 | 2/3/-2,2/0:31/0:5/0:15 | 2/3/-2,2/0:31/6:13/0:7 | 2/3/-2,2/0:31/14:17/0:15
- DEBUG Straw range -> 2/3/-1,1/0:31/0/0/0:14 | 2/3/-1,1/0:31/0/1:4/0:15 | 2/3/-1,1/0:31/0/5:9/0:16 | 2/3/-1,1/0:31/0/10:14/0:17 | 2/3/-1,1/0:31/0/15:17/0:18 | 2/3/-1,1/0:31/0/18/0:17 | 2/3/-1,1/0:31/1/0/0:18 | 2/3/-1,1/0:31/1/1:5/0:19 | 2/3/-1,1/0:31/1/6:10/0:20 | 2/3/-1,1/0:31/1/11:15/0:21 | 2/3/-1,1/0:31/1/16:20/0:22 | 2/3/-1,1/0:31/1/21:22/0:23 | 2/3/-1,1/0:31/1/23/0:22 | 2/3/-1,1/0:31/2/0/0:22 | 2/3/-1,1/0:31/2/1:4/0:23 | 2/3/-1,1/0:31/2/5:9/0:24 | 2/3/-1,1/0:31/2/10:14/0:25 | 2/3/-1,1/0:31/2/15:19/0:26 | 2/3/-1,1/0:31/2/20:24/0:27 | 2/3/-1,1/0:31/2/25:28/0:28 | 2/3/-1,1/0:31/2/29/0:27 | 2/3/-2,2/0:31/0:5/0:15/0:23 | 2/3/-2,2/0:31/6:13/0:7/0:23 | 2/3/-2,2/0:31/14:17/0:15/0:17
- AtlasDetectorID::initialize_from_dictionary - OK 
-CscIdHelper          INFO MultiRange built successfully to Technology: MultiRange size is 218
-CscIdHelper          INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 257
-CscIdHelper          INFO MultiRange built successfully to cscStrip: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 CscIdHelper          INFO Initializing CSC hash indices ... 
-CscIdHelper          INFO The element hash max is 32
-CscIdHelper          INFO The detector element hash max is 64
 CscIdHelper          INFO The channel hash max is 61440
 CscIdHelper          INFO Initializing CSC hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-RpcIdHelper          INFO MultiRange built successfully to doubletR: MultiRange size is 261
-RpcIdHelper          INFO MultiRange built successfully to detectorElement: DetectorElement MultiRange size is 261
-RpcIdHelper          INFO MultiRange built successfully to rpcStrip: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 RpcIdHelper          INFO Initializing RPC hash indices ... 
-RpcIdHelper          INFO The element hash max is 600
-RpcIdHelper          INFO The detector element hash max is 1122
 RpcIdHelper          INFO Initializing RPC hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-TgcIdHelper          INFO MultiRange built successfully to Technology: MultiRange size is 218
-TgcIdHelper          INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 218
-TgcIdHelper          INFO MultiRange built successfully to channel: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 TgcIdHelper          INFO Initializing TGC hash indices ... 
-TgcIdHelper          INFO The element hash max is 1578
-TgcIdHelper          INFO The detector element hash max is 1578
 TgcIdHelper          INFO Initializing TGC hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-MdtIdHelper          INFO MultiRange built successfully to Technology: MultiRange size is 218
-MdtIdHelper          INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 261
-MdtIdHelper          INFO MultiRange built successfully to tube: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 MdtIdHelper          INFO Initializing MDT hash indices ... 
-MdtIdHelper          INFO The element hash max is 1188
-MdtIdHelper          INFO The detector element hash max is 2328
 MdtIdHelper          INFO Initializing MDT hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-sTgcIdHelper         INFO MultiRange built successfully to Technology: MultiRange size is 218
-sTgcIdHelper         INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 253
-sTgcIdHelper         INFO MultiRange built successfully to channel: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 sTgcIdHelper         INFO Initializing sTGC hash indices ... 
-sTgcIdHelper         INFO The element hash max is 96
-sTgcIdHelper         INFO The detector element hash max is 192
 sTgcIdHelper         INFO Initializing sTGC hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-MmIdHelper           INFO MultiRange built successfully to Technology: MultiRange size is 218
-MmIdHelper           INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 257
-MmIdHelper           INFO MultiRange built successfully to channel: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 MmIdHelper           INFO Initializing MicroMegas hash indices ... 
-MmIdHelper           INFO The element hash max is 64
-MmIdHelper           INFO The detector element hash max is 128
 MmIdHelper           INFO Initializing MicroMegas hash indices for finding neighbors ... 
  AtlasDetectorID::initialize_from_dictionary - OK 
-ClassIDSvc           INFO  getRegistryEntries: read 379 CLIDRegistry entries for module ALL
 test1
diff --git a/MuonSpectrometer/MuonCnv/MuonEventTPCnv/share/TgcPrepDataContainerCnv_p2_test.ref b/MuonSpectrometer/MuonCnv/MuonEventTPCnv/share/TgcPrepDataContainerCnv_p2_test.ref
index 6443a5ffd3b1d391f4ce5197943e88b050f741b1..eafa59f97879b9e447a9cdea019dc6bb7238a360 100644
--- a/MuonSpectrometer/MuonCnv/MuonEventTPCnv/share/TgcPrepDataContainerCnv_p2_test.ref
+++ b/MuonSpectrometer/MuonCnv/MuonEventTPCnv/share/TgcPrepDataContainerCnv_p2_test.ref
@@ -1,18 +1,6 @@
 
 
-Initializing Gaudi ApplicationMgr using job opts /home/emoyse/master2/build/x86_64-centos7-gcc8-opt/jobOptions/MuonEventTPCnv/MuonEventTPCnv_test.txt
-JobOptionsSvc        INFO # =======> /home/emoyse/master2/build/x86_64-centos7-gcc8-opt/jobOptions/MuonEventTPCnv/MuonEventTPCnv_test.txt
-JobOptionsSvc        INFO # (1,1): ApplicationMgr.Dlls += ["StoreGate", "CLIDComps"]
-JobOptionsSvc        INFO # (2,1): ApplicationMgr.ExtSvc += ["StoreGateSvc", "StoreGateSvc/DetectorStore", "StoreGateSvc/ConditionStore", "Athena::RCUSvc"]
-JobOptionsSvc        INFO Job options successfully read in from /home/emoyse/master2/build/x86_64-centos7-gcc8-opt/jobOptions/MuonEventTPCnv/MuonEventTPCnv_test.txt
-ApplicationMgr    SUCCESS 
-====================================================================================================================================
-                                                   Welcome to ApplicationMgr (GaudiCoreSvc v34r0)
-                                          running on pcumass4 on Wed Nov  4 09:35:14 2020
-====================================================================================================================================
-ApplicationMgr       INFO Successfully loaded modules : StoreGate, CLIDComps
 ApplicationMgr       INFO Application Manager Configured successfully
-ClassIDSvc           INFO  getRegistryEntries: read 12360 CLIDRegistry entries for module ALL
 EventLoopMgr      WARNING Unable to locate service "EventSelector" 
 EventLoopMgr      WARNING No events will be processed from external input.
 ApplicationMgr       INFO Application Manager Initialized successfully
@@ -22,22 +10,7 @@ ApplicationMgr Ready
  Volume pmdum2 not found: returning 0
  Volume pmdum3 not found: returning 0
  INFO Initialize from dictionary
- DEBUG (Re)initialize
  AtlasDetectorID::initialize_from_dictionary - OK 
- DEBUG decode index and bit fields for each level: 
- DEBUG indet          decode 1 vals 2,4,5,7,10,11,12,13 mask/zero mask/shift/bits/offset 7   1fffffffffffffff 61 3  0  indexes 0 0 1 2 0 3 0 0 4 5 6 7 mode  enumerated  
- DEBUG pixel          decode 1 vals 1:3             mask/zero mask/shift/bits/offset 3   e7ffffffffffffff 59 2  3  indexes                     mode  both_bounded  
- DEBUG bec            decode 1 vals -2,0,2          mask/zero mask/shift/bits/offset 3   f9ffffffffffffff 57 2  5  indexes 0 0 1 0 2           mode  enumerated  
- DEBUG bec_shift      decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
- DEBUG lay_disk       decode 0 vals 0:2             mask/zero mask/shift/bits/offset 3   fe7fffffffffffff 55 2  7  indexes                     mode  both_bounded  
- DEBUG lay_disk_shift decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
- DEBUG phi_mod        decode 0 vals 0:51            mask/zero mask/shift/bits/offset 3f  ff81ffffffffffff 49 6  9  indexes                     mode  both_bounded  
- DEBUG phi_mod_shift  decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
- DEBUG eta_mod        decode 1 vals -6:6            mask/zero mask/shift/bits/offset f   fffe1fffffffffff 45 4  15 indexes                     mode  both_bounded  
- DEBUG eta_mod_shift  decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
- DEBUG phi_index      decode 0 vals 0:327           mask/zero mask/shift/bits/offset 1ff ffffe00fffffffff 36 9  19 indexes                     mode  both_bounded  
- DEBUG eta_index      decode 0 vals 0:191           mask/zero mask/shift/bits/offset ff  fffffff00fffffff 28 8  28 indexes                     mode  both_bounded  
- DEBUG bec_eta_mod    decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
 indet 1 2,4,5,7,10,11,12,13 7 1fffffffffffffff 61 3 0 min/max 2 13 values  2 4 5 7 10 11 12 13 indexes  0 0 1 2 0 3 0 0 4 5 6 7 indices  8 prev  0 next  0 mode  enumerated  cont mode  none  
 pixel 1 1:3 3 e7ffffffffffffff 59 2 3 min/max 1 3 values  indexes  indices  3 prev  0 next  0 mode  both_bounded  cont mode  none  
 bec 1 -2,0,2 3 f9ffffffffffffff 57 2 5 min/max -2 2 values  -2 0 2 indexes  0 0 1 0 2 indices  3 prev  0 next  0 mode  enumerated  cont mode  none  
@@ -60,85 +33,28 @@ phi_module    4
 eta_module    5
 phi_index     6
 eta_index     7
- DEBUG PixelID::initialize_from_dict Set barrel field values: 0
- DEBUG PixelID::initialize_from_dict Set dbm field values: -999,999
- DEBUG PixelID::initialize_from_dict Found field values: InDet/Pixel 2/1
- DEBUG PixelID::init_neighbors 
- DEBUG PixelID::initialize_from_dict 
- DEBUG Wafer range -> 2/1/0/0/0:21/-6:6 | 2/1/0/1/0:37/-6:6 | 2/1/0/2/0:51/-6:6 | 2/1/-2,2/0:2/0:47/0
- DEBUG Pixel range -> 2/1/0/0/0:21/-6:6/0:327/0:191 | 2/1/0/1/0:37/-6:6/0:327/0:143 | 2/1/0/2/0:51/-6:6/0:327/0:143 | 2/1/-2,2/0:2/0:47/0/0:327/0:143
 INFO SCT_ID::initialize_from_dictionary 
  AtlasDetectorID::initialize_from_dictionary - OK 
 INFO Initialize from dictionary cout 0
- DEBUG (Re)initialize
  AtlasDetectorID::initialize_from_dictionary - OK 
- DEBUG decode index and bit fields for each level: 
- DEBUG indet     decode 1 vals 2,4,5,7,10,11,12,13 mask/zero mask/shift/bits/offset 7   1fffffffffffffff 61 3  0  indexes 0 0 1 2 0 3 0 0 4 5 6 7 mode  enumerated  
- DEBUG trt       decode 1 vals 1:3             mask/zero mask/shift/bits/offset 3   e7ffffffffffffff 59 2  3  indexes                     mode  both_bounded  
- DEBUG bec       decode 1 vals -2,-1,1,2       mask/zero mask/shift/bits/offset 3   f9ffffffffffffff 57 2  5  indexes 0 1 0 2 3           mode  enumerated  
- DEBUG phi_mod   decode 0 vals 0:31            mask/zero mask/shift/bits/offset 1f  fe0fffffffffffff 52 5  7  indexes                     mode  both_bounded  
- DEBUG lay_wheel decode 0 vals 0:17            mask/zero mask/shift/bits/offset 1f  fff07fffffffffff 47 5  12 indexes                     mode  both_bounded  
- DEBUG str_lay   decode 0 vals 0:29            mask/zero mask/shift/bits/offset 1f  ffff83ffffffffff 42 5  17 indexes                     mode  both_bounded  
- DEBUG straw     decode 0 vals 0:28            mask/zero mask/shift/bits/offset 1f  fffffc1fffffffff 37 5  22 indexes                     mode  both_bounded  
- DEBUG  TRT_ID::initialize_from_dict Set barrel field values: -1,1
- DEBUG  TRT_ID::initialize_from_dict Found field values: InDet/TRT 2/3
- DEBUG Module range -> 2/3/-1,1/0:31/0 | 2/3/-1,1/0:31/1 | 2/3/-1,1/0:31/2 | 2/3/-2,2/0:31/0:5 | 2/3/-2,2/0:31/6:13 | 2/3/-2,2/0:31/14:17
- DEBUG TRT_ID::init_hashes  module hash max 1344
- DEBUG TRT_ID::init_hashes  straw layer hash max 19008
- DEBUG TRT_ID::init_hashes  straw hash max 424576
- DEBUG  TRT_ID::initialize_from_dict 
- DEBUG Module range -> 2/3/-1,1/0:31/0 | 2/3/-1,1/0:31/1 | 2/3/-1,1/0:31/2 | 2/3/-2,2/0:31/0:5 | 2/3/-2,2/0:31/6:13 | 2/3/-2,2/0:31/14:17
- DEBUG Straw layer range -> 2/3/-1,1/0:31/0/0 | 2/3/-1,1/0:31/0/1:4 | 2/3/-1,1/0:31/0/5:9 | 2/3/-1,1/0:31/0/10:14 | 2/3/-1,1/0:31/0/15:17 | 2/3/-1,1/0:31/0/18 | 2/3/-1,1/0:31/1/0 | 2/3/-1,1/0:31/1/1:5 | 2/3/-1,1/0:31/1/6:10 | 2/3/-1,1/0:31/1/11:15 | 2/3/-1,1/0:31/1/16:20 | 2/3/-1,1/0:31/1/21:22 | 2/3/-1,1/0:31/1/23 | 2/3/-1,1/0:31/2/0 | 2/3/-1,1/0:31/2/1:4 | 2/3/-1,1/0:31/2/5:9 | 2/3/-1,1/0:31/2/10:14 | 2/3/-1,1/0:31/2/15:19 | 2/3/-1,1/0:31/2/20:24 | 2/3/-1,1/0:31/2/25:28 | 2/3/-1,1/0:31/2/29 | 2/3/-2,2/0:31/0:5/0:15 | 2/3/-2,2/0:31/6:13/0:7 | 2/3/-2,2/0:31/14:17/0:15
- DEBUG Straw range -> 2/3/-1,1/0:31/0/0/0:14 | 2/3/-1,1/0:31/0/1:4/0:15 | 2/3/-1,1/0:31/0/5:9/0:16 | 2/3/-1,1/0:31/0/10:14/0:17 | 2/3/-1,1/0:31/0/15:17/0:18 | 2/3/-1,1/0:31/0/18/0:17 | 2/3/-1,1/0:31/1/0/0:18 | 2/3/-1,1/0:31/1/1:5/0:19 | 2/3/-1,1/0:31/1/6:10/0:20 | 2/3/-1,1/0:31/1/11:15/0:21 | 2/3/-1,1/0:31/1/16:20/0:22 | 2/3/-1,1/0:31/1/21:22/0:23 | 2/3/-1,1/0:31/1/23/0:22 | 2/3/-1,1/0:31/2/0/0:22 | 2/3/-1,1/0:31/2/1:4/0:23 | 2/3/-1,1/0:31/2/5:9/0:24 | 2/3/-1,1/0:31/2/10:14/0:25 | 2/3/-1,1/0:31/2/15:19/0:26 | 2/3/-1,1/0:31/2/20:24/0:27 | 2/3/-1,1/0:31/2/25:28/0:28 | 2/3/-1,1/0:31/2/29/0:27 | 2/3/-2,2/0:31/0:5/0:15/0:23 | 2/3/-2,2/0:31/6:13/0:7/0:23 | 2/3/-2,2/0:31/14:17/0:15/0:17
- AtlasDetectorID::initialize_from_dictionary - OK 
-CscIdHelper          INFO MultiRange built successfully to Technology: MultiRange size is 218
-CscIdHelper          INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 257
-CscIdHelper          INFO MultiRange built successfully to cscStrip: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 CscIdHelper          INFO Initializing CSC hash indices ... 
-CscIdHelper          INFO The element hash max is 32
-CscIdHelper          INFO The detector element hash max is 64
 CscIdHelper          INFO The channel hash max is 61440
 CscIdHelper          INFO Initializing CSC hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-RpcIdHelper          INFO MultiRange built successfully to doubletR: MultiRange size is 261
-RpcIdHelper          INFO MultiRange built successfully to detectorElement: DetectorElement MultiRange size is 261
-RpcIdHelper          INFO MultiRange built successfully to rpcStrip: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 RpcIdHelper          INFO Initializing RPC hash indices ... 
-RpcIdHelper          INFO The element hash max is 600
-RpcIdHelper          INFO The detector element hash max is 1122
 RpcIdHelper          INFO Initializing RPC hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-TgcIdHelper          INFO MultiRange built successfully to Technology: MultiRange size is 218
-TgcIdHelper          INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 218
-TgcIdHelper          INFO MultiRange built successfully to channel: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 TgcIdHelper          INFO Initializing TGC hash indices ... 
-TgcIdHelper          INFO The element hash max is 1578
-TgcIdHelper          INFO The detector element hash max is 1578
 TgcIdHelper          INFO Initializing TGC hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-MdtIdHelper          INFO MultiRange built successfully to Technology: MultiRange size is 218
-MdtIdHelper          INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 261
-MdtIdHelper          INFO MultiRange built successfully to tube: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 MdtIdHelper          INFO Initializing MDT hash indices ... 
-MdtIdHelper          INFO The element hash max is 1188
-MdtIdHelper          INFO The detector element hash max is 2328
 MdtIdHelper          INFO Initializing MDT hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-sTgcIdHelper         INFO MultiRange built successfully to Technology: MultiRange size is 218
-sTgcIdHelper         INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 253
-sTgcIdHelper         INFO MultiRange built successfully to channel: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 sTgcIdHelper         INFO Initializing sTGC hash indices ... 
-sTgcIdHelper         INFO The element hash max is 96
-sTgcIdHelper         INFO The detector element hash max is 192
 sTgcIdHelper         INFO Initializing sTGC hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-MmIdHelper           INFO MultiRange built successfully to Technology: MultiRange size is 218
-MmIdHelper           INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 257
-MmIdHelper           INFO MultiRange built successfully to channel: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 MmIdHelper           INFO Initializing MicroMegas hash indices ... 
-MmIdHelper           INFO The element hash max is 64
-MmIdHelper           INFO The detector element hash max is 128
 MmIdHelper           INFO Initializing MicroMegas hash indices for finding neighbors ... 
  AtlasDetectorID::initialize_from_dictionary - OK 
-ClassIDSvc           INFO  getRegistryEntries: read 379 CLIDRegistry entries for module ALL
 test1
diff --git a/MuonSpectrometer/MuonCnv/MuonEventTPCnv/share/TgcPrepDataContainerCnv_p3_test.ref b/MuonSpectrometer/MuonCnv/MuonEventTPCnv/share/TgcPrepDataContainerCnv_p3_test.ref
index e4fb9369a6ad8e7659aeb821200a3dcbd2a0d08b..eafa59f97879b9e447a9cdea019dc6bb7238a360 100644
--- a/MuonSpectrometer/MuonCnv/MuonEventTPCnv/share/TgcPrepDataContainerCnv_p3_test.ref
+++ b/MuonSpectrometer/MuonCnv/MuonEventTPCnv/share/TgcPrepDataContainerCnv_p3_test.ref
@@ -1,18 +1,6 @@
 
 
-Initializing Gaudi ApplicationMgr using job opts /home/emoyse/master2/build/x86_64-centos7-gcc8-opt/jobOptions/MuonEventTPCnv/MuonEventTPCnv_test.txt
-JobOptionsSvc        INFO # =======> /home/emoyse/master2/build/x86_64-centos7-gcc8-opt/jobOptions/MuonEventTPCnv/MuonEventTPCnv_test.txt
-JobOptionsSvc        INFO # (1,1): ApplicationMgr.Dlls += ["StoreGate", "CLIDComps"]
-JobOptionsSvc        INFO # (2,1): ApplicationMgr.ExtSvc += ["StoreGateSvc", "StoreGateSvc/DetectorStore", "StoreGateSvc/ConditionStore", "Athena::RCUSvc"]
-JobOptionsSvc        INFO Job options successfully read in from /home/emoyse/master2/build/x86_64-centos7-gcc8-opt/jobOptions/MuonEventTPCnv/MuonEventTPCnv_test.txt
-ApplicationMgr    SUCCESS 
-====================================================================================================================================
-                                                   Welcome to ApplicationMgr (GaudiCoreSvc v34r0)
-                                          running on pcumass4 on Wed Nov  4 09:35:16 2020
-====================================================================================================================================
-ApplicationMgr       INFO Successfully loaded modules : StoreGate, CLIDComps
 ApplicationMgr       INFO Application Manager Configured successfully
-ClassIDSvc           INFO  getRegistryEntries: read 12360 CLIDRegistry entries for module ALL
 EventLoopMgr      WARNING Unable to locate service "EventSelector" 
 EventLoopMgr      WARNING No events will be processed from external input.
 ApplicationMgr       INFO Application Manager Initialized successfully
@@ -22,22 +10,7 @@ ApplicationMgr Ready
  Volume pmdum2 not found: returning 0
  Volume pmdum3 not found: returning 0
  INFO Initialize from dictionary
- DEBUG (Re)initialize
  AtlasDetectorID::initialize_from_dictionary - OK 
- DEBUG decode index and bit fields for each level: 
- DEBUG indet          decode 1 vals 2,4,5,7,10,11,12,13 mask/zero mask/shift/bits/offset 7   1fffffffffffffff 61 3  0  indexes 0 0 1 2 0 3 0 0 4 5 6 7 mode  enumerated  
- DEBUG pixel          decode 1 vals 1:3             mask/zero mask/shift/bits/offset 3   e7ffffffffffffff 59 2  3  indexes                     mode  both_bounded  
- DEBUG bec            decode 1 vals -2,0,2          mask/zero mask/shift/bits/offset 3   f9ffffffffffffff 57 2  5  indexes 0 0 1 0 2           mode  enumerated  
- DEBUG bec_shift      decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
- DEBUG lay_disk       decode 0 vals 0:2             mask/zero mask/shift/bits/offset 3   fe7fffffffffffff 55 2  7  indexes                     mode  both_bounded  
- DEBUG lay_disk_shift decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
- DEBUG phi_mod        decode 0 vals 0:51            mask/zero mask/shift/bits/offset 3f  ff81ffffffffffff 49 6  9  indexes                     mode  both_bounded  
- DEBUG phi_mod_shift  decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
- DEBUG eta_mod        decode 1 vals -6:6            mask/zero mask/shift/bits/offset f   fffe1fffffffffff 45 4  15 indexes                     mode  both_bounded  
- DEBUG eta_mod_shift  decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
- DEBUG phi_index      decode 0 vals 0:327           mask/zero mask/shift/bits/offset 1ff ffffe00fffffffff 36 9  19 indexes                     mode  both_bounded  
- DEBUG eta_index      decode 0 vals 0:191           mask/zero mask/shift/bits/offset ff  fffffff00fffffff 28 8  28 indexes                     mode  both_bounded  
- DEBUG bec_eta_mod    decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
 indet 1 2,4,5,7,10,11,12,13 7 1fffffffffffffff 61 3 0 min/max 2 13 values  2 4 5 7 10 11 12 13 indexes  0 0 1 2 0 3 0 0 4 5 6 7 indices  8 prev  0 next  0 mode  enumerated  cont mode  none  
 pixel 1 1:3 3 e7ffffffffffffff 59 2 3 min/max 1 3 values  indexes  indices  3 prev  0 next  0 mode  both_bounded  cont mode  none  
 bec 1 -2,0,2 3 f9ffffffffffffff 57 2 5 min/max -2 2 values  -2 0 2 indexes  0 0 1 0 2 indices  3 prev  0 next  0 mode  enumerated  cont mode  none  
@@ -60,85 +33,28 @@ phi_module    4
 eta_module    5
 phi_index     6
 eta_index     7
- DEBUG PixelID::initialize_from_dict Set barrel field values: 0
- DEBUG PixelID::initialize_from_dict Set dbm field values: -999,999
- DEBUG PixelID::initialize_from_dict Found field values: InDet/Pixel 2/1
- DEBUG PixelID::init_neighbors 
- DEBUG PixelID::initialize_from_dict 
- DEBUG Wafer range -> 2/1/0/0/0:21/-6:6 | 2/1/0/1/0:37/-6:6 | 2/1/0/2/0:51/-6:6 | 2/1/-2,2/0:2/0:47/0
- DEBUG Pixel range -> 2/1/0/0/0:21/-6:6/0:327/0:191 | 2/1/0/1/0:37/-6:6/0:327/0:143 | 2/1/0/2/0:51/-6:6/0:327/0:143 | 2/1/-2,2/0:2/0:47/0/0:327/0:143
 INFO SCT_ID::initialize_from_dictionary 
  AtlasDetectorID::initialize_from_dictionary - OK 
 INFO Initialize from dictionary cout 0
- DEBUG (Re)initialize
  AtlasDetectorID::initialize_from_dictionary - OK 
- DEBUG decode index and bit fields for each level: 
- DEBUG indet     decode 1 vals 2,4,5,7,10,11,12,13 mask/zero mask/shift/bits/offset 7   1fffffffffffffff 61 3  0  indexes 0 0 1 2 0 3 0 0 4 5 6 7 mode  enumerated  
- DEBUG trt       decode 1 vals 1:3             mask/zero mask/shift/bits/offset 3   e7ffffffffffffff 59 2  3  indexes                     mode  both_bounded  
- DEBUG bec       decode 1 vals -2,-1,1,2       mask/zero mask/shift/bits/offset 3   f9ffffffffffffff 57 2  5  indexes 0 1 0 2 3           mode  enumerated  
- DEBUG phi_mod   decode 0 vals 0:31            mask/zero mask/shift/bits/offset 1f  fe0fffffffffffff 52 5  7  indexes                     mode  both_bounded  
- DEBUG lay_wheel decode 0 vals 0:17            mask/zero mask/shift/bits/offset 1f  fff07fffffffffff 47 5  12 indexes                     mode  both_bounded  
- DEBUG str_lay   decode 0 vals 0:29            mask/zero mask/shift/bits/offset 1f  ffff83ffffffffff 42 5  17 indexes                     mode  both_bounded  
- DEBUG straw     decode 0 vals 0:28            mask/zero mask/shift/bits/offset 1f  fffffc1fffffffff 37 5  22 indexes                     mode  both_bounded  
- DEBUG  TRT_ID::initialize_from_dict Set barrel field values: -1,1
- DEBUG  TRT_ID::initialize_from_dict Found field values: InDet/TRT 2/3
- DEBUG Module range -> 2/3/-1,1/0:31/0 | 2/3/-1,1/0:31/1 | 2/3/-1,1/0:31/2 | 2/3/-2,2/0:31/0:5 | 2/3/-2,2/0:31/6:13 | 2/3/-2,2/0:31/14:17
- DEBUG TRT_ID::init_hashes  module hash max 1344
- DEBUG TRT_ID::init_hashes  straw layer hash max 19008
- DEBUG TRT_ID::init_hashes  straw hash max 424576
- DEBUG  TRT_ID::initialize_from_dict 
- DEBUG Module range -> 2/3/-1,1/0:31/0 | 2/3/-1,1/0:31/1 | 2/3/-1,1/0:31/2 | 2/3/-2,2/0:31/0:5 | 2/3/-2,2/0:31/6:13 | 2/3/-2,2/0:31/14:17
- DEBUG Straw layer range -> 2/3/-1,1/0:31/0/0 | 2/3/-1,1/0:31/0/1:4 | 2/3/-1,1/0:31/0/5:9 | 2/3/-1,1/0:31/0/10:14 | 2/3/-1,1/0:31/0/15:17 | 2/3/-1,1/0:31/0/18 | 2/3/-1,1/0:31/1/0 | 2/3/-1,1/0:31/1/1:5 | 2/3/-1,1/0:31/1/6:10 | 2/3/-1,1/0:31/1/11:15 | 2/3/-1,1/0:31/1/16:20 | 2/3/-1,1/0:31/1/21:22 | 2/3/-1,1/0:31/1/23 | 2/3/-1,1/0:31/2/0 | 2/3/-1,1/0:31/2/1:4 | 2/3/-1,1/0:31/2/5:9 | 2/3/-1,1/0:31/2/10:14 | 2/3/-1,1/0:31/2/15:19 | 2/3/-1,1/0:31/2/20:24 | 2/3/-1,1/0:31/2/25:28 | 2/3/-1,1/0:31/2/29 | 2/3/-2,2/0:31/0:5/0:15 | 2/3/-2,2/0:31/6:13/0:7 | 2/3/-2,2/0:31/14:17/0:15
- DEBUG Straw range -> 2/3/-1,1/0:31/0/0/0:14 | 2/3/-1,1/0:31/0/1:4/0:15 | 2/3/-1,1/0:31/0/5:9/0:16 | 2/3/-1,1/0:31/0/10:14/0:17 | 2/3/-1,1/0:31/0/15:17/0:18 | 2/3/-1,1/0:31/0/18/0:17 | 2/3/-1,1/0:31/1/0/0:18 | 2/3/-1,1/0:31/1/1:5/0:19 | 2/3/-1,1/0:31/1/6:10/0:20 | 2/3/-1,1/0:31/1/11:15/0:21 | 2/3/-1,1/0:31/1/16:20/0:22 | 2/3/-1,1/0:31/1/21:22/0:23 | 2/3/-1,1/0:31/1/23/0:22 | 2/3/-1,1/0:31/2/0/0:22 | 2/3/-1,1/0:31/2/1:4/0:23 | 2/3/-1,1/0:31/2/5:9/0:24 | 2/3/-1,1/0:31/2/10:14/0:25 | 2/3/-1,1/0:31/2/15:19/0:26 | 2/3/-1,1/0:31/2/20:24/0:27 | 2/3/-1,1/0:31/2/25:28/0:28 | 2/3/-1,1/0:31/2/29/0:27 | 2/3/-2,2/0:31/0:5/0:15/0:23 | 2/3/-2,2/0:31/6:13/0:7/0:23 | 2/3/-2,2/0:31/14:17/0:15/0:17
- AtlasDetectorID::initialize_from_dictionary - OK 
-CscIdHelper          INFO MultiRange built successfully to Technology: MultiRange size is 218
-CscIdHelper          INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 257
-CscIdHelper          INFO MultiRange built successfully to cscStrip: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 CscIdHelper          INFO Initializing CSC hash indices ... 
-CscIdHelper          INFO The element hash max is 32
-CscIdHelper          INFO The detector element hash max is 64
 CscIdHelper          INFO The channel hash max is 61440
 CscIdHelper          INFO Initializing CSC hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-RpcIdHelper          INFO MultiRange built successfully to doubletR: MultiRange size is 261
-RpcIdHelper          INFO MultiRange built successfully to detectorElement: DetectorElement MultiRange size is 261
-RpcIdHelper          INFO MultiRange built successfully to rpcStrip: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 RpcIdHelper          INFO Initializing RPC hash indices ... 
-RpcIdHelper          INFO The element hash max is 600
-RpcIdHelper          INFO The detector element hash max is 1122
 RpcIdHelper          INFO Initializing RPC hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-TgcIdHelper          INFO MultiRange built successfully to Technology: MultiRange size is 218
-TgcIdHelper          INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 218
-TgcIdHelper          INFO MultiRange built successfully to channel: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 TgcIdHelper          INFO Initializing TGC hash indices ... 
-TgcIdHelper          INFO The element hash max is 1578
-TgcIdHelper          INFO The detector element hash max is 1578
 TgcIdHelper          INFO Initializing TGC hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-MdtIdHelper          INFO MultiRange built successfully to Technology: MultiRange size is 218
-MdtIdHelper          INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 261
-MdtIdHelper          INFO MultiRange built successfully to tube: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 MdtIdHelper          INFO Initializing MDT hash indices ... 
-MdtIdHelper          INFO The element hash max is 1188
-MdtIdHelper          INFO The detector element hash max is 2328
 MdtIdHelper          INFO Initializing MDT hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-sTgcIdHelper         INFO MultiRange built successfully to Technology: MultiRange size is 218
-sTgcIdHelper         INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 253
-sTgcIdHelper         INFO MultiRange built successfully to channel: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 sTgcIdHelper         INFO Initializing sTGC hash indices ... 
-sTgcIdHelper         INFO The element hash max is 96
-sTgcIdHelper         INFO The detector element hash max is 192
 sTgcIdHelper         INFO Initializing sTGC hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-MmIdHelper           INFO MultiRange built successfully to Technology: MultiRange size is 218
-MmIdHelper           INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 257
-MmIdHelper           INFO MultiRange built successfully to channel: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 MmIdHelper           INFO Initializing MicroMegas hash indices ... 
-MmIdHelper           INFO The element hash max is 64
-MmIdHelper           INFO The detector element hash max is 128
 MmIdHelper           INFO Initializing MicroMegas hash indices for finding neighbors ... 
  AtlasDetectorID::initialize_from_dictionary - OK 
-ClassIDSvc           INFO  getRegistryEntries: read 379 CLIDRegistry entries for module ALL
 test1
diff --git a/MuonSpectrometer/MuonCnv/MuonEventTPCnv/share/sTgcPrepDataContainerCnv_p1_test.ref b/MuonSpectrometer/MuonCnv/MuonEventTPCnv/share/sTgcPrepDataContainerCnv_p1_test.ref
index 27d72f519f66cf0fcc18f9474536686e04d67d17..eafa59f97879b9e447a9cdea019dc6bb7238a360 100644
--- a/MuonSpectrometer/MuonCnv/MuonEventTPCnv/share/sTgcPrepDataContainerCnv_p1_test.ref
+++ b/MuonSpectrometer/MuonCnv/MuonEventTPCnv/share/sTgcPrepDataContainerCnv_p1_test.ref
@@ -1,18 +1,6 @@
 
 
-Initializing Gaudi ApplicationMgr using job opts /home/emoyse/master2/build/x86_64-centos7-gcc8-opt/jobOptions/MuonEventTPCnv/MuonEventTPCnv_test.txt
-JobOptionsSvc        INFO # =======> /home/emoyse/master2/build/x86_64-centos7-gcc8-opt/jobOptions/MuonEventTPCnv/MuonEventTPCnv_test.txt
-JobOptionsSvc        INFO # (1,1): ApplicationMgr.Dlls += ["StoreGate", "CLIDComps"]
-JobOptionsSvc        INFO # (2,1): ApplicationMgr.ExtSvc += ["StoreGateSvc", "StoreGateSvc/DetectorStore", "StoreGateSvc/ConditionStore", "Athena::RCUSvc"]
-JobOptionsSvc        INFO Job options successfully read in from /home/emoyse/master2/build/x86_64-centos7-gcc8-opt/jobOptions/MuonEventTPCnv/MuonEventTPCnv_test.txt
-ApplicationMgr    SUCCESS 
-====================================================================================================================================
-                                                   Welcome to ApplicationMgr (GaudiCoreSvc v34r0)
-                                          running on pcumass4 on Wed Nov  4 09:35:18 2020
-====================================================================================================================================
-ApplicationMgr       INFO Successfully loaded modules : StoreGate, CLIDComps
 ApplicationMgr       INFO Application Manager Configured successfully
-ClassIDSvc           INFO  getRegistryEntries: read 12360 CLIDRegistry entries for module ALL
 EventLoopMgr      WARNING Unable to locate service "EventSelector" 
 EventLoopMgr      WARNING No events will be processed from external input.
 ApplicationMgr       INFO Application Manager Initialized successfully
@@ -22,22 +10,7 @@ ApplicationMgr Ready
  Volume pmdum2 not found: returning 0
  Volume pmdum3 not found: returning 0
  INFO Initialize from dictionary
- DEBUG (Re)initialize
  AtlasDetectorID::initialize_from_dictionary - OK 
- DEBUG decode index and bit fields for each level: 
- DEBUG indet          decode 1 vals 2,4,5,7,10,11,12,13 mask/zero mask/shift/bits/offset 7   1fffffffffffffff 61 3  0  indexes 0 0 1 2 0 3 0 0 4 5 6 7 mode  enumerated  
- DEBUG pixel          decode 1 vals 1:3             mask/zero mask/shift/bits/offset 3   e7ffffffffffffff 59 2  3  indexes                     mode  both_bounded  
- DEBUG bec            decode 1 vals -2,0,2          mask/zero mask/shift/bits/offset 3   f9ffffffffffffff 57 2  5  indexes 0 0 1 0 2           mode  enumerated  
- DEBUG bec_shift      decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
- DEBUG lay_disk       decode 0 vals 0:2             mask/zero mask/shift/bits/offset 3   fe7fffffffffffff 55 2  7  indexes                     mode  both_bounded  
- DEBUG lay_disk_shift decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
- DEBUG phi_mod        decode 0 vals 0:51            mask/zero mask/shift/bits/offset 3f  ff81ffffffffffff 49 6  9  indexes                     mode  both_bounded  
- DEBUG phi_mod_shift  decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
- DEBUG eta_mod        decode 1 vals -6:6            mask/zero mask/shift/bits/offset f   fffe1fffffffffff 45 4  15 indexes                     mode  both_bounded  
- DEBUG eta_mod_shift  decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
- DEBUG phi_index      decode 0 vals 0:327           mask/zero mask/shift/bits/offset 1ff ffffe00fffffffff 36 9  19 indexes                     mode  both_bounded  
- DEBUG eta_index      decode 0 vals 0:191           mask/zero mask/shift/bits/offset ff  fffffff00fffffff 28 8  28 indexes                     mode  both_bounded  
- DEBUG bec_eta_mod    decode 0 vals 0               mask/zero mask/shift/bits/offset 0   0 0  0  0  indexes                     mode  both_bounded  
 indet 1 2,4,5,7,10,11,12,13 7 1fffffffffffffff 61 3 0 min/max 2 13 values  2 4 5 7 10 11 12 13 indexes  0 0 1 2 0 3 0 0 4 5 6 7 indices  8 prev  0 next  0 mode  enumerated  cont mode  none  
 pixel 1 1:3 3 e7ffffffffffffff 59 2 3 min/max 1 3 values  indexes  indices  3 prev  0 next  0 mode  both_bounded  cont mode  none  
 bec 1 -2,0,2 3 f9ffffffffffffff 57 2 5 min/max -2 2 values  -2 0 2 indexes  0 0 1 0 2 indices  3 prev  0 next  0 mode  enumerated  cont mode  none  
@@ -60,85 +33,28 @@ phi_module    4
 eta_module    5
 phi_index     6
 eta_index     7
- DEBUG PixelID::initialize_from_dict Set barrel field values: 0
- DEBUG PixelID::initialize_from_dict Set dbm field values: -999,999
- DEBUG PixelID::initialize_from_dict Found field values: InDet/Pixel 2/1
- DEBUG PixelID::init_neighbors 
- DEBUG PixelID::initialize_from_dict 
- DEBUG Wafer range -> 2/1/0/0/0:21/-6:6 | 2/1/0/1/0:37/-6:6 | 2/1/0/2/0:51/-6:6 | 2/1/-2,2/0:2/0:47/0
- DEBUG Pixel range -> 2/1/0/0/0:21/-6:6/0:327/0:191 | 2/1/0/1/0:37/-6:6/0:327/0:143 | 2/1/0/2/0:51/-6:6/0:327/0:143 | 2/1/-2,2/0:2/0:47/0/0:327/0:143
 INFO SCT_ID::initialize_from_dictionary 
  AtlasDetectorID::initialize_from_dictionary - OK 
 INFO Initialize from dictionary cout 0
- DEBUG (Re)initialize
  AtlasDetectorID::initialize_from_dictionary - OK 
- DEBUG decode index and bit fields for each level: 
- DEBUG indet     decode 1 vals 2,4,5,7,10,11,12,13 mask/zero mask/shift/bits/offset 7   1fffffffffffffff 61 3  0  indexes 0 0 1 2 0 3 0 0 4 5 6 7 mode  enumerated  
- DEBUG trt       decode 1 vals 1:3             mask/zero mask/shift/bits/offset 3   e7ffffffffffffff 59 2  3  indexes                     mode  both_bounded  
- DEBUG bec       decode 1 vals -2,-1,1,2       mask/zero mask/shift/bits/offset 3   f9ffffffffffffff 57 2  5  indexes 0 1 0 2 3           mode  enumerated  
- DEBUG phi_mod   decode 0 vals 0:31            mask/zero mask/shift/bits/offset 1f  fe0fffffffffffff 52 5  7  indexes                     mode  both_bounded  
- DEBUG lay_wheel decode 0 vals 0:17            mask/zero mask/shift/bits/offset 1f  fff07fffffffffff 47 5  12 indexes                     mode  both_bounded  
- DEBUG str_lay   decode 0 vals 0:29            mask/zero mask/shift/bits/offset 1f  ffff83ffffffffff 42 5  17 indexes                     mode  both_bounded  
- DEBUG straw     decode 0 vals 0:28            mask/zero mask/shift/bits/offset 1f  fffffc1fffffffff 37 5  22 indexes                     mode  both_bounded  
- DEBUG  TRT_ID::initialize_from_dict Set barrel field values: -1,1
- DEBUG  TRT_ID::initialize_from_dict Found field values: InDet/TRT 2/3
- DEBUG Module range -> 2/3/-1,1/0:31/0 | 2/3/-1,1/0:31/1 | 2/3/-1,1/0:31/2 | 2/3/-2,2/0:31/0:5 | 2/3/-2,2/0:31/6:13 | 2/3/-2,2/0:31/14:17
- DEBUG TRT_ID::init_hashes  module hash max 1344
- DEBUG TRT_ID::init_hashes  straw layer hash max 19008
- DEBUG TRT_ID::init_hashes  straw hash max 424576
- DEBUG  TRT_ID::initialize_from_dict 
- DEBUG Module range -> 2/3/-1,1/0:31/0 | 2/3/-1,1/0:31/1 | 2/3/-1,1/0:31/2 | 2/3/-2,2/0:31/0:5 | 2/3/-2,2/0:31/6:13 | 2/3/-2,2/0:31/14:17
- DEBUG Straw layer range -> 2/3/-1,1/0:31/0/0 | 2/3/-1,1/0:31/0/1:4 | 2/3/-1,1/0:31/0/5:9 | 2/3/-1,1/0:31/0/10:14 | 2/3/-1,1/0:31/0/15:17 | 2/3/-1,1/0:31/0/18 | 2/3/-1,1/0:31/1/0 | 2/3/-1,1/0:31/1/1:5 | 2/3/-1,1/0:31/1/6:10 | 2/3/-1,1/0:31/1/11:15 | 2/3/-1,1/0:31/1/16:20 | 2/3/-1,1/0:31/1/21:22 | 2/3/-1,1/0:31/1/23 | 2/3/-1,1/0:31/2/0 | 2/3/-1,1/0:31/2/1:4 | 2/3/-1,1/0:31/2/5:9 | 2/3/-1,1/0:31/2/10:14 | 2/3/-1,1/0:31/2/15:19 | 2/3/-1,1/0:31/2/20:24 | 2/3/-1,1/0:31/2/25:28 | 2/3/-1,1/0:31/2/29 | 2/3/-2,2/0:31/0:5/0:15 | 2/3/-2,2/0:31/6:13/0:7 | 2/3/-2,2/0:31/14:17/0:15
- DEBUG Straw range -> 2/3/-1,1/0:31/0/0/0:14 | 2/3/-1,1/0:31/0/1:4/0:15 | 2/3/-1,1/0:31/0/5:9/0:16 | 2/3/-1,1/0:31/0/10:14/0:17 | 2/3/-1,1/0:31/0/15:17/0:18 | 2/3/-1,1/0:31/0/18/0:17 | 2/3/-1,1/0:31/1/0/0:18 | 2/3/-1,1/0:31/1/1:5/0:19 | 2/3/-1,1/0:31/1/6:10/0:20 | 2/3/-1,1/0:31/1/11:15/0:21 | 2/3/-1,1/0:31/1/16:20/0:22 | 2/3/-1,1/0:31/1/21:22/0:23 | 2/3/-1,1/0:31/1/23/0:22 | 2/3/-1,1/0:31/2/0/0:22 | 2/3/-1,1/0:31/2/1:4/0:23 | 2/3/-1,1/0:31/2/5:9/0:24 | 2/3/-1,1/0:31/2/10:14/0:25 | 2/3/-1,1/0:31/2/15:19/0:26 | 2/3/-1,1/0:31/2/20:24/0:27 | 2/3/-1,1/0:31/2/25:28/0:28 | 2/3/-1,1/0:31/2/29/0:27 | 2/3/-2,2/0:31/0:5/0:15/0:23 | 2/3/-2,2/0:31/6:13/0:7/0:23 | 2/3/-2,2/0:31/14:17/0:15/0:17
- AtlasDetectorID::initialize_from_dictionary - OK 
-CscIdHelper          INFO MultiRange built successfully to Technology: MultiRange size is 218
-CscIdHelper          INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 257
-CscIdHelper          INFO MultiRange built successfully to cscStrip: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 CscIdHelper          INFO Initializing CSC hash indices ... 
-CscIdHelper          INFO The element hash max is 32
-CscIdHelper          INFO The detector element hash max is 64
 CscIdHelper          INFO The channel hash max is 61440
 CscIdHelper          INFO Initializing CSC hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-RpcIdHelper          INFO MultiRange built successfully to doubletR: MultiRange size is 261
-RpcIdHelper          INFO MultiRange built successfully to detectorElement: DetectorElement MultiRange size is 261
-RpcIdHelper          INFO MultiRange built successfully to rpcStrip: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 RpcIdHelper          INFO Initializing RPC hash indices ... 
-RpcIdHelper          INFO The element hash max is 600
-RpcIdHelper          INFO The detector element hash max is 1122
 RpcIdHelper          INFO Initializing RPC hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-TgcIdHelper          INFO MultiRange built successfully to Technology: MultiRange size is 218
-TgcIdHelper          INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 218
-TgcIdHelper          INFO MultiRange built successfully to channel: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 TgcIdHelper          INFO Initializing TGC hash indices ... 
-TgcIdHelper          INFO The element hash max is 1578
-TgcIdHelper          INFO The detector element hash max is 1578
 TgcIdHelper          INFO Initializing TGC hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-MdtIdHelper          INFO MultiRange built successfully to Technology: MultiRange size is 218
-MdtIdHelper          INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 261
-MdtIdHelper          INFO MultiRange built successfully to tube: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 MdtIdHelper          INFO Initializing MDT hash indices ... 
-MdtIdHelper          INFO The element hash max is 1188
-MdtIdHelper          INFO The detector element hash max is 2328
 MdtIdHelper          INFO Initializing MDT hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-sTgcIdHelper         INFO MultiRange built successfully to Technology: MultiRange size is 218
-sTgcIdHelper         INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 253
-sTgcIdHelper         INFO MultiRange built successfully to channel: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 sTgcIdHelper         INFO Initializing sTGC hash indices ... 
-sTgcIdHelper         INFO The element hash max is 96
-sTgcIdHelper         INFO The detector element hash max is 192
 sTgcIdHelper         INFO Initializing sTGC hash indices for finding neighbors ... 
- AtlasDetectorID::initialize_from_dictionary - OK 
-MmIdHelper           INFO MultiRange built successfully to Technology: MultiRange size is 218
-MmIdHelper           INFO MultiRange built successfully to detector element: Multilayer MultiRange size is 257
-MmIdHelper           INFO MultiRange built successfully to channel: MultiRange size is 261
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 MmIdHelper           INFO Initializing MicroMegas hash indices ... 
-MmIdHelper           INFO The element hash max is 64
-MmIdHelper           INFO The detector element hash max is 128
 MmIdHelper           INFO Initializing MicroMegas hash indices for finding neighbors ... 
  AtlasDetectorID::initialize_from_dictionary - OK 
-ClassIDSvc           INFO  getRegistryEntries: read 379 CLIDRegistry entries for module ALL
 test1
diff --git a/MuonSpectrometer/MuonIdHelpers/MuonIdHelpers/CscIdHelper.h b/MuonSpectrometer/MuonIdHelpers/MuonIdHelpers/CscIdHelper.h
index 904c884a909db1a404925c498897a23e3785050f..cc98712eabfea3d0893c052f1768ec54cc2d2e7f 100644
--- a/MuonSpectrometer/MuonIdHelpers/MuonIdHelpers/CscIdHelper.h
+++ b/MuonSpectrometer/MuonIdHelpers/MuonIdHelpers/CscIdHelper.h
@@ -59,7 +59,7 @@ class CscIdHelper : public MuonIdHelper
 
   // Destructor
 
-  virtual ~CscIdHelper();
+  virtual ~CscIdHelper()=default;
 
   ///////////// compact identifier stuff begins ////////////////////////////////////// 
 
diff --git a/MuonSpectrometer/MuonIdHelpers/MuonIdHelpers/MuonIdHelper.h b/MuonSpectrometer/MuonIdHelpers/MuonIdHelpers/MuonIdHelper.h
index de81c50f2de418230c095c05f61b55a1248da8b4..011841697370c0bc2c20f10eaeb5e9b19262eac4 100644
--- a/MuonSpectrometer/MuonIdHelpers/MuonIdHelpers/MuonIdHelper.h
+++ b/MuonSpectrometer/MuonIdHelpers/MuonIdHelpers/MuonIdHelper.h
@@ -2,19 +2,9 @@
   Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration
 */
 
-// ******************************************************************************
-// ATLAS Muon Identifier Helpers Package
-// -----------------------------------------
-// ******************************************************************************
-
-//<doc><file> $Id: MuonIdHelper.h,v 1.31 2007-11-25 18:19:00 ketevi Exp $
-//<version>   $Name: not supported by cvs2svn $
-
 #ifndef DETECTORDESCRIPTION_MUONIDHELPER_H
 #define DETECTORDESCRIPTION_MUONIDHELPER_H
 
-// Includes
-
 #include "AtlasDetDescr/AtlasDetectorID.h"
 #include "Identifier/IdentifierHash.h"
 #include "IdDict/IdDictFieldImplementation.h"
@@ -30,7 +20,6 @@
 #include <stdexcept>
 
 class IdDictDictionary;
-class IMessageSvc;
 
 // ******************************************************************************
 // class MuonIdHelper
@@ -98,7 +87,7 @@ class MuonIdHelper : public AtlasDetectorID
 
   // Destructor
 
-  virtual ~MuonIdHelper();
+  virtual ~MuonIdHelper()=default;
 
   // Build identifier
 
diff --git a/MuonSpectrometer/MuonIdHelpers/MuonIdHelpers/TgcIdHelper.h b/MuonSpectrometer/MuonIdHelpers/MuonIdHelpers/TgcIdHelper.h
index d01841da25f326360e9b3dc2f0ad18371e2097b1..94934bcca0bf961c1debdbe0c68b91ef0f5f80c8 100644
--- a/MuonSpectrometer/MuonIdHelpers/MuonIdHelpers/TgcIdHelper.h
+++ b/MuonSpectrometer/MuonIdHelpers/MuonIdHelpers/TgcIdHelper.h
@@ -2,19 +2,9 @@
   Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration
 */
 
-// ******************************************************************************
-// ATLAS Muon Identifier Helpers Package
-// -----------------------------------------
-// ******************************************************************************
-
-//<doc><file> $Id: TgcIdHelper.h,v 1.32 2009-01-20 22:44:13 kblack Exp $
-//<version>   $Name: not supported by cvs2svn $
-
 #ifndef MUONIDHELPERS_TGCIDHELPER_H
 #define MUONIDHELPERS_TGCIDHELPER_H
 
-// Includes
-class MsgStream;
 #include "MuonIdHelpers/MuonIdHelper.h"
 
 // ******************************************************************************
@@ -67,7 +57,7 @@ class TgcIdHelper : public MuonIdHelper
 
   // Destructor
 
-  virtual ~TgcIdHelper();
+  virtual ~TgcIdHelper()=default;
 
   ///////////// compact identifier stuff begins ////////////////////////////////////// 
 
diff --git a/MuonSpectrometer/MuonIdHelpers/share/muon_id_test.ref b/MuonSpectrometer/MuonIdHelpers/share/muon_id_test.ref
index b004cb36366fd7eed5713a77250cccca51968b1a..a4a61d6d926c4fb1b3606b3c4ca383e3f6bca296 100644
--- a/MuonSpectrometer/MuonIdHelpers/share/muon_id_test.ref
+++ b/MuonSpectrometer/MuonIdHelpers/share/muon_id_test.ref
@@ -1,11 +1,11 @@
 =========>  checking dictionnary file=IdDictMuonSpectrometer_R.03.xml
 MdtIdHelper         DEBUG (Re)initialize
-AtlasDetectorIDHelper::initialize_from_dictionary - Warning: unable to find mm region index: group, region size 0 0
-AtlasDetectorIDHelper::initialize_from_dictionary - Warning: unable to find stgc region index: group, region size 0 0
-AtlasDetectorID::initLevelsFromDict - there are no sTGC entries in the dictionary! 
-AtlasDetectorID::initLevelsFromDict - there are no MM entries in the dictionary! 
-AtlasDetectorID      DEBUG Could not get value for label 'no_side' of field 'DetZside' in dictionary Calorimeter
- AtlasDetectorID::initialize_from_dictionary - OK 
+AtlasDetectorID...  DEBUG initialize_from_dictionary - unable to find mm region index: group, region size 0 0
+AtlasDetectorID...  DEBUG initialize_from_dictionary - unable to find stgc region index: group, region size 0 0
+AtlasDetectorID     DEBUG initLevelsFromDict - there are no sTGC entries in the dictionary! 
+AtlasDetectorID     DEBUG initLevelsFromDict - there are no MM entries in the dictionary! 
+AtlasDetectorID     DEBUG initLevelsFromDict -  Could not get value for label 'no_side' of field 'DetZside' in dictionary 
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 MdtIdHelper         DEBUG  MDT decode index and bit fields for each level: 
 MdtIdHelper         DEBUG  muon        decode 1 vals 2,4,5,7,10,11,12,13 mask/zero mask/shift/bits/offset 7   1fffffffffffffff 61 3  0  indexes 0 0 1 2 0 3 0 0 4 5 6 7 mode  enumerated  
 MdtIdHelper         DEBUG  station     decode 1 vals 0,1,2,3,4,5,6,7,8,9,10,13,14,15,17,18,20,21,41,42,43,44,45,46,47,48,49,50,51,52,53,54 mask/zero mask/shift/bits/offset 1f  e0ffffffffffffff 56 5  3  indexes 0 1 2 3 4 5 6 7 8 9 10 0 0 11 12 13 0 14 15 0 16 17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18 19 20 21 22 23 24 25 26 27 28 29 30 31 mode  enumerated  
@@ -442,12 +442,12 @@ MdtIdHelper          INFO Initializing MDT hash indices for finding neighbors ..
 MdtIdHelper       VERBOSE MuonIdHelper::init_neighbors 
 MdtIdHelper         DEBUG  Maximum number of MDT tubes is 78
 RpcIdHelper         DEBUG (Re)initialize
-AtlasDetectorIDHelper::initialize_from_dictionary - Warning: unable to find mm region index: group, region size 0 0
-AtlasDetectorIDHelper::initialize_from_dictionary - Warning: unable to find stgc region index: group, region size 0 0
-AtlasDetectorID::initLevelsFromDict - there are no sTGC entries in the dictionary! 
-AtlasDetectorID::initLevelsFromDict - there are no MM entries in the dictionary! 
-AtlasDetectorID      DEBUG Could not get value for label 'no_side' of field 'DetZside' in dictionary Calorimeter
- AtlasDetectorID::initialize_from_dictionary - OK 
+AtlasDetectorID...  DEBUG initialize_from_dictionary - unable to find mm region index: group, region size 0 0
+AtlasDetectorID...  DEBUG initialize_from_dictionary - unable to find stgc region index: group, region size 0 0
+AtlasDetectorID     DEBUG initLevelsFromDict - there are no sTGC entries in the dictionary! 
+AtlasDetectorID     DEBUG initLevelsFromDict - there are no MM entries in the dictionary! 
+AtlasDetectorID     DEBUG initLevelsFromDict -  Could not get value for label 'no_side' of field 'DetZside' in dictionary 
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 RpcIdHelper         DEBUG  RPC decode index and bit fields for each level: 
 RpcIdHelper         DEBUG  muon        decode 1 vals 2,4,5,7,10,11,12,13 mask/zero mask/shift/bits/offset 7   1fffffffffffffff 61 3  0  indexes 0 0 1 2 0 3 0 0 4 5 6 7 mode  enumerated  
 RpcIdHelper         DEBUG  station     decode 1 vals 0,1,2,3,4,5,6,7,8,9,10,13,14,15,17,18,20,21,41,42,43,44,45,46,47,48,49,50,51,52,53,54 mask/zero mask/shift/bits/offset 1f  e0ffffffffffffff 56 5  3  indexes 0 1 2 3 4 5 6 7 8 9 10 0 0 11 12 13 0 14 15 0 16 17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18 19 20 21 22 23 24 25 26 27 28 29 30 31 mode  enumerated  
@@ -629,1043 +629,17 @@ RpcIdHelper         DEBUG  full module range size is 54
 RpcIdHelper         DEBUG  full channel range size is 54
 RpcIdHelper          INFO Initializing RPC hash indices ... 
 RpcIdHelper          INFO The element hash max is 600
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6248880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6248980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6248c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6248d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6249880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6249980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6249c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6249d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6238880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6238c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6239880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6239980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6239c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6239d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x624a880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x624a980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x624ac80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x624ad80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x624e880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x624e980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x624ec80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x624ed80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x623a880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x623a980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x623ac80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x623ad80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x623e880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x623e980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x623ec80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x623ed80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x624b880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x624bc80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x624c880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x624cc80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x623b880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x623bc80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x623c880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x623cc80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x623d880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x623dc80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x623f880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x623fc80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x624d880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x624dc80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x624f880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x624fc80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6230880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6230980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6230c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6230d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6231880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6231980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6231c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6231d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6232880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6232980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6232c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6232d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6233880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6233980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6233c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6233d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6234880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6234980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6234c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6234d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6235880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6235980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6235c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6235d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6236880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6236980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6236c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6236d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6237880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6237980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6237c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6237d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6250880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6250980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6250c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6250d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6251880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6251980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6251c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6251d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6252880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6252980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6252c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6252d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6253880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6253980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6253c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6253d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6254880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6254980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6254c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6254d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6255880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6255980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6255c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6255d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6256880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6256980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6256c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6256d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6257880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6257980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6257c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6257d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6228880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6228980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6228c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6228d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6229880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6229980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6229c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6229d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x622a880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x622a980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x622ac80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x622ad80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x622b880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x622b980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x622bc80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x622bd80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x622c880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x622c980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x622cc80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x622cd80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x622d880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x622d980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x622dc80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x622dd80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x622e880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x622e980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x622ec80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x622ed80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x622f880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x622f980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x622fc80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x622fd80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6258880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6258980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6258c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6258d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6259880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6259980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6259c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6259d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x625a880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x625a980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x625ac80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x625ad80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x625b880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x625b980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x625bc80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x625bd80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x625c880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x625c980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x625cc80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x625cd80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x625d880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x625d980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x625dc80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x625dd80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x625e880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x625e980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x625ec80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x625ed80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x625f880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x625f980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x625fc80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x625fd80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6220880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6220c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6221880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6221c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6222880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6222c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6223880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6223c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6224880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6224c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6225880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6225c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6227880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6227c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6260880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6260c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6261880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6261c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6262880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6262c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6263880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6263c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6264880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6264c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6265880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6265c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6267880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6267c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6226880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6226c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6266880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6266c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6218880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6218c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6219880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6219c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x621a880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x621ac80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x621b880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x621bc80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x621c880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x621cc80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x621d880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x621dc80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x621f880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x621fc80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6268880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6268c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6269880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6269c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x626a880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x626ac80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x626b880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x626bc80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x626c880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x626cc80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x626d880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x626dc80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x626f880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x626fc80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x621e880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x621e980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x621ec80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x621ed80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x626e880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x626e980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x626ec80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x626ed80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6210880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6210980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6210c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6210d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6211880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6211980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6211c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6211d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6212880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6212980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6212c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6212d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6213880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6213980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6213c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6213d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6214880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6214980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6214c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6214d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6215880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6215980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6215c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6215d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6217880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6217980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6217c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6217d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6270880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6270980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6270c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6270d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6271880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6271980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6271c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6271d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6272880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6272980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6272c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6272d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6273880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6273980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6273c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6273d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6274880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6274980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6274c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6274d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6275880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6275980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6275c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6275d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6277880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6277980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6277c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6277d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6216880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6276880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6208880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6209880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x620a880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x620b880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x620c880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x620d880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x620f880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6278880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6279880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x627a880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x627b880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x627c880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x627d880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x627f880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6338880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6338980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6338c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6338d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6339880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6339980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6339c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6339d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x633a880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x633a980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x633ac80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x633ad80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x633b880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x633b980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x633bc80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x633bd80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x633c880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x633c980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x633cc80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x633cd80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x633f880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x633f980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x633fc80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x633fd80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6348880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6348980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6348c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6348d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6349880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6349980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6349c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6349d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x634a880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x634a980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x634ac80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x634ad80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x634b880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x634b980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x634bc80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x634bd80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x634c880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x634c980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x634cc80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x634cd80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x634f880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x634f980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x634fc80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x634fd80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6330880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6330980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6330c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6330d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6331880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6331980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6331c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6331d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6332880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6332980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6332c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6332d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6333880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6333980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6333c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6333d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6334880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6334980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6334c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6334d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6337880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6337980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6337c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6337d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6350880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6350980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6350c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6350d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6351880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6351980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6351c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6351d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6352880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6352980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6352c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6352d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6353880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6353980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6353c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6353d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6354880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6354980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6354c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6354d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6357880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6357980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6357c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6357d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6328880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6328980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6328c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6328d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6329880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6329980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6329c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6329d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x632a880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x632a980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x632ac80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x632ad80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x632b880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x632b980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x632bc80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x632bd80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x632c880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x632c980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x632cc80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x632cd80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x632f880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x632f980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x632fc80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x632fd80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6358880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6358980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6358c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6358d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6359880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6359980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6359c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6359d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x635a880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x635a980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x635ac80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x635ad80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x635b880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x635b980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x635bc80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x635bd80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x635c880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x635c980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x635cc80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x635cd80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x635f880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x635f980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x635fc80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x635fd80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6320880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6321880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6322880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6323880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6324880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6327880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6360880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6361880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6362880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6363880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6364880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6367880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6320c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6320d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6321c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6321d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6322c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6322d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6323c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6323d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6324c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6324d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6327c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6327d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6360c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6360d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6361c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6361d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6362c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6362d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6363c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6363d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6364c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6364d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6367c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6367d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6318880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6318c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6319880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6319c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x631a880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x631ac80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x631b880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x631bc80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x631c880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x631cc80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x631f880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x631fc80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6368880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6368c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6369880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6369c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x636a880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x636ac80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x636b880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x636bc80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x636c880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x636cc80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x636f880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x636fc80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6310880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6310980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6310c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6310d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6311880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6311980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6311c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6311d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6312880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6312980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6312c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6312d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6313880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6313980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6313c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6313d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6314880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6314980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6314c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6314d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6317880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6317980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6317c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6317d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6370880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6370980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6370c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6370d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6371880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6371980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6371c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6371d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6372880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6372980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6372c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6372d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6373880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6373980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6373c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6373d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6374880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6374980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6374c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6374d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6377880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6377980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6377c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6377d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6448880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6448980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6449880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6449980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x644a880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x644a980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x644b880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x644b980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x644c880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x644c980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x644d880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x644d980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x644e880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x644e980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x644f880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x644f980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6438880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6438980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6439880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6439980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x643a880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x643a980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x643b880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x643b980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x643c880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x643c980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x643d880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x643d980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x643e880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x643e980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x643f880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x643f980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6430880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6430980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6431880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6431980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6432880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6432980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6433880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6433980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6434880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6434980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6435880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6435980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6436880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6436980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6437880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6437980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6450880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6450980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6451880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6451980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6452880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6452980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6453880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6453980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6454880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6454980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6455880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6455980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6456880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6456980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6457880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6457980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6428880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6428980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6429880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6429980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x642a880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x642a980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x642b880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x642b980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x642c880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x642c980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x642d880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x642d980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x642e880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x642e980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x642f880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x642f980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6458880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6458980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6459880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6459980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x645a880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x645a980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x645b880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x645b980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x645c880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x645c980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x645d880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x645d980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x645e880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x645e980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x645f880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x645f980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6420880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6420980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6421880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6421980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6422880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6422980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6423880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6423980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6424880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6424980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6425880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6425980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6426880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6426980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6427880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6427980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6460880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6460980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6461880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6461980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6462880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6462980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6463880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6463980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6464880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6464980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6465880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6465980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6466880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6466980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6467880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6467980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6418880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6418980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6419880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6419980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x641a880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x641a980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x641b880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x641b980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x641c880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x641c980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x641d880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x641d980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x641e880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x641e980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x641f880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x641f980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6468880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6468980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6469880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6469980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x646a880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x646a980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x646b880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x646b980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x646c880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x646c980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x646d880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x646d980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x646e880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x646e980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x646f880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x646f980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6410880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6410980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6411880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6411980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6412880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6412980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6413880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6413980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6414880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6414980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6415880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6415980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6416880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6416980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6417880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6417980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6470880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6470980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6471880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6471980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6472880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6472980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6473880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6473980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6474880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6474980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6475880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6475980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6476880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6476980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6477880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6477980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6538880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6538980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6539880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6539980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x653a880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x653a980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x653b880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x653b980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x653c880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x653c980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x653f880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x653f980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6548880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6548980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6549880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6549980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x654a880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x654a980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x654b880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x654b980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x654c880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x654c980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x654f880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x654f980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6530880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6530980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6531880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6531980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6532880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6532980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6533880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6533980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6534880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6534980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6537880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6537980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6550880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6550980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6551880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6551980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6552880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6552980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6553880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6553980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6554880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6554980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6557880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6557980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6528880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6528980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6529880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6529980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x652a880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x652a980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x652b880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x652b980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x652c880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x652c980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x652f880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x652f980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6558880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6558980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6559880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6559980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x655a880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x655a980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x655b880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x655b980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x655c880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x655c980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x655f880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x655f980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6520880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6520980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6521880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6521980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6522880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6522980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6523880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6523980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6524880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6524980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6527880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6527980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6560880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6560980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6561880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6561980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6562880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6562980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6563880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6563980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6564880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6564980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6567880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6567980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6518880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6518980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6519880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6519980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x651a880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x651a980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x651b880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x651b980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x651c880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x651c980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x651f880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x651f980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6568880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6568980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6569880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6569980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x656a880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x656a980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x656b880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x656b980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x656c880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x656c980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x656f880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x656f980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6510880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6510980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6511880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6511980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6512880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6512980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6513880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6513980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6514880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6514980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6517880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6517980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6570880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6570980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6571880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6571980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6572880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6572980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6573880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6573980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6574880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6574980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6577880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6577980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x683d880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x683d980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x683dc80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x683dd80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x683e880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x683e980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x683ec80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x683ed80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x684d880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x684d980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x684dc80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x684dd80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x684e880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x684e980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x684ec80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x684ed80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6835880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6835980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6835c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6835d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6836880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6836980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6836c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6836d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6855880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6855980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6855c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6855d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6856880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6856980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6856c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6856d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x682d880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x682e880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x685d880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x685e880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x682dc80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x682dd80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x682ec80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x682ed80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x685dc80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x685dd80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x685ec80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x685ed80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x693d880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x693d980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x693e880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x693e980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x694d880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x694d980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x694e880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x694e980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6935880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6935980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6935c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6935d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6936880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6936980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6936c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6936d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6955880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6955980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6955c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6955d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6956880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6956980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6956c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6956d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x692d880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x692d980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x692dc80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x692dd80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x692e880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x692e980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x692ec80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x692ed80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x695d880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x695d980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x695dc80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x695dd80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x695e880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x695e980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x695ec80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x695ed80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6925880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6925c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6926880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6926c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6965880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6965c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6966880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6966c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6a45880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6a46880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6a3d880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6a3e880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6a4d880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6a4e880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6a35880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6a36880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6a55880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6a56880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6a2d880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6a2dc80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6a2e880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6a2ec80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6a5d880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6a5dc80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6a5e880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6a5ec80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6a25880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6a25c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6a26880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6a26c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6a65880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6a65c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6a66880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6a66c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x7e3e880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x7e3ec80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x7e4e880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x7e4ec80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6406880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6486880000000000
 RpcIdHelper          INFO The detector element hash max is 1122
 RpcIdHelper          INFO Initializing RPC hash indices for finding neighbors ... 
 RpcIdHelper       VERBOSE MuonIdHelper::init_neighbors 
 RpcIdHelper         DEBUG  Maximum number of RPC gas gaps is 2
 TgcIdHelper         DEBUG (Re)initialize
-AtlasDetectorIDHelper::initialize_from_dictionary - Warning: unable to find mm region index: group, region size 0 0
-AtlasDetectorIDHelper::initialize_from_dictionary - Warning: unable to find stgc region index: group, region size 0 0
-AtlasDetectorID::initLevelsFromDict - there are no sTGC entries in the dictionary! 
-AtlasDetectorID::initLevelsFromDict - there are no MM entries in the dictionary! 
-AtlasDetectorID      DEBUG Could not get value for label 'no_side' of field 'DetZside' in dictionary Calorimeter
- AtlasDetectorID::initialize_from_dictionary - OK 
+AtlasDetectorID...  DEBUG initialize_from_dictionary - unable to find mm region index: group, region size 0 0
+AtlasDetectorID...  DEBUG initialize_from_dictionary - unable to find stgc region index: group, region size 0 0
+AtlasDetectorID     DEBUG initLevelsFromDict - there are no sTGC entries in the dictionary! 
+AtlasDetectorID     DEBUG initLevelsFromDict - there are no MM entries in the dictionary! 
+AtlasDetectorID     DEBUG initLevelsFromDict -  Could not get value for label 'no_side' of field 'DetZside' in dictionary 
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 TgcIdHelper         DEBUG  TGC decode index and bit fields for each level: 
 TgcIdHelper         DEBUG  muon        decode 1 vals 2,4,5,7,10,11,12,13 mask/zero mask/shift/bits/offset 7   1fffffffffffffff 61 3  0  indexes 0 0 1 2 0 3 0 0 4 5 6 7 mode  enumerated  
 TgcIdHelper         DEBUG  station     decode 1 vals 0,1,2,3,4,5,6,7,8,9,10,13,14,15,17,18,20,21,41,42,43,44,45,46,47,48,49,50,51,52,53,54 mask/zero mask/shift/bits/offset 1f  e0ffffffffffffff 56 5  3  indexes 0 1 2 3 4 5 6 7 8 9 10 0 0 11 12 13 0 14 15 0 16 17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18 19 20 21 22 23 24 25 26 27 28 29 30 31 mode  enumerated  
@@ -1760,12 +734,12 @@ TgcIdHelper          INFO The detector element hash max is 1578
 TgcIdHelper          INFO Initializing TGC hash indices for finding neighbors ... 
 TgcIdHelper       VERBOSE MuonIdHelper::init_neighbors 
 CscIdHelper         DEBUG (Re)initialize
-AtlasDetectorIDHelper::initialize_from_dictionary - Warning: unable to find mm region index: group, region size 0 0
-AtlasDetectorIDHelper::initialize_from_dictionary - Warning: unable to find stgc region index: group, region size 0 0
-AtlasDetectorID::initLevelsFromDict - there are no sTGC entries in the dictionary! 
-AtlasDetectorID::initLevelsFromDict - there are no MM entries in the dictionary! 
-AtlasDetectorID      DEBUG Could not get value for label 'no_side' of field 'DetZside' in dictionary Calorimeter
- AtlasDetectorID::initialize_from_dictionary - OK 
+AtlasDetectorID...  DEBUG initialize_from_dictionary - unable to find mm region index: group, region size 0 0
+AtlasDetectorID...  DEBUG initialize_from_dictionary - unable to find stgc region index: group, region size 0 0
+AtlasDetectorID     DEBUG initLevelsFromDict - there are no sTGC entries in the dictionary! 
+AtlasDetectorID     DEBUG initLevelsFromDict - there are no MM entries in the dictionary! 
+AtlasDetectorID     DEBUG initLevelsFromDict -  Could not get value for label 'no_side' of field 'DetZside' in dictionary 
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 CscIdHelper         DEBUG  CSC decode index and bit fields for each level: 
 CscIdHelper         DEBUG  muon        decode 1 vals 2,4,5,7,10,11,12,13 mask/zero mask/shift/bits/offset 7   1fffffffffffffff 61 3  0  indexes 0 0 1 2 0 3 0 0 4 5 6 7 mode  enumerated  
 CscIdHelper         DEBUG  station     decode 1 vals 0,1,2,3,4,5,6,7,8,9,10,13,14,15,17,18,20,21,41,42,43,44,45,46,47,48,49,50,51,52,53,54 mask/zero mask/shift/bits/offset 1f  e0ffffffffffffff 56 5  3  indexes 0 1 2 3 4 5 6 7 8 9 10 0 0 11 12 13 0 14 15 0 16 17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18 19 20 21 22 23 24 25 26 27 28 29 30 31 mode  enumerated  
@@ -1803,8 +777,8 @@ CscIdHelper          INFO Initializing CSC hash indices for finding neighbors ..
 CscIdHelper       VERBOSE MuonIdHelper::init_neighbors 
 =========>  checking dictionnary file=IdDictMuonSpectrometer_R.09.02.Asym.xml
 MdtIdHelper         DEBUG (Re)initialize
-AtlasDetectorID      DEBUG Could not get value for label 'no_side' of field 'DetZside' in dictionary Calorimeter
- AtlasDetectorID::initialize_from_dictionary - OK 
+AtlasDetectorID     DEBUG initLevelsFromDict -  Could not get value for label 'no_side' of field 'DetZside' in dictionary 
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 MdtIdHelper         DEBUG  MDT decode index and bit fields for each level: 
 MdtIdHelper         DEBUG  muon        decode 1 vals 2,4,5,7,10,11,12,13 mask/zero mask/shift/bits/offset 7   1fffffffffffffff 61 3  0  indexes 0 0 1 2 0 3 0 0 4 5 6 7 mode  enumerated  
 MdtIdHelper         DEBUG  station     decode 1 vals 0,1,2,3,4,5,6,7,8,9,10,13,14,15,17,18,20,21,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58 mask/zero mask/shift/bits/offset 3f  e07fffffffffffff 55 6  3  indexes 0 1 2 3 4 5 6 7 8 9 10 0 0 11 12 13 0 14 15 0 16 17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 mode  enumerated  
@@ -2247,8 +1221,8 @@ MdtIdHelper          INFO Initializing MDT hash indices for finding neighbors ..
 MdtIdHelper       VERBOSE MuonIdHelper::init_neighbors 
 MdtIdHelper         DEBUG  Maximum number of MDT tubes is 108
 RpcIdHelper         DEBUG (Re)initialize
-AtlasDetectorID      DEBUG Could not get value for label 'no_side' of field 'DetZside' in dictionary Calorimeter
- AtlasDetectorID::initialize_from_dictionary - OK 
+AtlasDetectorID     DEBUG initLevelsFromDict -  Could not get value for label 'no_side' of field 'DetZside' in dictionary 
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 RpcIdHelper         DEBUG  RPC decode index and bit fields for each level: 
 RpcIdHelper         DEBUG  muon        decode 1 vals 2,4,5,7,10,11,12,13 mask/zero mask/shift/bits/offset 7   1fffffffffffffff 61 3  0  indexes 0 0 1 2 0 3 0 0 4 5 6 7 mode  enumerated  
 RpcIdHelper         DEBUG  station     decode 1 vals 0,1,2,3,4,5,6,7,8,9,10,13,14,15,17,18,20,21,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58 mask/zero mask/shift/bits/offset 3f  e07fffffffffffff 55 6  3  indexes 0 1 2 3 4 5 6 7 8 9 10 0 0 11 12 13 0 14 15 0 16 17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 mode  enumerated  
@@ -2433,1055 +1407,13 @@ RpcIdHelper         DEBUG  full module range size is 55
 RpcIdHelper         DEBUG  full channel range size is 55
 RpcIdHelper          INFO Initializing RPC hash indices ... 
 RpcIdHelper          INFO The element hash max is 608
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6124440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61244c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6124640000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61246c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6124c40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6124cc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6124e40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6124ec0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x611c440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x611c640000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x611cc40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x611ccc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x611ce40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x611cec0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6125440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61254c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6125640000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61256c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6127440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61274c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6127640000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61276c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x611d440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x611d4c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x611d640000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x611d6c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x611f440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x611f4c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x611f640000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x611f6c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6125c40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6125e40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6126440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6126640000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x611dc40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x611de40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x611e440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x611e640000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x611ec40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x611ee40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x611fc40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x611fe40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6126c40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6126e40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6127c40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6127e40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6118440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61184c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6118640000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61186c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6118c40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6118cc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6118e40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6118ec0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6119440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61194c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6119640000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61196c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6119c40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6119cc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6119e40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6119ec0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x611a440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x611a4c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x611a640000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x611a6c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x611ac40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x611acc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x611ae40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x611aec0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x611b440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x611b4c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x611b640000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x611b6c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x611bc40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x611bcc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x611be40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x611bec0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6128440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61284c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6128640000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61286c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6128c40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6128cc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6128e40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6128ec0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6129440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61294c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6129640000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61296c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6129c40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6129cc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6129e40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6129ec0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x612a440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x612a4c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x612a640000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x612a6c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x612ac40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x612acc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x612ae40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x612aec0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x612b440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x612b4c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x612b640000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x612b6c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x612bc40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x612bcc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x612be40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x612bec0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6114440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61144c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6114640000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61146c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6114c40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6114cc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6114e40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6114ec0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6115440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61154c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6115640000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61156c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6115c40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6115cc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6115e40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6115ec0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6116440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61164c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6116640000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61166c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6116c40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6116cc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6116e40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6116ec0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6117440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61174c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6117640000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61176c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6117c40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6117cc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6117e40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6117ec0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x612c440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x612c4c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x612c640000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x612c6c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x612cc40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x612ccc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x612ce40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x612cec0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x612d440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x612d4c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x612d640000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x612d6c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x612dc40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x612dcc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x612de40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x612dec0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x612e440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x612e4c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x612e640000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x612e6c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x612ec40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x612ecc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x612ee40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x612eec0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x612f440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x612f4c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x612f640000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x612f6c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x612fc40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x612fcc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x612fe40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x612fec0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6110440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6110640000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6110c40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6110e40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6111440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6111640000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6111c40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6111e40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6112440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6112640000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6112c40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6112e40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6113c40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6113e40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6130440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6130640000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6130c40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6130e40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6131440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6131640000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6131c40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6131e40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6132440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6132640000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6132c40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6132e40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6133c40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6133e40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6113440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6113640000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6133440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6133640000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x610c440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x610c640000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x610cc40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x610ce40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x610d440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x610d640000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x610dc40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x610de40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x610e440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x610e640000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x610ec40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x610ee40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x610fc40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x610fe40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6134440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6134640000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6134c40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6134e40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6135440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6135640000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6135c40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6135e40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6136440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6136640000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6136c40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6136e40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6137c40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6137e40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x610f440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x610f4c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x610f640000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x610f6c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6137440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61374c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6137640000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61376c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6108440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61084c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6108640000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61086c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6108c40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6108cc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6108e40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6108ec0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6109440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61094c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6109640000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61096c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6109c40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6109cc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6109e40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6109ec0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x610a440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x610a4c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x610a640000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x610a6c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x610ac40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x610acc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x610ae40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x610aec0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x610bc40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x610bcc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x610be40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x610bec0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6138440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61384c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6138640000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61386c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6138c40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6138cc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6138e40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6138ec0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6139440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61394c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6139640000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61396c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6139c40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6139cc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6139e40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6139ec0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x613a440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x613a4c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x613a640000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x613a6c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x613ac40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x613acc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x613ae40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x613aec0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x613bc40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x613bcc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x613be40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x613bec0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x610b440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x613b440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6104440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6104c40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6105440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6105c40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6106440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6106c40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6107c40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x613c440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x613cc40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x613d440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x613dc40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x613e440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x613ec40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x613fc40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x619c440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x619c4c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x619c640000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x619c6c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x619cc40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x619ccc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x619ce40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x619cec0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x619d440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x619d4c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x619d640000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x619d6c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x619dc40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x619dcc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x619de40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x619dec0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x619e440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x619e4c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x619e640000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x619e6c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x619fc40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x619fcc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x619fe40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x619fec0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61a4440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61a44c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61a4640000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61a46c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61a4c40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61a4cc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61a4e40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61a4ec0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61a5440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61a54c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61a5640000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61a56c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61a5c40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61a5cc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61a5e40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61a5ec0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61a6440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61a64c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61a6640000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61a66c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61a7c40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61a7cc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61a7e40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61a7ec0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6198440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61984c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6198640000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61986c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6198c40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6198cc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6198e40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6198ec0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6199440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61994c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6199640000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61996c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6199c40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6199cc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6199e40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6199ec0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x619a440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x619a4c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x619a640000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x619a6c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x619bc40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x619bcc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x619be40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x619bec0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61a8440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61a84c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61a8640000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61a86c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61a8c40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61a8cc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61a8e40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61a8ec0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61a9440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61a94c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61a9640000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61a96c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61a9c40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61a9cc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61a9e40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61a9ec0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61aa440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61aa4c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61aa640000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61aa6c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61abc40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61abcc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61abe40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61abec0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6194440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61944c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6194640000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61946c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6194c40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6194cc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6194e40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6194ec0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6195440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61954c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6195640000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61956c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6195c40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6195cc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6195e40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6195ec0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6196440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61964c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6196640000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61966c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6197c40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6197cc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6197e40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6197ec0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61ac440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61ac4c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61ac640000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61ac6c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61acc40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61accc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61ace40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61acec0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61ad440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61ad4c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61ad640000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61ad6c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61adc40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61adcc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61ade40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61adec0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61ae440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61ae4c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61ae640000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61ae6c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61afc40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61afcc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61afe40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61afec0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6190440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6190c40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6191440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6191c40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6192440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6193c40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61b0440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61b0c40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61b1440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61b1c40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61b2440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61b3c40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6190640000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61906c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6190e40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6190ec0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6191640000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61916c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6191e40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6191ec0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6192640000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61926c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6193e40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6193ec0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61b0640000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61b06c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61b0e40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61b0ec0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61b1640000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61b16c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61b1e40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61b1ec0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61b2640000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61b26c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61b3e40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61b3ec0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x618c440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x618c640000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x618cc40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x618ce40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x618d440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x618d640000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x618dc40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x618de40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x618e440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x618e640000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x618fc40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x618fe40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61b4440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61b4640000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61b4c40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61b4e40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61b5440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61b5640000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61b5c40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61b5e40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61b6440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61b6640000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61b7c40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61b7e40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6188440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61884c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6188640000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61886c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6188c40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6188cc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6188e40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6188ec0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6189440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61894c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6189640000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61896c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6189c40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6189cc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6189e40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6189ec0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x618a440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x618a4c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x618a640000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x618a6c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x618bc40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x618bcc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x618be40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x618bec0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61b8440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61b84c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61b8640000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61b86c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61b8c40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61b8cc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61b8e40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61b8ec0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61b9440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61b94c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61b9640000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61b96c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61b9c40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61b9cc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61b9e40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61b9ec0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61ba440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61ba4c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61ba640000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61ba6c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61bbc40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61bbcc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61bbe40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x61bbec0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6224440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x62244c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6224c40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6224cc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6225440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x62254c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6225c40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6225cc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6226440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x62264c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6226c40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6226cc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6227440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x62274c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6227c40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6227cc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x621c440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x621c4c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x621cc40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x621ccc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x621d440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x621d4c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x621dc40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x621dcc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x621e440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x621e4c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x621ec40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x621ecc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x621f440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x621f4c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x621fc40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x621fcc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6218440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x62184c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6218c40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6218cc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6219440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x62194c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6219c40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6219cc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x621a440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x621a4c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x621ac40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x621acc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x621b440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x621b4c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x621bc40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x621bcc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6228440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x62284c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6228c40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6228cc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6229440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x62294c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6229c40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6229cc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x622a440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x622a4c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x622ac40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x622acc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x622b440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x622b4c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x622bc40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x622bcc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6214440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x62144c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6214c40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6214cc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6215440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x62154c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6215c40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6215cc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6216440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x62164c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6216c40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6216cc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6217440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x62174c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6217c40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6217cc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x622c440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x622c4c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x622cc40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x622ccc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x622d440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x622d4c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x622dc40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x622dcc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x622e440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x622e4c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x622ec40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x622ecc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x622f440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x622f4c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x622fc40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x622fcc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6210440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x62104c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6210c40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6210cc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6211440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x62114c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6211c40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6211cc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6212440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x62124c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6212c40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6212cc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6213440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x62134c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6213c40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6213cc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6230440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x62304c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6230c40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6230cc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6231440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x62314c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6231c40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6231cc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6232440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x62324c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6232c40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6232cc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6233440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x62334c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6233c40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6233cc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x620c440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x620c4c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x620cc40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x620ccc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x620d440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x620d4c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x620dc40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x620dcc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x620e440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x620e4c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x620ec40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x620ecc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x620f440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x620f4c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x620fc40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x620fcc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6234440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x62344c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6234c40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6234cc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6235440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x62354c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6235c40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6235cc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6236440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x62364c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6236c40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6236cc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6237440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x62374c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6237c40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6237cc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6208440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x62084c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6208c40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6208cc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6209440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x62094c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6209c40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6209cc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x620a440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x620a4c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x620ac40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x620acc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x620b440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x620b4c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x620bc40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x620bcc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6238440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x62384c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6238c40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6238cc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6239440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x62394c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6239c40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6239cc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x623a440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x623a4c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x623ac40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x623acc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x623b440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x623b4c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x623bc40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x623bcc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x629c440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x629c4c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x629cc40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x629ccc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x629d440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x629d4c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x629dc40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x629dcc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x629e440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x629e4c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x629fc40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x629fcc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x62a4440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x62a44c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x62a4c40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x62a4cc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x62a5440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x62a54c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x62a5c40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x62a5cc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x62a6440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x62a64c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x62a7c40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x62a7cc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6298440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x62984c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6298c40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6298cc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6299440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x62994c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6299c40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6299cc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x629a440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x629a4c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x629bc40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x629bcc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x62a8440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x62a84c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x62a8c40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x62a8cc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x62a9440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x62a94c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x62a9c40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x62a9cc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x62aa440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x62aa4c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x62abc40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x62abcc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6294440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x62944c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6294c40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6294cc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6295440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x62954c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6295c40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6295cc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6296440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x62964c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6297c40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6297cc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x62ac440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x62ac4c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x62acc40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x62accc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x62ad440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x62ad4c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x62adc40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x62adcc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x62ae440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x62ae4c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x62afc40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x62afcc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6290440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x62904c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6290c40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6290cc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6291440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x62914c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6291c40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6291cc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6292440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x62924c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6293c40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6293cc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x62b0440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x62b04c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x62b0c40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x62b0cc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x62b1440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x62b14c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x62b1c40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x62b1cc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x62b2440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x62b24c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x62b3c40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x62b3cc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x628c440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x628c4c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x628cc40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x628ccc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x628d440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x628d4c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x628dc40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x628dcc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x628e440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x628e4c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x628fc40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x628fcc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x62b4440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x62b44c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x62b4c40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x62b4cc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x62b5440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x62b54c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x62b5c40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x62b5cc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x62b6440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x62b64c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x62b7c40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x62b7cc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6288440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x62884c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6288c40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6288cc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6289440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x62894c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6289c40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6289cc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x628a440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x628a4c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x628bc40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x628bcc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x62b8440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x62b84c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x62b8c40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x62b8cc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x62b9440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x62b94c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x62b9c40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x62b9cc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x62ba440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x62ba4c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x62bbc40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x62bbcc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x641ec40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x641ecc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x641ee40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x641eec0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x641f440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x641f4c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x641f640000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x641f6c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6426c40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6426cc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6426e40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6426ec0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6427440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x64274c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6427640000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x64276c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x641ac40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x641acc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x641ae40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x641aec0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x641b440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x641b4c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x641b640000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x641b6c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x642ac40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x642acc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x642ae40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x642aec0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x642b440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x642b4c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x642b640000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x642b6c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6416c40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6417440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x642ec40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x642f440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6416e40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6416ec0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6417640000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x64176c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x642ee40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x642eec0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x642f640000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x642f6c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x649ec40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x649ecc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x649f440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x649f4c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x64a6c40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x64a6cc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x64a7440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x64a74c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x649ac40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x649acc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x649ae40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x649aec0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x649b440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x649b4c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x649b640000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x649b6c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x64aac40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x64aacc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x64aae40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x64aaec0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x64ab440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x64ab4c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x64ab640000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x64ab6c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6496c40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6496cc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6496e40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6496ec0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6497440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x64974c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6497640000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x64976c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x64aec40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x64aecc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x64aee40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x64aeec0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x64af440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x64af4c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x64af640000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x64af6c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6492c40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6492e40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6493440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6493640000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x64b2c40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x64b2e40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x64b3440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x64b3640000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6522c40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6523440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x651ec40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x651f440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6526c40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6527440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x651ac40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x651b440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x652ac40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x652b440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6516c40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6516e40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6517440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6517640000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x652ec40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x652ee40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x652f440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x652f640000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6512c40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6512e40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6513440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6513640000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6532c40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6532e40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6533440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6533640000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6f1f440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6f1f640000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6f27440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6f27640000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6203440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6243440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x60bc440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x60bc4c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x60bcc40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x60bccc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x60bd440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x60bd4c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x60bdc40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x60bdcc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x60be440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x60be4c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x60bec40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x60becc0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x60bf440000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x60bf4c0000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x60bfc40000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x60bfcc0000000000
 RpcIdHelper          INFO The detector element hash max is 1138
 RpcIdHelper          INFO Initializing RPC hash indices for finding neighbors ... 
 RpcIdHelper       VERBOSE MuonIdHelper::init_neighbors 
 RpcIdHelper         DEBUG  Maximum number of RPC gas gaps is 3
 TgcIdHelper         DEBUG (Re)initialize
-AtlasDetectorID      DEBUG Could not get value for label 'no_side' of field 'DetZside' in dictionary Calorimeter
- AtlasDetectorID::initialize_from_dictionary - OK 
+AtlasDetectorID     DEBUG initLevelsFromDict -  Could not get value for label 'no_side' of field 'DetZside' in dictionary 
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 TgcIdHelper         DEBUG  TGC decode index and bit fields for each level: 
 TgcIdHelper         DEBUG  muon        decode 1 vals 2,4,5,7,10,11,12,13 mask/zero mask/shift/bits/offset 7   1fffffffffffffff 61 3  0  indexes 0 0 1 2 0 3 0 0 4 5 6 7 mode  enumerated  
 TgcIdHelper         DEBUG  station     decode 1 vals 0,1,2,3,4,5,6,7,8,9,10,13,14,15,17,18,20,21,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58 mask/zero mask/shift/bits/offset 3f  e07fffffffffffff 55 6  3  indexes 0 1 2 3 4 5 6 7 8 9 10 0 0 11 12 13 0 14 15 0 16 17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 mode  enumerated  
@@ -3576,8 +1508,8 @@ TgcIdHelper          INFO The detector element hash max is 1554
 TgcIdHelper          INFO Initializing TGC hash indices for finding neighbors ... 
 TgcIdHelper       VERBOSE MuonIdHelper::init_neighbors 
 CscIdHelper         DEBUG (Re)initialize
-AtlasDetectorID      DEBUG Could not get value for label 'no_side' of field 'DetZside' in dictionary Calorimeter
- AtlasDetectorID::initialize_from_dictionary - OK 
+AtlasDetectorID     DEBUG initLevelsFromDict -  Could not get value for label 'no_side' of field 'DetZside' in dictionary 
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 CscIdHelper         DEBUG  CSC decode index and bit fields for each level: 
 CscIdHelper         DEBUG  muon        decode 1 vals 2,4,5,7,10,11,12,13 mask/zero mask/shift/bits/offset 7   1fffffffffffffff 61 3  0  indexes 0 0 1 2 0 3 0 0 4 5 6 7 mode  enumerated  
 CscIdHelper         DEBUG  station     decode 1 vals 0,1,2,3,4,5,6,7,8,9,10,13,14,15,17,18,20,21,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58 mask/zero mask/shift/bits/offset 3f  e07fffffffffffff 55 6  3  indexes 0 1 2 3 4 5 6 7 8 9 10 0 0 11 12 13 0 14 15 0 16 17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 mode  enumerated  
@@ -3606,8 +1538,8 @@ CscIdHelper          INFO The channel hash max is 15360
 CscIdHelper          INFO Initializing CSC hash indices for finding neighbors ... 
 CscIdHelper       VERBOSE MuonIdHelper::init_neighbors 
 TgcIdHelper         DEBUG (Re)initialize
-AtlasDetectorID      DEBUG Could not get value for label 'no_side' of field 'DetZside' in dictionary Calorimeter
- AtlasDetectorID::initialize_from_dictionary - OK 
+AtlasDetectorID     DEBUG initLevelsFromDict -  Could not get value for label 'no_side' of field 'DetZside' in dictionary 
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 TgcIdHelper         DEBUG  TGC decode index and bit fields for each level: 
 TgcIdHelper         DEBUG  muon        decode 1 vals 2,4,5,7,10,11,12,13 mask/zero mask/shift/bits/offset 7   1fffffffffffffff 61 3  0  indexes 0 0 1 2 0 3 0 0 4 5 6 7 mode  enumerated  
 TgcIdHelper         DEBUG  station     decode 1 vals 0,1,2,3,4,5,6,7,8,9,10,13,14,15,17,18,20,21,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58 mask/zero mask/shift/bits/offset 3f  e07fffffffffffff 55 6  3  indexes 0 1 2 3 4 5 6 7 8 9 10 0 0 11 12 13 0 14 15 0 16 17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 mode  enumerated  
@@ -3702,8 +1634,8 @@ TgcIdHelper          INFO The detector element hash max is 1554
 TgcIdHelper          INFO Initializing TGC hash indices for finding neighbors ... 
 TgcIdHelper       VERBOSE MuonIdHelper::init_neighbors 
 MmIdHelper          DEBUG (Re)initialize 
-AtlasDetectorID      DEBUG Could not get value for label 'no_side' of field 'DetZside' in dictionary Calorimeter
- AtlasDetectorID::initialize_from_dictionary - OK 
+AtlasDetectorID     DEBUG initLevelsFromDict -  Could not get value for label 'no_side' of field 'DetZside' in dictionary 
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 MmIdHelper          DEBUG  MicroMegas decode index and bit fields for each level: 
 MmIdHelper          DEBUG  muon        decode 1 vals 2,4,5,7,10,11,12,13 mask/zero mask/shift/bits/offset 7   1fffffffffffffff 61 3  0  indexes 0 0 1 2 0 3 0 0 4 5 6 7 mode  enumerated  
 MmIdHelper          DEBUG  station     decode 1 vals 0,1,2,3,4,5,6,7,8,9,10,13,14,15,17,18,20,21,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58 mask/zero mask/shift/bits/offset 3f  e07fffffffffffff 55 6  3  indexes 0 1 2 3 4 5 6 7 8 9 10 0 0 11 12 13 0 14 15 0 16 17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 mode  enumerated  
@@ -3739,9 +1671,9 @@ MmIdHelper           INFO Initializing MicroMegas hash indices for finding neigh
 MmIdHelper        VERBOSE MuonIdHelper::init_neighbors 
 =========>  checking dictionnary file=IdDictMuonSpectrometer_R.09.02.xml
 MdtIdHelper         DEBUG (Re)initialize
-AtlasDetectorIDHelper::initialize_from_dictionary - Warning: unable to find csc region index: group, region size 0 0
-AtlasDetectorID      DEBUG Could not get value for label 'no_side' of field 'DetZside' in dictionary Calorimeter
- AtlasDetectorID::initialize_from_dictionary - OK 
+AtlasDetectorID...  DEBUG initialize_from_dictionary - unable to find csc region index: group, region size 0 0
+AtlasDetectorID     DEBUG initLevelsFromDict -  Could not get value for label 'no_side' of field 'DetZside' in dictionary 
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 MdtIdHelper         DEBUG  MDT decode index and bit fields for each level: 
 MdtIdHelper         DEBUG  muon        decode 1 vals 2,4,5,7,10,11,12,13 mask/zero mask/shift/bits/offset 7   1fffffffffffffff 61 3  0  indexes 0 0 1 2 0 3 0 0 4 5 6 7 mode  enumerated  
 MdtIdHelper         DEBUG  station     decode 1 vals 0,1,2,3,4,5,6,7,8,9,10,13,14,15,17,18,20,21,41,42,43,44,45,46,48,52,53,54,55,56,57,58 mask/zero mask/shift/bits/offset 1f  e0ffffffffffffff 56 5  3  indexes 0 1 2 3 4 5 6 7 8 9 10 0 0 11 12 13 0 14 15 0 16 17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18 19 20 21 22 23 0 24 0 0 0 25 26 27 28 29 30 31 mode  enumerated  
@@ -4160,9 +2092,9 @@ MdtIdHelper          INFO Initializing MDT hash indices for finding neighbors ..
 MdtIdHelper       VERBOSE MuonIdHelper::init_neighbors 
 MdtIdHelper         DEBUG  Maximum number of MDT tubes is 108
 RpcIdHelper         DEBUG (Re)initialize
-AtlasDetectorIDHelper::initialize_from_dictionary - Warning: unable to find csc region index: group, region size 0 0
-AtlasDetectorID      DEBUG Could not get value for label 'no_side' of field 'DetZside' in dictionary Calorimeter
- AtlasDetectorID::initialize_from_dictionary - OK 
+AtlasDetectorID...  DEBUG initialize_from_dictionary - unable to find csc region index: group, region size 0 0
+AtlasDetectorID     DEBUG initLevelsFromDict -  Could not get value for label 'no_side' of field 'DetZside' in dictionary 
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 RpcIdHelper         DEBUG  RPC decode index and bit fields for each level: 
 RpcIdHelper         DEBUG  muon        decode 1 vals 2,4,5,7,10,11,12,13 mask/zero mask/shift/bits/offset 7   1fffffffffffffff 61 3  0  indexes 0 0 1 2 0 3 0 0 4 5 6 7 mode  enumerated  
 RpcIdHelper         DEBUG  station     decode 1 vals 0,1,2,3,4,5,6,7,8,9,10,13,14,15,17,18,20,21,41,42,43,44,45,46,48,52,53,54,55,56,57,58 mask/zero mask/shift/bits/offset 1f  e0ffffffffffffff 56 5  3  indexes 0 1 2 3 4 5 6 7 8 9 10 0 0 11 12 13 0 14 15 0 16 17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18 19 20 21 22 23 0 24 0 0 0 25 26 27 28 29 30 31 mode  enumerated  
@@ -4347,1072 +2279,14 @@ RpcIdHelper         DEBUG  full module range size is 55
 RpcIdHelper         DEBUG  full channel range size is 55
 RpcIdHelper          INFO Initializing RPC hash indices ... 
 RpcIdHelper          INFO The element hash max is 616
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6248880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6248980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6248c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6248d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6249880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6249980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6249c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6249d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6238880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6238c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6239880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6239980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6239c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6239d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x624a880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x624a980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x624ac80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x624ad80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x624e880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x624e980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x624ec80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x624ed80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x623a880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x623a980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x623ac80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x623ad80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x623e880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x623e980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x623ec80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x623ed80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x624b880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x624bc80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x624c880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x624cc80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x623b880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x623bc80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x623c880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x623cc80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x623d880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x623dc80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x623f880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x623fc80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x624d880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x624dc80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x624f880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x624fc80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6230880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6230980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6230c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6230d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6231880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6231980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6231c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6231d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6232880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6232980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6232c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6232d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6233880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6233980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6233c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6233d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6234880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6234980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6234c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6234d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6235880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6235980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6235c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6235d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6236880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6236980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6236c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6236d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6237880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6237980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6237c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6237d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6250880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6250980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6250c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6250d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6251880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6251980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6251c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6251d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6252880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6252980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6252c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6252d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6253880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6253980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6253c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6253d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6254880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6254980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6254c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6254d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6255880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6255980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6255c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6255d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6256880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6256980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6256c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6256d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6257880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6257980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6257c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6257d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6228880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6228980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6228c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6228d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6229880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6229980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6229c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6229d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x622a880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x622a980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x622ac80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x622ad80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x622b880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x622b980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x622bc80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x622bd80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x622c880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x622c980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x622cc80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x622cd80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x622d880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x622d980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x622dc80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x622dd80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x622e880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x622e980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x622ec80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x622ed80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x622f880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x622f980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x622fc80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x622fd80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6258880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6258980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6258c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6258d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6259880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6259980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6259c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6259d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x625a880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x625a980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x625ac80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x625ad80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x625b880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x625b980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x625bc80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x625bd80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x625c880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x625c980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x625cc80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x625cd80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x625d880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x625d980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x625dc80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x625dd80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x625e880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x625e980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x625ec80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x625ed80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x625f880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x625f980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x625fc80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x625fd80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6220880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6220c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6221880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6221c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6222880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6222c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6223880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6223c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6224880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6224c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6225880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6225c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6227880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6227c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6260880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6260c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6261880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6261c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6262880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6262c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6263880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6263c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6264880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6264c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6265880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6265c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6267880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6267c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6226880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6226c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6266880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6266c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6218880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6218c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6219880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6219c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x621a880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x621ac80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x621b880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x621bc80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x621c880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x621cc80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x621d880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x621dc80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x621f880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x621fc80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6268880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6268c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6269880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6269c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x626a880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x626ac80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x626b880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x626bc80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x626c880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x626cc80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x626d880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x626dc80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x626f880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x626fc80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x621e880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x621e980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x621ec80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x621ed80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x626e880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x626e980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x626ec80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x626ed80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6210880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6210980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6210c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6210d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6211880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6211980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6211c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6211d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6212880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6212980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6212c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6212d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6213880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6213980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6213c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6213d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6214880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6214980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6214c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6214d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6215880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6215980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6215c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6215d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6217880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6217980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6217c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6217d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6270880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6270980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6270c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6270d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6271880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6271980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6271c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6271d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6272880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6272980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6272c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6272d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6273880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6273980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6273c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6273d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6274880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6274980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6274c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6274d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6275880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6275980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6275c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6275d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6277880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6277980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6277c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6277d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6216880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6276880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6208880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6209880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x620a880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x620b880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x620c880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x620d880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x620f880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6278880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6279880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x627a880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x627b880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x627c880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x627d880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x627f880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6338880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6338980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6338c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6338d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6339880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6339980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6339c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6339d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x633a880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x633a980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x633ac80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x633ad80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x633b880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x633b980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x633bc80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x633bd80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x633c880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x633c980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x633cc80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x633cd80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x633f880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x633f980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x633fc80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x633fd80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6348880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6348980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6348c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6348d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6349880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6349980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6349c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6349d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x634a880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x634a980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x634ac80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x634ad80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x634b880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x634b980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x634bc80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x634bd80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x634c880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x634c980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x634cc80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x634cd80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x634f880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x634f980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x634fc80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x634fd80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6330880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6330980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6330c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6330d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6331880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6331980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6331c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6331d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6332880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6332980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6332c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6332d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6333880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6333980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6333c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6333d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6334880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6334980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6334c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6334d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6337880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6337980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6337c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6337d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6350880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6350980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6350c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6350d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6351880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6351980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6351c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6351d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6352880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6352980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6352c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6352d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6353880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6353980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6353c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6353d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6354880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6354980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6354c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6354d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6357880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6357980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6357c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6357d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6328880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6328980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6328c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6328d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6329880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6329980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6329c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6329d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x632a880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x632a980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x632ac80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x632ad80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x632b880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x632b980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x632bc80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x632bd80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x632c880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x632c980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x632cc80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x632cd80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x632f880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x632f980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x632fc80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x632fd80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6358880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6358980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6358c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6358d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6359880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6359980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6359c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6359d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x635a880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x635a980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x635ac80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x635ad80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x635b880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x635b980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x635bc80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x635bd80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x635c880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x635c980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x635cc80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x635cd80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x635f880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x635f980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x635fc80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x635fd80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6320880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6321880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6322880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6323880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6324880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6327880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6360880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6361880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6362880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6363880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6364880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6367880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6320c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6320d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6321c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6321d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6322c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6322d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6323c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6323d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6324c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6324d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6327c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6327d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6360c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6360d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6361c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6361d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6362c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6362d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6363c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6363d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6364c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6364d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6367c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6367d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6318880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6318c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6319880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6319c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x631a880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x631ac80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x631b880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x631bc80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x631c880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x631cc80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x631f880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x631fc80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6368880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6368c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6369880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6369c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x636a880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x636ac80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x636b880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x636bc80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x636c880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x636cc80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x636f880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x636fc80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6310880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6310980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6310c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6310d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6311880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6311980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6311c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6311d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6312880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6312980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6312c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6312d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6313880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6313980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6313c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6313d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6314880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6314980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6314c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6314d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6317880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6317980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6317c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6317d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6370880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6370980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6370c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6370d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6371880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6371980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6371c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6371d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6372880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6372980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6372c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6372d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6373880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6373980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6373c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6373d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6374880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6374980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6374c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6374d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6377880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6377980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6377c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6377d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6448880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6448980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6449880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6449980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x644a880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x644a980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x644b880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x644b980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x644c880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x644c980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x644d880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x644d980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x644e880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x644e980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x644f880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x644f980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6438880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6438980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6439880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6439980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x643a880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x643a980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x643b880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x643b980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x643c880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x643c980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x643d880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x643d980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x643e880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x643e980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x643f880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x643f980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6430880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6430980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6431880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6431980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6432880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6432980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6433880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6433980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6434880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6434980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6435880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6435980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6436880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6436980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6437880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6437980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6450880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6450980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6451880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6451980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6452880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6452980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6453880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6453980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6454880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6454980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6455880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6455980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6456880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6456980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6457880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6457980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6428880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6428980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6429880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6429980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x642a880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x642a980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x642b880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x642b980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x642c880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x642c980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x642d880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x642d980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x642e880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x642e980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x642f880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x642f980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6458880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6458980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6459880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6459980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x645a880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x645a980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x645b880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x645b980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x645c880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x645c980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x645d880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x645d980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x645e880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x645e980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x645f880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x645f980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6420880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6420980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6421880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6421980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6422880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6422980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6423880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6423980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6424880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6424980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6425880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6425980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6426880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6426980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6427880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6427980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6460880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6460980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6461880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6461980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6462880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6462980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6463880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6463980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6464880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6464980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6465880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6465980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6466880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6466980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6467880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6467980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6418880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6418980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6419880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6419980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x641a880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x641a980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x641b880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x641b980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x641c880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x641c980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x641d880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x641d980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x641e880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x641e980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x641f880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x641f980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6468880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6468980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6469880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6469980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x646a880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x646a980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x646b880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x646b980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x646c880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x646c980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x646d880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x646d980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x646e880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x646e980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x646f880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x646f980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6410880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6410980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6411880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6411980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6412880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6412980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6413880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6413980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6414880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6414980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6415880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6415980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6416880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6416980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6417880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6417980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6470880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6470980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6471880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6471980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6472880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6472980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6473880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6473980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6474880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6474980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6475880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6475980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6476880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6476980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6477880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6477980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6538880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6538980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6539880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6539980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x653a880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x653a980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x653b880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x653b980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x653c880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x653c980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x653f880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x653f980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6548880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6548980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6549880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6549980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x654a880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x654a980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x654b880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x654b980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x654c880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x654c980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x654f880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x654f980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6530880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6530980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6531880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6531980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6532880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6532980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6533880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6533980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6534880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6534980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6537880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6537980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6550880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6550980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6551880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6551980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6552880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6552980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6553880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6553980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6554880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6554980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6557880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6557980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6528880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6528980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6529880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6529980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x652a880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x652a980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x652b880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x652b980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x652c880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x652c980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x652f880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x652f980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6558880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6558980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6559880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6559980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x655a880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x655a980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x655b880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x655b980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x655c880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x655c980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x655f880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x655f980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6520880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6520980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6521880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6521980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6522880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6522980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6523880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6523980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6524880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6524980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6527880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6527980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6560880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6560980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6561880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6561980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6562880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6562980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6563880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6563980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6564880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6564980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6567880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6567980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6518880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6518980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6519880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6519980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x651a880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x651a980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x651b880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x651b980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x651c880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x651c980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x651f880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x651f980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6568880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6568980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6569880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6569980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x656a880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x656a980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x656b880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x656b980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x656c880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x656c980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x656f880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x656f980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6510880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6510980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6511880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6511980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6512880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6512980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6513880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6513980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6514880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6514980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6517880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6517980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6570880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6570980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6571880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6571980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6572880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6572980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6573880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6573980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6574880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6574980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6577880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6577980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x683d880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x683d980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x683dc80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x683dd80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x683e880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x683e980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x683ec80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x683ed80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x684d880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x684d980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x684dc80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x684dd80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x684e880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x684e980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x684ec80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x684ed80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6835880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6835980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6835c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6835d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6836880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6836980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6836c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6836d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6855880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6855980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6855c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6855d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6856880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6856980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6856c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6856d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x682d880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x682e880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x685d880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x685e880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x682dc80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x682dd80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x682ec80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x682ed80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x685dc80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x685dd80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x685ec80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x685ed80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x693d880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x693d980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x693e880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x693e980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x694d880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x694d980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x694e880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x694e980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6935880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6935980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6935c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6935d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6936880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6936980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6936c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6936d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6955880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6955980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6955c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6955d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6956880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6956980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6956c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6956d80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x692d880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x692d980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x692dc80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x692dd80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x692e880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x692e980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x692ec80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x692ed80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x695d880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x695d980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x695dc80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x695dd80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x695e880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x695e980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x695ec80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x695ed80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6925880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6925c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6926880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6926c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6965880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6965c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6966880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6966c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6a45880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6a46880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6a3d880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6a3e880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6a4d880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6a4e880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6a35880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6a36880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6a55880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6a56880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6a2d880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6a2dc80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6a2e880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6a2ec80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6a5d880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6a5dc80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6a5e880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6a5ec80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6a25880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6a25c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6a26880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6a26c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6a65880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6a65c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6a66880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6a66c80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x7a3e880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x7a3ec80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x7a4e880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x7a4ec80000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6406880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6486880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6108880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6108980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6109880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6109980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x610a880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x610a980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x610b880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x610b980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x610c880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x610c980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x610d880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x610d980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x610e880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x610e980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x610f880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x610f980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6178880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6178980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6179880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x6179980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x617a880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x617a980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x617b880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x617b980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x617c880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x617c980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x617d880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x617d980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x617e880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x617e980000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x617f880000000000
-RpcIdHelper         DEBUG init_detectorElement_hashes Please check the dictionary for possible duplication for 0x617f980000000000
 RpcIdHelper          INFO The detector element hash max is 1154
 RpcIdHelper          INFO Initializing RPC hash indices for finding neighbors ... 
 RpcIdHelper       VERBOSE MuonIdHelper::init_neighbors 
 RpcIdHelper         DEBUG  Maximum number of RPC gas gaps is 3
 TgcIdHelper         DEBUG (Re)initialize
-AtlasDetectorIDHelper::initialize_from_dictionary - Warning: unable to find csc region index: group, region size 0 0
-AtlasDetectorID      DEBUG Could not get value for label 'no_side' of field 'DetZside' in dictionary Calorimeter
- AtlasDetectorID::initialize_from_dictionary - OK 
+AtlasDetectorID...  DEBUG initialize_from_dictionary - unable to find csc region index: group, region size 0 0
+AtlasDetectorID     DEBUG initLevelsFromDict -  Could not get value for label 'no_side' of field 'DetZside' in dictionary 
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 TgcIdHelper         DEBUG  TGC decode index and bit fields for each level: 
 TgcIdHelper         DEBUG  muon        decode 1 vals 2,4,5,7,10,11,12,13 mask/zero mask/shift/bits/offset 7   1fffffffffffffff 61 3  0  indexes 0 0 1 2 0 3 0 0 4 5 6 7 mode  enumerated  
 TgcIdHelper         DEBUG  station     decode 1 vals 0,1,2,3,4,5,6,7,8,9,10,13,14,15,17,18,20,21,41,42,43,44,45,46,48,52,53,54,55,56,57,58 mask/zero mask/shift/bits/offset 1f  e0ffffffffffffff 56 5  3  indexes 0 1 2 3 4 5 6 7 8 9 10 0 0 11 12 13 0 14 15 0 16 17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18 19 20 21 22 23 0 24 0 0 0 25 26 27 28 29 30 31 mode  enumerated  
@@ -5503,9 +2377,9 @@ TgcIdHelper          INFO The detector element hash max is 1530
 TgcIdHelper          INFO Initializing TGC hash indices for finding neighbors ... 
 TgcIdHelper       VERBOSE MuonIdHelper::init_neighbors 
 TgcIdHelper         DEBUG (Re)initialize
-AtlasDetectorIDHelper::initialize_from_dictionary - Warning: unable to find csc region index: group, region size 0 0
-AtlasDetectorID      DEBUG Could not get value for label 'no_side' of field 'DetZside' in dictionary Calorimeter
- AtlasDetectorID::initialize_from_dictionary - OK 
+AtlasDetectorID...  DEBUG initialize_from_dictionary - unable to find csc region index: group, region size 0 0
+AtlasDetectorID     DEBUG initLevelsFromDict -  Could not get value for label 'no_side' of field 'DetZside' in dictionary 
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 TgcIdHelper         DEBUG  TGC decode index and bit fields for each level: 
 TgcIdHelper         DEBUG  muon        decode 1 vals 2,4,5,7,10,11,12,13 mask/zero mask/shift/bits/offset 7   1fffffffffffffff 61 3  0  indexes 0 0 1 2 0 3 0 0 4 5 6 7 mode  enumerated  
 TgcIdHelper         DEBUG  station     decode 1 vals 0,1,2,3,4,5,6,7,8,9,10,13,14,15,17,18,20,21,41,42,43,44,45,46,48,52,53,54,55,56,57,58 mask/zero mask/shift/bits/offset 1f  e0ffffffffffffff 56 5  3  indexes 0 1 2 3 4 5 6 7 8 9 10 0 0 11 12 13 0 14 15 0 16 17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18 19 20 21 22 23 0 24 0 0 0 25 26 27 28 29 30 31 mode  enumerated  
@@ -5596,9 +2470,9 @@ TgcIdHelper          INFO The detector element hash max is 1530
 TgcIdHelper          INFO Initializing TGC hash indices for finding neighbors ... 
 TgcIdHelper       VERBOSE MuonIdHelper::init_neighbors 
 MmIdHelper          DEBUG (Re)initialize 
-AtlasDetectorIDHelper::initialize_from_dictionary - Warning: unable to find csc region index: group, region size 0 0
-AtlasDetectorID      DEBUG Could not get value for label 'no_side' of field 'DetZside' in dictionary Calorimeter
- AtlasDetectorID::initialize_from_dictionary - OK 
+AtlasDetectorID...  DEBUG initialize_from_dictionary - unable to find csc region index: group, region size 0 0
+AtlasDetectorID     DEBUG initLevelsFromDict -  Could not get value for label 'no_side' of field 'DetZside' in dictionary 
+AtlasDetectorID      INFO initialize_from_dictionary - OK
 MmIdHelper          DEBUG  MicroMegas decode index and bit fields for each level: 
 MmIdHelper          DEBUG  muon        decode 1 vals 2,4,5,7,10,11,12,13 mask/zero mask/shift/bits/offset 7   1fffffffffffffff 61 3  0  indexes 0 0 1 2 0 3 0 0 4 5 6 7 mode  enumerated  
 MmIdHelper          DEBUG  station     decode 1 vals 0,1,2,3,4,5,6,7,8,9,10,13,14,15,17,18,20,21,41,42,43,44,45,46,48,52,53,54,55,56,57,58 mask/zero mask/shift/bits/offset 1f  e0ffffffffffffff 56 5  3  indexes 0 1 2 3 4 5 6 7 8 9 10 0 0 11 12 13 0 14 15 0 16 17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18 19 20 21 22 23 0 24 0 0 0 25 26 27 28 29 30 31 mode  enumerated  
diff --git a/MuonSpectrometer/MuonIdHelpers/src/CscIdHelper.cxx b/MuonSpectrometer/MuonIdHelpers/src/CscIdHelper.cxx
index 9607c7116c7ca74b5959e7da11c81855713c7e17..234511e12503b5de24015e4bc6ce73d50df576ca 100644
--- a/MuonSpectrometer/MuonIdHelpers/src/CscIdHelper.cxx
+++ b/MuonSpectrometer/MuonIdHelpers/src/CscIdHelper.cxx
@@ -1,37 +1,16 @@
 /*
-  Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration
+  Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration
 */
 
-/**
- * ==============================================================================
- * ATLAS Muon Identifier Helpers Package
- * ==============================================================================
- */
-
 #include "MuonIdHelpers/CscIdHelper.h"
+#include "AthenaKernel/getMessageSvc.h"
 
-#include "GaudiKernel/ISvcLocator.h"
-#include "GaudiKernel/Bootstrap.h"
-#include "GaudiKernel/MsgStream.h"
-#include "GaudiKernel/IMessageSvc.h"
 #include <mutex>
 
-/// Constructor/Destructor
-
 CscIdHelper::CscIdHelper() : MuonIdHelper("CscIdHelper"), m_CHAMBERLAYER_INDEX(0),
   m_WIRELAYER_INDEX(0), m_MEASURESPHI_INDEX(0), m_stripMaxPhi(UINT_MAX), m_stripMaxEta(UINT_MAX), m_hasChamLay1(false) {}
 
-/// Destructor
-
-CscIdHelper::~CscIdHelper()
-{
-  // m_Log deleted in base class.
-}
-
-
-
 /// Initialize dictionary
-
 int CscIdHelper::initialize_from_dictionary(const IdDictMgr& dict_mgr)
 {
   int status = 0;
@@ -46,7 +25,7 @@ int CscIdHelper::initialize_from_dictionary(const IdDictMgr& dict_mgr)
   }
 
   /// init base object
-
+  AtlasDetectorID::setMessageSvc(Athena::getMessageSvc());
   if (AtlasDetectorID::initialize_from_dictionary(dict_mgr)) return (1);
 
   // Register version of the MuonSpectrometer dictionary
diff --git a/MuonSpectrometer/MuonIdHelpers/src/MdtIdHelper.cxx b/MuonSpectrometer/MuonIdHelpers/src/MdtIdHelper.cxx
index a433dbc3150ba30ce56d16260e702103448623d2..c82c55b75d304c448767e462217de1d0bb13d410 100644
--- a/MuonSpectrometer/MuonIdHelpers/src/MdtIdHelper.cxx
+++ b/MuonSpectrometer/MuonIdHelpers/src/MdtIdHelper.cxx
@@ -2,19 +2,8 @@
   Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration
 */
 
-/**
- * ==============================================================================
- * ATLAS Muon Identifier Helpers Package
- * -----------------------------------------
- * ==============================================================================
- */
-
 #include "MuonIdHelpers/MdtIdHelper.h"
-
-#include "GaudiKernel/ISvcLocator.h"
-#include "GaudiKernel/Bootstrap.h"
-#include "GaudiKernel/MsgStream.h"
-#include "GaudiKernel/IMessageSvc.h"
+#include "AthenaKernel/getMessageSvc.h"
 
 MdtIdHelper::MdtIdHelper() :
   MuonIdHelper("MdtIdHelper"),
@@ -37,7 +26,7 @@ int MdtIdHelper::initialize_from_dictionary(const IdDictMgr& dict_mgr)
   }
 
   /// init base object
-
+  AtlasDetectorID::setMessageSvc(Athena::getMessageSvc());
   if (AtlasDetectorID::initialize_from_dictionary(dict_mgr)) return (1);
  
   // Register version of the MuonSpectrometer dictionary
diff --git a/MuonSpectrometer/MuonIdHelpers/src/MmIdHelper.cxx b/MuonSpectrometer/MuonIdHelpers/src/MmIdHelper.cxx
index fc754d33835e0f220b6f9d5c50de9e1e55540f82..49a8cd78d6515e25b1a3adeddf7ed88289b2944d 100644
--- a/MuonSpectrometer/MuonIdHelpers/src/MmIdHelper.cxx
+++ b/MuonSpectrometer/MuonIdHelpers/src/MmIdHelper.cxx
@@ -2,19 +2,8 @@
   Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration
 */
 
-/**
- * ==============================================================================
- * ATLAS Muon Identifier Helpers Package
- * -----------------------------------------
- * ==============================================================================
- */
-
-// Includes
 #include "MuonIdHelpers/MmIdHelper.h"
-#include "GaudiKernel/ISvcLocator.h"
-#include "GaudiKernel/Bootstrap.h"
-#include "GaudiKernel/MsgStream.h"
-#include "GaudiKernel/IMessageSvc.h"
+#include "AthenaKernel/getMessageSvc.h"
 
 /*******************************************************************************/ 
 // Constructor/Destructor
@@ -36,6 +25,7 @@ int MmIdHelper::initialize_from_dictionary(const IdDictMgr& dict_mgr) {
   }
 
   // init base object
+  AtlasDetectorID::setMessageSvc(Athena::getMessageSvc());
   if(AtlasDetectorID::initialize_from_dictionary(dict_mgr)) return (1);
 
   // Register version of the MuonSpectrometer dictionary
diff --git a/MuonSpectrometer/MuonIdHelpers/src/MuonIdHelper.cxx b/MuonSpectrometer/MuonIdHelpers/src/MuonIdHelper.cxx
index 92a53fc19d2c66d051b10444e1d51c4407e7cc10..7f6366917af368c631c5a66055183ac91f3b1901 100644
--- a/MuonSpectrometer/MuonIdHelpers/src/MuonIdHelper.cxx
+++ b/MuonSpectrometer/MuonIdHelpers/src/MuonIdHelper.cxx
@@ -2,16 +2,6 @@
   Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration
 */
 
-// ******************************************************************************
-// ATLAS Muon Identifier Helpers Package
-// -----------------------------------------
-// ******************************************************************************
-
-//<doc><file> $Id: MuonIdHelper.cxx,v 1.48 2007-11-25 16:33:41 ketevi Exp $
-//<version>   $Name: not supported by cvs2svn $
-
-// Includes
- 
 #include "MuonIdHelpers/MuonIdHelper.h"
 
 #include "GaudiKernel/ISvcLocator.h"
@@ -19,11 +9,8 @@
 #include "GaudiKernel/MsgStream.h"
 #include "GaudiKernel/IMessageSvc.h"
 
-
 const std::string MuonIdHelper::BAD_NAME = "UNKNOWN";
 
-// Constructor
-
 MuonIdHelper::MuonIdHelper(std::string logName): m_station_region_index(0), m_module_hash_max(0),
   m_channel_hash_max(0), m_detectorElement_hash_max(0), m_init(false) {
 
@@ -45,12 +32,6 @@ MuonIdHelper::MuonIdHelper(std::string logName): m_station_region_index(0), m_mo
   m_Log = std::make_unique<MsgStream>(msgSvc, logName.empty() ? "MuonIdHelper" : logName);
 }
 
-// Destructor
-
-MuonIdHelper::~MuonIdHelper()
-{
-}
-
 int
 MuonIdHelper::initialize_from_dictionary(const IdDictMgr& dict_mgr)
 {
diff --git a/MuonSpectrometer/MuonIdHelpers/src/RpcIdHelper.cxx b/MuonSpectrometer/MuonIdHelpers/src/RpcIdHelper.cxx
index da77bfb09a81df888984d1f0713ba848867dee9c..d8ba7bf39de2bd9f14a3fb21eda2704511a9791a 100644
--- a/MuonSpectrometer/MuonIdHelpers/src/RpcIdHelper.cxx
+++ b/MuonSpectrometer/MuonIdHelpers/src/RpcIdHelper.cxx
@@ -3,11 +3,7 @@
 */
 
 #include "MuonIdHelpers/RpcIdHelper.h"
-
-#include "GaudiKernel/ISvcLocator.h"
-#include "GaudiKernel/Bootstrap.h"
-#include "GaudiKernel/MsgStream.h"
-#include "GaudiKernel/IMessageSvc.h"
+#include "AthenaKernel/getMessageSvc.h"
 
 RpcIdHelper::RpcIdHelper():
   MuonIdHelper("RpcIdHelper"),
@@ -33,6 +29,7 @@ int RpcIdHelper::initialize_from_dictionary(const IdDictMgr& dict_mgr)
   }
 
   // init base object
+  AtlasDetectorID::setMessageSvc(Athena::getMessageSvc());
   if(AtlasDetectorID::initialize_from_dictionary(dict_mgr)) return (1);
 
   // Register version of the MuonSpectrometer dictionary
diff --git a/MuonSpectrometer/MuonIdHelpers/src/TgcIdHelper.cxx b/MuonSpectrometer/MuonIdHelpers/src/TgcIdHelper.cxx
index 88bd80817a83f262702c951866a902b8cb80d5cd..629f1236b8e75899aa7753122b6a2d3712e845a0 100644
--- a/MuonSpectrometer/MuonIdHelpers/src/TgcIdHelper.cxx
+++ b/MuonSpectrometer/MuonIdHelpers/src/TgcIdHelper.cxx
@@ -1,41 +1,14 @@
 /*
-  Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration
+  Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration
 */
 
-/**
- * ==============================================================================
- * ATLAS Muon Identifier Helpers Package
- * -----------------------------------------
- * ==============================================================================
- */
-
-//<doc><file> $Id: TgcIdHelper.cxx,v 1.39 2009-01-20 22:44:13 kblack Exp $
-//<version>   $Name: not supported by cvs2svn $
-
-// Includes
-
 #include "MuonIdHelpers/TgcIdHelper.h"
-
-#include "GaudiKernel/ISvcLocator.h"
-#include "GaudiKernel/Bootstrap.h"
-#include "GaudiKernel/MsgStream.h"
-#include "GaudiKernel/IMessageSvc.h"
-
-
-// Constructor/Destructor
+#include "AthenaKernel/getMessageSvc.h"
 
 TgcIdHelper::TgcIdHelper() : MuonIdHelper("TgcIdHelper"), m_GASGAP_INDEX(0),
   m_ISSTRIP_INDEX(0) {}
 
-// Destructor
-
-TgcIdHelper::~TgcIdHelper()
-{
-  // m_Log deleted in base class.
-}
-
 // Initialize dictionary
-
 int TgcIdHelper::initialize_from_dictionary(const IdDictMgr& dict_mgr)
 {
   int status = 0;
@@ -50,6 +23,7 @@ int TgcIdHelper::initialize_from_dictionary(const IdDictMgr& dict_mgr)
   }
 
   // init base object
+  AtlasDetectorID::setMessageSvc(Athena::getMessageSvc());
   if(AtlasDetectorID::initialize_from_dictionary(dict_mgr)) return (1);
 
   // Register version of the MuonSpectrometer dictionary
diff --git a/MuonSpectrometer/MuonIdHelpers/src/sTgcIdHelper.cxx b/MuonSpectrometer/MuonIdHelpers/src/sTgcIdHelper.cxx
index 294533ef5cd5914aa3343bbc4ff0d5ecb77cec64..2d42c13ef4fc3770bf5592b462c5d4812b4bdd28 100644
--- a/MuonSpectrometer/MuonIdHelpers/src/sTgcIdHelper.cxx
+++ b/MuonSpectrometer/MuonIdHelpers/src/sTgcIdHelper.cxx
@@ -2,20 +2,8 @@
   Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration
 */
 
-/**
- * ==============================================================================
- * ATLAS Muon Identifier Helpers Package
- * -----------------------------------------
- * ==============================================================================
- */
-
-
-// Includes
 #include "MuonIdHelpers/sTgcIdHelper.h"
-#include "GaudiKernel/ISvcLocator.h"
-#include "GaudiKernel/Bootstrap.h"
-#include "GaudiKernel/MsgStream.h"
-#include "GaudiKernel/IMessageSvc.h"
+#include "AthenaKernel/getMessageSvc.h"
 
 /*******************************************************************************/
 // Constructor/Destructor
@@ -38,6 +26,7 @@ int sTgcIdHelper::initialize_from_dictionary(const IdDictMgr& dict_mgr) {
   }
 
   // init base object
+  AtlasDetectorID::setMessageSvc(Athena::getMessageSvc());
   if(AtlasDetectorID::initialize_from_dictionary(dict_mgr)) return (1);
 
   // Register version of the MuonSpectrometer dictionary
diff --git a/Trigger/TrigSteer/DecisionHandling/share/emu_step_menu_processing.ref b/Trigger/TrigSteer/DecisionHandling/share/emu_step_menu_processing.ref
index 5b79e11c73ac5acd93621007f9483ca7e4bf63c9..ce9c480634a2eebe85d10871351ec8e4e6ee3a51 100644
--- a/Trigger/TrigSteer/DecisionHandling/share/emu_step_menu_processing.ref
+++ b/Trigger/TrigSteer/DecisionHandling/share/emu_step_menu_processing.ref
@@ -144,7 +144,7 @@ TrigSignatureMoniMT                                 INFO -- #2511524900 Events
 TrigSignatureMoniMT                                 INFO -- #2511524900 Features                             3          -          3          3          
 TrigSignatureMoniMT                                 INFO HLT_TestChain6_muv1_TestChain10_ev1_L1MU6_EM5 #64374772
 TrigSignatureMoniMT                                 INFO -- #64374772 Events           2          2          1          1          1          1          1          
-TrigSignatureMoniMT                                 INFO -- #64374772 Features                               3          3          3          3          
+TrigSignatureMoniMT                                 INFO -- #64374772 Features                               5          5          5          5          
 TrigSignatureMoniMT                                 INFO HLT_TestChain6_muv1_TestChain10_muv1_L12MU6 #3196402061
 TrigSignatureMoniMT                                 INFO -- #3196402061 Events         2          2          1          0          0          0          0          
 TrigSignatureMoniMT                                 INFO -- #3196402061 Features                             3          0          0          0          
@@ -153,7 +153,7 @@ TrigSignatureMoniMT                                 INFO -- #1237112870 Events
 TrigSignatureMoniMT                                 INFO -- #1237112870 Features                             0          0          0          0          
 TrigSignatureMoniMT                                 INFO HLT_TestChain6_muv2_TestChain8_ev2_L1MU6_EM5 #3476793373
 TrigSignatureMoniMT                                 INFO -- #3476793373 Events         2          2          2          2          2          -          2          
-TrigSignatureMoniMT                                 INFO -- #3476793373 Features                             4          4          4          -          
+TrigSignatureMoniMT                                 INFO -- #3476793373 Features                             7          7          7          -          
 TrigSignatureMoniMT                                 INFO HLT_TestChain8_ev1_L1EM5 #1677577445
 TrigSignatureMoniMT                                 INFO -- #1677577445 Events         4          4          3          3          3          -          3          
 TrigSignatureMoniMT                                 INFO -- #1677577445 Features                             4          4          4          -          
diff --git a/Trigger/TrigSteer/DecisionHandling/share/emu_step_processing.ref b/Trigger/TrigSteer/DecisionHandling/share/emu_step_processing.ref
index c561eca08f8b5de841062724d55121405d1e3e8a..0df617cc3d1bc5813024717d70ddadbcb83e586c 100644
--- a/Trigger/TrigSteer/DecisionHandling/share/emu_step_processing.ref
+++ b/Trigger/TrigSteer/DecisionHandling/share/emu_step_processing.ref
@@ -131,7 +131,7 @@ TrigSignatureMoniMT                                 INFO -- #1756953305 Events
 TrigSignatureMoniMT                                 INFO -- #1756953305 Features                             4          4          4          -          
 TrigSignatureMoniMT                                 INFO HLT_TestChain5_ev1_TestChain8_ev1_2TestChain6_muv1_L1EM3_L1EM5_L12MU6 #1820214917
 TrigSignatureMoniMT                                 INFO -- #1820214917 Events         1          1          1          1          -          -          1          
-TrigSignatureMoniMT                                 INFO -- #1820214917 Features                             2          2          -          -          
+TrigSignatureMoniMT                                 INFO -- #1820214917 Features                             5          5          -          -          
 TrigSignatureMoniMT                                 INFO HLT_TestChain5_ev1_TestChain8_ev1_L12EM3 #2709794009
 TrigSignatureMoniMT                                 INFO -- #2709794009 Events         0          0          0          0          -          -          0          
 TrigSignatureMoniMT                                 INFO -- #2709794009 Features                             0          0          -          -          
@@ -149,7 +149,7 @@ TrigSignatureMoniMT                                 INFO -- #2511524900 Events
 TrigSignatureMoniMT                                 INFO -- #2511524900 Features                             3          -          3          3          
 TrigSignatureMoniMT                                 INFO HLT_TestChain6_muv1_TestChain10_ev1_L1MU6_EM5 #64374772
 TrigSignatureMoniMT                                 INFO -- #64374772 Events           2          2          2          1          -          1          1          
-TrigSignatureMoniMT                                 INFO -- #64374772 Features                               4          3          -          3          
+TrigSignatureMoniMT                                 INFO -- #64374772 Features                               7          5          -          5          
 TrigSignatureMoniMT                                 INFO HLT_TestChain6_muv1_TestChain10_muv1_L12MU6 #3196402061
 TrigSignatureMoniMT                                 INFO -- #3196402061 Events         2          2          1          0          -          -          0          
 TrigSignatureMoniMT                                 INFO -- #3196402061 Features                             3          0          -          -          
@@ -158,7 +158,7 @@ TrigSignatureMoniMT                                 INFO -- #3205587050 Events
 TrigSignatureMoniMT                                 INFO -- #3205587050 Features                             0          0          -          -          
 TrigSignatureMoniMT                                 INFO HLT_TestChain6_muv2_TestChain8_ev2_L1MU6_EM5 #3476793373
 TrigSignatureMoniMT                                 INFO -- #3476793373 Events         2          2          2          2          -          -          2          
-TrigSignatureMoniMT                                 INFO -- #3476793373 Features                             4          4          -          -          
+TrigSignatureMoniMT                                 INFO -- #3476793373 Features                             7          7          -          -          
 TrigSignatureMoniMT                                 INFO HLT_TestChain8_ev1_L1EM5 #1677577445
 TrigSignatureMoniMT                                 INFO -- #1677577445 Events         4          4          3          3          3          -          3          
 TrigSignatureMoniMT                                 INFO -- #1677577445 Features                             4          4          4          -